diff --git a/.vscode/cspell.json b/.vscode/cspell.json index 5fff2a750c71..20c5ccc6eb08 100644 --- a/.vscode/cspell.json +++ b/.vscode/cspell.json @@ -148,6 +148,7 @@ "docfx", "dont", "dotenv", + "dowhile", "dpkg", "dtlk", "dtlksd", diff --git a/sdk/ml/azure-ai-ml/azure/ai/ml/_internal/_schema/input_output.py b/sdk/ml/azure-ai-ml/azure/ai/ml/_internal/_schema/input_output.py index 2b24f2cb1e6e..b2c54ab0c836 100644 --- a/sdk/ml/azure-ai-ml/azure/ai/ml/_internal/_schema/input_output.py +++ b/sdk/ml/azure-ai-ml/azure/ai/ml/_internal/_schema/input_output.py @@ -6,6 +6,7 @@ from azure.ai.ml._schema import StringTransformedEnum, UnionField from azure.ai.ml._schema.component.input_output import InputPortSchema, OutputPortSchema, ParameterSchema +from azure.ai.ml._schema.core.fields import DumpableFloatField, DumpableIntegerField class InternalInputPortSchema(InputPortSchema): @@ -62,13 +63,37 @@ class InternalEnumParameterSchema(ParameterSchema): required=True, data_key="type", ) - enum = fields.List(UnionField([fields.Str(), fields.Number(), fields.Bool()])) + default = UnionField( + [ + DumpableIntegerField(strict=True), + # Use DumpableFloatField to avoid '1'(str) serialized to 1.0(float) + DumpableFloatField(), + # put string schema after Int and Float to make sure they won't dump to string + fields.Str(), + # fields.Bool comes last since it'll parse anything non-falsy to True + fields.Bool(), + ], + ) + enum = fields.List( + UnionField( + [ + DumpableIntegerField(strict=True), + # Use DumpableFloatField to avoid '1'(str) serialized to 1.0(float) + DumpableFloatField(), + # put string schema after Int and Float to make sure they won't dump to string + fields.Str(), + # fields.Bool comes last since it'll parse anything non-falsy to True + fields.Bool(), + ] + ), + required=True, + ) @post_dump @post_load def enum_value_to_string(self, data, **kwargs): # pylint: disable=unused-argument, disable=no-self-use if "enum" in data: data["enum"] = list(map(str, data["enum"])) - if "default" in data: + if "default" in data and data["default"] is not None: data["default"] = str(data["default"]) return data diff --git a/sdk/ml/azure-ai-ml/azure/ai/ml/_internal/_util.py b/sdk/ml/azure-ai-ml/azure/ai/ml/_internal/_util.py index cb723c3bccae..076e4af36d7a 100644 --- a/sdk/ml/azure-ai-ml/azure/ai/ml/_internal/_util.py +++ b/sdk/ml/azure-ai-ml/azure/ai/ml/_internal/_util.py @@ -19,7 +19,6 @@ Scope, ) from azure.ai.ml._schema import NestedField -from azure.ai.ml.constants._component import IOConstants from azure.ai.ml.entities._component.component_factory import component_factory from azure.ai.ml.entities._job.pipeline._load_component import pipeline_node_factory diff --git a/sdk/ml/azure-ai-ml/azure/ai/ml/_internal/entities/_input_outputs.py b/sdk/ml/azure-ai-ml/azure/ai/ml/_internal/entities/_input_outputs.py index f708086b92cd..1cf2eff4d757 100644 --- a/sdk/ml/azure-ai-ml/azure/ai/ml/_internal/entities/_input_outputs.py +++ b/sdk/ml/azure-ai-ml/azure/ai/ml/_internal/entities/_input_outputs.py @@ -3,7 +3,7 @@ # --------------------------------------------------------- from typing import Dict, Optional, Union -from azure.ai.ml import Input +from azure.ai.ml import Input, Output from azure.ai.ml.constants._component import ComponentParameterTypes, IOConstants _INPUT_TYPE_ENUM = "enum" @@ -23,6 +23,10 @@ class InternalInput(Input): - Enum, enum (new) """ + def __init__(self, datastore_mode=None, **kwargs): + self.datastore_mode = datastore_mode + super().__init__(**kwargs) + @property def _allowed_types(self): if self._lower_type == _INPUT_TYPE_ENUM: @@ -86,7 +90,7 @@ def _get_python_builtin_type_str(self) -> str: return super()._get_python_builtin_type_str() @classmethod - def _cast_from_input_or_dict(cls, _input: Union[Input, Dict]) -> "InternalInput": + def _cast_from_input_or_dict(cls, _input: Union[Input, Dict]) -> Optional["InternalInput"]: """Cast from Input or Dict to InternalInput. Do not guarantee to create a new object.""" if _input is None: return None @@ -98,3 +102,18 @@ def _cast_from_input_or_dict(cls, _input: Union[Input, Dict]) -> "InternalInput" _input.__class__ = InternalInput return _input return InternalInput(**_input) + + +class InternalOutput(Output): + @classmethod + def _cast_from_output_or_dict(cls, _output: Union[Output, Dict]) -> Optional["InternalOutput"]: + if _output is None: + return None + if isinstance(_output, InternalOutput): + return _output + if isinstance(_output, Output): + # do force cast directly as there is no new field added in InternalInput + # need to change the logic if new field is added + _output.__class__ = InternalOutput + return _output + return InternalOutput(**_output) diff --git a/sdk/ml/azure-ai-ml/azure/ai/ml/_internal/entities/command.py b/sdk/ml/azure-ai-ml/azure/ai/ml/_internal/entities/command.py index 1dd1bdb87bfa..1cc2338adc09 100644 --- a/sdk/ml/azure-ai-ml/azure/ai/ml/_internal/entities/command.py +++ b/sdk/ml/azure-ai-ml/azure/ai/ml/_internal/entities/command.py @@ -16,7 +16,7 @@ from azure.ai.ml._schema.core.fields import DistributionField from azure.ai.ml.entities import CommandJobLimits, JobResourceConfiguration from azure.ai.ml.entities._job.distribution import DistributionConfiguration -from azure.ai.ml.entities._util import get_rest_dict +from azure.ai.ml.entities._util import get_rest_dict_for_node_attrs class Command(InternalBaseNode): @@ -87,11 +87,10 @@ def _create_schema_for_validation(cls, context) -> Union[PathAwareSchema, Schema def _to_rest_object(self, **kwargs) -> dict: rest_obj = super()._to_rest_object(**kwargs) - limits = self.limits._to_rest_object() if self.limits else None rest_obj.update( dict( - limits=get_rest_dict(limits), - resources=get_rest_dict(self.resources, clear_empty_value=True), + limits=get_rest_dict_for_node_attrs(self.limits, clear_empty_value=True), + resources=get_rest_dict_for_node_attrs(self.resources, clear_empty_value=True), ) ) return rest_obj @@ -174,7 +173,7 @@ def _to_rest_object(self, **kwargs) -> dict: distribution = self.distribution._to_rest_object() if self.distribution else None # pylint: disable=no-member rest_obj.update( dict( - distribution=get_rest_dict(distribution), + distribution=get_rest_dict_for_node_attrs(distribution), ) ) return rest_obj diff --git a/sdk/ml/azure-ai-ml/azure/ai/ml/_internal/entities/component.py b/sdk/ml/azure-ai-ml/azure/ai/ml/_internal/entities/component.py index 9af4c45e43c9..991ed58b98fc 100644 --- a/sdk/ml/azure-ai-ml/azure/ai/ml/_internal/entities/component.py +++ b/sdk/ml/azure-ai-ml/azure/ai/ml/_internal/entities/component.py @@ -20,7 +20,7 @@ from ... import Input, Output from .._schema.component import InternalBaseComponentSchema from ._additional_includes import _AdditionalIncludes -from ._input_outputs import InternalInput +from ._input_outputs import InternalInput, InternalOutput from .environment import InternalEnvironment from .node import InternalBaseNode @@ -132,11 +132,12 @@ def __init__( @classmethod def _build_io(cls, io_dict: Union[Dict, Input, Output], is_input: bool): - if not is_input: - return super()._build_io(io_dict, is_input) component_io = {} for name, port in io_dict.items(): - component_io[name] = InternalInput._cast_from_input_or_dict(port) + if is_input: + component_io[name] = InternalInput._cast_from_input_or_dict(port) + else: + component_io[name] = InternalOutput._cast_from_output_or_dict(port) return component_io def _post_process_internal_inputs_outputs( diff --git a/sdk/ml/azure-ai-ml/azure/ai/ml/_internal/entities/runsettings/ai_super_computer_configuration.py b/sdk/ml/azure-ai-ml/azure/ai/ml/_internal/entities/runsettings/ai_super_computer_configuration.py index bef66f8078a2..168d1a04dd7f 100644 --- a/sdk/ml/azure-ai-ml/azure/ai/ml/_internal/entities/runsettings/ai_super_computer_configuration.py +++ b/sdk/ml/azure-ai-ml/azure/ai/ml/_internal/entities/runsettings/ai_super_computer_configuration.py @@ -57,7 +57,7 @@ def __init__( self.min_instance_type_count = min_instance_type_count -class AISuperComputerConfiguration(BaseProperty): +class AISuperComputerConfiguration(BaseProperty): # pylint: disable=too-many-instance-attributes """A class to manage AI Super Computer Configuration.""" def __init__( diff --git a/sdk/ml/azure-ai-ml/azure/ai/ml/_ml_client.py b/sdk/ml/azure-ai-ml/azure/ai/ml/_ml_client.py index b66dd4b32eff..57ac092b66d5 100644 --- a/sdk/ml/azure-ai-ml/azure/ai/ml/_ml_client.py +++ b/sdk/ml/azure-ai-ml/azure/ai/ml/_ml_client.py @@ -257,6 +257,13 @@ def __init__( **kwargs, ) + self._service_client_10_2022_preview = ServiceClient102022( + credential=self._credential, + subscription_id=self._operation_scope._subscription_id, + base_url=base_url, + **kwargs, + ) + self._workspaces = WorkspaceOperations( self._operation_scope, self._rp_service_client, diff --git a/sdk/ml/azure-ai-ml/azure/ai/ml/_schema/compute/schedule.py b/sdk/ml/azure-ai-ml/azure/ai/ml/_schema/compute/schedule.py index abf706d5d462..d8ee12e0270d 100644 --- a/sdk/ml/azure-ai-ml/azure/ai/ml/_schema/compute/schedule.py +++ b/sdk/ml/azure-ai-ml/azure/ai/ml/_schema/compute/schedule.py @@ -48,6 +48,12 @@ class RecurrenceScheduleSchema(metaclass=PatchedSchemaMeta): hours = fields.List(fields.Int()) minutes = fields.List(fields.Int()) + @post_load + def make(self, data, **kwargs): + from azure.ai.ml.entities import RecurrencePattern + + return RecurrencePattern(**data) + class RecurrenceTriggerSchema(BaseTriggerSchema): type = StringTransformedEnum(required=True, allowed_values=TriggerType.RECURRENCE) diff --git a/sdk/ml/azure-ai-ml/azure/ai/ml/_schema/pipeline/component_job.py b/sdk/ml/azure-ai-ml/azure/ai/ml/_schema/pipeline/component_job.py index bc256605c8f9..e6f7f7923afb 100644 --- a/sdk/ml/azure-ai-ml/azure/ai/ml/_schema/pipeline/component_job.py +++ b/sdk/ml/azure-ai-ml/azure/ai/ml/_schema/pipeline/component_job.py @@ -54,10 +54,14 @@ class BaseNodeSchema(PathAwareSchema): keys=fields.Str(), values=UnionField([OutputBindingStr, NestedField(OutputSchema)], allow_none=True), ) + properties = fields.Dict(keys=fields.Str(), values=fields.Str(allow_none=True)) def __init__(self, *args, **kwargs): super().__init__(*args, **kwargs) - support_data_binding_expression_for_fields(self, ["type"]) + # data binding expression is not supported inside component field, while validation error + # message will be very long when component is an object as error message will include + # str(component), so just add component to skip list. The same to trial in Sweep. + support_data_binding_expression_for_fields(self, ["type", "component", "trial"]) @post_dump(pass_original=True) def add_user_setting_attr_dict(self, data, original_data, **kwargs): # pylint: disable=unused-argument diff --git a/sdk/ml/azure-ai-ml/azure/ai/ml/_schema/schedule/trigger.py b/sdk/ml/azure-ai-ml/azure/ai/ml/_schema/schedule/trigger.py index bd5cbd108c95..6416c98379c5 100644 --- a/sdk/ml/azure-ai-ml/azure/ai/ml/_schema/schedule/trigger.py +++ b/sdk/ml/azure-ai-ml/azure/ai/ml/_schema/schedule/trigger.py @@ -4,7 +4,7 @@ from marshmallow import fields, post_dump, post_load, validate -from azure.ai.ml._restclient.v2022_06_01_preview.models import RecurrenceFrequency, TriggerType, WeekDay +from azure.ai.ml._restclient.v2022_10_01_preview.models import RecurrenceFrequency, TriggerType, WeekDay from azure.ai.ml._schema.core.fields import ( DateTimeStr, DumpableIntegerField, @@ -53,6 +53,12 @@ class RecurrencePatternSchema(metaclass=PatchedSchemaMeta): fields.List(StringTransformedEnum(allowed_values=[o.value for o in WeekDay])), ] ) + month_days = UnionField( + [ + fields.Int(), + fields.List(fields.Int()), + ] + ) @post_load def make(self, data, **kwargs) -> "RecurrencePattern": # pylint: disable=no-self-use, unused-argument diff --git a/sdk/ml/azure-ai-ml/azure/ai/ml/_utils/utils.py b/sdk/ml/azure-ai-ml/azure/ai/ml/_utils/utils.py index 4994f033346e..5e28477c63bf 100644 --- a/sdk/ml/azure-ai-ml/azure/ai/ml/_utils/utils.py +++ b/sdk/ml/azure-ai-ml/azure/ai/ml/_utils/utils.py @@ -776,3 +776,10 @@ def _is_user_error_from_exception_type(e: Union[Exception, None]): # For OSError/IOError with error no 28: "No space left on device" should be sdk user error if isinstance(e, (ConnectionError, KeyboardInterrupt)) or (isinstance(e, (IOError, OSError)) and e.errno == 28): return True + + +def get_all_enum_values_iter(enum_type): + """Get all values of an enum type.""" + for key in dir(enum_type): + if not key.startswith("_"): + yield getattr(enum_type, key) diff --git a/sdk/ml/azure-ai-ml/azure/ai/ml/dsl/_dynamic.py b/sdk/ml/azure-ai-ml/azure/ai/ml/dsl/_dynamic.py index dabccef8049d..a65d18b558c7 100644 --- a/sdk/ml/azure-ai-ml/azure/ai/ml/dsl/_dynamic.py +++ b/sdk/ml/azure-ai-ml/azure/ai/ml/dsl/_dynamic.py @@ -74,7 +74,7 @@ def _assert_arg_valid(kwargs: dict, keys: list, func_name: str): """Assert the arg keys are all in keys.""" # pylint: disable=protected-access # validate component input names - Component._validate_io_names(io_dict=kwargs) + Component._validate_io_names(io_dict=kwargs, raise_error=True) lower2original_parameter_names = {x.lower(): x for x in keys} kwargs_need_to_update = [] diff --git a/sdk/ml/azure-ai-ml/azure/ai/ml/dsl/_pipeline_component_builder.py b/sdk/ml/azure-ai-ml/azure/ai/ml/dsl/_pipeline_component_builder.py index bdf488cf19da..f7906d70cadc 100644 --- a/sdk/ml/azure-ai-ml/azure/ai/ml/dsl/_pipeline_component_builder.py +++ b/sdk/ml/azure-ai-ml/azure/ai/ml/dsl/_pipeline_component_builder.py @@ -12,10 +12,12 @@ from typing import Callable, Union from azure.ai.ml._utils.utils import ( + get_all_enum_values_iter, is_private_preview_enabled, is_valid_node_name, parse_args_description_from_docstring, ) +from azure.ai.ml.constants import AssetTypes from azure.ai.ml.constants._component import ComponentSource from azure.ai.ml.dsl._utils import _sanitize_python_variable_name from azure.ai.ml.entities import PipelineJob @@ -244,11 +246,24 @@ def _build_pipeline_outputs(self, outputs: typing.Dict[str, NodeOutput]): if not isinstance(key, str) or not isinstance(value, NodeOutput) or value._owner is None: raise UserErrorException(message=error_msg, no_personal_data_message=error_msg) meta = value._meta or value + + # hack: map component output type to valid pipeline output type + def _map_type(_meta): + if type(_meta).__name__ != "InternalOutput": + return _meta.type + if _meta.type in list(get_all_enum_values_iter(AssetTypes)): + return _meta.type + if _meta.type in ["AnyFile"]: + return AssetTypes.URI_FILE + return AssetTypes.URI_FOLDER + # Note: Here we set PipelineOutput as Pipeline's output definition as we need output binding. pipeline_output = PipelineOutput( name=key, data=None, - meta=Output(type=meta.type, description=meta.description, mode=meta.mode, is_control=meta.is_control), + meta=Output( + type=_map_type(meta), description=meta.description, mode=meta.mode, is_control=meta.is_control + ), owner="pipeline", description=self._args_description.get(key, None), ) diff --git a/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_builders/base_node.py b/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_builders/base_node.py index f0dc5ae334a5..74201bffdc96 100644 --- a/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_builders/base_node.py +++ b/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_builders/base_node.py @@ -396,6 +396,7 @@ def _to_rest_object(self, **kwargs) -> dict: # pylint: disable=unused-argument computeId=self.compute, inputs=self._to_rest_inputs(), outputs=self._to_rest_outputs(), + properties=self.properties, _source=self._source, # add all arbitrary attributes to support setting unknown attributes **self._get_attrs(), diff --git a/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_builders/command.py b/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_builders/command.py index 342e47919e46..fb59ebc8979a 100644 --- a/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_builders/command.py +++ b/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_builders/command.py @@ -46,7 +46,13 @@ from ..._schema import PathAwareSchema from ..._schema.job.distribution import MPIDistributionSchema, PyTorchDistributionSchema, TensorFlowDistributionSchema from .._job.identity import AmlToken, Identity, ManagedIdentity, UserIdentity -from .._util import convert_ordered_dict_to_dict, get_rest_dict, load_from_dict, validate_attribute_type +from .._util import ( + convert_ordered_dict_to_dict, + from_rest_dict_to_dummy_rest_object, + get_rest_dict_for_node_attrs, + load_from_dict, + validate_attribute_type, +) from .base_node import BaseNode from .sweep import Sweep @@ -432,24 +438,16 @@ def _picked_fields_from_dict_to_rest_object(cls) -> List[str]: def _to_rest_object(self, **kwargs) -> dict: rest_obj = super()._to_rest_object(**kwargs) - distribution = self.distribution._to_rest_object() if self.distribution else None - limits = self.limits._to_rest_object() if self.limits else None - services = {k: v._to_rest_object() for k, v in self.services.items()} if self.services else None - rest_obj.update( - convert_ordered_dict_to_dict( - dict( - componentId=self._get_component_id(), - distribution=get_rest_dict(distribution), - limits=get_rest_dict(limits), - resources=get_rest_dict(self.resources, clear_empty_value=True), - services=services, - ) - ) - ) - # TODO 1951540: Refactor: avoid send None field to server, for other fields like limits, resources etc. - if rest_obj["services"] is None: - del rest_obj["services"] - return rest_obj + for key, value in { + "componentId": self._get_component_id(), + "distribution": get_rest_dict_for_node_attrs(self.distribution, clear_empty_value=True), + "limits": get_rest_dict_for_node_attrs(self.limits, clear_empty_value=True), + "resources": get_rest_dict_for_node_attrs(self.resources, clear_empty_value=True), + "services": get_rest_dict_for_node_attrs(self.services), + }.items(): + if value is not None: + rest_obj[key] = value + return convert_ordered_dict_to_dict(rest_obj) @classmethod def _load_from_dict(cls, data: Dict, context: Dict, additional_message: str, **kwargs) -> "Command": @@ -486,7 +484,15 @@ def _from_rest_object(cls, obj: dict) -> "Command": # services, sweep won't have services if "services" in obj and obj["services"]: - obj["services"] = JobService._from_rest_job_services(obj["services"]) + # pipeline node rest object are dicts while _from_rest_job_services expect RestJobService + services = {} + for service_name, service in obj["services"].items(): + # in rest object of a pipeline job, service will be transferred to a dict as + # it's attributes of a node, but JobService._from_rest_object expect a + # RestJobService, so we need to convert it back. Here we convert the dict to a + # dummy rest object which may work as a RestJobService instead. + services[service_name] = from_rest_dict_to_dummy_rest_object(service) + obj["services"] = JobService._from_rest_job_services(services) # handle limits if "limits" in obj and obj["limits"]: diff --git a/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_builders/control_flow_node.py b/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_builders/control_flow_node.py index 529f6bdb8891..0d0b25599b95 100644 --- a/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_builders/control_flow_node.py +++ b/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_builders/control_flow_node.py @@ -7,7 +7,7 @@ from abc import ABC from typing import Dict, Union -from azure.ai.ml._utils.utils import is_data_binding_expression +from azure.ai.ml._utils.utils import is_data_binding_expression, is_internal_components_enabled from azure.ai.ml.constants._common import CommonYamlFields from azure.ai.ml.constants._component import ControlFlowType from azure.ai.ml.entities._mixins import YamlTranslatableMixin @@ -101,8 +101,15 @@ def _validate_body(self, raise_error=True): from .command import Command from .pipeline import Pipeline + enable_body_type = (Command, Pipeline) + if is_internal_components_enabled(): + from azure.ai.ml._internal.entities import Command as InternalCommand + from azure.ai.ml._internal.entities import Pipeline as InternalPipeline + + enable_body_type = enable_body_type + (InternalCommand, InternalPipeline) + validation_result = self._create_empty_validation_result() - if not isinstance(self.body, (Command, Pipeline)): + if not isinstance(self.body, enable_body_type): validation_result.append_error( yaml_path="body", message="Only command or pipeline job is supported as the body of control flow." ) diff --git a/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_builders/do_while.py b/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_builders/do_while.py index d2a6113e2237..c34a8de389a6 100644 --- a/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_builders/do_while.py +++ b/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_builders/do_while.py @@ -166,7 +166,7 @@ def _from_rest_object(cls, obj: dict, reference_node_list: List) -> "DoWhile": def set_limits(self, *, max_iteration_count: int, **kwargs): """Set max iteration count for do while job. The range of the iteration count is (0, 1000].""" if isinstance(self.limits, DoWhileJobLimits): - self.limits.max_iteration_count = max_iteration_count + self.limits._max_iteration_count = max_iteration_count else: self._limits = DoWhileJobLimits(max_iteration_count=max_iteration_count) @@ -180,16 +180,46 @@ def _customized_validate(self): validation_result.merge_with(self._validate_body_output_mapping(raise_error=False)) return validation_result + def _validate_port(self, port, node_ports, port_type, yaml_path): + """Validate input/output port is exist in the dowhile body.""" + validation_result = self._create_empty_validation_result() + if isinstance(port, str): + port_obj = node_ports.get(port, None) + else: + port_obj = port + if port_obj and port_obj._owner._instance_id != self.body._instance_id: + # Check the port owner is dowhile body. + validation_result.append_error( + yaml_path=yaml_path, + message=f"{port_obj._name} is the {port_type} of {port_obj._owner.name}, dowhile only accept {port_type} of the body: {self.body.name}.", + ) + elif not port_obj or port_obj._name not in node_ports: + # Check port is exist in dowhile body. + validation_result.append_error( + yaml_path=yaml_path, + message=f"The {port_type} of mapping {port_obj._name if port_obj else port} does not exist in {self.body.name} {port_type}, existing {port_type}: {node_ports.keys()}", + ) + return validation_result + def _validate_loop_condition(self, raise_error=True): # pylint: disable=protected-access validation_result = self._create_empty_validation_result() if not self.condition: validation_result.append_error(yaml_path="condition", message="The condition cannot be empty.") - elif self.condition._name not in self.body.outputs: - validation_result.append_error( - yaml_path="condition", message=f"Cannot find the output {self.condition._name} in body outputs." + else: + # Check condition exists in dowhile body. + validation_result.merge_with( + self._validate_port(self.condition, self.body.outputs, port_type="output", yaml_path="condition") ) + if validation_result.passed: + # Check condition is a control output. + condition_name = self.condition if isinstance(self.condition, str) else self.condition._name + if not self.body.component.outputs[condition_name].is_control: + validation_result.append_error( + yaml_path="condition", + message=f"{condition_name} is not a control output. The condition of dowhile must be the control output of the body.", + ) return validation_result.try_raise(self._get_validation_error_target(), raise_error=raise_error) def _validate_do_while_limit(self, raise_error=True): @@ -220,22 +250,40 @@ def _validate_body_output_mapping(self, raise_error=True): yaml_path="mapping", message=f"Mapping expects a dict type but passes in a {type(self.mapping)} type." ) else: + # Record the mapping relationship between input and output + input_output_mapping = {} # Validate mapping input&output should come from while body - for k, v in self.mapping.items(): - if k not in self.body.outputs: - validation_result.append_error( - yaml_path="mapping", - message=f"The key of mapping {k} does not exist in {self.body.name} outputs, " - f"exist outputs: {self.body.outputs.keys()}", - ) - - else: - v = v if isinstance(v, list) else [v] - for item in v: - if item not in self.body.inputs.values(): - validation_result.append_error( + for output, inputs in self.mapping.items(): + output_name = output if isinstance(output, str) else output._name + validate_results = self._validate_port( + output, self.body.outputs, port_type="output", yaml_path="mapping" + ) + if validate_results.passed: + is_control_output = self.body.component.outputs[output_name].is_control + inputs = inputs if isinstance(inputs, list) else [inputs] + for item in inputs: + input_validate_results = self._validate_port( + item, self.body.inputs, port_type="input", yaml_path="mapping" + ) + validation_result.merge_with(input_validate_results) + input_name = item if isinstance(item, str) else item._name + input_output_mapping[input_name] = input_output_mapping.get(input_name, []) + [output_name] + + if ( + input_validate_results.passed + and not is_control_output + and self.body.component.inputs[input_name]._is_primitive_type + ): + validate_results.append_error( yaml_path="mapping", - message=f"The value of mapping {item._name} does not exist in {self.body.name} " - f"inputs, exist inputs: {self.body.inputs.keys()}", + message=f"{output_name} is a non-primitive type output and {input_name} is a primitive input. Non-primitive type output cannot be connected to an a primitive type input.", ) + + validation_result.merge_with(validate_results) + # Validate whether input is linked to multiple outputs + for input, outputs in input_output_mapping.items(): + if len(outputs) > 1: + validation_result.append_error( + yaml_path="mapping", message=f"Input {input} has been linked to multiple outputs {outputs}." + ) return validation_result.try_raise(self._get_validation_error_target(), raise_error=raise_error) diff --git a/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_builders/parallel.py b/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_builders/parallel.py index 7255f65de5a6..41d7aa9488ea 100644 --- a/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_builders/parallel.py +++ b/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_builders/parallel.py @@ -26,7 +26,7 @@ from ..._schema import PathAwareSchema from .._job.distribution import DistributionConfiguration from .._job.pipeline._io import NodeOutput, PipelineInput -from .._util import convert_ordered_dict_to_dict, get_rest_dict, validate_attribute_type +from .._util import convert_ordered_dict_to_dict, get_rest_dict_for_node_attrs, validate_attribute_type from .base_node import BaseNode module_logger = logging.getLogger(__name__) @@ -316,10 +316,10 @@ def _to_rest_object(self, **kwargs) -> dict: convert_ordered_dict_to_dict( dict( componentId=self._get_component_id(), - retry_settings=get_rest_dict(self.retry_settings), + retry_settings=get_rest_dict_for_node_attrs(self.retry_settings), logging_level=self.logging_level, mini_batch_size=self.mini_batch_size, - resources=self.resources._to_rest_object().as_dict() if self.resources else None, + resources=get_rest_dict_for_node_attrs(self.resources), ) ) ) diff --git a/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_builders/spark.py b/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_builders/spark.py index d59648b8d19c..4915347916ef 100644 --- a/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_builders/spark.py +++ b/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_builders/spark.py @@ -46,7 +46,7 @@ _validate_spark_configurations, ) from .._job.spark_job_entry_mixin import SparkJobEntry, SparkJobEntryMixin -from .._util import convert_ordered_dict_to_dict, get_rest_dict, load_from_dict, validate_attribute_type +from .._util import convert_ordered_dict_to_dict, get_rest_dict_for_node_attrs, load_from_dict, validate_attribute_type from .base_node import BaseNode module_logger = logging.getLogger(__name__) @@ -427,16 +427,13 @@ def _picked_fields_from_dict_to_rest_object(cls) -> List[str]: def _to_rest_object(self, **kwargs) -> dict: self._validate_fields() rest_obj = super()._to_rest_object(**kwargs) - entry = self.entry._to_rest_object() if self.entry else None - identity = self.identity._to_rest_object() if self.identity else None - resources = self.resources._to_rest_object() if self.resources else None rest_obj.update( convert_ordered_dict_to_dict( dict( componentId=self._get_component_id(), - identity=get_rest_dict(identity), - resources=get_rest_dict(resources), - entry=get_rest_dict(entry), + identity=get_rest_dict_for_node_attrs(self.identity), + resources=get_rest_dict_for_node_attrs(self.resources), + entry=get_rest_dict_for_node_attrs(self.entry), ) ) ) diff --git a/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_builders/sweep.py b/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_builders/sweep.py index 95462cf16be7..d891dd6a8569 100644 --- a/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_builders/sweep.py +++ b/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_builders/sweep.py @@ -165,7 +165,7 @@ def _from_rest_object(cls, obj: dict) -> "Sweep": from azure.ai.ml._schema._sweep.parameterized_sweep import ParameterizedSweepSchema schema = ParameterizedSweepSchema(context={BASE_PATH_CONTEXT_KEY: "./"}) - support_data_binding_expression_for_fields(schema, ["type"]) + support_data_binding_expression_for_fields(schema, ["type", "component", "trial"]) base_sweep = schema.load(obj, unknown=EXCLUDE, partial=True) # pylint: disable=no-member for key, value in base_sweep.items(): diff --git a/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_component/component.py b/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_component/component.py index 1fa0b231c2ef..349faac66dfe 100644 --- a/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_component/component.py +++ b/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_component/component.py @@ -140,13 +140,17 @@ def __init__( # Store original yaml self._yaml_str = yaml_str self._other_parameter = kwargs + + @property + def _func(self): from azure.ai.ml.entities._job.pipeline._load_component import _generate_component_function - # validate input names before create component function - # TODO(1924371): discuss if validate & update self._func after input changes - self._validate_io_names(self._inputs) - self._validate_io_names(self._outputs) - self._func = _generate_component_function(self) + # validate input/output names before creating component function + validation_result = self._validate_io_names(self.inputs) + validation_result.merge_with(self._validate_io_names(self.outputs)) + validation_result.try_raise(error_target=self._get_validation_error_target()) + + return _generate_component_function(self) @property def type(self) -> str: @@ -245,7 +249,7 @@ def _resolve_component_source_from_id(id): ) @classmethod - def _validate_io_names(cls, io_dict: Dict, raise_error=True): + def _validate_io_names(cls, io_dict: Dict, raise_error=False) -> ValidationResult: """Validate input/output names, raise exception if invalid.""" validation_result = cls._create_empty_validation_result() lower2original_kwargs = {} @@ -265,7 +269,7 @@ def _validate_io_names(cls, io_dict: Dict, raise_error=True): ) else: lower2original_kwargs[lower_key] = name - return validation_result.try_raise(error_target=ErrorTarget.COMPONENT, raise_error=raise_error) + return validation_result.try_raise(error_target=cls._get_validation_error_target(), raise_error=raise_error) @classmethod def _build_io(cls, io_dict: Union[Dict, Input, Output], is_input: bool): @@ -389,8 +393,9 @@ def _customized_validate(self) -> ValidationResult: message="Not a valid code value: git paths are not supported.", yaml_path="code", ) - # validate inputs names before creation in case user added invalid inputs after entity built + # validate inputs names validation_result.merge_with(self._validate_io_names(self.inputs, raise_error=False)) + validation_result.merge_with(self._validate_io_names(self.outputs, raise_error=False)) return validation_result diff --git a/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_compute/_schedule.py b/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_compute/_schedule.py index 96aee073d1cf..e54107544f34 100644 --- a/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_compute/_schedule.py +++ b/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_compute/_schedule.py @@ -12,7 +12,7 @@ from azure.ai.ml._utils._experimental import experimental from azure.ai.ml.entities._mixins import RestTranslatableMixin -from .._schedule.trigger import CronTrigger, RecurrenceTrigger, TriggerBase +from .._schedule.trigger import CronTrigger, RecurrenceTrigger class ComputeStartStopSchedule(RestTranslatableMixin): @@ -102,6 +102,7 @@ def _from_rest_object(cls, obj: RestComputeStartStopSchedule) -> "ComputeStartSt return schedule +@experimental class ComputeSchedules(RestTranslatableMixin): """Compute schedules. diff --git a/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_job/command_job.py b/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_job/command_job.py index 0796eb5857a8..6f0a50b90b13 100644 --- a/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_job/command_job.py +++ b/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_job/command_job.py @@ -52,8 +52,7 @@ class CommandJob(Job, ParameterizedCommand, JobIOMixin): :type display_name: str :param properties: The asset property dictionary. :type properties: dict[str, str] - :param experiment_name: Name of the experiment the job will be created under, if None is provided, - default will be set to current directory name. + :param experiment_name: Name of the experiment the job will be created under, if None is provided, default will be set to current directory name. :type experiment_name: str :param services: Information on services associated with the job, readonly. :type services: dict[str, JobService] @@ -70,8 +69,7 @@ class CommandJob(Job, ParameterizedCommand, JobIOMixin): :param code: A local path or http:, https:, azureml: url pointing to a remote location. :type code: str :param distribution: Distribution configuration for distributed training. - :type distribution: Union[azure.ai.ml.PyTorchDistribution, azure.ai.ml.MpiDistribution, - azure.ai.ml.TensorFlowDistribution] + :type distribution: Union[azure.ai.ml.PyTorchDistribution, azure.ai.ml.MpiDistribution, azure.ai.ml.TensorFlowDistribution] :param environment: Environment that training job will run in. :type environment: Union[azure.ai.ml.entities.Environment, str] :param identity: Identity that training job will use while running on compute. @@ -113,7 +111,7 @@ def parameters(self) -> Dict[str, str]: return self._parameters def _to_dict(self) -> Dict: - return CommandJobSchema(context={BASE_PATH_CONTEXT_KEY: "./"}).dump(self) # pylint: disable=no-member + return CommandJobSchema(context={BASE_PATH_CONTEXT_KEY: "./"}).dump(self) def _to_rest_object(self) -> JobBase: self._validate() @@ -248,6 +246,7 @@ def _to_node(self, context: Dict = None, **kwargs): display_name=self.display_name, limits=self.limits, services=self.services, + properties=self.properties, ) def _validate(self) -> None: diff --git a/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_job/import_job.py b/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_job/import_job.py index ff76bad54b03..9bb906c14f5d 100644 --- a/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_job/import_job.py +++ b/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_job/import_job.py @@ -245,4 +245,5 @@ def _to_node(self, context: Dict = None, **kwargs): outputs={"output": self.output}, description=self.description, display_name=self.display_name, + properties=self.properties, ) diff --git a/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_job/parallel/parallel_job.py b/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_job/parallel/parallel_job.py index 627a90ff335f..53aa6f73e987 100644 --- a/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_job/parallel/parallel_job.py +++ b/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_job/parallel/parallel_job.py @@ -145,6 +145,7 @@ def _to_node(self, context: Dict = None, **kwargs): error_threshold=self.error_threshold, mini_batch_error_threshold=self.mini_batch_error_threshold, environment_variables=self.environment_variables, + properties=self.properties, ) def _validate(self) -> None: diff --git a/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_job/pipeline/_io.py b/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_job/pipeline/_io.py index 6c9bab2d6e31..cce41c8377d2 100644 --- a/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_job/pipeline/_io.py +++ b/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_job/pipeline/_io.py @@ -414,6 +414,9 @@ def _deepcopy(self): meta=self._meta, ) + def __hash__(self): + return id(self) + class PipelineInput(NodeInput, PipelineExpressionMixin): """Define one input of a Pipeline.""" diff --git a/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_job/pipeline/pipeline_job.py b/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_job/pipeline/pipeline_job.py index fa403aaacda8..7e3e9d7a3d49 100644 --- a/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_job/pipeline/pipeline_job.py +++ b/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_job/pipeline/pipeline_job.py @@ -379,6 +379,8 @@ def _check_private_preview_features(self): def _to_node(self, context: Dict = None, **kwargs): """Translate a command job to a pipeline node when load schema. + (Write a pipeline job as node in yaml is not supported presently.) + :param context: Context of command job YAML file. :param kwargs: Extra arguments. :return: Translated command component. @@ -394,6 +396,7 @@ def _to_node(self, context: Dict = None, **kwargs): description=self.description, tags=self.tags, display_name=self.display_name, + properties=self.properties, ) def _to_rest_object(self) -> JobBase: @@ -433,7 +436,7 @@ def _to_rest_object(self) -> JobBase: # TODO: Revisit this logic when multiple types of component jobs are supported rest_compute = self.compute # This will be resolved in job_operations _resolve_arm_id_or_upload_dependencies. - component_id = self.component if isinstance(self.component, str) else None + component_id = self.component if isinstance(self.component, str) else self.component.id pipeline_job = RestPipelineJob( compute_id=rest_compute, diff --git a/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_job/spark_job.py b/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_job/spark_job.py index 8f0161ac2ccc..26bcc8827c74 100644 --- a/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_job/spark_job.py +++ b/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_job/spark_job.py @@ -342,6 +342,7 @@ def _to_node(self, context: Dict = None, **kwargs): outputs=self.outputs, compute=self.compute, resources=self.resources, + properties=self.properties, ) def _validate(self) -> None: diff --git a/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_job/spark_job_entry.py b/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_job/spark_job_entry.py index 8c5f66bb5e55..70b1650dfd47 100644 --- a/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_job/spark_job_entry.py +++ b/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_job/spark_job_entry.py @@ -6,6 +6,7 @@ from typing import Optional, Union from azure.ai.ml._restclient.v2022_06_01_preview.models import SparkJobPythonEntry, SparkJobScalaEntry +from azure.ai.ml.entities._mixins import RestTranslatableMixin class SparkJobEntryType: @@ -13,7 +14,7 @@ class SparkJobEntryType: SPARK_JOB_CLASS_ENTRY = "SparkJobScalaEntry" -class SparkJobEntry: +class SparkJobEntry(RestTranslatableMixin): """Entry for spark job. :param entry_type: Can be python or scala entry. diff --git a/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_schedule/schedule.py b/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_schedule/schedule.py index 0c9549b8425a..fc516180137b 100644 --- a/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_schedule/schedule.py +++ b/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_schedule/schedule.py @@ -7,11 +7,11 @@ from pathlib import Path from typing import IO, AnyStr, Dict, Union -from azure.ai.ml._restclient.v2022_06_01_preview.models import JobBase as RestJobBase -from azure.ai.ml._restclient.v2022_06_01_preview.models import JobScheduleAction -from azure.ai.ml._restclient.v2022_06_01_preview.models import PipelineJob as RestPipelineJob -from azure.ai.ml._restclient.v2022_06_01_preview.models import Schedule as RestSchedule -from azure.ai.ml._restclient.v2022_06_01_preview.models import ScheduleProperties +from azure.ai.ml._restclient.v2022_10_01_preview.models import JobBase as RestJobBase +from azure.ai.ml._restclient.v2022_10_01_preview.models import JobScheduleAction +from azure.ai.ml._restclient.v2022_10_01_preview.models import PipelineJob as RestPipelineJob +from azure.ai.ml._restclient.v2022_10_01_preview.models import Schedule as RestSchedule +from azure.ai.ml._restclient.v2022_10_01_preview.models import ScheduleProperties from azure.ai.ml._schema.schedule.schedule import ScheduleSchema from azure.ai.ml._utils.utils import camel_to_snake, dump_yaml_to_file from azure.ai.ml.constants import JobType @@ -208,31 +208,29 @@ def _get_skip_fields_in_schema_validation(self) -> typing.List[str]: @classmethod def _from_rest_object(cls, obj: RestSchedule) -> "JobSchedule": properties = obj.properties - action = properties.action - create_job = None - if isinstance(action, JobScheduleAction): - if action.job_definition is None: - msg = "Job definition for schedule '{}' can not be None." - raise ScheduleException( - message=msg.format(obj.name), - no_personal_data_message=msg.format("[name]"), - target=ErrorTarget.JOB, - error_category=ErrorCategory.SYSTEM_ERROR, - ) - if camel_to_snake(action.job_definition.job_type) != JobType.PIPELINE: - msg = f"Unsupported job type {action.job_definition.job_type} for schedule '{{}}'." - raise ScheduleException( - message=msg.format(obj.name), - no_personal_data_message=msg.format("[name]"), - target=ErrorTarget.JOB, - # Classified as user_error as we may support other type afterwards. - error_category=ErrorCategory.USER_ERROR, - ) - # Wrap job definition with JobBase for Job._from_rest_object call. - create_job = RestJobBase(properties=action.job_definition) - # id is a readonly field so set it after init. - create_job.id = action.job_definition.source_job_id - create_job = PipelineJob._load_from_rest(create_job) + action: JobScheduleAction = properties.action + if action.job_definition is None: + msg = "Job definition for schedule '{}' can not be None." + raise ScheduleException( + message=msg.format(obj.name), + no_personal_data_message=msg.format("[name]"), + target=ErrorTarget.JOB, + error_category=ErrorCategory.SYSTEM_ERROR, + ) + if camel_to_snake(action.job_definition.job_type) != JobType.PIPELINE: + msg = f"Unsupported job type {action.job_definition.job_type} for schedule '{{}}'." + raise ScheduleException( + message=msg.format(obj.name), + no_personal_data_message=msg.format("[name]"), + target=ErrorTarget.JOB, + # Classified as user_error as we may support other type afterwards. + error_category=ErrorCategory.USER_ERROR, + ) + # Wrap job definition with JobBase for Job._from_rest_object call. + create_job = RestJobBase(properties=action.job_definition) + # id is a readonly field so set it after init. + create_job.id = action.job_definition.source_job_id + create_job = PipelineJob._load_from_rest(create_job) return cls( trigger=TriggerBase._from_rest_object(properties.trigger), create_job=create_job, diff --git a/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_schedule/trigger.py b/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_schedule/trigger.py index a8ea6782a894..c1e340123cc2 100644 --- a/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_schedule/trigger.py +++ b/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_schedule/trigger.py @@ -7,12 +7,12 @@ from datetime import datetime from typing import List, Union -from azure.ai.ml._restclient.v2022_01_01_preview.models import Cron, Recurrence -from azure.ai.ml._restclient.v2022_06_01_preview.models import CronTrigger as RestCronTrigger -from azure.ai.ml._restclient.v2022_06_01_preview.models import RecurrenceSchedule as RestRecurrencePattern -from azure.ai.ml._restclient.v2022_06_01_preview.models import RecurrenceTrigger as RestRecurrenceTrigger -from azure.ai.ml._restclient.v2022_06_01_preview.models import TriggerBase as RestTriggerBase -from azure.ai.ml._restclient.v2022_06_01_preview.models import TriggerType as RestTriggerType +from azure.ai.ml._restclient.v2022_01_01_preview.models import Cron, Recurrence, RecurrenceSchedule +from azure.ai.ml._restclient.v2022_10_01_preview.models import CronTrigger as RestCronTrigger +from azure.ai.ml._restclient.v2022_10_01_preview.models import RecurrenceSchedule as RestRecurrencePattern +from azure.ai.ml._restclient.v2022_10_01_preview.models import RecurrenceTrigger as RestRecurrenceTrigger +from azure.ai.ml._restclient.v2022_10_01_preview.models import TriggerBase as RestTriggerBase +from azure.ai.ml._restclient.v2022_10_01_preview.models import TriggerType as RestTriggerType from azure.ai.ml._utils.utils import camel_to_snake, snake_to_camel from azure.ai.ml.constants import TimeZone from azure.ai.ml.entities._mixins import RestTranslatableMixin @@ -51,9 +51,9 @@ def __init__( @classmethod def _from_rest_object(cls, obj: RestTriggerBase) -> Union["CronTrigger", "RecurrenceTrigger"]: - if isinstance(obj, RestRecurrenceTrigger): + if obj.trigger_type == RestTriggerType.RECURRENCE: return RecurrenceTrigger._from_rest_object(obj) - if isinstance(obj, RestCronTrigger): + if obj.trigger_type == RestTriggerType.CRON: return CronTrigger._from_rest_object(obj) @@ -67,6 +67,8 @@ class RecurrencePattern(RestTranslatableMixin): :param week_days: List of weekdays for recurrence schedule pattern. Possible values include: "monday", "tuesday", "wednesday", "thursday", "friday", "saturday", "sunday" :type week_days: Union[str, List[str]] + :param month_days: List of month days for recurrence schedule pattern. + :type month_days: Union[int, List[int]] """ def __init__( @@ -75,16 +77,32 @@ def __init__( hours: Union[int, List[int]], minutes: Union[int, List[int]], week_days: Union[str, List[str]] = None, + month_days: Union[int, List[int]] = None, ): self.hours = hours self.minutes = minutes self.week_days = week_days + self.month_days = month_days def _to_rest_object(self) -> RestRecurrencePattern: return RestRecurrencePattern( hours=[self.hours] if not isinstance(self.hours, list) else self.hours, minutes=[self.minutes] if not isinstance(self.minutes, list) else self.minutes, week_days=[self.week_days] if self.week_days and not isinstance(self.week_days, list) else self.week_days, + month_days=[self.month_days] + if self.month_days and not isinstance(self.month_days, list) + else self.month_days, + ) + + def _to_rest_compute_pattern_object(self) -> RecurrenceSchedule: + # This function is added because we can't make compute trigger to use same class + # with schedule from service side. + if self.month_days: + module_logger.warning("'month_days' is ignored for not supported on compute recurrence schedule.") + return RecurrenceSchedule( + hours=[self.hours] if not isinstance(self.hours, list) else self.hours, + minutes=[self.minutes] if not isinstance(self.minutes, list) else self.minutes, + week_days=[self.week_days] if self.week_days and not isinstance(self.week_days, list) else self.week_days, ) @classmethod @@ -93,6 +111,7 @@ def _from_rest_object(cls, obj: RestRecurrencePattern) -> "RecurrencePattern": hours=obj.hours, minutes=obj.minutes, week_days=obj.week_days, + month_days=obj.month_days if hasattr(obj, "month_days") else None, ) @@ -128,7 +147,7 @@ def __init__( ) self.expression = expression - def _to_rest_object(self) -> RestCronTrigger: # v2022_06_01_preview.models.CronTrigger + def _to_rest_object(self) -> RestCronTrigger: # v2022_10_01_preview.models.CronTrigger return RestCronTrigger( trigger_type=self.type, expression=self.expression, @@ -198,7 +217,7 @@ def __init__( self.frequency = frequency self.interval = interval - def _to_rest_object(self) -> RestRecurrenceTrigger: # v2022_06_01_preview.models.RecurrenceTrigger + def _to_rest_object(self) -> RestRecurrenceTrigger: # v2022_10_01_preview.models.RecurrenceTrigger return RestRecurrenceTrigger( frequency=snake_to_camel(self.frequency), interval=self.interval, @@ -216,7 +235,7 @@ def _to_rest_compute_recurrence_object(self) -> Recurrence: # v2022_01_01_previ return Recurrence( frequency=snake_to_camel(self.frequency), interval=self.interval, - schedule=self.schedule, + schedule=self.schedule._to_rest_compute_pattern_object(), start_time=self.start_time, time_zone=self.time_zone, ) diff --git a/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_util.py b/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_util.py index 65ffdbfd9d7d..c2389381a2d1 100644 --- a/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_util.py +++ b/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_util.py @@ -1,7 +1,6 @@ # --------------------------------------------------------- # Copyright (c) Microsoft Corporation. All rights reserved. # --------------------------------------------------------- -import copy import hashlib import json import os @@ -300,24 +299,74 @@ def _general_copy(src, dst): shutil.copy2(src, dst) -def get_rest_dict(target_obj, clear_empty_value=False): - """Convert object to dict and convert OrderedDict to dict.""" - if isinstance(target_obj, RestTranslatableMixin): - target_obj = target_obj._to_rest_object() +def get_rest_dict_for_node_attrs(target_obj, clear_empty_value=False): + """Convert object to dict and convert OrderedDict to dict. + Allow data binding expression as value, disregarding of the type defined in rest object. + """ if target_obj is None: return None + if isinstance(target_obj, dict): + result = {} + for key, value in target_obj.items(): + if value is None: + continue + if key in ["additional_properties"]: + continue + result[key] = get_rest_dict_for_node_attrs(value, clear_empty_value) + return result + if isinstance(target_obj, list): + result = [] + for item in target_obj: + result.append(get_rest_dict_for_node_attrs(item, clear_empty_value)) + return result + if isinstance(target_obj, RestTranslatableMixin): + # note that the rest object may be invalid as data binding expression may not fit + # rest object structure + return get_rest_dict_for_node_attrs(target_obj._to_rest_object(), clear_empty_value=clear_empty_value) + if isinstance(target_obj, msrest.serialization.Model): - result = target_obj.as_dict() - else: - result = copy.deepcopy(target_obj.__dict__) - result = convert_ordered_dict_to_dict(result) - to_del = ["additional_properties"] - if clear_empty_value: - to_del.extend(filter(lambda x: result.get(x) is None, result.keys())) - for key in to_del: - if key in result: - del result[key] - return result + # can't use result.as_dict() as data binding expression may not fit rest object structure + return get_rest_dict_for_node_attrs(target_obj.__dict__, clear_empty_value=clear_empty_value) + + if not isinstance(target_obj, (str, int, float, bool)): + raise ValueError("Unexpected type {}".format(type(target_obj))) + + return target_obj + + +class _DummyRestModelFromDict(msrest.serialization.Model): + """A dummy rest model that can be initialized from dict, return base_dict[attr_name] + for getattr(self, attr_name) when attr_name is a public attrs; return None when trying to get + a non-existent public attribute. + """ + + def __init__(self, rest_dict): + self._rest_dict = rest_dict or {} + super().__init__() + + def __getattribute__(self, item): + if not item.startswith("_"): + return self._rest_dict.get(item, None) + return super().__getattribute__(item) + + +def from_rest_dict_to_dummy_rest_object(rest_dict): + """Create a dummy rest object based on a rest dict, which is a primitive dict containing + attributes in a rest object. + For example, for a rest object class like: + class A(msrest.serialization.Model): + def __init__(self, a, b): + self.a = a + self.b = b + rest_object = A(1, None) + rest_dict = {"a": 1} + regenerated_rest_object = from_rest_dict_to_fake_rest_object(rest_dict) + assert regenerated_rest_object.a == 1 + assert regenerated_rest_object.b is None + """ + if rest_dict is None or isinstance(rest_dict, dict): + return _DummyRestModelFromDict(rest_dict) + raise ValueError("Unexpected type {}".format(type(rest_dict))) def extract_label(input_str: str): diff --git a/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_validation.py b/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_validation.py index 68a6ddea58f6..512bea5f38f5 100644 --- a/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_validation.py +++ b/sdk/ml/azure-ai-ml/azure/ai/ml/entities/_validation.py @@ -451,7 +451,10 @@ def resolve(self, yaml_path, source_path=None): def _resolve_recursively(self, attrs: List[str], source_path: Path): with open(source_path, encoding="utf-8") as f: - loaded_yaml = strictyaml.load(f.read()) + try: + loaded_yaml = strictyaml.load(f.read()) + except strictyaml.exceptions.StrictYAMLError as e: + return "can't resolve location:\n{}".format(e).split("\n"), None while attrs: attr = attrs[-1] diff --git a/sdk/ml/azure-ai-ml/azure/ai/ml/exceptions.py b/sdk/ml/azure-ai-ml/azure/ai/ml/exceptions.py index 2151afd3ab5d..ca55163a10da 100644 --- a/sdk/ml/azure-ai-ml/azure/ai/ml/exceptions.py +++ b/sdk/ml/azure-ai-ml/azure/ai/ml/exceptions.py @@ -36,6 +36,7 @@ class ValidationErrorType(Enum): CANNOT_PARSE = "CANNOT PARSE" RESOURCE_NOT_FOUND = "RESOURCE NOT FOUND" GENERIC = "GENERIC" + MISSING_VALUE = "MISSING VALUE" class ErrorCategory: diff --git a/sdk/ml/azure-ai-ml/azure/ai/ml/operations/_job_operations.py b/sdk/ml/azure-ai-ml/azure/ai/ml/operations/_job_operations.py index 930cc0c08cc1..5368bfe23b7d 100644 --- a/sdk/ml/azure-ai-ml/azure/ai/ml/operations/_job_operations.py +++ b/sdk/ml/azure-ai-ml/azure/ai/ml/operations/_job_operations.py @@ -139,6 +139,7 @@ def __init__( super(JobOperations, self).__init__(operation_scope, operation_config) ops_logger.update_info(kwargs) self._operation_2022_06_preview = service_client_06_2022_preview.jobs + self._service_client = service_client_06_2022_preview self._all_operations = all_operations self._stream_logs_until_completion = stream_logs_until_completion # Dataplane service clients are lazily created as they are needed @@ -190,7 +191,9 @@ def _dataset_dataplane_operations(self) -> DatasetDataplaneOperations: self._credential, base_url=self._api_url, **self._service_client_kwargs ) self._dataset_dataplane_operations_client = DatasetDataplaneOperations( - self._operation_scope, self._operation_config, service_client_dataset_dataplane + self._operation_scope, + self._operation_config, + service_client_dataset_dataplane, ) return self._dataset_dataplane_operations_client @@ -201,7 +204,9 @@ def _model_dataplane_operations(self) -> ModelDataplaneOperations: self._credential, base_url=self._api_url, **self._service_client_kwargs ) self._model_dataplane_operations_client = ModelDataplaneOperations( - self._operation_scope, self._operation_config, service_client_model_dataplane + self._operation_scope, + self._operation_config, + service_client_model_dataplane, ) return self._model_dataplane_operations_client diff --git a/sdk/ml/azure-ai-ml/azure/ai/ml/operations/_schedule_operations.py b/sdk/ml/azure-ai-ml/azure/ai/ml/operations/_schedule_operations.py index d7ceffa20067..db5beed9cd7d 100644 --- a/sdk/ml/azure-ai-ml/azure/ai/ml/operations/_schedule_operations.py +++ b/sdk/ml/azure-ai-ml/azure/ai/ml/operations/_schedule_operations.py @@ -4,7 +4,7 @@ # pylint: disable=protected-access from typing import Any, Iterable -from azure.ai.ml._restclient.v2022_06_01_preview import AzureMachineLearningWorkspaces as ServiceClient062022Preview +from azure.ai.ml._restclient.v2022_10_01_preview import AzureMachineLearningWorkspaces as ServiceClient102022Preview from azure.ai.ml._scope_dependent_operations import ( OperationConfig, OperationsContainer, @@ -18,6 +18,7 @@ from azure.core.polling import LROPoller from azure.core.tracing.decorator import distributed_trace +from .._restclient.v2022_10_01_preview.models import ListViewType, ScheduleListViewType from .._utils._azureml_polling import AzureMLPolling from ..constants._common import AzureMLResourceType, LROConfigurations from . import JobOperations @@ -41,14 +42,14 @@ def __init__( self, operation_scope: OperationScope, operation_config: OperationConfig, - service_client_06_2022_preview: ServiceClient062022Preview, + service_client_10_2022_preview: ServiceClient102022Preview, all_operations: OperationsContainer, credential: TokenCredential, **kwargs: Any, ): super(ScheduleOperations, self).__init__(operation_scope, operation_config) ops_logger.update_info(kwargs) - self.service_client_06_2022_preview = service_client_06_2022_preview.schedules + self.service_client = service_client_10_2022_preview.schedules self._all_operations = all_operations self._stream_logs_until_completion = stream_logs_until_completion # Dataplane service clients are lazily created as they are needed @@ -70,9 +71,15 @@ def _job_operations(self) -> JobOperations: @distributed_trace @monitor_with_activity(logger, "Schedule.List", ActivityType.PUBLICAPI) - def list(self) -> Iterable[JobSchedule]: + def list( + self, + *, + list_view_type: ScheduleListViewType = ScheduleListViewType.ENABLED_ONLY, + ) -> Iterable[JobSchedule]: """List schedules in specified workspace. + :param list_view_type: View type for including/excluding (for example) archived schedules. Default: ENABLED_ONLY. + :type list_view_type: Optional[ScheduleListViewType] :return: An iterator to list JobSchedule. :rtype: Iterable[JobSchedule] :raises: ~azure.core.exceptions.HttpResponseError @@ -87,9 +94,10 @@ def safe_from_rest_object(objs): print(f"Translate {obj.name} to JobSchedule failed with: {e}") return result - return self.service_client_06_2022_preview.list( + return self.service_client.list( resource_group_name=self._operation_scope.resource_group_name, workspace_name=self._workspace_name, + # list_view_type=list_view_type, cls=safe_from_rest_object, **self._kwargs, ) @@ -118,7 +126,7 @@ def begin_delete( :type name: str :raises: ~azure.core.exceptions.HttpResponseError """ - poller = self.service_client_06_2022_preview.begin_delete( + poller = self.service_client.begin_delete( resource_group_name=self._operation_scope.resource_group_name, workspace_name=self._workspace_name, name=name, @@ -141,7 +149,7 @@ def get( :rtype: JobSchedule :raises: ~azure.core.exceptions.HttpResponseError """ - return self.service_client_06_2022_preview.get( + return self.service_client.get( resource_group_name=self._operation_scope.resource_group_name, workspace_name=self._workspace_name, name=name, @@ -170,7 +178,7 @@ def begin_create_or_update( self._job_operations._resolve_arm_id_or_upload_dependencies(schedule.create_job) # Create schedule schedule_data = schedule._to_rest_object() - poller = self.service_client_06_2022_preview.begin_create_or_update( + poller = self.service_client.begin_create_or_update( resource_group_name=self._operation_scope.resource_group_name, workspace_name=self._workspace_name, name=schedule.name, diff --git a/sdk/ml/azure-ai-ml/tests/component/e2etests/test_component.py b/sdk/ml/azure-ai-ml/tests/component/e2etests/test_component.py index 6fbc8356f6cd..f2d4592c724c 100644 --- a/sdk/ml/azure-ai-ml/tests/component/e2etests/test_component.py +++ b/sdk/ml/azure-ai-ml/tests/component/e2etests/test_component.py @@ -833,9 +833,11 @@ def test_helloworld_nested_pipeline_component(self, client: MLClient, randstr: C } assert component_dict == expected_dict - @pytest.mark.skip("Skip for Bug https://msdata.visualstudio.com/Vienna/_workitems/edit/1969753") - def test_create_pipeline_component_from_job(self, client: MLClient, randstr: Callable[[], str]): - params_override = [{"name": randstr()}] + @pytest.mark.skip( + "Skip for Bug https://msdata.visualstudio.com/Vienna/_workitems/edit/1969753 not release to canary yet." + ) + def test_create_pipeline_component_from_job(self, client: MLClient, randstr: Callable[[str], str]): + params_override = [{"name": randstr("component_name_0")}] pipeline_job = load_job( "./tests/test_configs/dsl_pipeline/pipeline_with_pipeline_component/pipeline.yml", params_override=params_override, @@ -847,6 +849,7 @@ def test_create_pipeline_component_from_job(self, client: MLClient, randstr: Cal assert cancel_poller.result() is None except Exception: pass - component = PipelineComponent(name=randstr(), source_job_id=job.id) + name = randstr("component_name_1") + component = PipelineComponent(name=name, source_job_id=job.id) rest_component = client.components.create_or_update(component) - assert rest_component + assert rest_component.name == name diff --git a/sdk/ml/azure-ai-ml/tests/component/unittests/test_command_component_entity.py b/sdk/ml/azure-ai-ml/tests/component/unittests/test_command_component_entity.py index e0c0f2731e94..cf1dc60a18f0 100644 --- a/sdk/ml/azure-ai-ml/tests/component/unittests/test_command_component_entity.py +++ b/sdk/ml/azure-ai-ml/tests/component/unittests/test_command_component_entity.py @@ -190,6 +190,7 @@ def test_command_component_version_as_a_function(self): "distribution": None, "environment_variables": {}, "inputs": {}, + "properties": {}, "limits": None, "name": None, "outputs": {}, @@ -236,6 +237,7 @@ def test_command_component_version_as_a_function_with_inputs(self): "outputs": {}, "resources": None, "tags": {}, + "properties": {}, "type": "command", "_source": "YAML.COMPONENT", } @@ -351,9 +353,9 @@ def test_sweep_help_function(self): def test_invalid_component_inputs(self) -> None: yaml_path = "./tests/test_configs/components/invalid/helloworld_component_conflict_input_names.yml" - # directly load illegal YAML component will get validation exception to prevent user init entity + component = load_component(yaml_path) with pytest.raises(ValidationException) as e: - load_component(yaml_path) + component._validate(raise_error=True) assert "Invalid component input names 'COMPONENT_IN_NUMBER' and 'component_in_number'" in str(e.value) component = load_component( yaml_path, diff --git a/sdk/ml/azure-ai-ml/tests/component/unittests/test_component_validate.py b/sdk/ml/azure-ai-ml/tests/component/unittests/test_component_validate.py index 33c7aaa5532f..49dd66c0089d 100644 --- a/sdk/ml/azure-ai-ml/tests/component/unittests/test_component_validate.py +++ b/sdk/ml/azure-ai-ml/tests/component/unittests/test_component_validate.py @@ -52,8 +52,9 @@ def test_component_input_name_validate(self): str(components_dir / "invalid/helloworld_component_with_start_number_input_names.yml"), ] for yaml_file in yaml_files: + component = load_component(yaml_file) with pytest.raises(ValidationException, match="is not a valid parameter name"): - load_component(yaml_file) + component() def test_component_output_name_validate(self): yaml_files = [ @@ -64,8 +65,9 @@ def test_component_output_name_validate(self): str(components_dir / "invalid/helloworld_component_with_start_number_output_names.yml"), ] for yaml_file in yaml_files: + component = load_component(yaml_file) with pytest.raises(ValidationException, match="is not a valid parameter name"): - load_component(yaml_file) + component() @pytest.mark.parametrize( "expected_location,asset_object", diff --git a/sdk/ml/azure-ai-ml/tests/component/unittests/test_parallel_component_entity.py b/sdk/ml/azure-ai-ml/tests/component/unittests/test_parallel_component_entity.py index 7aa50ff794e8..9b03cf450296 100644 --- a/sdk/ml/azure-ai-ml/tests/component/unittests/test_parallel_component_entity.py +++ b/sdk/ml/azure-ai-ml/tests/component/unittests/test_parallel_component_entity.py @@ -93,6 +93,7 @@ def test_parallel_component_version_as_a_function_with_inputs(self): "name": None, "outputs": {}, "tags": {}, + "properties": {}, "input_data": "${{inputs.component_in_path}}", "type": "parallel", "error_threshold": None, diff --git a/sdk/ml/azure-ai-ml/tests/component/unittests/test_pipeline_component_entity.py b/sdk/ml/azure-ai-ml/tests/component/unittests/test_pipeline_component_entity.py index 2404d702f9cd..8af00aca2713 100644 --- a/sdk/ml/azure-ai-ml/tests/component/unittests/test_pipeline_component_entity.py +++ b/sdk/ml/azure-ai-ml/tests/component/unittests/test_pipeline_component_entity.py @@ -42,6 +42,7 @@ def test_inline_helloworld_pipeline_component(self) -> None: "type": "pipeline", "jobs": { "component_a_job": { + "properties": {}, "component": { "command": 'echo "hello" && echo ' '"world" > ' "${{outputs.world_output}}/world.txt", "environment": "azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu@latest", @@ -84,6 +85,7 @@ def test_helloworld_pipeline_component(self) -> None: "is_deterministic": True, "jobs": { "component_a_job": { + "properties": {}, "component": { "$schema": "https://azuremlschemas.azureedge.net/development/commandComponent.schema.json", "command": "echo Hello World & " @@ -211,6 +213,7 @@ def test_helloworld_nested_pipeline_component(self) -> None: "component_in_path": {"path": "${{parent.inputs.component_in_path}}"}, }, "outputs": {"component_out_path": "${{parent.outputs.output_path}}"}, + "properties": {}, "type": "command", } }, @@ -221,6 +224,7 @@ def test_helloworld_nested_pipeline_component(self) -> None: "type": "pipeline", "version": "1", }, + "properties": {}, "inputs": {"component_in_path": {"path": "${{parent.inputs.component_in_path}}"}}, "outputs": {}, "type": "pipeline", @@ -249,6 +253,7 @@ def test_pipeline_job_to_component(self): "is_deterministic": True, "jobs": { "hello_world_component": { + "properties": {}, "component": "azureml:microsoftsamplesCommandComponentBasic_second:1", "compute": "azureml:cpu-cluster", "environment_variables": {}, @@ -260,6 +265,7 @@ def test_pipeline_job_to_component(self): "type": "command", }, "hello_world_component_2": { + "properties": {}, "component": "azureml:microsoftsamplesCommandComponentBasic_second:1", "compute": "azureml:cpu-cluster", "environment_variables": {}, diff --git a/sdk/ml/azure-ai-ml/tests/component/unittests/test_spark_component_entity.py b/sdk/ml/azure-ai-ml/tests/component/unittests/test_spark_component_entity.py index a272374127f0..1909ddb026b1 100644 --- a/sdk/ml/azure-ai-ml/tests/component/unittests/test_spark_component_entity.py +++ b/sdk/ml/azure-ai-ml/tests/component/unittests/test_spark_component_entity.py @@ -75,6 +75,7 @@ def test_spark_component_entity(self): def test_spark_component_version_as_a_function_with_inputs(self): expected_rest_component = { "type": "spark", + "properties": {}, "resources": {"instance_type": "Standard_E8S_V3", "runtime_version": "3.1.0"}, "entry": {"file": "add_greeting_column.py", "spark_job_entry_type": "SparkJobPythonEntry"}, "py_files": ["utils.zip"], diff --git a/sdk/ml/azure-ai-ml/tests/dsl/e2etests/test_dsl_pipeline.py b/sdk/ml/azure-ai-ml/tests/dsl/e2etests/test_dsl_pipeline.py index f8b598c075fb..bf8b7710d10b 100644 --- a/sdk/ml/azure-ai-ml/tests/dsl/e2etests/test_dsl_pipeline.py +++ b/sdk/ml/azure-ai-ml/tests/dsl/e2etests/test_dsl_pipeline.py @@ -51,6 +51,7 @@ "jobs.*.componentId", "inputs.*.uri", "jobs.*._source", + "jobs.*.properties", "settings._source", "source_job_id", ] @@ -198,7 +199,7 @@ def test_component_load_from_remote(self, client: MLClient, hello_world_componen component_job_dict = component_node._to_rest_object() assert is_ARM_id_for_resource(component_job_dict["componentId"]) - omit_fields = ["componentId", "_source"] + omit_fields = ["componentId", "_source", "properties"] component_job_dict = pydash.omit(component_job_dict, *omit_fields) assert component_job_dict == { "computeId": None, @@ -1488,7 +1489,7 @@ def pipeline(job_in_number, job_in_other_number, job_in_path): job = client.jobs.create_or_update(pipeline, force_rerun=True) assert job.settings.force_rerun is True - def test_parallel_components_with_tabular_input(self, client: MLClient, randstr: Callable[[str], str]) -> None: + def test_parallel_components_with_tabular_input(self, client: MLClient) -> None: components_dir = tests_root_dir / "test_configs/dsl_pipeline/parallel_component_with_tabular_input" batch_inference = load_component(source=str(components_dir / "tabular_input_e2e.yml")) @@ -1524,7 +1525,7 @@ def parallel_in_pipeline(job_data_path, score_model): assert_job_input_output_types(pipeline_job) assert pipeline_job.settings.default_compute == "cpu-cluster" - def test_parallel_components_with_file_input(self, client: MLClient, randstr: Callable[[str], str]) -> None: + def test_parallel_components_with_file_input(self, client: MLClient) -> None: components_dir = tests_root_dir / "test_configs/dsl_pipeline/parallel_component_with_file_input" batch_inference = load_component(source=str(components_dir / "score.yml")) diff --git a/sdk/ml/azure-ai-ml/tests/dsl/unittests/test_command_builder.py b/sdk/ml/azure-ai-ml/tests/dsl/unittests/test_command_builder.py index 4fe2ed1a2b65..4a307b405c6b 100644 --- a/sdk/ml/azure-ai-ml/tests/dsl/unittests/test_command_builder.py +++ b/sdk/ml/azure-ai-ml/tests/dsl/unittests/test_command_builder.py @@ -18,7 +18,7 @@ from azure.ai.ml._restclient.v2022_10_01_preview.models import JobService as RestJobService from azure.ai.ml.entities import CommandJobLimits, JobResourceConfiguration from azure.ai.ml.entities._builders import Command -from azure.ai.ml.entities._job.job_service import JobService +from azure.ai.ml.entities._job.job_service import JobService as JobService from azure.ai.ml.entities._job.pipeline._component_translatable import ComponentTranslatableMixin from azure.ai.ml.exceptions import JobException, ValidationException @@ -122,7 +122,9 @@ def test_command_function(self, test_command): } actual_command = pydash.omit( test_command._to_rest_object(), - ["componentId", "source_job_id"], + "componentId", + "source_job_id", + "properties", ) assert actual_command == expected_command @@ -250,18 +252,12 @@ def test_command_function_set_inputs(self, test_command): "tags": {}, "type": "command", } - actual_dict = pydash.omit( - node1_dict, - "componentId", - ) + actual_dict = pydash.omit(node1_dict, "componentId", "properties") assert actual_dict == expected_dict def test_command_function_default_values(self, test_command): node1 = test_command() - node1_dict = pydash.omit( - node1._to_rest_object(), - "componentId", - ) + node1_dict = pydash.omit(node1._to_rest_object(), "componentId", "properties") expected_dict = { "_source": "BUILDER", "type": "command", @@ -294,10 +290,7 @@ def test_command_function_default_values(self, test_command): node2.compute = "new-cluster" node2.limits = CommandJobLimits(timeout=10) node3 = node2() - node3_dict = pydash.omit( - node3._to_rest_object(), - "componentId", - ) + node3_dict = pydash.omit(node3._to_rest_object(), "componentId", "properties") expected_dict = { "_source": "BUILDER", "type": "command", @@ -371,6 +364,7 @@ def test_command_with_artifact_inputs(self, command_with_artifact_inputs): "resources": None, "name": None, "tags": {}, + "properties": {}, } assert node1_dict == expected_dict @@ -580,7 +574,7 @@ def test_command_unprovided_inputs_outputs(self, test_command_params): actual_node = pydash.omit( node1._to_rest_object(), - "componentId", + *["componentId", "properties"], ) expected_node = { "_source": "BUILDER", @@ -872,8 +866,7 @@ def test_command_services(self) -> None: assert isinstance(service, JobService) node_rest_obj = node._to_rest_object() - for name, service in node_rest_obj["services"].items(): - assert isinstance(service, RestJobService) + assert node_rest_obj["services"] == services # test invalid services invalid_services_0 = "jupyter" diff --git a/sdk/ml/azure-ai-ml/tests/dsl/unittests/test_component_func.py b/sdk/ml/azure-ai-ml/tests/dsl/unittests/test_component_func.py index 76eb0267fa4e..ce37c45e2e12 100644 --- a/sdk/ml/azure-ai-ml/tests/dsl/unittests/test_component_func.py +++ b/sdk/ml/azure-ai-ml/tests/dsl/unittests/test_component_func.py @@ -253,6 +253,7 @@ def test_component_static_dynamic_fields(self): "outputs": {}, "resources": {"instance_count": 2, "properties": {}}, "tags": {}, + "properties": {}, } def test_component_func_dict_distribution(self): diff --git a/sdk/ml/azure-ai-ml/tests/dsl/unittests/test_dsl_pipeline.py b/sdk/ml/azure-ai-ml/tests/dsl/unittests/test_dsl_pipeline.py index 433a0942d1a8..51f8d69bc91c 100644 --- a/sdk/ml/azure-ai-ml/tests/dsl/unittests/test_dsl_pipeline.py +++ b/sdk/ml/azure-ai-ml/tests/dsl/unittests/test_dsl_pipeline.py @@ -3,7 +3,6 @@ from functools import partial from io import StringIO from pathlib import Path -from typing import Callable from unittest import mock from unittest.mock import patch @@ -14,7 +13,6 @@ from azure.ai.ml import Input, MLClient, MpiDistribution, Output, command, dsl, load_component, load_job, spark from azure.ai.ml._restclient.v2022_05_01.models import ComponentContainerData, ComponentContainerDetails, SystemData -from azure.ai.ml._restclient.v2022_10_01_preview.models import JobService as RestJobService from azure.ai.ml.automl import classification, regression from azure.ai.ml.constants._common import ( AZUREML_PRIVATE_FEATURES_ENV_VAR, @@ -402,7 +400,9 @@ def spark_pipeline_from_yaml(iris_data): assert pydash.omit(spark_node_dict, *omit_fields) == pydash.omit(spark_node_dict_from_rest, *omit_fields) omit_fields = [ "jobs.add_greeting_column.componentId", + "jobs.add_greeting_column.properties", "jobs.count_by_row.componentId", + "jobs.count_by_row.properties", ] actual_job = pydash.omit(dsl_pipeline._to_rest_object().properties.as_dict(), *omit_fields) assert actual_job == { @@ -1150,13 +1150,13 @@ def mock_add_to_builder(component): "tags": {}, "type": "command", } - omit_fields = "componentId" - assert pydash.omit(component_from_dsl._to_rest_object(), omit_fields) == expected_component - assert pydash.omit(component_from_sdk._to_rest_object(), omit_fields) == expected_component + omit_fields = ["componentId", "properties"] + assert pydash.omit(component_from_dsl._to_rest_object(), *omit_fields) == expected_component + assert pydash.omit(component_from_sdk._to_rest_object(), *omit_fields) == expected_component expected_component.update({"_source": "REMOTE.WORKSPACE.COMPONENT"}) - assert pydash.omit(component_from_rest._to_rest_object(), omit_fields) == expected_component + assert pydash.omit(component_from_rest._to_rest_object(), *omit_fields) == expected_component expected_component.update({"_source": "YAML.JOB"}) - assert pydash.omit(component_from_yaml._to_rest_object(), omit_fields) == expected_component + assert pydash.omit(component_from_yaml._to_rest_object(), *omit_fields) == expected_component def test_pipeline_with_command_function(self): # component func @@ -1213,6 +1213,7 @@ def pipeline(number, path): omit_fields = [ "name", "properties.jobs.*.componentId", + "properties.jobs.*.properties", "properties.settings._source", ] @@ -1374,6 +1375,7 @@ def pipeline(iris_data, sample_rate): omit_fields = [ "properties.jobs.*.componentId", "properties.jobs.*.code", + "properties.jobs.*.properties", "properties.settings._source", ] @@ -1567,6 +1569,7 @@ def pipeline(iris_data, sample_rate): omit_fields = [ "properties.jobs.*.componentId", "properties.jobs.*.code", + "properties.jobs.*.properties", "properties.settings._source", ] @@ -1794,6 +1797,7 @@ def pipeline(iris_data, sample_rate): ) omit_fields = [ "properties.jobs.spark_node.componentId", + "properties.jobs.spark_node.properties", ] pipeline_job1 = pydash.omit(pipeline_job1, *omit_fields) assert pipeline_job1 == { @@ -1899,6 +1903,7 @@ def pipeline(job_data_path): omit_fields = [ "name", "properties.jobs.parallel_node.componentId", + "properties.jobs.parallel_node.properties", ] pipeline1 = pipeline(data) @@ -1907,6 +1912,7 @@ def pipeline(job_data_path): pipeline_regenerated_from_rest = PipelineJob._load_from_rest(pipeline_rest_obj) omit_field = [ "jobs.parallel_node.task", + "jobs.*.properties", "outputs", # TODO: figure out why outputs can't be regenerated correctly ] @@ -2014,6 +2020,8 @@ def pipeline(path): "name", "properties.jobs.node1.componentId", "properties.jobs.node2.componentId", + "properties.jobs.node1.properties", + "properties.jobs.node2.properties", ] data = Input(type=AssetTypes.MLTABLE, path="/a/path/on/ds", mode="eval_mount") @@ -2140,6 +2148,8 @@ def pipeline(number, path): "name", "properties.jobs.node1.componentId", "properties.jobs.node2.componentId", + "properties.jobs.node1.properties", + "properties.jobs.node2.properties", ] data = Input(type=AssetTypes.URI_FOLDER, path="/a/path/on/ds") @@ -2443,8 +2453,11 @@ def parallel_in_pipeline(job_data_path): pipeline.outputs.job_out_data.mode = "upload" omit_fields = [ "jobs.batch_inference_node1.componentId", - "jobs.batch_inference_node2.componentId", + "jobs.batch_inference_node1.properties", "jobs.convert_data_node.componentId", + "jobs.convert_data_node.properties", + "jobs.batch_inference_node2.componentId", + "jobs.batch_inference_node2.properties", ] actual_job = pydash.omit(pipeline._to_rest_object().properties.as_dict(), *omit_fields) assert actual_job == { @@ -2662,7 +2675,10 @@ def train_with_automl_in_pipeline(component_in_number, component_in_path, target pipeline_dict1 = pipeline1._to_rest_object().as_dict() pipeline_dict1 = pydash.omit( pipeline_dict1["properties"], - ["jobs.node1.componentId", "jobs.node2.display_name", "jobs.node2.properties"], + "jobs.node1.componentId", + "jobs.node2.display_name", + "jobs.node1.properties", + "jobs.node2.properties", ) assert pipeline_dict1 == { "compute_id": "cpu-cluster", @@ -2922,6 +2938,7 @@ def test_dsl_pipeline_without_setting_binding_node(self) -> None: "properties.inputs.training_input.uri", "properties.jobs.train_with_sample_data.componentId", "properties.jobs.train_with_sample_data._source", + "properties.jobs.train_with_sample_data.properties", "properties.settings._source", ] dsl_pipeline_job_dict = pydash.omit(dsl_pipeline_job_dict, omit_fields) @@ -2989,6 +3006,7 @@ def test_dsl_pipeline_with_only_setting_pipeline_level(self) -> None: "properties.inputs.training_input.uri", "properties.jobs.train_with_sample_data.componentId", "properties.jobs.train_with_sample_data._source", + "properties.jobs.train_with_sample_data.properties", "properties.settings._source", ] dsl_pipeline_job_dict = pydash.omit(dsl_pipeline_job_dict, omit_fields) @@ -3055,6 +3073,7 @@ def test_dsl_pipeline_with_only_setting_binding_node(self) -> None: "properties.inputs.training_input.uri", "properties.jobs.train_with_sample_data.componentId", "properties.jobs.train_with_sample_data._source", + "properties.jobs.train_with_sample_data.properties", "properties.settings._source", ] dsl_pipeline_job_dict = pydash.omit(dsl_pipeline_job_dict, omit_fields) @@ -3130,6 +3149,7 @@ def test_dsl_pipeline_with_setting_binding_node_and_pipeline_level(self) -> None "properties.inputs.training_input.uri", "properties.jobs.train_with_sample_data.componentId", "properties.jobs.train_with_sample_data._source", + "properties.jobs.train_with_sample_data.properties", "properties.settings._source", ] dsl_pipeline_job_dict = pydash.omit(dsl_pipeline_job_dict, omit_fields) @@ -3233,7 +3253,6 @@ def root_pipeline(component_in_number: int, component_in_path: str): "component_in_path": {"path": "${{parent.inputs.component_in_path}}"}, }, "outputs": {}, - "component": {}, "type": "command", }, "node2": { @@ -3243,14 +3262,21 @@ def root_pipeline(component_in_number: int, component_in_path: str): "component_in_path": {"path": "${{parent.jobs.node1.outputs.component_out_path}}"}, }, "outputs": {"component_out_path": "${{parent.outputs.sub_pipeline_out}}"}, - "component": {}, "type": "command", }, }, } - actual_dict = pipeline.jobs["node1"].component._to_dict() - actual_dict["jobs"]["node1"]["component"] = {} - actual_dict["jobs"]["node2"]["component"] = {} + omit_fields = [ + "component", + "jobs.node1.component", + "jobs.node2.component", + "jobs.node1.properties", + "jobs.node2.properties", + ] + actual_dict = pydash.omit( + pipeline.jobs["node1"].component._to_dict(), + *omit_fields, + ) assert actual_dict == expected_sub_dict expected_root_dict = { "display_name": "root_pipeline", @@ -3280,7 +3306,7 @@ def root_pipeline(component_in_number: int, component_in_path: str): }, } actual_dict = pipeline._to_dict() - actual_dict = pydash.omit(actual_dict, *["jobs.node1.component", "jobs.node2.component", "component"]) + actual_dict = pydash.omit(actual_dict, *omit_fields) assert actual_dict == expected_root_dict def test_dsl_pipeline_with_command_builder_setting_binding_node_and_pipeline_level(self) -> None: @@ -3295,6 +3321,7 @@ def test_dsl_pipeline_with_command_builder_setting_binding_node_and_pipeline_lev "properties.inputs.training_input.uri", "properties.jobs.train_with_sample_data.componentId", "properties.jobs.train_with_sample_data._source", + "properties.jobs.train_with_sample_data.properties", "properties.settings._source", "type", ] @@ -3371,6 +3398,7 @@ def test_nested_dsl_pipeline_with_setting_binding_node_and_pipeline_level(self) "properties.inputs.pipeline_training_input.uri", "properties.jobs.subgraph1.componentId", "properties.jobs.subgraph1._source", + "properties.jobs.subgraph1.properties", "properties.settings._source", ] dsl_pipeline_job_dict = pydash.omit(dsl_pipeline_job_dict, omit_fields) @@ -3519,7 +3547,6 @@ def root_pipeline(component_in_number: int, component_in_path: str): "component_in_path": {"path": "${{parent.inputs.component_in_path}}"}, }, "outputs": {}, - "component": {}, "type": "command", }, "node2": { @@ -3529,14 +3556,18 @@ def root_pipeline(component_in_number: int, component_in_path: str): "component_in_path": {"path": "${{parent.jobs.node1.outputs.component_out_path}}"}, }, "outputs": {"component_out_path": "${{parent.outputs.sub_pipeline_out}}"}, - "component": {}, "type": "command", }, }, } - actual_dict = pipeline.jobs["node1"].component._to_dict() - actual_dict["jobs"]["node1"]["component"] = {} - actual_dict["jobs"]["node2"]["component"] = {} + omit_fields = [ + "component", + "jobs.node1.component", + "jobs.node2.component", + "jobs.node1.properties", + "jobs.node2.properties", + ] + actual_dict = pydash.omit(pipeline.jobs["node1"].component._to_dict(), *omit_fields) assert actual_dict == expected_sub_dict expected_root_dict = { "display_name": "root_pipeline", @@ -3565,7 +3596,6 @@ def root_pipeline(component_in_number: int, component_in_path: str): }, }, } - omit_fields = ["component", "jobs.node1.component", "jobs.node2.component"] actual_dict = pydash.omit(pipeline._to_dict(), *omit_fields) assert actual_dict == expected_root_dict @@ -3606,7 +3636,6 @@ def root_pipeline(component_in_number: int, component_in_path: str): "component_in_path": {"path": "${{parent.inputs.component_in_path}}"}, }, "outputs": {}, - "component": {}, "type": "command", }, "node2": { @@ -3616,14 +3645,14 @@ def root_pipeline(component_in_number: int, component_in_path: str): "component_in_path": {"path": "${{parent.jobs.node1.outputs.component_out_path}}"}, }, "outputs": {"component_out_path": "${{parent.outputs.sub_pipeline_out}}"}, - "component": {}, "type": "command", }, }, } - actual_dict = pipeline.jobs["node1"].component._to_dict() - actual_dict["jobs"]["node1"]["component"] = {} - actual_dict["jobs"]["node2"]["component"] = {} + actual_dict = pydash.omit( + pipeline.jobs["node1"].component._to_dict(), + *["jobs.node1.component", "jobs.node2.component", "jobs.node1.properties", "jobs.node2.properties"], + ) assert actual_dict == expected_sub_dict expected_root_dict = { "display_name": "root_pipeline", @@ -3640,7 +3669,6 @@ def root_pipeline(component_in_number: int, component_in_path: str): "component_in_path": {"path": "${{parent.inputs.component_in_path}}"}, }, "outputs": {}, - "component": {}, "type": "pipeline", }, "node2": { @@ -3649,14 +3677,17 @@ def root_pipeline(component_in_number: int, component_in_path: str): "component_in_path": {"path": "${{parent.jobs.node1.outputs.sub_pipeline_out}}"}, }, "outputs": {"sub_pipeline_out": "${{parent.outputs.sub_pipeline_out}}"}, - "component": {}, "type": "pipeline", }, }, } - actual_dict = pipeline._to_dict() - actual_dict["jobs"]["node1"]["component"] = {} - actual_dict["jobs"]["node2"]["component"] = {} + actual_dict = pydash.omit( + pipeline._to_dict(), + "jobs.node1.properties", + "jobs.node2.properties", + "jobs.node1.component", + "jobs.node2.component", + ) assert actual_dict == expected_root_dict def test_pipeline_with_command_services(self): @@ -3700,8 +3731,7 @@ def sample_pipeline(): assert isinstance(service, JobService) job_rest_obj = pipeline._to_rest_object() - for name, service in job_rest_obj.properties.jobs["node"]["services"].items(): - assert isinstance(service, RestJobService) + assert job_rest_obj.properties.jobs["node"]["services"] == services recovered_obj = PipelineJob._from_rest_object(job_rest_obj) node_services = recovered_obj.jobs["node"].services @@ -3726,8 +3756,7 @@ def sample_pipeline_with_new_services(): assert isinstance(service, JobService) job_rest_obj = pipeline._to_rest_object() - for name, service in job_rest_obj.properties.jobs["node"]["services"].items(): - assert isinstance(service, RestJobService) + assert job_rest_obj.properties.jobs["node"]["services"] == new_services def test_pipeline_decorator_without_brackets(self): path = "./tests/test_configs/components/helloworld_component.yml" @@ -4003,6 +4032,8 @@ def spark_pipeline_from_yaml(iris_data): omit_fields = [ "jobs.add_greeting_column.componentId", "jobs.count_by_row.componentId", + "jobs.add_greeting_column.properties", + "jobs.count_by_row.properties", ] actual_job = pydash.omit(dsl_pipeline._to_rest_object().properties.as_dict(), *omit_fields) assert actual_job == { diff --git a/sdk/ml/azure-ai-ml/tests/internal/e2etests/test_component.py b/sdk/ml/azure-ai-ml/tests/internal/e2etests/test_component.py index 161e53f34140..3e727374479d 100644 --- a/sdk/ml/azure-ai-ml/tests/internal/e2etests/test_component.py +++ b/sdk/ml/azure-ai-ml/tests/internal/e2etests/test_component.py @@ -96,189 +96,3 @@ def test_component_load( # TODO: check if loaded environment is expected to be an ordered dict assert pydash.omit(loaded_dict, *omit_fields) == pydash.omit(expected_dict, *omit_fields) - - @pytest.mark.skip(reason="Target component is not in target workspace") - def test_load_registered_internal_scope_component(self, client: MLClient): - # curated env with name & version - component_entity = client.components.get( - "levance.convert2ss_31201029556679", "85b54741.0bf9.4734.a5bb.0e469c7bf792" - ) - component_rest_object = component_entity._to_rest_object() - component_spec = pydash.omit(component_rest_object.properties.component_spec, "code") - assert component_spec == { - "name": "levance.convert2ss_31201029556679", - "description": "Convert ADLS test data to SS format", - "tags": {"org": "bing", "project": "relevance"}, - "type": "scopecomponent", - "$schema": "https://componentsdk.azureedge.net/jsonschema/CommandComponent.json", - "version": "85b54741.0bf9.4734.a5bb.0e469c7bf792", - "display_name": "Convert Text to StructureStream", - "is_deterministic": True, - "inputs": { - "TextData": { - "type": "['AnyFile', 'AnyDirectory']", - "optional": False, - "description": "relative path on ADLS storage", - "is_resource": False, - }, - "ExtractionClause": { - "type": "string", - "optional": False, - "description": 'the extraction clause, something like "column1:string, column2:int"', - }, - }, - "outputs": {"SSPath": {"type": "CosmosStructuredStream", "description": "output path of ss"}}, - } - - @pytest.mark.skip(reason="Target component is not in target workspace") - def test_load_registered_internal_command_component(self, client: MLClient): - # curated env with name & version - component_entity = client.components.get("ls_command", "0.0.1") - component_rest_object = component_entity._to_rest_object() - omit_fields = ["id", "creation_context", "code", "environment"] - component_spec = pydash.omit(component_rest_object.properties.component_spec, *omit_fields) - assert component_spec == { - "$schema": "https://componentsdk.azureedge.net/jsonschema/CommandComponent.json", - "name": "ls_command", - "version": "0.0.1", - "display_name": "Ls Command", - "tags": {}, - "is_deterministic": True, - "inputs": { - "input_dir": {"type": "path", "optional": False}, - "file_name": {"type": "string", "optional": False, "default": "files.txt"}, - }, - "outputs": {"output_dir": {"type": "path"}}, - "type": "command", - "command": "sh ls.sh {inputs.input_dir} {inputs.file_name} {outputs.output_dir}", - } - - @pytest.mark.skip(reason="Target component is not in target workspace") - def test_load_registered_internal_hemera_component(self, client: MLClient): - component_entity = client.components.get("microsoft.com.azureml.samples.hemera.adslrdnnrawkeys_dummy", "0.0.1") - component_rest_object = component_entity._to_rest_object() - omit_fileds = ["code", "creation_context", "id"] - component_spec = pydash.omit(component_rest_object.properties.component_spec, *omit_fileds) - assert component_spec == { - "$schema": "https://componentsdk.azureedge.net/jsonschema/HemeraComponent.json", - "name": "microsoft.com.azureml.samples.hemera.adslrdnnrawkeys_dummy", - "version": "0.0.1", - "display_name": "Ads LR DNN Raw Keys", - "description": "Ads LR DNN Raw Keys Dummy sample.", - "tags": {}, - "is_deterministic": True, - "hemera": {"ref_id": "1bd1525c-082e-4652-a9b2-9c60783ec551"}, - "inputs": { - "TrainingDataDir": {"type": "path", "optional": True, "is_resource": "True"}, - "ValidationDataDir": {"type": "path", "optional": True, "is_resource": "True"}, - "InitialModelDir": {"type": "path", "optional": True, "is_resource": "True"}, - "YarnCluster": {"type": "string", "optional": False, "default": "mtprime-bn2-0"}, - "JobQueue": {"type": "string", "optional": False, "default": "default"}, - "WorkerCount": {"type": "string", "optional": False, "default": 2.0}, - "Cpu": {"type": "string", "optional": False, "default": 2.0}, - "Memory": {"type": "string", "optional": False, "default": "10g"}, - "HdfsRootDir": {"type": "string", "optional": False, "default": "/projects/default/"}, - "CosmosRootDir": { - "type": "string", - "optional": False, - "default": "https://cosmos09.osdinfra.net/cosmos/dummy/local/root/", - }, - }, - "outputs": {"output1": {"type": "AnyFile"}, "output2": {"type": "AnyFile"}}, - "type": "hemeracomponent", - "command": "run.bat [-_TrainingDataDir {inputs.TrainingDataDir}] " - "[-_ValidationDataDir {inputs.ValidationDataDir}] " - "[-_InitialModelDir {inputs.InitialModelDir}] -_CosmosRootDir " - "{inputs.CosmosRootDir} -_PsCount 0 %CLUSTER%={inputs.YarnCluster} " - "-JobQueue {inputs.JobQueue} -_WorkerCount {inputs.WorkerCount} " - "-_Cpu {inputs.Cpu} -_Memory {inputs.Memory} -_HdfsRootDir " - '{inputs.HdfsRootDir} -_ExposedPort "3200-3210,3300-3321" ' - "-_NodeLostBlocker -_UsePhysicalIP -_SyncWorker -_EntranceFileName " - 'run.py -_StartupArguments "" -_PythonZipPath ' - '"https://dummy/foo/bar.zip" -_ModelOutputDir {outputs.output1} ' - "-_ValidationOutputDir {outputs.output2}", - } - - @pytest.mark.skip(reason="Target component is not in target workspace") - def test_load_registered_internal_hdi_component(self, client: MLClient): - component_entity = client.components.get("microsoft.com.azureml.samples.train-in-spark", "0.0.1") - component_rest_object = component_entity._to_rest_object() - omit_fileds = ["code", "creation_context", "id"] - component_spec = pydash.omit(component_rest_object.properties.component_spec, *omit_fileds) - assert component_spec == { - "$schema": "https://componentsdk.azureedge.net/jsonschema/HDInsightComponent.json", - "name": "microsoft.com.azureml.samples.train-in-spark", - "version": "0.0.1", - "display_name": "Train in Spark", - "hdinsight": { - "args": "--input_path {inputs.input_path} " - "[--regularization_rate {inputs.regularization_rate}] " - "--output_path {outputs.output_path}", - "file": "train-spark.py", - }, - "description": "Train a Spark ML model using an HDInsight Spark cluster", - "tags": { - "HDInsight": "", - "Sample": "", - "contact": "Microsoft Coporation ", - "helpDocument": "https://aka.ms/hdinsight-modules", - }, - "is_deterministic": True, - "inputs": { - "input_path": {"type": "AnyDirectory", "optional": False, "description": "Iris csv file"}, - "regularization_rate": { - "type": "Float", - "optional": True, - "default": 0.01, - "description": "Regularization rate when training with logistic regression", - }, - }, - "outputs": { - "output_path": {"type": "AnyDirectory", "description": "The output path to save the trained model to"} - }, - "type": "hdinsightcomponent", - } - - @pytest.mark.skip(reason="Target component is not in target workspace") - def test_load_registered_internal_parallel_component(self, client: MLClient): - # curated env with name & version - component_entity = client.components.get("microsoft.com.azureml.samples.parallel_copy_files_v1", "0.0.2") - component_rest_object = component_entity._to_rest_object() - omit_fileds = ["code", "creation_context", "id"] - component_spec = pydash.omit(component_rest_object.properties.component_spec, *omit_fileds) - assert component_spec == { - "$schema": "https://componentsdk.azureedge.net/jsonschema/ParallelComponent.json", - "name": "microsoft.com.azureml.samples.parallel_copy_files_v1", - "version": "0.0.2", - "display_name": "Parallel Copy Files v1", - "description": "A sample Parallel module to copy files.", - "tags": { - "Sample": "", - "Parallel": "", - "helpDocument": "https://aka.ms/parallel-modules", - "contact": "Microsoft Coporation ", - }, - "is_deterministic": True, - "inputs": {"input_folder": {"type": "AnyDirectory", "optional": False, "datastore_mode": "Mount"}}, - "outputs": { - "output_folder": {"type": "AnyDirectory", "description": "Output images", "datastore_mode": "Upload"} - }, - "type": "parallelcomponent", - "environment": { - "conda": { - "conda_dependencies": { - "name": "project_environment", - "channels": ["conda-forge"], - "dependencies": ["pip=20.2", "python=3.8", {"pip": ["azureml-defaults==1.35.0"]}], - } - }, - "docker": {"image": "mcr.microsoft.com/azureml/base:intelmpi2018.3-ubuntu16.04"}, - "os": "Linux", - }, - "parallel": { - "args": "--output-dir {outputs.output_folder}", - "input_data": "inputs.input_folder", - "output_data": "outputs.output_folder", - "entry": "copy_files.py", - }, - } diff --git a/sdk/ml/azure-ai-ml/tests/internal/e2etests/test_pipeline_job.py b/sdk/ml/azure-ai-ml/tests/internal/e2etests/test_pipeline_job.py index 69d72f075eb4..ca52d7d603b7 100644 --- a/sdk/ml/azure-ai-ml/tests/internal/e2etests/test_pipeline_job.py +++ b/sdk/ml/azure-ai-ml/tests/internal/e2etests/test_pipeline_job.py @@ -19,6 +19,8 @@ from .._utils import DATA_VERSION, PARAMETERS_TO_TEST, set_run_settings +_dependent_datasets = {} + @pytest.fixture def create_internal_sample_dependent_datasets(client: MLClient): @@ -34,18 +36,19 @@ def create_internal_sample_dependent_datasets(client: MLClient): "mltable_reghits", "mltable_starlite_sample_output", ]: - try: - client.data.get(name=dataset_name, version=DATA_VERSION) - except HttpResponseError: - client.data.create_or_update( - Data( - name=dataset_name, - version=DATA_VERSION, - type=AssetTypes.MLTABLE, # should be MLTable - skip_validation=True, - path="./tests/test_configs/dataset/mnist-data", + if dataset_name not in _dependent_datasets: + try: + _dependent_datasets[dataset_name] = client.data.get(name=dataset_name, version=DATA_VERSION) + except HttpResponseError: + _dependent_datasets[dataset_name] = client.data.create_or_update( + Data( + name=dataset_name, + version=DATA_VERSION, + type=AssetTypes.MLTABLE, # should be MLTable + skip_validation=True, + path="./tests/test_configs/dataset/mnist-data", + ) ) - ) @pytest.mark.usefixtures( @@ -132,26 +135,18 @@ def test_created_internal_component_in_pipeline( self._test_component(created_component, inputs, runsettings_dict, pipeline_runsettings_dict, client) - @pytest.mark.parametrize( - "yaml_path,inputs,runsettings_dict,pipeline_runsettings_dict", - PARAMETERS_TO_TEST, - ) def test_data_as_node_inputs( self, client: MLClient, - yaml_path, - inputs, - runsettings_dict, - pipeline_runsettings_dict, + randstr: Callable[[], str], ): - # curated env with name & version + yaml_path = "./tests/test_configs/internal/distribution-component/component_spec.yaml" node_func: InternalComponent = load_component(yaml_path) - for input_name, input_obj in inputs.items(): - if isinstance(input_obj, Input): - data_name = input_obj.path.split("@")[0] - inputs[input_name] = client.data.get(data_name, version=DATA_VERSION) + inputs = { + "input_path": _dependent_datasets["mltable_imdb_reviews_train"], + } - self._test_component(node_func, inputs, runsettings_dict, pipeline_runsettings_dict, client) + self._test_component(node_func, inputs, {"compute": "cpu-cluster"}, {}, client) def test_data_as_pipeline_inputs(self, client: MLClient, randstr: Callable[[], str]): yaml_path = "./tests/test_configs/internal/distribution-component/component_spec.yaml" @@ -196,10 +191,12 @@ def test_internal_in_pipeline_component( def sub_pipeline_func(): node = component_func(**inputs) set_run_settings(node, runsettings_dict) + return node.outputs @pipeline() def pipeline_func(): - sub_pipeline_func() + node = sub_pipeline_func() + return node.outputs dsl_pipeline: PipelineJob = pipeline_func() set_run_settings(dsl_pipeline.settings, pipeline_runsettings_dict) diff --git a/sdk/ml/azure-ai-ml/tests/internal/unittests/test_component.py b/sdk/ml/azure-ai-ml/tests/internal/unittests/test_component.py index eb2092eb118f..74d1129aa1e7 100644 --- a/sdk/ml/azure-ai-ml/tests/internal/unittests/test_component.py +++ b/sdk/ml/azure-ai-ml/tests/internal/unittests/test_component.py @@ -16,6 +16,7 @@ from azure.ai.ml._utils.utils import load_yaml from azure.ai.ml.constants._common import AZUREML_INTERNAL_COMPONENTS_ENV_VAR from azure.ai.ml.entities import Component +from azure.ai.ml.entities._builders.control_flow_node import LoopNode from azure.ai.ml.exceptions import ValidationException from .._utils import PARAMETERS_TO_TEST @@ -164,14 +165,12 @@ def test_load_from_registered_internal_scope_component_rest_obj(self): }, } + @pytest.mark.skip(reason="migration skip: sync pipeline changes during soft code complete.") @pytest.mark.parametrize( "yaml_path", list(map(lambda x: x[0], PARAMETERS_TO_TEST)), ) def test_component_serialization(self, yaml_path): - # bug with unit testing ls_command. skip for now - if yaml_path == "tests/test_configs/internal/ls_command_component.yaml": - return with open(yaml_path, encoding="utf-8") as yaml_file: yaml_dict = yaml.safe_load(yaml_file) @@ -386,14 +385,12 @@ def test_component_input_types(self) -> None: with open(yaml_path, "r") as f: yaml_dict = yaml.safe_load(f) for key, value in { - "inputs.param_enum.default": None, - "inputs.param_enum_cap.default": None, "inputs.param_enum_cap.type": "enum", }.items(): pydash.set_(yaml_dict, key, value) assert component._to_rest_object().properties.component_spec["inputs"] == yaml_dict["inputs"] assert component._to_rest_object().properties.component_spec["outputs"] == yaml_dict["outputs"] - assert component._customized_validate().passed is True + assert component._validate().passed is True, repr(component._validate()) for key, value in { "inputs.param_bool_cap.type": "boolean", @@ -404,6 +401,38 @@ def test_component_input_types(self) -> None: regen_component = Component._from_rest_object(component._to_rest_object()) assert regen_component._to_rest_object().properties.component_spec["inputs"] == yaml_dict["inputs"] assert regen_component._to_rest_object().properties.component_spec["outputs"] == yaml_dict["outputs"] + assert component._validate().passed is True, repr(component._validate()) + + def test_component_input_with_attrs(self) -> None: + yaml_path = "./tests/test_configs/internal/component_with_input_types/component_spec_with_attrs.yaml" + component: InternalComponent = load_component(source=yaml_path) + + expected_inputs = { + "inputs": { + "param_data_path": { + "description": "Path to the data", + "is_resource": True, + "datastore_mode": "mount", + "type": "path", + }, + "param_bool": {"type": "boolean"}, + "param_enum_cap": {"enum": ["minimal", "reuse", "expiry", "policies"], "type": "enum"}, + "param_enum_with_int_values": {"default": "3", "enum": ["1", "2.0", "3", "4"], "type": "enum"}, + "param_float": {"type": "float"}, + "param_int": {"type": "integer"}, + "param_string_with_default_value": {"default": ",", "type": "string"}, + "param_string_with_default_value_2": {"default": "utf8", "type": "string"}, + # yes will be converted to true in YAML 1.2, users may use "yes" as a workaround + "param_string_with_yes_value": {"default": "True", "type": "string"}, + "param_string_with_quote_yes_value": {"default": "yes", "type": "string"}, + } + } + assert component._to_rest_object().properties.component_spec["inputs"] == expected_inputs["inputs"] + assert component._validate().passed is True, repr(component._validate()) + + regenerated_component = Component._from_rest_object(component._to_rest_object()) + assert regenerated_component._to_rest_object().properties.component_spec["inputs"] == expected_inputs["inputs"] + assert component._validate().passed is True, repr(component._validate()) def test_component_input_list_type(self) -> None: yaml_path = "./tests/test_configs/internal/scope-component/component_spec.yaml" @@ -413,3 +442,15 @@ def test_component_input_list_type(self) -> None: # for list type component input, REST object should remain type list for service contract assert isinstance(input_text_data_type, list) assert input_text_data_type == ["AnyFile", "AnyDirectory"] + + def test_loop_node_is_internal_components(self): + from azure.ai.ml.constants._common import AZUREML_INTERNAL_COMPONENTS_ENV_VAR + from azure.ai.ml.dsl._utils import environment_variable_overwrite + + yaml_path = "./tests/test_configs/internal/helloworld_component_command.yml" + component_func = load_component(source=yaml_path) + loop_node = LoopNode(body=component_func()) + loop_node.body._referenced_control_flow_node_instance_id = loop_node._instance_id + with environment_variable_overwrite(AZUREML_INTERNAL_COMPONENTS_ENV_VAR, "True"): + validate_result = loop_node._validate_body(raise_error=False) + assert validate_result.passed diff --git a/sdk/ml/azure-ai-ml/tests/internal/unittests/test_pipeline_job.py b/sdk/ml/azure-ai-ml/tests/internal/unittests/test_pipeline_job.py index 74a277a10419..3c72fbf95b2b 100644 --- a/sdk/ml/azure-ai-ml/tests/internal/unittests/test_pipeline_job.py +++ b/sdk/ml/azure-ai-ml/tests/internal/unittests/test_pipeline_job.py @@ -104,8 +104,7 @@ def pipeline_func(): dsl_pipeline: PipelineJob = pipeline_func() set_run_settings(dsl_pipeline.settings, pipeline_runsettings_dict) - result = dsl_pipeline._validate() - assert result._to_dict() == {"result": "Succeeded"} + assert dsl_pipeline._validate().passed, repr(dsl_pipeline._validate()) node_rest_dict = dsl_pipeline._to_rest_object().properties.jobs["node"] for input_name, dataset_name in input_data_names.items(): @@ -163,6 +162,48 @@ def pipeline_func(pipeline_input): } assert pipeline_rest_dict.jobs["node"]["inputs"]["input_path"] == expected_rest_obj + @pytest.mark.usefixtures("enable_pipeline_private_preview_features") + def test_internal_component_output_as_pipeline_component_output(self): + yaml_path = "./tests/test_configs/internal/component_with_input_types/component_spec.yaml" + component_func = load_component(yaml_path, params_override=[{"inputs": {}}]) + + @pipeline() + def sub_pipeline_func(): + node = component_func() + node.adla_account_name = "adla_account_name" + return node.outputs + + sub_pipeline_1 = sub_pipeline_func() + assert sub_pipeline_1._validate().passed + assert sub_pipeline_1.outputs["data_any_file"].type == "uri_file" + + # confirm that the output won't change in further call + sub_pipeline_2 = sub_pipeline_func() + assert sub_pipeline_2.outputs["data_any_file"].type == "uri_file" + + @pipeline() + def pipeline_func(): + sub_pipeline_func() + + dsl_pipeline: PipelineJob = pipeline_func() + assert dsl_pipeline._validate().passed + dsl_pipeline._to_rest_object() + pipeline_component = dsl_pipeline.jobs["sub_pipeline_func"].component + assert pipeline_component._to_rest_object().properties.component_spec["outputs"] == { + "data_any_directory": {"type": "uri_folder"}, + "data_any_file": {"type": "uri_file"}, # AnyFile => uri_file + "data_azureml_dataset": {"type": "uri_folder"}, + "data_cosmos_structured_stream": {"type": "uri_folder"}, + "data_csv_file": {"type": "uri_folder"}, + "data_data_frame_directory": {"type": "uri_folder"}, + "data_image_directory": {"type": "uri_folder"}, + "data_model_directory": {"type": "uri_folder"}, + "data_path": {"type": "uri_folder"}, + "data_transformation_directory": {"type": "uri_folder"}, + "data_untrained_model_directory": {"type": "uri_folder"}, + "data_zip_file": {"type": "uri_folder"}, + } + def test_ipp_internal_component_in_pipeline(self): yaml_path = "./tests/test_configs/internal/ipp-component/spec.yaml" # TODO: support anonymous ipp component creation @@ -349,6 +390,7 @@ def pipeline_func(): node_internal.adla_account_name = "adla_account_name" node_internal.scope_param = "-tokens 50" node_internal.custom_job_name_suffix = "component_sdk_test" + node_internal.properties["AZURE_ML_PathOnCompute_mock_output"] = "mock_path" dsl_pipeline: PipelineJob = pipeline_func() internal_node_name = "node_internal" @@ -370,6 +412,7 @@ def pipeline_func(): "TextData": {"path": "azureml:scope_tsv:1", "type": "mltable"}, }, "outputs": {}, + "properties": {"AZURE_ML_PathOnCompute_mock_output": "mock_path"}, } assert pydash.omit(scope_node._to_rest_object(), "componentId") == { "_source": "YAML.COMPONENT", @@ -383,6 +426,7 @@ def pipeline_func(): }, "outputs": {}, "type": "ScopeComponent", + "properties": {"AZURE_ML_PathOnCompute_mock_output": "mock_path"}, } scope_node._validate(raise_error=True) diff --git a/sdk/ml/azure-ai-ml/tests/pipeline_job/_util.py b/sdk/ml/azure-ai-ml/tests/pipeline_job/_util.py index ef90b7eac92d..dd15947dcb60 100644 --- a/sdk/ml/azure-ai-ml/tests/pipeline_job/_util.py +++ b/sdk/ml/azure-ai-ml/tests/pipeline_job/_util.py @@ -1 +1,49 @@ +from azure.ai.ml.exceptions import JobException +from azure.core.exceptions import HttpResponseError + _PIPELINE_JOB_TIMEOUT_SECOND = 20 * 60 # timeout for pipeline job's tests, unit in second. + +DATABINDING_EXPRESSION_TEST_CASES = [ + ( + "./tests/test_configs/dsl_pipeline/data_binding_expression/input_basic.yml", + None, + ), + ( + "./tests/test_configs/dsl_pipeline/data_binding_expression/input_literal_cross_type.yml", + None, + ), + ( + "./tests/test_configs/dsl_pipeline/data_binding_expression/input_literal_meta.yml", + HttpResponseError(), + ), + ( + "./tests/test_configs/dsl_pipeline/data_binding_expression/input_path.yml", + None, + ), + ( + "./tests/test_configs/dsl_pipeline/data_binding_expression/input_path_concatenate.yml", + HttpResponseError(), + ), + ( + "./tests/test_configs/dsl_pipeline/data_binding_expression/input_reason_expression.yml", + HttpResponseError(), + ), + ( + "./tests/test_configs/dsl_pipeline/data_binding_expression/input_string_concatenate.yml", + None, + ), + ( + "./tests/test_configs/dsl_pipeline/data_binding_expression/run_settings_compute.yml", + JobException("", no_personal_data_message=""), + ), + ( + "./tests/test_configs/dsl_pipeline/data_binding_expression/run_settings_literal.yml", + None, + ), + ("./tests/test_configs/dsl_pipeline/data_binding_expression/run_settings_sweep_literal.yml", None), + ( + "./tests/test_configs/dsl_pipeline/data_binding_expression/run_settings_sweep_choice.yml", + JobException("", no_personal_data_message=""), + ), + ("./tests/test_configs/dsl_pipeline/data_binding_expression/run_settings_sweep_limits.yml", None), +] diff --git a/sdk/ml/azure-ai-ml/tests/pipeline_job/e2etests/test_pipeline_job.py b/sdk/ml/azure-ai-ml/tests/pipeline_job/e2etests/test_pipeline_job.py index fd3f78be4304..b2b83ad00183 100644 --- a/sdk/ml/azure-ai-ml/tests/pipeline_job/e2etests/test_pipeline_job.py +++ b/sdk/ml/azure-ai-ml/tests/pipeline_job/e2etests/test_pipeline_job.py @@ -11,7 +11,7 @@ from marshmallow import ValidationError from test_utilities.utils import _PYTEST_TIMEOUT_METHOD -from azure.ai.ml import MLClient, load_component, load_data, load_job +from azure.ai.ml import Input, MLClient, load_component, load_data, load_job from azure.ai.ml._utils._arm_id_utils import AMLVersionedArmId from azure.ai.ml._utils.utils import load_yaml from azure.ai.ml.constants import InputOutputModes @@ -27,7 +27,7 @@ from azure.core.exceptions import HttpResponseError, ResourceNotFoundError from azure.core.polling import LROPoller -from .._util import _PIPELINE_JOB_TIMEOUT_SECOND +from .._util import _PIPELINE_JOB_TIMEOUT_SECOND, DATABINDING_EXPRESSION_TEST_CASES def assert_job_input_output_types(job: PipelineJob): @@ -177,7 +177,7 @@ def test_pipeline_job_get_child_run(self, client: MLClient, generate_weekly_fixe "pipeline_job_path, expected_error_type", [ # flaky parameterization - # ("./tests/test_configs/pipeline_jobs/invalid/non_existent_remote_component.yml", ValidationException), + # ("./tests/test_configs/pipeline_jobs/invalid/non_existent_remote_component.yml", Exception), ( "tests/test_configs/pipeline_jobs/invalid/non_existent_remote_version.yml", Exception, @@ -470,6 +470,8 @@ def test_pipeline_job_default_datastore_compute(self, client: MLClient, randstr: "experiment_name", "jobs.hello_world_inline_commandjob_1.componentId", "jobs.hello_world_inline_commandjob_2.componentId", + "jobs.hello_world_inline_commandjob_1.properties", + "jobs.hello_world_inline_commandjob_2.properties", "source_job_id", ], ), @@ -564,6 +566,8 @@ def test_pipeline_job_default_datastore_compute(self, client: MLClient, randstr: "inputs.pipeline_job_training_input.uri", "inputs.pipeline_job_test_input.uri", "jobs.score_job.componentId", + "jobs.train_job.properties", + "jobs.score_job.properties", "source_job_id", ], ), @@ -751,6 +755,7 @@ def test_pipeline_job_dependency_label_resolution(self, client: MLClient, randst created_job = client.jobs.create_or_update(pipeline_job) assert created_job.jobs[job_key].component == f"{component_name}:{component_versions[-1]}" + @pytest.mark.skip(reason="migration skip: refactor for download.") def test_pipeline_job_download( self, client: MLClient, tmp_path: Path, generate_weekly_fixed_job_name: Callable[[str], str] ) -> None: @@ -924,50 +929,7 @@ def test_pipeline_job_with_sweep_node_early_termination_policy( @pytest.mark.skipif(condition=not is_live(), reason="Recording file names are too long and need to be shortened") @pytest.mark.parametrize( "pipeline_job_path, expected_error", - [ - ( - "tests/test_configs/dsl_pipeline/data_binding_expression/input_basic.yml", - None, - ), - ( - "tests/test_configs/dsl_pipeline/data_binding_expression/input_literal_cross_type.yml", - None, - ), - ( - "tests/test_configs/dsl_pipeline/data_binding_expression/input_literal_meta.yml", - HttpResponseError(), - ), - ( - "tests/test_configs/dsl_pipeline/data_binding_expression/input_path.yml", - None, - ), - ( - "tests/test_configs/dsl_pipeline/data_binding_expression/input_path_concatenate.yml", - HttpResponseError(), - ), - ( - "tests/test_configs/dsl_pipeline/data_binding_expression/input_reason_expression.yml", - HttpResponseError(), - ), - ( - "tests/test_configs/dsl_pipeline/data_binding_expression/input_string_concatenate.yml", - None, - ), - ( - "tests/test_configs/dsl_pipeline/data_binding_expression/run_settings_compute.yml", - JobException("", no_personal_data_message=""), - ), - ( - "tests/test_configs/dsl_pipeline/data_binding_expression/run_settings_literal.yml", - None, - ), - ("tests/test_configs/dsl_pipeline/data_binding_expression/run_settings_sweep_literal.yml", None), - ( - "tests/test_configs/dsl_pipeline/data_binding_expression/run_settings_sweep_choice.yml", - JobException("", no_personal_data_message=""), - ), - ("tests/test_configs/dsl_pipeline/data_binding_expression/run_settings_sweep_limits.yml", None), - ], + DATABINDING_EXPRESSION_TEST_CASES, ) def test_pipeline_job_with_data_binding_expression( self, @@ -1481,6 +1443,21 @@ def test_pipeline_with_do_while_node(self, client: MLClient, randstr: Callable[[ assert isinstance(created_pipeline.jobs["command_component_body_node"], Command) assert isinstance(created_pipeline.jobs["get_do_while_result"], Command) + @pytest.mark.skip(reason="Currently not enable submit a pipeline with primitive inputs") + def test_do_while_pipeline_with_primitive_inputs(self, client: MLClient, randstr: Callable[[], str]) -> None: + params_override = [{"name": randstr()}] + pipeline_job = load_job( + path="./tests/test_configs/dsl_pipeline/pipeline_with_do_while/pipeline_with_primitive_inputs.yml", + params_override=params_override, + ) + created_pipeline = assert_job_cancel(pipeline_job, client) + assert len(created_pipeline.jobs) == 5 + assert isinstance(created_pipeline.jobs["pipeline_body_node"], Pipeline) + assert isinstance(created_pipeline.jobs["do_while_job_with_pipeline_job"], DoWhile) + assert isinstance(created_pipeline.jobs["do_while_job_with_command_component"], DoWhile) + assert isinstance(created_pipeline.jobs["command_component_body_node"], Command) + assert isinstance(created_pipeline.jobs["get_do_while_result"], Command) + @pytest.mark.skip(reason="Currently do_while only enable in master region.") def test_pipeline_with_invalid_do_while_node(self, client: MLClient, randstr: Callable[[], str]) -> None: params_override = [{"name": randstr()}] @@ -1508,13 +1485,47 @@ def assert_error_message(path, except_message, error_messages): error_messages["errors"], ) - @pytest.mark.skip("Skip for Bug https://msdata.visualstudio.com/Vienna/_workitems/edit/1963914/") - def test_pipeline_component_job(self, client: MLClient, randstr: Callable[[], str]): + def test_pipeline_component_job(self, client: MLClient): test_path = "./tests/test_configs/pipeline_jobs/pipeline_component_job.yml" job: PipelineJob = load_job(source=test_path) - rest_job = client.jobs.create_or_update(job) + rest_job = assert_job_cancel(job, client) + pipeline_dict = rest_job._to_rest_object().as_dict()["properties"] + assert pipeline_dict["component_id"] + assert pipeline_dict["inputs"] == { + "component_in_number": {"job_input_type": "literal", "value": "10"}, + "component_in_path": { + "mode": "ReadOnlyMount", + "uri": "https://dprepdata.blob.core.windows.net/demo/Titanic.csv", + "job_input_type": "uri_file", + }, + } + assert pipeline_dict["outputs"] == {"output_path": {"mode": "ReadWriteMount", "job_output_type": "uri_folder"}} + assert pipeline_dict["settings"] == {"default_compute": "cpu-cluster", "_source": "REMOTE.WORKSPACE.JOB"} + + def test_remote_pipeline_component_job(self, client: MLClient, randstr: Callable[[str], str]): + params_override = [{"name": randstr("component_name")}] + test_path = "./tests/test_configs/components/helloworld_pipeline_component.yml" + component = load_component(source=test_path, params_override=params_override) + rest_component = client.components.create_or_update(component) + pipeline_node = rest_component( + component_in_number=10, + component_in_path=Input(type="uri_file", path="https://dprepdata.blob.core.windows.net/demo/Titanic.csv"), + ) + pipeline_node.settings.default_compute = "cpu-cluster" + rest_job = assert_job_cancel(pipeline_node, client) pipeline_dict = rest_job._to_rest_object().as_dict()["properties"] - assert pipeline_dict == {} + assert pipeline_dict["component_id"] + assert pipeline_dict["inputs"] == { + "component_in_number": {"job_input_type": "literal", "value": "10"}, + "component_in_path": { + "mode": "ReadOnlyMount", + "uri": "https://dprepdata.blob.core.windows.net/demo/Titanic.csv", + "job_input_type": "uri_file", + }, + } + # No job output now, https://msdata.visualstudio.com/Vienna/_workitems/edit/1993701/ + # assert pipeline_dict["outputs"] == {"output_path": {"mode": "ReadWriteMount", "job_output_type": "uri_folder"}} + assert pipeline_dict["settings"] == {"default_compute": "cpu-cluster", "_source": "REMOTE.WORKSPACE.COMPONENT"} @pytest.mark.usefixtures( diff --git a/sdk/ml/azure-ai-ml/tests/pipeline_job/unittests/test_pipeline_job_entity.py b/sdk/ml/azure-ai-ml/tests/pipeline_job/unittests/test_pipeline_job_entity.py index 83984b36a288..ea85e1bbbba3 100644 --- a/sdk/ml/azure-ai-ml/tests/pipeline_job/unittests/test_pipeline_job_entity.py +++ b/sdk/ml/azure-ai-ml/tests/pipeline_job/unittests/test_pipeline_job_entity.py @@ -42,6 +42,7 @@ def load_pipeline_entity_from_rest_json(job_dict) -> PipelineJob: @pytest.mark.timeout(_PIPELINE_JOB_TIMEOUT_SECOND) @pytest.mark.unittest class TestPipelineJobEntity: + @pytest.mark.skip(reason="migration skip: sync pipeline changes during soft code complete.") def test_automl_node_in_pipeline_regression(self, mock_machinelearning_client: MLClient, mocker: MockFixture): test_path = "./tests/test_configs/pipeline_jobs/jobs_with_automl_nodes/onejob_automl_regression.yml" @@ -201,7 +202,7 @@ def test_command_job_with_invalid_mode_type_in_pipeline_deserialize(self): rest_obj = FebRestJob.from_dict(json.loads(json.dumps(job_dict))) pipeline = PipelineJob._from_rest_object(rest_obj) pipeline_dict = pipeline._to_dict() - assert pipeline_dict["jobs"] == { + assert pydash.omit(pipeline_dict["jobs"], *["properties", "hello_python_world_job.properties"]) == { "hello_python_world_job": { "environment_variables": {}, "inputs": { @@ -760,7 +761,7 @@ def test_spark_node_in_pipeline(self, mock_machinelearning_client: MLClient, moc mock_machinelearning_client.jobs._resolve_arm_id_or_upload_dependencies(job) rest_job_dict = job._to_rest_object().as_dict() - omit_fields = [] # "name", "display_name", "experiment_name", "properties" + omit_fields = ["properties"] # "name", "display_name", "experiment_name", "properties" actual_dict = pydash.omit(rest_job_dict["properties"]["jobs"]["add_greeting_column"], omit_fields) expected_dict = { @@ -827,6 +828,8 @@ def test_default_user_identity_if_empty_identity_input(self): omit_fields = [ "jobs.sample_word.componentId", "jobs.count_word.componentId", + "jobs.sample_word.properties", + "jobs.count_word.properties", ] actual_job = pydash.omit(job._to_rest_object().properties.as_dict(), *omit_fields) assert actual_job == { @@ -1050,6 +1053,7 @@ def test_pipeline_without_setting_binding_node(self, mock_machinelearning_client "jobs": { "train_job": { "type": "command", + "properties": {}, "_source": "YAML.JOB", "resources": None, "distribution": None, @@ -1107,6 +1111,7 @@ def test_pipeline_with_only_setting_pipeline_level( }, "jobs": { "train_job": { + "properties": {}, "type": "command", "_source": "YAML.JOB", "resources": None, @@ -1151,8 +1156,7 @@ def test_pipeline_with_only_setting_binding_node(self, mock_machinelearning_clie actual_dict = job._to_rest_object().as_dict()["properties"] - assert actual_dict == { - "properties": {}, + assert pydash.omit(actual_dict, *["properties", "jobs.train_job.properties"]) == { "tags": {}, "is_archived": False, "compute_id": "xxx", @@ -1223,8 +1227,7 @@ def test_pipeline_with_setting_binding_node_and_pipeline_level( actual_dict = job._to_rest_object().as_dict()["properties"] - assert actual_dict == { - "properties": {}, + assert pydash.omit(actual_dict, *["properties", "jobs.train_job.properties"]) == { "tags": {}, "is_archived": False, "compute_id": "xxx", @@ -1292,8 +1295,7 @@ def test_pipeline_with_inline_job_setting_binding_node_and_pipeline_level( actual_dict = job._to_rest_object().as_dict()["properties"] - assert actual_dict == { - "properties": {}, + assert pydash.omit(actual_dict, *["properties", "jobs.train_job.properties"]) == { "tags": {}, "is_archived": False, "compute_id": "xxx", @@ -1432,3 +1434,18 @@ def test_non_string_pipeline_node_input(self): }, "type": "command", } + + @pytest.mark.skip(reason="migration skip: sync pipeline changes during soft code complete.") + def test_job_properties(self): + pipeline_job: PipelineJob = load_job( + source="./tests/test_configs/pipeline_jobs/pipeline_job_with_properties.yml" + ) + pipeline_dict = pipeline_job._to_dict() + rest_pipeline_dict = pipeline_job._to_rest_object().as_dict()["properties"] + assert pipeline_dict["properties"] == {"AZURE_ML_PathOnCompute_input_data": "/tmp/test"} + assert rest_pipeline_dict["properties"] == pipeline_dict["properties"] + for name, node_dict in pipeline_dict["jobs"].items(): + rest_node_dict = rest_pipeline_dict["jobs"][name] + assert len(node_dict["properties"]) == 1 + assert "AZURE_ML_PathOnCompute_" in list(node_dict["properties"].keys())[0] + assert node_dict["properties"] == rest_node_dict["properties"] diff --git a/sdk/ml/azure-ai-ml/tests/pipeline_job/unittests/test_pipeline_job_schema.py b/sdk/ml/azure-ai-ml/tests/pipeline_job/unittests/test_pipeline_job_schema.py index 5ba5d2397e40..e5d9bf6dc0f6 100644 --- a/sdk/ml/azure-ai-ml/tests/pipeline_job/unittests/test_pipeline_job_schema.py +++ b/sdk/ml/azure-ai-ml/tests/pipeline_job/unittests/test_pipeline_job_schema.py @@ -3,7 +3,7 @@ from copy import deepcopy from io import StringIO from pathlib import Path -from typing import Any, Dict +from typing import Any, Dict, Optional import pydash import pytest @@ -16,11 +16,11 @@ from azure.ai.ml._restclient.v2022_06_01_preview.models import MLTableJobInput from azure.ai.ml._restclient.v2022_06_01_preview.models import PipelineJob as RestPipelineJob from azure.ai.ml._restclient.v2022_06_01_preview.models import UriFolderJobInput -from azure.ai.ml._restclient.v2022_10_01_preview.models import JobService as RestJobService from azure.ai.ml._restclient.v2022_06_01_preview.models._azure_machine_learning_workspaces_enums import ( LearningRateScheduler, StochasticOptimizer, ) +from azure.ai.ml._restclient.v2022_10_01_preview.models import JobService as RestJobService from azure.ai.ml._utils.utils import camel_to_snake, dump_yaml_to_file, is_data_binding_expression, load_yaml from azure.ai.ml.constants._common import ARM_ID_PREFIX from azure.ai.ml.constants._component import ComponentJobConstants @@ -33,13 +33,13 @@ INPUT_MOUNT_MAPPING_FROM_REST, validate_pipeline_input_key_contains_allowed_characters, ) -from azure.ai.ml.entities._job.job_service import JobService from azure.ai.ml.entities._job.automl.image.image_search_space_utils import _convert_sweep_dist_dict_to_str_dict +from azure.ai.ml.entities._job.job_service import JobService from azure.ai.ml.entities._job.pipeline._exceptions import UserErrorException from azure.ai.ml.entities._job.pipeline._io import PipelineInput, PipelineOutput from azure.ai.ml.exceptions import ValidationException -from .._util import _PIPELINE_JOB_TIMEOUT_SECOND +from .._util import _PIPELINE_JOB_TIMEOUT_SECOND, DATABINDING_EXPRESSION_TEST_CASES @pytest.mark.usefixtures("enable_pipeline_private_preview_features") @@ -1685,13 +1685,18 @@ def test_command_job_node_services_in_pipeline(self): job_rest_obj = job._to_rest_object() rest_services = job_rest_obj.properties.jobs["hello_world_component_inline"]["services"] - for name, service in rest_services.items(): - assert isinstance(service, RestJobService) - + # rest object of node in pipeline should be pure dict assert rest_services == { - "my_jupyter": RestJobService(job_service_type="Jupyter"), - "my_tensorboard": RestJobService(job_service_type="TensorBoard", properties={"logDir": "~/tblog"}), - "my_jupyterlab": RestJobService(job_service_type="JupyterLab"), + "my_jupyter": { + "job_service_type": "Jupyter", + }, + "my_tensorboard": { + "job_service_type": "TensorBoard", + "properties": {"logDir": "~/tblog"}, + }, + "my_jupyterlab": { + "job_service_type": "JupyterLab", + }, } def test_command_job_node_services_in_pipeline_with_no_component(self): @@ -1703,15 +1708,19 @@ def test_command_job_node_services_in_pipeline_with_no_component(self): assert isinstance(service, JobService) job_rest_obj = job._to_rest_object() + + # rest object of node in pipeline should be pure dict assert job_rest_obj.properties.jobs["hello_world_component_inline"]["services"] == { - "my_jupyter": RestJobService(job_service_type="Jupyter"), - "my_tensorboard": RestJobService( - job_service_type="TensorBoard", - properties={ - "logDir": "~/tblog", - }, - ), - "my_jupyterlab": RestJobService(job_service_type="JupyterLab"), + "my_jupyter": { + "job_service_type": "Jupyter", + }, + "my_tensorboard": { + "job_service_type": "TensorBoard", + "properties": {"logDir": "~/tblog"}, + }, + "my_jupyterlab": { + "job_service_type": "JupyterLab", + }, } def test_dump_pipeline_inputs(self): @@ -1786,3 +1795,13 @@ def test_invalid_pipeline_component_job(self): with pytest.raises(Exception) as e: load_job(source=test_path) assert "'jobs' and 'component' are mutually exclusive fields in pipeline job" in str(e.value) + + @pytest.mark.parametrize( + "pipeline_job_path, expected_error", + DATABINDING_EXPRESSION_TEST_CASES, + ) + def test_pipeline_job_with_data_binding_expression( + self, client: MLClient, pipeline_job_path: str, expected_error: Optional[Exception] + ): + pipeline: PipelineJob = load_job(source=pipeline_job_path) + pipeline._to_rest_object() diff --git a/sdk/ml/azure-ai-ml/tests/pipeline_job/unittests/test_pipeline_job_validate.py b/sdk/ml/azure-ai-ml/tests/pipeline_job/unittests/test_pipeline_job_validate.py index 205e2bb61af2..ed65438edbbe 100644 --- a/sdk/ml/azure-ai-ml/tests/pipeline_job/unittests/test_pipeline_job_validate.py +++ b/sdk/ml/azure-ai-ml/tests/pipeline_job/unittests/test_pipeline_job_validate.py @@ -80,23 +80,21 @@ def test_pipeline_job_validation_on_load(self, pipeline_job_path: str, expected_ "value": None, }, ), - # does not work in CI - # ( - # "./tests/test_configs/pipeline_jobs/invalid/type_sensitive_component_error.yml", - # # not allowed type - # { - # "location": f"{Path('./tests/test_configs/pipeline_jobs/invalid/type_sensitive_component_error.yml').absolute()}#line 24", - # "message": "Value unsupported passed is not in set " - # "['command', 'import', 'sweep', 'parallel', 'pipeline', 'automl', 'spark']", - # "path": "jobs.hello_world_unsupported_type.type", - # "value": "unsupported", - # }, - # ), + ( + "./tests/test_configs/pipeline_jobs/invalid/type_sensitive_component_error.yml", + # not allowed type + { + "location": f"{Path('./tests/test_configs/pipeline_jobs/invalid/type_sensitive_component_error.yml').absolute()}#line 24", + "message": "Value 'unsupported' passed is not in set " "['command', 'import', 'sweep', 'parallel'", + "path": "jobs.hello_world_unsupported_type.type", + "value": "unsupported", + }, + ), ( "./tests/test_configs/pipeline_jobs/job_with_incorrect_component_content/pipeline.yml", { "location": f"{Path('./tests/test_configs/pipeline_jobs/job_with_incorrect_component_content/pipeline.yml').absolute()}#line 8", - "message": "Not a valid string.; Not a valid string.; Not a valid URL.; " + "message": "Not a valid string.; Not a valid URL.; " "In order to specify a git path, please provide " "the correct path prefixed with 'git+\n" "; In order to specify an existing codes, please " @@ -115,7 +113,7 @@ def test_pipeline_job_schema_error(self, pipeline_job_path: str, expected_valida assert expected_validation_result.pop("message") in result_dict[0].pop("message") assert result_dict[0] == expected_validation_result - @pytest.mark.skip(reason="does not work locally") + @pytest.mark.skip(reason="migration skip: sync pipeline changes during soft code complete.") def test_pipeline_job_type_sensitive_error_message(self): test_path = "./tests/test_configs/pipeline_jobs/helloworld_pipeline_job_inline_comps.yml" pipeline_job: PipelineJob = load_job(test_path) diff --git a/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_anonymous_component_reuse.json b/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_anonymous_component_reuse.json index 78c3b7d5ee3e..1fb52f1aab8d 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_anonymous_component_reuse.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_anonymous_component_reuse.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:00:33 GMT", + "Date": "Fri, 23 Sep 2022 16:10:57 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-609f12112f5546379568dddcec3bcb4e-c208b5103824cecf-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-42aa11393e10eb62259c6873cf1c9d94-52f307599e25bb4c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d3746920-ecc9-4095-9dce-0f3a4a5ff616", - "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-correlation-request-id": "7709af0b-fec4-4aee-9c0c-4b4a78f5bb6a", + "x-ms-ratelimit-remaining-subscription-reads": "11874", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180034Z:d3746920-ecc9-4095-9dce-0f3a4a5ff616", - "x-request-time": "0.109" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161058Z:7709af0b-fec4-4aee-9c0c-4b4a78f5bb6a", + "x-request-time": "0.118" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -47,17 +47,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -71,7 +71,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -79,21 +79,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:00:34 GMT", + "Date": "Fri, 23 Sep 2022 16:10:58 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-910c855c5bc156c1a88815e401744cfc-cb787a4cc080f05e-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-3c39a62d0d980783f28e6e2d0da84500-ef902e4f0f9dc0f3-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f2b234ec-04c9-4fe7-a37d-fc3e3885acec", - "x-ms-ratelimit-remaining-subscription-writes": "1177", + "x-ms-correlation-request-id": "79bb3c80-27f7-404c-a528-45c71a8d4b5d", + "x-ms-ratelimit-remaining-subscription-writes": "1123", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180034Z:f2b234ec-04c9-4fe7-a37d-fc3e3885acec", - "x-request-time": "0.142" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161058Z:79bb3c80-27f7-404c-a528-45c71a8d4b5d", + "x-request-time": "0.114" }, "ResponseBody": { "secretsType": "AccountKey", @@ -101,15 +101,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 18:00:33 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:11:01 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -118,9 +118,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 18:00:34 GMT", - "ETag": "\u00220x8DA96C8560C1979\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:14:00 GMT", + "Date": "Fri, 23 Sep 2022 16:10:59 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -129,32 +129,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:14:00 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ac7e0240-c159-4c9c-828e-d3e8df43e80f", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 18:00:33 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:11:01 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 18:00:34 GMT", + "Date": "Fri, 23 Sep 2022 16:10:59 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -162,12 +162,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -175,7 +175,7 @@ "Connection": "keep-alive", "Content-Length": "288", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -185,7 +185,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -193,27 +193,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:00:34 GMT", + "Date": "Fri, 23 Sep 2022 16:10:59 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-ca88fd888ac4526a934a7e438fef3dac-5acb4a73d53ffba4-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-aeb0d8616b3312d350187f24f7c7789c-b5ca8e0eda8d23ae-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "58933afd-6b35-40f5-879f-9891eb12bf66", - "x-ms-ratelimit-remaining-subscription-writes": "1151", + "x-ms-correlation-request-id": "7ca2a958-45c0-4c13-8dad-32d92c0eaa3f", + "x-ms-ratelimit-remaining-subscription-writes": "1087", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180034Z:58933afd-6b35-40f5-879f-9891eb12bf66", - "x-request-time": "0.065" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161100Z:7ca2a958-45c0-4c13-8dad-32d92c0eaa3f", + "x-request-time": "0.077" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -225,14 +225,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-15T03:14:01.4315202\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-16T18:00:34.775691\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T16:11:00.222187\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -246,7 +246,7 @@ "Connection": "keep-alive", "Content-Length": "1454", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -260,7 +260,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo $[[${{inputs.component_in_number}}]] \u0026 echo ${{inputs.component_in_path}} \u0026 echo ${{outputs.component_out_path}} \u003E ${{outputs.component_out_path}}/component_in_number", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "description": "This is the basic command component", @@ -297,26 +297,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2476", + "Content-Length": "2416", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:00:35 GMT", + "Date": "Fri, 23 Sep 2022 16:11:00 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-3be2b4a187afe515d9bc7d7d38e33f63-de92fb287bb8e47f-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-0599ab6969d643dc70d67a5ddac980f8-9c6afe558e6830db-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4517560c-daf0-4c88-8b4a-b29fe2162c33", - "x-ms-ratelimit-remaining-subscription-writes": "1150", + "x-ms-correlation-request-id": "81573a35-6522-4ac4-884c-e3f3d4fb86f0", + "x-ms-ratelimit-remaining-subscription-writes": "1086", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180035Z:4517560c-daf0-4c88-8b4a-b29fe2162c33", - "x-request-time": "0.303" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161101Z:81573a35-6522-4ac4-884c-e3f3d4fb86f0", + "x-request-time": "0.573" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/105ae326-caa1-40ae-8d30-22831d5702cb", - "name": "105ae326-caa1-40ae-8d30-22831d5702cb", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191", + "name": "bf151e23-da4f-4101-bf39-8bf62d31a191", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -329,7 +329,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "105ae326-caa1-40ae-8d30-22831d5702cb", + "version": "bf151e23-da4f-4101-bf39-8bf62d31a191", "display_name": "CommandComponentBasic", "is_deterministic": "True", "type": "command", @@ -356,7 +356,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -366,12 +366,12 @@ } }, "systemData": { - "createdAt": "2022-09-15T03:16:01.4948096\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:16:01.6782559\u002B00:00", - "lastModifiedBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "lastModifiedByType": "Application" + "createdAt": "2022-09-23T16:11:01.2843263\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T16:11:01.2843263\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", + "lastModifiedByType": "User" } } }, @@ -382,7 +382,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -390,24 +390,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:00:35 GMT", + "Date": "Fri, 23 Sep 2022 16:11:01 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-f0c2b18a95b1690ef13041557ad3d95a-c63a88aea25240d0-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-0aafda89ce02d1897b9f9a7fd0801ca2-53dda47749e92e63-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ff55867a-9c00-42ce-be22-ea64cccccfeb", - "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-correlation-request-id": "9a9bfca8-c851-4529-a40c-f27a471beafd", + "x-ms-ratelimit-remaining-subscription-reads": "11873", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180035Z:ff55867a-9c00-42ce-be22-ea64cccccfeb", - "x-request-time": "0.116" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161102Z:9a9bfca8-c851-4529-a40c-f27a471beafd", + "x-request-time": "0.082" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -422,17 +422,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -446,7 +446,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -454,20 +454,20 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:00:35 GMT", + "Date": "Fri, 23 Sep 2022 16:11:02 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-7e4acd49225db058d49fc90e2a2e214a-19d735d3f6a175e1-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-ad180669c64a395ec3fe00bd434e6735-70a9f37e543d14bc-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "79096d16-242a-4b8f-9653-0877583f62ce", - "x-ms-ratelimit-remaining-subscription-writes": "1176", + "x-ms-correlation-request-id": "7d5ae63d-6b40-4994-b235-ec701dcc9401", + "x-ms-ratelimit-remaining-subscription-writes": "1122", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180036Z:79096d16-242a-4b8f-9653-0877583f62ce", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161103Z:7d5ae63d-6b40-4994-b235-ec701dcc9401", "x-request-time": "0.099" }, "ResponseBody": { @@ -476,15 +476,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 18:00:35 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:11:05 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -493,9 +493,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 18:00:36 GMT", - "ETag": "\u00220x8DA96C8560C1979\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:14:00 GMT", + "Date": "Fri, 23 Sep 2022 16:11:03 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -504,32 +504,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:14:00 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ac7e0240-c159-4c9c-828e-d3e8df43e80f", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 18:00:35 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:11:05 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 18:00:36 GMT", + "Date": "Fri, 23 Sep 2022 16:11:03 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -537,12 +537,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -550,7 +550,7 @@ "Connection": "keep-alive", "Content-Length": "288", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -560,7 +560,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -568,27 +568,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:00:36 GMT", + "Date": "Fri, 23 Sep 2022 16:11:03 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-72993e3fb13d18603530db8441aae791-e27e3d2b1c264898-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-9e3bc369585ebb4bd35134c105dcbed4-a2e83be57dd94870-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "81fd5f30-f8b9-486c-b25d-b2ad60f375f3", - "x-ms-ratelimit-remaining-subscription-writes": "1149", + "x-ms-correlation-request-id": "ed4959d8-4ec7-49a1-9ad6-fcec537b02cc", + "x-ms-ratelimit-remaining-subscription-writes": "1085", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180036Z:81fd5f30-f8b9-486c-b25d-b2ad60f375f3", - "x-request-time": "0.072" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161104Z:ed4959d8-4ec7-49a1-9ad6-fcec537b02cc", + "x-request-time": "0.137" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -600,14 +600,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-15T03:14:01.4315202\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-16T18:00:36.42693\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T16:11:04.2722865\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -621,7 +621,7 @@ "Connection": "keep-alive", "Content-Length": "1454", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -635,7 +635,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo $[[${{inputs.component_in_number}}]] \u0026 echo ${{inputs.component_in_path}} \u0026 echo ${{outputs.component_out_path}} \u003E ${{outputs.component_out_path}}/component_in_number", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "description": "This is the basic command component", @@ -672,26 +672,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2476", + "Content-Length": "2416", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:00:36 GMT", + "Date": "Fri, 23 Sep 2022 16:11:04 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-9f0c725fb953048685d3082e4db93afd-f4ae00c4929e7510-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-db71c021114d62041d6224d904eb2d17-43bb0d93c07640f1-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f5d772f6-d26d-4b5d-9955-8c67bdad2427", - "x-ms-ratelimit-remaining-subscription-writes": "1148", + "x-ms-correlation-request-id": "900b916a-8bed-4032-b6d4-9304068fe162", + "x-ms-ratelimit-remaining-subscription-writes": "1084", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180037Z:f5d772f6-d26d-4b5d-9955-8c67bdad2427", - "x-request-time": "0.349" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161105Z:900b916a-8bed-4032-b6d4-9304068fe162", + "x-request-time": "0.302" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/105ae326-caa1-40ae-8d30-22831d5702cb", - "name": "105ae326-caa1-40ae-8d30-22831d5702cb", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191", + "name": "bf151e23-da4f-4101-bf39-8bf62d31a191", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -704,7 +704,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "105ae326-caa1-40ae-8d30-22831d5702cb", + "version": "bf151e23-da4f-4101-bf39-8bf62d31a191", "display_name": "CommandComponentBasic", "is_deterministic": "True", "type": "command", @@ -731,7 +731,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -741,12 +741,12 @@ } }, "systemData": { - "createdAt": "2022-09-15T03:16:01.4948096\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:16:01.6782559\u002B00:00", - "lastModifiedBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "lastModifiedByType": "Application" + "createdAt": "2022-09-23T16:11:01.2843263\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T16:11:01.4598118\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", + "lastModifiedByType": "User" } } }, @@ -757,7 +757,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -765,24 +765,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:00:36 GMT", + "Date": "Fri, 23 Sep 2022 16:11:05 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-5f0e014f2ffc694feaf3752cd04a818f-1b0ec6626bb6aba7-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-e993f896e48b672f00bd22c124887837-f1cb51d344d8b77f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6d95e1f6-f75b-410e-a18c-c146cc1d6f3e", - "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-correlation-request-id": "ef55145b-8549-4649-bed7-117aa867b68f", + "x-ms-ratelimit-remaining-subscription-reads": "11872", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180037Z:6d95e1f6-f75b-410e-a18c-c146cc1d6f3e", - "x-request-time": "0.091" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161106Z:ef55145b-8549-4649-bed7-117aa867b68f", + "x-request-time": "0.092" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -797,17 +797,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -821,7 +821,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -829,21 +829,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:00:37 GMT", + "Date": "Fri, 23 Sep 2022 16:11:06 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-f254eb1a54bd28e98a19bd1bd5d02e23-db08de58dfc55f2d-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-7ccf75d632dfe49c4b18cacbf62b0d09-4402615651270deb-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "15902fcd-2fba-4f4c-ac43-7f94e35fcd1d", - "x-ms-ratelimit-remaining-subscription-writes": "1175", + "x-ms-correlation-request-id": "523a03f4-ee87-44d9-8a61-5901864a5361", + "x-ms-ratelimit-remaining-subscription-writes": "1121", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180037Z:15902fcd-2fba-4f4c-ac43-7f94e35fcd1d", - "x-request-time": "0.121" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161106Z:523a03f4-ee87-44d9-8a61-5901864a5361", + "x-request-time": "0.150" }, "ResponseBody": { "secretsType": "AccountKey", @@ -851,15 +851,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 18:00:36 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:11:09 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -868,9 +868,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 18:00:37 GMT", - "ETag": "\u00220x8DA975B4CC57610\u0022", - "Last-Modified": "Thu, 15 Sep 2022 20:46:01 GMT", + "Date": "Fri, 23 Sep 2022 16:11:07 GMT", + "ETag": "\u00220x8DA9D76EE2580A0\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:18:55 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -879,32 +879,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 20:46:01 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:18:53 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "f0648f42-ca3c-4aee-9d9e-f2fe26dc4430", + "x-ms-meta-name": "7e0b7b4c-1de6-4a8e-a698-623e36fe7206", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/python/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/python/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 18:00:36 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:11:09 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 18:00:37 GMT", + "Date": "Fri, 23 Sep 2022 16:11:07 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -912,12 +912,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/7e0b7b4c-1de6-4a8e-a698-623e36fe7206/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -925,7 +925,7 @@ "Connection": "keep-alive", "Content-Length": "295", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -935,7 +935,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python" } }, "StatusCode": 200, @@ -943,27 +943,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:00:38 GMT", + "Date": "Fri, 23 Sep 2022 16:11:07 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-226d63dc0124a50e885bebfc8a3ff81f-dac2248721c3f26f-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-a6ae967e4f40f5dec566a96b13e2231b-e646d3df85a3f99b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "19ab7d1b-ae49-4a80-b129-85ed90a31199", - "x-ms-ratelimit-remaining-subscription-writes": "1147", + "x-ms-correlation-request-id": "8a6c82ba-a348-4897-b654-a0f8d7a23a47", + "x-ms-ratelimit-remaining-subscription-writes": "1083", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180039Z:19ab7d1b-ae49-4a80-b129-85ed90a31199", - "x-request-time": "0.092" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161108Z:8a6c82ba-a348-4897-b654-a0f8d7a23a47", + "x-request-time": "0.096" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/7e0b7b4c-1de6-4a8e-a698-623e36fe7206/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -975,14 +975,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python" }, "systemData": { - "createdAt": "2022-09-15T20:46:01.4252338\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:18:57.5027157\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T18:00:38.9798999\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:11:08.3283602\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -996,7 +996,7 @@ "Connection": "keep-alive", "Content-Length": "395", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -1009,22 +1009,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1392", + "Content-Length": "1332", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:00:39 GMT", + "Date": "Fri, 23 Sep 2022 16:11:09 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/CliV2AnonymousEnvironment/versions/65a57bb8969551bd51f7d3e2f734e76e?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-7ad0c8aed8be8616ea8a1e928fd16c8a-e1535d3018ddc871-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-a0e8097a71db07c62d13e30f395d1c8a-780d27334a1038dd-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "56584ef1-b26e-4625-8f77-55853ee6b821", - "x-ms-ratelimit-remaining-subscription-writes": "1146", + "x-ms-correlation-request-id": "fcde1e79-ba5b-47cb-b7b1-030afc6d0425", + "x-ms-ratelimit-remaining-subscription-writes": "1082", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180039Z:56584ef1-b26e-4625-8f77-55853ee6b821", - "x-request-time": "0.261" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161110Z:fcde1e79-ba5b-47cb-b7b1-030afc6d0425", + "x-request-time": "1.516" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/CliV2AnonymousEnvironment/versions/65a57bb8969551bd51f7d3e2f734e76e", @@ -1042,12 +1042,12 @@ "osType": "Linux" }, "systemData": { - "createdAt": "2022-09-15T03:14:47.8199957\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:14:47.8199957\u002B00:00", - "lastModifiedBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "lastModifiedByType": "Application" + "createdAt": "2022-09-23T15:18:58.8747796\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T15:18:58.8747796\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", + "lastModifiedByType": "User" } } }, @@ -1060,7 +1060,7 @@ "Connection": "keep-alive", "Content-Length": "1202", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -1074,7 +1074,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo ${{inputs.component_in_number}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/7e0b7b4c-1de6-4a8e-a698-623e36fe7206/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/CliV2AnonymousEnvironment/versions/65a57bb8969551bd51f7d3e2f734e76e", "name": "azureml_anonymous", "description": "This is the basic command component", @@ -1102,26 +1102,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2059", + "Content-Length": "2055", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:00:39 GMT", + "Date": "Fri, 23 Sep 2022 16:11:11 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-b21ad555e013bb1827bdad4f49edf3d6-2a48d05f0a9c4cfb-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-d51a8af8a9365b0c114c6fea70b44a7e-d7d88eba06360126-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "33ac38e2-ecb4-450b-8f8a-b46a5f201603", - "x-ms-ratelimit-remaining-subscription-writes": "1145", + "x-ms-correlation-request-id": "6907f6f3-33b7-4814-ba11-ac785ec25bc8", + "x-ms-ratelimit-remaining-subscription-writes": "1081", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180040Z:33ac38e2-ecb4-450b-8f8a-b46a5f201603", - "x-request-time": "0.305" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161112Z:6907f6f3-33b7-4814-ba11-ac785ec25bc8", + "x-request-time": "0.404" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/6d45e1a5-3f69-4171-984e-406540e9dbe1", - "name": "6d45e1a5-3f69-4171-984e-406540e9dbe1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/fa6902d5-2577-42bf-bae4-77940950ef83", + "name": "fa6902d5-2577-42bf-bae4-77940950ef83", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1134,7 +1134,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "6d45e1a5-3f69-4171-984e-406540e9dbe1", + "version": "fa6902d5-2577-42bf-bae4-77940950ef83", "display_name": "CommandComponentBasic", "is_deterministic": "True", "type": "command", @@ -1151,7 +1151,7 @@ "description": "A number" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/7e0b7b4c-1de6-4a8e-a698-623e36fe7206/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/CliV2AnonymousEnvironment/versions/65a57bb8969551bd51f7d3e2f734e76e", "resources": { "instance_count": "1" @@ -1161,11 +1161,11 @@ } }, "systemData": { - "createdAt": "2022-09-16T02:11:03.6737232\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:11:11.845186\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T02:11:03.8495425\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:11:11.845186\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -1177,7 +1177,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1185,24 +1185,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:00:39 GMT", + "Date": "Fri, 23 Sep 2022 16:11:12 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-0690e35f599ed343e290b2ec5d3041aa-3e14b0114081a69d-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-408d4ee0f0793f1e22cb2d947a01b6a2-a4d721e720f8e949-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8f0eefe3-e94f-4c9c-8019-1a5c660a4249", - "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-correlation-request-id": "feba24c3-39d7-4905-ace2-abddf84f2e64", + "x-ms-ratelimit-remaining-subscription-reads": "11871", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180040Z:8f0eefe3-e94f-4c9c-8019-1a5c660a4249", - "x-request-time": "0.086" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161113Z:feba24c3-39d7-4905-ace2-abddf84f2e64", + "x-request-time": "0.118" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -1217,17 +1217,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -1241,7 +1241,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1249,21 +1249,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:00:40 GMT", + "Date": "Fri, 23 Sep 2022 16:11:13 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-0ac14f59c9c61a462f5f067cfb062356-bdb6239551980db5-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-10a5d97e140e966ae85cddac6da5f945-379c766a1fec13c3-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3ce16b1d-e91d-4eec-bf27-6a0610054f3a", - "x-ms-ratelimit-remaining-subscription-writes": "1174", + "x-ms-correlation-request-id": "4403ab3a-093b-4e1b-ba2a-37bc209ffc17", + "x-ms-ratelimit-remaining-subscription-writes": "1120", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180040Z:3ce16b1d-e91d-4eec-bf27-6a0610054f3a", - "x-request-time": "0.097" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161114Z:4403ab3a-093b-4e1b-ba2a-37bc209ffc17", + "x-request-time": "0.106" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1271,15 +1271,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 18:00:39 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:11:16 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -1288,9 +1288,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 18:00:40 GMT", - "ETag": "\u00220x8DA975B4CC57610\u0022", - "Last-Modified": "Thu, 15 Sep 2022 20:46:01 GMT", + "Date": "Fri, 23 Sep 2022 16:11:14 GMT", + "ETag": "\u00220x8DA9D76EE2580A0\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:18:55 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1299,32 +1299,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 20:46:01 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:18:53 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "f0648f42-ca3c-4aee-9d9e-f2fe26dc4430", + "x-ms-meta-name": "7e0b7b4c-1de6-4a8e-a698-623e36fe7206", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/python/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/python/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 18:00:39 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:11:16 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 18:00:40 GMT", + "Date": "Fri, 23 Sep 2022 16:11:14 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1332,12 +1332,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/7e0b7b4c-1de6-4a8e-a698-623e36fe7206/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -1345,7 +1345,7 @@ "Connection": "keep-alive", "Content-Length": "295", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -1355,7 +1355,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python" } }, "StatusCode": 200, @@ -1363,27 +1363,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:00:40 GMT", + "Date": "Fri, 23 Sep 2022 16:11:14 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-937faf9a390cf3f0b90379468af976b7-eae260edadcff1b4-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-798ffd98d0ca77f5171909e0d627bff7-45daf1dcf39d8d3f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b466edee-b1a5-4ea0-a7a7-5889fc3eb5b5", - "x-ms-ratelimit-remaining-subscription-writes": "1144", + "x-ms-correlation-request-id": "ec8d5110-1fdc-41a2-82fa-ec5eca457217", + "x-ms-ratelimit-remaining-subscription-writes": "1080", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180040Z:b466edee-b1a5-4ea0-a7a7-5889fc3eb5b5", - "x-request-time": "0.057" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161115Z:ec8d5110-1fdc-41a2-82fa-ec5eca457217", + "x-request-time": "0.166" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/7e0b7b4c-1de6-4a8e-a698-623e36fe7206/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -1395,14 +1395,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python" }, "systemData": { - "createdAt": "2022-09-15T20:46:01.4252338\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:18:57.5027157\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T18:00:40.924336\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:11:15.4248736\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -1416,7 +1416,7 @@ "Connection": "keep-alive", "Content-Length": "395", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -1429,22 +1429,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1392", + "Content-Length": "1332", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:00:40 GMT", + "Date": "Fri, 23 Sep 2022 16:11:15 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/CliV2AnonymousEnvironment/versions/65a57bb8969551bd51f7d3e2f734e76e?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-555f32da103836a8e9e9e7b4c9a913b2-d44bfebb75db1b83-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-688830dd92527eccb860942e45c43b53-61821f199c84ecc8-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "665fbd54-0bc8-408d-a280-1ea211d498d6", - "x-ms-ratelimit-remaining-subscription-writes": "1143", + "x-ms-correlation-request-id": "dc83b320-56ce-47b4-90fb-1cb8af0f1e05", + "x-ms-ratelimit-remaining-subscription-writes": "1079", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180041Z:665fbd54-0bc8-408d-a280-1ea211d498d6", - "x-request-time": "0.175" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161116Z:dc83b320-56ce-47b4-90fb-1cb8af0f1e05", + "x-request-time": "0.099" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/CliV2AnonymousEnvironment/versions/65a57bb8969551bd51f7d3e2f734e76e", @@ -1462,12 +1462,12 @@ "osType": "Linux" }, "systemData": { - "createdAt": "2022-09-15T03:14:47.8199957\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:14:47.8199957\u002B00:00", - "lastModifiedBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "lastModifiedByType": "Application" + "createdAt": "2022-09-23T15:18:58.8747796\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T15:18:58.8747796\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", + "lastModifiedByType": "User" } } }, @@ -1480,7 +1480,7 @@ "Connection": "keep-alive", "Content-Length": "1202", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -1494,7 +1494,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo ${{inputs.component_in_number}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/7e0b7b4c-1de6-4a8e-a698-623e36fe7206/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/CliV2AnonymousEnvironment/versions/65a57bb8969551bd51f7d3e2f734e76e", "name": "azureml_anonymous", "description": "This is the basic command component", @@ -1522,26 +1522,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2059", + "Content-Length": "2056", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:00:41 GMT", + "Date": "Fri, 23 Sep 2022 16:11:16 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-c0b6b6a4c8a43a5d9c84c6509a0f111b-67fee3941ff35529-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-4c24194fafb1d75e248d8945a42adcf7-097339b08213604e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b4a88c99-8f77-42f5-a483-897133fecf4a", - "x-ms-ratelimit-remaining-subscription-writes": "1142", + "x-ms-correlation-request-id": "58e27c8a-5d0e-4ec9-9796-4c8e6800d6f0", + "x-ms-ratelimit-remaining-subscription-writes": "1078", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180041Z:b4a88c99-8f77-42f5-a483-897133fecf4a", - "x-request-time": "0.249" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161117Z:58e27c8a-5d0e-4ec9-9796-4c8e6800d6f0", + "x-request-time": "0.206" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/6d45e1a5-3f69-4171-984e-406540e9dbe1", - "name": "6d45e1a5-3f69-4171-984e-406540e9dbe1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/fa6902d5-2577-42bf-bae4-77940950ef83", + "name": "fa6902d5-2577-42bf-bae4-77940950ef83", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1554,7 +1554,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "6d45e1a5-3f69-4171-984e-406540e9dbe1", + "version": "fa6902d5-2577-42bf-bae4-77940950ef83", "display_name": "CommandComponentBasic", "is_deterministic": "True", "type": "command", @@ -1571,7 +1571,7 @@ "description": "A number" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/7e0b7b4c-1de6-4a8e-a698-623e36fe7206/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/CliV2AnonymousEnvironment/versions/65a57bb8969551bd51f7d3e2f734e76e", "resources": { "instance_count": "1" @@ -1581,18 +1581,18 @@ } }, "systemData": { - "createdAt": "2022-09-16T02:11:03.6737232\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:11:11.845186\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T02:11:03.8495425\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:11:11.9781223\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } } ], "Variables": { - "component_name_1": "f0da44f3-1e3a-49c2-8bef-d46e7aca5a58", - "component_name_2": "86975f0f-6cd6-4bd6-b106-d14657ea5bc4" + "component_name_1": "61c45b95-7824-4ff6-8277-e8044e99efbb", + "component_name_2": "65d32762-24bc-4984-a595-ce096adb0dd0" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_anonymous_registration_from_load_component.json b/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_anonymous_registration_from_load_component.json index 60d9c91510dd..9e637529c163 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_anonymous_registration_from_load_component.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_anonymous_registration_from_load_component.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:01:12 GMT", + "Date": "Fri, 23 Sep 2022 16:12:20 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-ff9b4c71ca34cde7f8a1ef6881183623-28ced18ae4f321f5-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-e1e33167d65e002f3f25b4417c99d65c-8b3cc3b3a91a0a37-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "154a6633-cc92-4c70-914e-07cb6d8c59f2", - "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-correlation-request-id": "aec79c4e-07fe-4034-9bfc-55f3e28dd6b4", + "x-ms-ratelimit-remaining-subscription-reads": "11860", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180112Z:154a6633-cc92-4c70-914e-07cb6d8c59f2", - "x-request-time": "0.083" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161220Z:aec79c4e-07fe-4034-9bfc-55f3e28dd6b4", + "x-request-time": "0.087" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -47,17 +47,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -71,7 +71,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -79,21 +79,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:01:12 GMT", + "Date": "Fri, 23 Sep 2022 16:12:20 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-7fc51a270d7dc35c3a76d0a4d3d71756-c4a44c9850ac98f4-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-0f0558abdc417856c762a284799e3bf8-df4ae4cc40d90292-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d163ca78-d72b-47b5-9bef-b9e09e6a5b6c", - "x-ms-ratelimit-remaining-subscription-writes": "1170", + "x-ms-correlation-request-id": "681bdae0-3e14-48e5-aeb7-a4d68f6abfe5", + "x-ms-ratelimit-remaining-subscription-writes": "1114", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180113Z:d163ca78-d72b-47b5-9bef-b9e09e6a5b6c", - "x-request-time": "0.094" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161221Z:681bdae0-3e14-48e5-aeb7-a4d68f6abfe5", + "x-request-time": "0.132" }, "ResponseBody": { "secretsType": "AccountKey", @@ -101,15 +101,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 18:01:12 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:12:23 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -118,9 +118,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 18:01:13 GMT", - "ETag": "\u00220x8DA96C8560C1979\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:14:00 GMT", + "Date": "Fri, 23 Sep 2022 16:12:21 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -129,32 +129,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:14:00 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ac7e0240-c159-4c9c-828e-d3e8df43e80f", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 18:01:12 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:12:23 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 18:01:13 GMT", + "Date": "Fri, 23 Sep 2022 16:12:21 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -162,12 +162,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -175,7 +175,7 @@ "Connection": "keep-alive", "Content-Length": "288", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -185,7 +185,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -193,27 +193,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:01:13 GMT", + "Date": "Fri, 23 Sep 2022 16:12:22 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-07dbb782d51890afdc9f033f2a9af882-f437df01774f7617-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-30982691836cb9da4c1e1f163cdfeb24-cf6d18db88946ab3-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f24f9392-3552-4194-93a0-e0a6b4c2166e", - "x-ms-ratelimit-remaining-subscription-writes": "1133", + "x-ms-correlation-request-id": "df8e2df5-e00a-4e1e-8ada-73f79c8a6b82", + "x-ms-ratelimit-remaining-subscription-writes": "1065", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180113Z:f24f9392-3552-4194-93a0-e0a6b4c2166e", - "x-request-time": "0.053" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161222Z:df8e2df5-e00a-4e1e-8ada-73f79c8a6b82", + "x-request-time": "0.071" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -225,14 +225,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-15T03:14:01.4315202\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-16T18:01:13.5994994\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T16:12:22.6266557\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -246,7 +246,7 @@ "Connection": "keep-alive", "Content-Length": "1454", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -260,7 +260,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo $[[${{inputs.component_in_number}}]] \u0026 echo ${{inputs.component_in_path}} \u0026 echo ${{outputs.component_out_path}} \u003E ${{outputs.component_out_path}}/component_in_number", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "description": "This is the basic command component", @@ -297,26 +297,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2476", + "Content-Length": "2416", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:01:16 GMT", + "Date": "Fri, 23 Sep 2022 16:12:23 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-0ffcca1fb3a19ecaa84e817627242d15-b3c96937fd208d81-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-5970ff95dfd4247af85354c58a7eb834-396b1b5aea2935b3-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "249edc7a-125e-4af7-b667-f70e7c97a18d", - "x-ms-ratelimit-remaining-subscription-writes": "1132", + "x-ms-correlation-request-id": "a5ea53a0-f004-4e9a-87eb-bce4e59a1069", + "x-ms-ratelimit-remaining-subscription-writes": "1064", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180116Z:249edc7a-125e-4af7-b667-f70e7c97a18d", - "x-request-time": "0.316" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161223Z:a5ea53a0-f004-4e9a-87eb-bce4e59a1069", + "x-request-time": "0.288" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/105ae326-caa1-40ae-8d30-22831d5702cb", - "name": "105ae326-caa1-40ae-8d30-22831d5702cb", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191", + "name": "bf151e23-da4f-4101-bf39-8bf62d31a191", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -329,7 +329,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "105ae326-caa1-40ae-8d30-22831d5702cb", + "version": "bf151e23-da4f-4101-bf39-8bf62d31a191", "display_name": "CommandComponentBasic", "is_deterministic": "True", "type": "command", @@ -356,7 +356,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -366,23 +366,23 @@ } }, "systemData": { - "createdAt": "2022-09-15T03:16:01.4948096\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:16:01.6782559\u002B00:00", - "lastModifiedBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "lastModifiedByType": "Application" + "createdAt": "2022-09-23T16:11:01.2843263\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T16:11:01.4598118\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", + "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/105ae326-caa1-40ae-8d30-22831d5702cb?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -390,28 +390,28 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:01:16 GMT", + "Date": "Fri, 23 Sep 2022 16:12:23 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-fd179d233081974efccbd10f3ca2f95d-e1fc61672286d0b4-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-9c267618d90d02619835dcf2b0a7de97-061d9a01eb9d3df4-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e96974b8-5b33-4d49-82dd-13304684f6cf", - "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-correlation-request-id": "ff03a0cd-c637-4786-9e64-761c77e424b5", + "x-ms-ratelimit-remaining-subscription-reads": "11859", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180116Z:e96974b8-5b33-4d49-82dd-13304684f6cf", - "x-request-time": "0.124" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161224Z:ff03a0cd-c637-4786-9e64-761c77e424b5", + "x-request-time": "0.092" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/105ae326-caa1-40ae-8d30-22831d5702cb", - "name": "105ae326-caa1-40ae-8d30-22831d5702cb", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191", + "name": "bf151e23-da4f-4101-bf39-8bf62d31a191", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -424,7 +424,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "105ae326-caa1-40ae-8d30-22831d5702cb", + "version": "bf151e23-da4f-4101-bf39-8bf62d31a191", "display_name": "CommandComponentBasic", "is_deterministic": "True", "type": "command", @@ -451,7 +451,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -461,12 +461,12 @@ } }, "systemData": { - "createdAt": "2022-09-15T03:16:01.4948096\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:16:01.6782559\u002B00:00", - "lastModifiedBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "lastModifiedByType": "Application" + "createdAt": "2022-09-23T16:11:01.2843263\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T16:11:01.4598118\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", + "lastModifiedByType": "User" } } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_automl_component.json b/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_automl_component.json index 47a63d8d3ff1..892dd6c52f9e 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_automl_component.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_automl_component.json @@ -7,7 +7,7 @@ "Accept": "application/json, text/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,7 +15,7 @@ "Connection": "keep-alive", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 17:58:59 GMT", + "Date": "Fri, 23 Sep 2022 16:08:16 GMT", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", "Strict-Transport-Security": "max-age=15724800; includeSubDomains; preload", "Transfer-Encoding": "chunked", @@ -23,7 +23,7 @@ "x-aml-cluster": "vienna-eastus-01", "X-Content-Type-Options": "nosniff", "x-ms-response-type": "standard", - "x-request-time": "0.214" + "x-request-time": "0.335" }, "ResponseBody": { "registryId": "3b513a6b-f110-4e7f-9ce3-472b5aa28170", @@ -45,7 +45,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_500533343636/versions/1.0?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_158361314178/versions/1.0?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -53,7 +53,7 @@ "Connection": "keep-alive", "Content-Length": "598", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -63,7 +63,7 @@ "isAnonymous": false, "isArchived": false, "componentSpec": { - "name": "test_500533343636", + "name": "test_158361314178", "description": "Component that executes an AutoML Classification task model training in a pipeline.", "tags": {}, "version": "1.0", @@ -81,25 +81,25 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1053", + "Content-Length": "1051", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 17:59:00 GMT", + "Date": "Fri, 23 Sep 2022 16:08:18 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_500533343636/versions/1.0?api-version=2022-05-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_158361314178/versions/1.0?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-3d00c084be67679823e088239793de23-faf432830cb1d2b6-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-5bca153d3ff437f2f861e168e590be01-82bf4786c46b273b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "575d7ee8-4fba-4bed-a805-45a33587ec1c", - "x-ms-ratelimit-remaining-subscription-writes": "1191", + "x-ms-correlation-request-id": "2ab075d6-0b26-4d89-ae34-7c169b17cbba", + "x-ms-ratelimit-remaining-subscription-writes": "1127", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T175901Z:575d7ee8-4fba-4bed-a805-45a33587ec1c", - "x-request-time": "0.706" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T160819Z:2ab075d6-0b26-4d89-ae34-7c169b17cbba", + "x-request-time": "0.493" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_500533343636/versions/1.0", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_158361314178/versions/1.0", "name": "1.0", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { @@ -109,7 +109,7 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_500533343636", + "name": "test_158361314178", "version": "1.0", "display_name": "AutoML Classification", "type": "automl", @@ -119,23 +119,23 @@ } }, "systemData": { - "createdAt": "2022-09-16T17:59:00.8722889\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:08:18.9358299\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T17:59:01.0881862\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:08:19.1000538\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_500533343636/versions/1.0?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_158361314178/versions/1.0?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -143,27 +143,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 17:59:00 GMT", + "Date": "Fri, 23 Sep 2022 16:08:19 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-2aa9d4beca10ae53a98cf243e68eb704-bc53c01e8aaec5c4-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-d626dafc30367ef4a24e2642b22426df-f98d4aa9c84c2b93-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e6baf18f-d4b9-4064-bd2f-00a4fb75e42e", - "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-correlation-request-id": "fd53cc54-0611-4316-afb8-71a03044b6ff", + "x-ms-ratelimit-remaining-subscription-reads": "11899", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T175901Z:e6baf18f-d4b9-4064-bd2f-00a4fb75e42e", - "x-request-time": "0.152" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T160820Z:fd53cc54-0611-4316-afb8-71a03044b6ff", + "x-request-time": "0.116" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_500533343636/versions/1.0", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_158361314178/versions/1.0", "name": "1.0", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { @@ -173,7 +173,7 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_500533343636", + "name": "test_158361314178", "version": "1.0", "display_name": "AutoML Classification", "type": "automl", @@ -183,17 +183,17 @@ } }, "systemData": { - "createdAt": "2022-09-16T17:59:00.8722889\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:08:18.9358299\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T17:59:01.0881862\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:08:19.1000538\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_500533343636/versions/2?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_158361314178/versions/2?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -201,7 +201,7 @@ "Connection": "keep-alive", "Content-Length": "596", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -211,7 +211,7 @@ "isAnonymous": false, "isArchived": false, "componentSpec": { - "name": "test_500533343636", + "name": "test_158361314178", "description": "Component that executes an AutoML Classification task model training in a pipeline.", "tags": {}, "version": "2", @@ -229,25 +229,25 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1047", + "Content-Length": "1045", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 17:59:01 GMT", + "Date": "Fri, 23 Sep 2022 16:08:20 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_500533343636/versions/2?api-version=2022-05-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_158361314178/versions/2?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-a665ad84e2c93407b02c3b002acc9181-f24d61ace3ad92c1-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-48a0baf8412ca1b37b6f15d5b968fb34-e169c5d7d74edf5d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "12017902-f95b-4e03-a2b8-78d6079b5a46", - "x-ms-ratelimit-remaining-subscription-writes": "1190", + "x-ms-correlation-request-id": "11f01222-3a7c-4c8d-b81c-4fe6a10841f5", + "x-ms-ratelimit-remaining-subscription-writes": "1126", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T175902Z:12017902-f95b-4e03-a2b8-78d6079b5a46", - "x-request-time": "0.548" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T160821Z:11f01222-3a7c-4c8d-b81c-4fe6a10841f5", + "x-request-time": "0.511" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_500533343636/versions/2", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_158361314178/versions/2", "name": "2", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { @@ -257,7 +257,7 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_500533343636", + "name": "test_158361314178", "version": "2", "display_name": "AutoML Classification", "type": "automl", @@ -267,17 +267,17 @@ } }, "systemData": { - "createdAt": "2022-09-16T17:59:02.0866037\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:08:20.8668695\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T17:59:02.3169667\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:08:21.0966598\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://cert-master.experiments.azureml-test.net/mferp/managementfrontend/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/registries/testFeed/components/test_291009432509/versions/1.0?api-version=2021-10-01-dataplanepreview", + "RequestUri": "https://cert-master.experiments.azureml-test.net/mferp/managementfrontend/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/registries/testFeed/components/test_169392430306/versions/1.0?api-version=2021-10-01-dataplanepreview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -285,7 +285,7 @@ "Connection": "keep-alive", "Content-Length": "598", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -295,7 +295,7 @@ "isAnonymous": false, "isArchived": false, "componentSpec": { - "name": "test_291009432509", + "name": "test_169392430306", "description": "Component that executes an AutoML Classification task model training in a pipeline.", "tags": {}, "version": "1.0", @@ -315,26 +315,26 @@ "Connection": "keep-alive", "Content-Length": "4", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 17:59:09 GMT", - "Location": "https://master.api.azureml-test.ms/assetstore/v1.0/operations/ayIsQEagEt2IX7vwiuANGKlfhOc4JUKND054Gkjx8cs", + "Date": "Fri, 23 Sep 2022 16:08:29 GMT", + "Location": "https://master.api.azureml-test.ms/assetstore/v1.0/operations/LeFNlH9Js3fcx81Wx01n07e9g45_HFiGcR6or7Xop3E", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", "Strict-Transport-Security": "max-age=15724800; includeSubDomains; preload", - "x-aml-cluster": "vienna-test-westus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", "x-ms-async-operation-timeout": "PT1H", "x-ms-response-type": "standard", - "x-request-time": "4.963" + "x-request-time": "4.901" }, "ResponseBody": "null" }, { - "RequestUri": "https://master.api.azureml-test.ms/assetstore/v1.0/operations/ayIsQEagEt2IX7vwiuANGKlfhOc4JUKND054Gkjx8cs", + "RequestUri": "https://master.api.azureml-test.ms/assetstore/v1.0/operations/LeFNlH9Js3fcx81Wx01n07e9g45_HFiGcR6or7Xop3E", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -342,26 +342,26 @@ "Connection": "keep-alive", "Content-Length": "90", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 17:59:14 GMT", + "Date": "Fri, 23 Sep 2022 16:08:36 GMT", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", "Strict-Transport-Security": "max-age=15724800; includeSubDomains; preload", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", "x-ms-response-type": "standard", - "x-request-time": "0.022" + "x-request-time": "0.034" }, "ResponseBody": { - "assetId": "azureml://registries/testFeed/components/test_291009432509/versions/1.0" + "assetId": "azureml://registries/testFeed/components/test_169392430306/versions/1.0" } }, { - "RequestUri": "https://cert-master.experiments.azureml-test.net/mferp/managementfrontend/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/registries/testFeed/components/test_291009432509/versions/1.0?api-version=2021-10-01-dataplanepreview", + "RequestUri": "https://cert-master.experiments.azureml-test.net/mferp/managementfrontend/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/registries/testFeed/components/test_169392430306/versions/1.0?api-version=2021-10-01-dataplanepreview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -369,22 +369,22 @@ "Connection": "keep-alive", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 17:59:15 GMT", + "Date": "Fri, 23 Sep 2022 16:08:38 GMT", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-58eff71fe6a6d5a612bb0a7314d80d01-ffadb38744abedb7-00\u0022", + "Server-Timing": "traceparent;desc=\u002200-7d57a46a4290dfeeb9b78b8d41214a40-7dcb64733c7e987a-00\u0022", "Strict-Transport-Security": "max-age=15724800; includeSubDomains; preload", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-test-westus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": [ "nosniff", "nosniff" ], "x-ms-response-type": "standard", - "x-request-time": "0.758" + "x-request-time": "0.874" }, "ResponseBody": { - "id": "azureml://registries/testFeed/components/test_291009432509/versions/1.0", + "id": "azureml://registries/testFeed/components/test_169392430306/versions/1.0", "name": "1.0", "properties": { "description": null, @@ -393,7 +393,7 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_291009432509", + "name": "test_169392430306", "version": "1.0", "display_name": "AutoML Classification", "type": "automl", @@ -403,23 +403,23 @@ } }, "systemData": { - "createdAt": "2022-09-16T17:59:06.2699135\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:08:27.4186862\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T17:59:06.2699135\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:08:27.4186862\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://cert-master.experiments.azureml-test.net/mferp/managementfrontend/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/registries/testFeed/components/test_291009432509/versions/1.0?api-version=2021-10-01-dataplanepreview", + "RequestUri": "https://cert-master.experiments.azureml-test.net/mferp/managementfrontend/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/registries/testFeed/components/test_169392430306/versions/1.0?api-version=2021-10-01-dataplanepreview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -427,22 +427,22 @@ "Connection": "keep-alive", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 17:59:16 GMT", + "Date": "Fri, 23 Sep 2022 16:08:39 GMT", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-749373f9b5378a0096a4bf1fdc20f383-94fdb3b1608d82c6-00\u0022", + "Server-Timing": "traceparent;desc=\u002200-9974e2f5dfed8503fed39c18135f456e-e71c2cb03b26f31c-00\u0022", "Strict-Transport-Security": "max-age=15724800; includeSubDomains; preload", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-test-westus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": [ "nosniff", "nosniff" ], "x-ms-response-type": "standard", - "x-request-time": "0.843" + "x-request-time": "0.733" }, "ResponseBody": { - "id": "azureml://registries/testFeed/components/test_291009432509/versions/1.0", + "id": "azureml://registries/testFeed/components/test_169392430306/versions/1.0", "name": "1.0", "properties": { "description": null, @@ -451,7 +451,7 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_291009432509", + "name": "test_169392430306", "version": "1.0", "display_name": "AutoML Classification", "type": "automl", @@ -461,17 +461,17 @@ } }, "systemData": { - "createdAt": "2022-09-16T17:59:06.2699135\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:08:27.4186862\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T17:59:06.2699135\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:08:27.4186862\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://cert-master.experiments.azureml-test.net/mferp/managementfrontend/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/registries/testFeed/components/test_291009432509/versions/2?api-version=2021-10-01-dataplanepreview", + "RequestUri": "https://cert-master.experiments.azureml-test.net/mferp/managementfrontend/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/registries/testFeed/components/test_169392430306/versions/2?api-version=2021-10-01-dataplanepreview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -479,7 +479,7 @@ "Connection": "keep-alive", "Content-Length": "596", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -489,7 +489,7 @@ "isAnonymous": false, "isArchived": false, "componentSpec": { - "name": "test_291009432509", + "name": "test_169392430306", "description": "Component that executes an AutoML Classification task model training in a pipeline.", "tags": {}, "version": "2", @@ -509,26 +509,26 @@ "Connection": "keep-alive", "Content-Length": "4", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 17:59:19 GMT", - "Location": "https://master.api.azureml-test.ms/assetstore/v1.0/operations/J9W3mPVCxWw_gOrKlpONyykT0wSVu9upHVMqw73qQtI", + "Date": "Fri, 23 Sep 2022 16:08:43 GMT", + "Location": "https://master.api.azureml-test.ms/assetstore/v1.0/operations/2Te2tpgbW19buSqMXPeU_BUH32vTQ4lOntghvHI_zI0", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", "Strict-Transport-Security": "max-age=15724800; includeSubDomains; preload", - "x-aml-cluster": "vienna-test-westus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", "x-ms-async-operation-timeout": "PT1H", "x-ms-response-type": "standard", - "x-request-time": "3.422" + "x-request-time": "3.594" }, "ResponseBody": "null" }, { - "RequestUri": "https://master.api.azureml-test.ms/assetstore/v1.0/operations/J9W3mPVCxWw_gOrKlpONyykT0wSVu9upHVMqw73qQtI", + "RequestUri": "https://master.api.azureml-test.ms/assetstore/v1.0/operations/2Te2tpgbW19buSqMXPeU_BUH32vTQ4lOntghvHI_zI0", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -536,26 +536,26 @@ "Connection": "keep-alive", "Content-Length": "88", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 17:59:24 GMT", + "Date": "Fri, 23 Sep 2022 16:08:49 GMT", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", "Strict-Transport-Security": "max-age=15724800; includeSubDomains; preload", "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", "x-ms-response-type": "standard", - "x-request-time": "0.019" + "x-request-time": "0.025" }, "ResponseBody": { - "assetId": "azureml://registries/testFeed/components/test_291009432509/versions/2" + "assetId": "azureml://registries/testFeed/components/test_169392430306/versions/2" } }, { - "RequestUri": "https://cert-master.experiments.azureml-test.net/mferp/managementfrontend/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/registries/testFeed/components/test_291009432509/versions/2?api-version=2021-10-01-dataplanepreview", + "RequestUri": "https://cert-master.experiments.azureml-test.net/mferp/managementfrontend/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/registries/testFeed/components/test_169392430306/versions/2?api-version=2021-10-01-dataplanepreview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -563,22 +563,22 @@ "Connection": "keep-alive", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 17:59:25 GMT", + "Date": "Fri, 23 Sep 2022 16:08:50 GMT", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-fc56c7a518032634fed15e22c2ce7487-ec66cbadf2e8e85b-00\u0022", + "Server-Timing": "traceparent;desc=\u002200-9e358e2196cc674ad9063b88d9cb3cca-4cd07893ffd342ca-00\u0022", "Strict-Transport-Security": "max-age=15724800; includeSubDomains; preload", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-test-westus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": [ "nosniff", "nosniff" ], "x-ms-response-type": "standard", - "x-request-time": "0.722" + "x-request-time": "0.638" }, "ResponseBody": { - "id": "azureml://registries/testFeed/components/test_291009432509/versions/2", + "id": "azureml://registries/testFeed/components/test_169392430306/versions/2", "name": "2", "properties": { "description": null, @@ -587,7 +587,7 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_291009432509", + "name": "test_169392430306", "version": "2", "display_name": "AutoML Classification", "type": "automl", @@ -597,18 +597,18 @@ } }, "systemData": { - "createdAt": "2022-09-16T17:59:17.0960637\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:08:40.969063\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T17:59:17.0960638\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:08:40.9690631\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } } ], "Variables": { - "registry_component_name": "test_291009432509", - "workspace_component_name": "test_500533343636" + "registry_component_name": "test_169392430306", + "workspace_component_name": "test_158361314178" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_command_component.json b/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_command_component.json index d7c6f9c4abd6..f09e0e58955c 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_command_component.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_command_component.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 17:58:42 GMT", + "Date": "Fri, 23 Sep 2022 16:07:46 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-7a6115ab0d7ec8d384092585cffc9039-91c27a34be0a5c7f-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-b821d786dc3917b1dde3904554f678e5-741418332185c1e5-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9a984b65-4005-4161-98bc-db95239dbad5", - "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-correlation-request-id": "1e3d98d7-a42a-431e-b2b7-3b65f3ca789d", + "x-ms-ratelimit-remaining-subscription-reads": "11905", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T175843Z:9a984b65-4005-4161-98bc-db95239dbad5", - "x-request-time": "0.135" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T160747Z:1e3d98d7-a42a-431e-b2b7-3b65f3ca789d", + "x-request-time": "0.077" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -47,17 +47,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -71,7 +71,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -79,21 +79,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 17:58:43 GMT", + "Date": "Fri, 23 Sep 2022 16:07:47 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-18528a8d2eba5622868076abbf0b7ab1-810573f4da09e48a-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-fd2db2c38e71d76cc653159b7717c527-1e40feb58b389fa7-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d30de41e-1be7-497f-a5a4-e748cc8c7539", - "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-correlation-request-id": "034eb24e-3592-486b-a9d7-1805b3414669", + "x-ms-ratelimit-remaining-subscription-writes": "1145", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T175843Z:d30de41e-1be7-497f-a5a4-e748cc8c7539", - "x-request-time": "0.101" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T160748Z:034eb24e-3592-486b-a9d7-1805b3414669", + "x-request-time": "0.220" }, "ResponseBody": { "secretsType": "AccountKey", @@ -101,15 +101,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 17:58:42 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:07:50 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -118,9 +118,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 17:58:42 GMT", - "ETag": "\u00220x8DA96C8560C1979\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:14:00 GMT", + "Date": "Fri, 23 Sep 2022 16:07:49 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -129,32 +129,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:14:00 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ac7e0240-c159-4c9c-828e-d3e8df43e80f", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 17:58:42 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:07:51 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 17:58:42 GMT", + "Date": "Fri, 23 Sep 2022 16:07:49 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -162,12 +162,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -175,7 +175,7 @@ "Connection": "keep-alive", "Content-Length": "288", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -185,7 +185,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -193,27 +193,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 17:58:46 GMT", + "Date": "Fri, 23 Sep 2022 16:07:51 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-d84cd2466b1381dcc0686ad5b61a1443-96700856e2890f7b-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-4c7a3a9ee493ef6faaa07d4c380e80cb-52ff01bae26ad43d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "32cdc76f-5cb3-4980-8247-10a139ce7ef4", - "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-correlation-request-id": "cda8c16b-5aca-4f2a-b735-4a783e33b65e", + "x-ms-ratelimit-remaining-subscription-writes": "1135", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T175846Z:32cdc76f-5cb3-4980-8247-10a139ce7ef4", - "x-request-time": "0.309" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T160752Z:cda8c16b-5aca-4f2a-b735-4a783e33b65e", + "x-request-time": "0.573" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -225,20 +225,20 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-15T03:14:01.4315202\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-16T17:58:46.790342\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T16:07:52.0368848\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_467772348210/versions/0.0.1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_160100203284/versions/0.0.1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -246,7 +246,7 @@ "Connection": "keep-alive", "Content-Length": "1439", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -260,9 +260,9 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo $[[${{inputs.component_in_number}}]] \u0026 echo ${{inputs.component_in_path}} \u0026 echo ${{outputs.component_out_path}} \u003E ${{outputs.component_out_path}}/component_in_number", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", - "name": "test_467772348210", + "name": "test_160100203284", "description": "This is the basic command component", "tags": { "tag": "tagvalue", @@ -297,25 +297,25 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2326", + "Content-Length": "2324", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 17:58:47 GMT", + "Date": "Fri, 23 Sep 2022 16:07:53 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_467772348210/versions/0.0.1?api-version=2022-05-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_160100203284/versions/0.0.1?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-d332963690ff6981e5aca50b249f2d6f-d4766f7a1ea6377d-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-7f6ffe6c2ec632a8f747db1b1dbeca42-7197c3713396d7d6-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "392e9847-d734-4a6c-8ed8-0693b2fdf49f", - "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-correlation-request-id": "80ed48e9-e94d-4783-b7ae-831719d5d1ec", + "x-ms-ratelimit-remaining-subscription-writes": "1134", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T175848Z:392e9847-d734-4a6c-8ed8-0693b2fdf49f", - "x-request-time": "1.396" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T160754Z:80ed48e9-e94d-4783-b7ae-831719d5d1ec", + "x-request-time": "1.673" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_467772348210/versions/0.0.1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_160100203284/versions/0.0.1", "name": "0.0.1", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { @@ -328,7 +328,7 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_467772348210", + "name": "test_160100203284", "version": "0.0.1", "display_name": "CommandComponentBasic", "is_deterministic": "True", @@ -356,7 +356,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -366,23 +366,23 @@ } }, "systemData": { - "createdAt": "2022-09-16T17:58:47.9055008\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:07:54.0685491\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T17:58:48.1872446\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:07:54.4165979\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_467772348210/versions/0.0.1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_160100203284/versions/0.0.1?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -390,27 +390,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 17:58:48 GMT", + "Date": "Fri, 23 Sep 2022 16:07:54 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-67772dab2cb77dcbd7d5a754850c9fc6-9a5f1c58000108c7-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-1164e2d31093c6bd3072a15d10bbb23e-70337d8bb51dd292-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e4330baf-eff4-4af6-813e-faa7b56596d6", - "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-correlation-request-id": "9938b75a-8044-4ffd-87ea-5166126d757d", + "x-ms-ratelimit-remaining-subscription-reads": "11904", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T175848Z:e4330baf-eff4-4af6-813e-faa7b56596d6", - "x-request-time": "0.215" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T160755Z:9938b75a-8044-4ffd-87ea-5166126d757d", + "x-request-time": "0.127" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_467772348210/versions/0.0.1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_160100203284/versions/0.0.1", "name": "0.0.1", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { @@ -423,7 +423,7 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_467772348210", + "name": "test_160100203284", "version": "0.0.1", "display_name": "CommandComponentBasic", "is_deterministic": "True", @@ -451,7 +451,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -461,11 +461,11 @@ } }, "systemData": { - "createdAt": "2022-09-16T17:58:47.9055008\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:07:54.0685491\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T17:58:48.1872446\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:07:54.4165979\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -477,7 +477,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -485,24 +485,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 17:58:48 GMT", + "Date": "Fri, 23 Sep 2022 16:07:55 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-d21880680adcb1e1895640af4d85137f-5e4f5a82f5a66a84-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-4cd474e602105ab42f70508de0f3be5c-c04a388e8da8c0e0-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ffcbadd7-78d5-464f-8d17-12a12f6f7ec7", - "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-correlation-request-id": "07f8cbdb-40d3-4777-a2b8-d21a4ab1c6e2", + "x-ms-ratelimit-remaining-subscription-reads": "11903", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T175849Z:ffcbadd7-78d5-464f-8d17-12a12f6f7ec7", - "x-request-time": "0.093" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T160755Z:07f8cbdb-40d3-4777-a2b8-d21a4ab1c6e2", + "x-request-time": "0.077" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -517,17 +517,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -541,7 +541,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -549,21 +549,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 17:58:48 GMT", + "Date": "Fri, 23 Sep 2022 16:07:55 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-821159035d1115e7890f77612f602da5-6d76b4145f5903b2-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-5bf08e22f6e61b019f2b74d76b456e76-5887cdf76163bcc6-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2f4fa73e-90f6-48bc-a23f-dbd59153de3a", - "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-correlation-request-id": "7691d54d-2a26-4b54-be10-7174af0fa064", + "x-ms-ratelimit-remaining-subscription-writes": "1144", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T175849Z:2f4fa73e-90f6-48bc-a23f-dbd59153de3a", - "x-request-time": "0.110" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T160756Z:7691d54d-2a26-4b54-be10-7174af0fa064", + "x-request-time": "0.101" }, "ResponseBody": { "secretsType": "AccountKey", @@ -571,15 +571,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 17:58:48 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:07:58 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -588,9 +588,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 17:58:49 GMT", - "ETag": "\u00220x8DA96C8560C1979\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:14:00 GMT", + "Date": "Fri, 23 Sep 2022 16:07:56 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -599,32 +599,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:14:00 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ac7e0240-c159-4c9c-828e-d3e8df43e80f", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 17:58:48 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:07:59 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 17:58:49 GMT", + "Date": "Fri, 23 Sep 2022 16:07:56 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -632,12 +632,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -645,7 +645,7 @@ "Connection": "keep-alive", "Content-Length": "288", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -655,7 +655,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -663,27 +663,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 17:58:49 GMT", + "Date": "Fri, 23 Sep 2022 16:07:57 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-219df9ada7e4034d0eaedb352225cbe8-5a1a58c3a1c25c3b-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-82ff6c87e968b90be727255f1cdaa17f-e90963183bf162cd-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5baf1f04-6245-40af-9fd8-e9199365f38c", - "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-correlation-request-id": "ba9b38f5-b7c3-4b45-876b-b22bce5fc7c9", + "x-ms-ratelimit-remaining-subscription-writes": "1133", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T175849Z:5baf1f04-6245-40af-9fd8-e9199365f38c", - "x-request-time": "0.056" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T160758Z:ba9b38f5-b7c3-4b45-876b-b22bce5fc7c9", + "x-request-time": "0.093" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -695,20 +695,20 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-15T03:14:01.4315202\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-16T17:58:49.7279291\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T16:07:58.0249325\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_467772348210/versions/2?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_160100203284/versions/2?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -716,7 +716,7 @@ "Connection": "keep-alive", "Content-Length": "1435", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -730,9 +730,9 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo $[[${{inputs.component_in_number}}]] \u0026 echo ${{inputs.component_in_path}} \u0026 echo ${{outputs.component_out_path}} \u003E ${{outputs.component_out_path}}/component_in_number", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", - "name": "test_467772348210", + "name": "test_160100203284", "description": "This is the basic command component", "tags": { "tag": "tagvalue", @@ -767,25 +767,25 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2314", + "Content-Length": "2312", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 17:58:50 GMT", + "Date": "Fri, 23 Sep 2022 16:07:58 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_467772348210/versions/2?api-version=2022-05-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_160100203284/versions/2?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-3d9fa6698eeccc8d4df127e9c58c66fc-28195c232d060721-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-e2d5b3f7ed1c8986459ff07b07da41fd-a7403fc7ec63fac3-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "04fad795-e0c8-49d9-86cc-b15857b51378", - "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-correlation-request-id": "e86574ca-6c07-43a7-88a3-6bbe42703deb", + "x-ms-ratelimit-remaining-subscription-writes": "1132", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T175850Z:04fad795-e0c8-49d9-86cc-b15857b51378", - "x-request-time": "0.914" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T160759Z:e86574ca-6c07-43a7-88a3-6bbe42703deb", + "x-request-time": "0.667" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_467772348210/versions/2", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_160100203284/versions/2", "name": "2", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { @@ -798,7 +798,7 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_467772348210", + "name": "test_160100203284", "version": "2", "display_name": "CommandComponentBasic", "is_deterministic": "True", @@ -826,7 +826,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -836,17 +836,17 @@ } }, "systemData": { - "createdAt": "2022-09-16T17:58:50.3938407\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:07:58.9284999\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T17:58:50.6434604\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:07:59.1257193\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } } ], "Variables": { - "component_name": "test_467772348210" + "component_name": "test_160100203284" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_command_component_create_autoincrement.json b/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_command_component_create_autoincrement.json index ca71e525d607..7010b93bd31e 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_command_component_create_autoincrement.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_command_component_create_autoincrement.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:00:28 GMT", + "Date": "Fri, 23 Sep 2022 16:10:47 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-0cafc148bc299dd23bc3914118846e0c-ef920172b9c3bf9a-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-0f523f7159f521711edb6f40d66bc026-b3909746abe5884a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3e19f062-a41f-48ee-bbbc-33b1668091cb", - "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-correlation-request-id": "e08d2f9d-f401-4d09-a694-c6220acd3f08", + "x-ms-ratelimit-remaining-subscription-reads": "11877", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180029Z:3e19f062-a41f-48ee-bbbc-33b1668091cb", - "x-request-time": "0.110" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161047Z:e08d2f9d-f401-4d09-a694-c6220acd3f08", + "x-request-time": "0.114" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -47,17 +47,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -71,7 +71,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -79,21 +79,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:00:29 GMT", + "Date": "Fri, 23 Sep 2022 16:10:48 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-23506e9dc98402a3f90d95c1c421ca0a-5b2b71eb320fd918-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-a896b956ab6dba3bb32562a1e529cc6f-595bedd3f343edbe-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3fc253e9-6a9e-462e-9d87-2924fc61e66f", - "x-ms-ratelimit-remaining-subscription-writes": "1178", + "x-ms-correlation-request-id": "ae986da4-d0e4-429e-8e0b-03f75ee0fa2b", + "x-ms-ratelimit-remaining-subscription-writes": "1124", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180029Z:3fc253e9-6a9e-462e-9d87-2924fc61e66f", - "x-request-time": "0.089" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161048Z:ae986da4-d0e4-429e-8e0b-03f75ee0fa2b", + "x-request-time": "0.092" }, "ResponseBody": { "secretsType": "AccountKey", @@ -101,15 +101,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 18:00:28 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:10:50 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -118,9 +118,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 18:00:29 GMT", - "ETag": "\u00220x8DA975B4CC57610\u0022", - "Last-Modified": "Thu, 15 Sep 2022 20:46:01 GMT", + "Date": "Fri, 23 Sep 2022 16:10:48 GMT", + "ETag": "\u00220x8DA9D76EE2580A0\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:18:55 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -129,32 +129,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 20:46:01 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:18:53 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "f0648f42-ca3c-4aee-9d9e-f2fe26dc4430", + "x-ms-meta-name": "7e0b7b4c-1de6-4a8e-a698-623e36fe7206", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/python/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/python/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 18:00:28 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:10:51 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 18:00:29 GMT", + "Date": "Fri, 23 Sep 2022 16:10:49 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -162,12 +162,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/7e0b7b4c-1de6-4a8e-a698-623e36fe7206/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -175,7 +175,7 @@ "Connection": "keep-alive", "Content-Length": "295", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -185,7 +185,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python" } }, "StatusCode": 200, @@ -193,27 +193,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:00:29 GMT", + "Date": "Fri, 23 Sep 2022 16:10:49 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-64d8dbcc4966c25ede71cc90408490fa-1e91f250f3e8ef87-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-5f9739fcbcb27bad2a8f660454b21953-0b897ec5bf9aace5-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e4fbf268-2eed-4878-b1de-407eb208da27", - "x-ms-ratelimit-remaining-subscription-writes": "1154", + "x-ms-correlation-request-id": "cf6c9b75-8998-4787-a33b-d1d569828196", + "x-ms-ratelimit-remaining-subscription-writes": "1090", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180029Z:e4fbf268-2eed-4878-b1de-407eb208da27", - "x-request-time": "0.057" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161050Z:cf6c9b75-8998-4787-a33b-d1d569828196", + "x-request-time": "0.091" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/7e0b7b4c-1de6-4a8e-a698-623e36fe7206/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -225,51 +225,51 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python" }, "systemData": { - "createdAt": "2022-09-15T20:46:01.4252338\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:18:57.5027157\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T18:00:29.9337332\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:10:50.2235205\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_664796679864?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_1599706469?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1077", + "Content-Length": "1067", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:00:29 GMT", + "Date": "Fri, 23 Sep 2022 16:10:50 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1f66af81-4a47-4970-b08c-d826791ac9bb", - "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-correlation-request-id": "a0e971e3-3470-43f2-8cc3-52cf93bffb2e", + "x-ms-ratelimit-remaining-subscription-reads": "11876", "x-ms-response-type": "error", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180030Z:1f66af81-4a47-4970-b08c-d826791ac9bb", - "x-request-time": "0.101" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161051Z:a0e971e3-3470-43f2-8cc3-52cf93bffb2e", + "x-request-time": "0.085" }, "ResponseBody": { "error": { "code": "UserError", - "message": "Not found component test_664796679864.", + "message": "Not found component test_1599706469.", "details": [], "additionalInfo": [ { @@ -282,27 +282,27 @@ "type": "Correlation", "info": { "value": { - "operation": "f4f500eb56b2a1f8ab2390c1237c2d30", - "request": "4f72929f6d551eaf" + "operation": "2fa4845afb26d28e830da92c3048c676", + "request": "242839f720a72798" } } }, { "type": "Environment", "info": { - "value": "eastus2euap" + "value": "eastus2" } }, { "type": "Location", "info": { - "value": "eastus2euap" + "value": "eastus2" } }, { "type": "Time", "info": { - "value": "2022-09-16T18:00:30.1632121\u002B00:00" + "value": "2022-09-23T16:10:51.1368981\u002B00:00" } }, { @@ -322,15 +322,15 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_664796679864/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_1599706469/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "826", + "Content-Length": "824", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -340,9 +340,9 @@ "isArchived": false, "componentSpec": { "command": "echo ${{outputs.output_path}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/7e0b7b4c-1de6-4a8e-a698-623e36fe7206/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-Minimal/versions/2", - "name": "test_664796679864", + "name": "test_1599706469", "tags": {}, "$schema": "https://azuremlschemas.azureedge.net/development/commandComponent.schema.json", "is_deterministic": true, @@ -360,25 +360,25 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1546", + "Content-Length": "1539", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:00:30 GMT", + "Date": "Fri, 23 Sep 2022 16:10:52 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_664796679864/versions/1?api-version=2022-05-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_1599706469/versions/1?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-0b49552dfdbd25b7362a15a25753c81c-fa3b06d68af8a1cb-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-6fbdd48118ebe6fea8d85de1082d459f-1bf36ccb88225a21-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "97d0ab3e-7f36-421b-98a2-2a4fe230a00b", - "x-ms-ratelimit-remaining-subscription-writes": "1153", + "x-ms-correlation-request-id": "504b9510-6a48-4b7e-9aaa-40d3188dfea7", + "x-ms-ratelimit-remaining-subscription-writes": "1089", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180031Z:97d0ab3e-7f36-421b-98a2-2a4fe230a00b", - "x-request-time": "0.671" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161052Z:504b9510-6a48-4b7e-9aaa-40d3188dfea7", + "x-request-time": "0.682" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_664796679864/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_1599706469/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { @@ -388,7 +388,7 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_664796679864", + "name": "test_1599706469", "version": "1", "is_deterministic": "True", "type": "command", @@ -397,7 +397,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/7e0b7b4c-1de6-4a8e-a698-623e36fe7206/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-Minimal/versions/2", "resources": { "instance_count": "1" @@ -407,23 +407,23 @@ } }, "systemData": { - "createdAt": "2022-09-16T18:00:30.6656985\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:10:52.2139269\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T18:00:30.8633132\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:10:52.406425\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_664796679864?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_1599706469?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -431,28 +431,28 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:00:30 GMT", + "Date": "Fri, 23 Sep 2022 16:10:52 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-5b7ac9780ae49276b92d97d4b77d6d84-0797f5dc60d4d836-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-ee5e5d793fdb1eb663ab9a491e50127f-d594cb408a026ebc-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "db76fd6e-fd3f-4abe-835e-eaa3a7f3d13e", - "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-correlation-request-id": "87cd1a08-85cf-4808-b12b-170446d3a771", + "x-ms-ratelimit-remaining-subscription-reads": "11875", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180031Z:db76fd6e-fd3f-4abe-835e-eaa3a7f3d13e", - "x-request-time": "0.092" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161053Z:87cd1a08-85cf-4808-b12b-170446d3a771", + "x-request-time": "0.051" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_664796679864", - "name": "test_664796679864", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_1599706469", + "name": "test_1599706469", "type": "Microsoft.MachineLearningServices/workspaces/components", "properties": { "description": "", @@ -460,24 +460,24 @@ "properties": {}, "isArchived": false, "latestVersion": null, - "nextVersion": "2022-09-16-18-00-31-2269531" + "nextVersion": "2022-09-23-16-10-53-1560903" }, "systemData": { - "createdAt": "2022-09-16T18:00:30.6101672\u002B00:00", - "lastModifiedAt": "2022-09-16T18:00:30.7473772\u002B00:00" + "createdAt": "2022-09-23T16:10:52.1698322\u002B00:00", + "lastModifiedAt": "2022-09-23T16:10:52.2846888\u002B00:00" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_664796679864/versions/2022-09-16-18-00-31-2269531?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_1599706469/versions/2022-09-23-16-10-53-1560903?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "826", + "Content-Length": "824", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -487,9 +487,9 @@ "isArchived": false, "componentSpec": { "command": "echo ${{outputs.output_path}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/7e0b7b4c-1de6-4a8e-a698-623e36fe7206/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-Minimal/versions/2", - "name": "test_664796679864", + "name": "test_1599706469", "tags": {}, "$schema": "https://azuremlschemas.azureedge.net/development/commandComponent.schema.json", "is_deterministic": true, @@ -507,26 +507,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1624", + "Content-Length": "1618", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:00:32 GMT", + "Date": "Fri, 23 Sep 2022 16:10:53 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_664796679864/versions/2022-09-16-18-00-31-2269531?api-version=2022-05-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_1599706469/versions/2022-09-23-16-10-53-1560903?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-f32e5d929e79bc24cf13857c804fae11-c1e5580654f22d34-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-05628de0712ffd7cc9a7f1cfdce3f217-2c517ad75b409d65-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c59aa0a7-a8e4-414e-bb00-571afc2abb33", - "x-ms-ratelimit-remaining-subscription-writes": "1152", + "x-ms-correlation-request-id": "82112e9b-702d-4b1a-adb7-a4dbfd5d5cc8", + "x-ms-ratelimit-remaining-subscription-writes": "1088", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180032Z:c59aa0a7-a8e4-414e-bb00-571afc2abb33", - "x-request-time": "0.673" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161054Z:82112e9b-702d-4b1a-adb7-a4dbfd5d5cc8", + "x-request-time": "0.625" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_664796679864/versions/2022-09-16-18-00-31-2269531", - "name": "2022-09-16-18-00-31-2269531", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_1599706469/versions/2022-09-23-16-10-53-1560903", + "name": "2022-09-23-16-10-53-1560903", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -535,8 +535,8 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_664796679864", - "version": "2022-09-16-18-00-31-2269531", + "name": "test_1599706469", + "version": "2022-09-23-16-10-53-1560903", "is_deterministic": "True", "type": "command", "outputs": { @@ -544,7 +544,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/7e0b7b4c-1de6-4a8e-a698-623e36fe7206/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-Minimal/versions/2", "resources": { "instance_count": "1" @@ -554,17 +554,17 @@ } }, "systemData": { - "createdAt": "2022-09-16T18:00:32.1549836\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:10:53.9946192\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T18:00:32.3713435\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:10:54.1931447\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } } ], "Variables": { - "component_name": "test_664796679864" + "component_name": "test_1599706469" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_command_component_create_input_output_types[input_types_component.yml].json b/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_command_component_create_input_output_types[input_types_component.yml].json index 11716de054c9..797a2cf89b7a 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_command_component_create_input_output_types[input_types_component.yml].json +++ b/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_command_component_create_input_output_types[input_types_component.yml].json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 17:59:40 GMT", + "Date": "Fri, 23 Sep 2022 16:09:19 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-d0f4c1b0873291b5a147604e2087479f-98beabb05e877980-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-9202f5f874c20edc9087e7c6d7583e55-00c7aef67359cced-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "61f5e756-6c9f-4293-96e1-c325b05df0b9", - "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-correlation-request-id": "c78b724e-2498-4d0c-a041-1a4a9f8d64a2", + "x-ms-ratelimit-remaining-subscription-reads": "11894", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T175940Z:61f5e756-6c9f-4293-96e1-c325b05df0b9", - "x-request-time": "0.084" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T160920Z:c78b724e-2498-4d0c-a041-1a4a9f8d64a2", + "x-request-time": "0.181" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -47,17 +47,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -71,7 +71,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -79,21 +79,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 17:59:40 GMT", + "Date": "Fri, 23 Sep 2022 16:09:20 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-7f127bf755064ca850f2565336f5ca43-b798a1f0671f75dd-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-66f571df9a97adb070950d303041f4ba-c3bfef2a3c9c1f49-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fc2dce9e-b3ba-4e60-a788-9c6a6b518b0a", - "x-ms-ratelimit-remaining-subscription-writes": "1191", + "x-ms-correlation-request-id": "3cf747f9-2abb-4226-b2b4-47d57ace816f", + "x-ms-ratelimit-remaining-subscription-writes": "1137", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T175940Z:fc2dce9e-b3ba-4e60-a788-9c6a6b518b0a", - "x-request-time": "0.092" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T160920Z:3cf747f9-2abb-4226-b2b4-47d57ace816f", + "x-request-time": "0.098" }, "ResponseBody": { "secretsType": "AccountKey", @@ -101,15 +101,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 17:59:39 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:09:23 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -118,9 +118,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 17:59:40 GMT", - "ETag": "\u00220x8DA96C8560C1979\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:14:00 GMT", + "Date": "Fri, 23 Sep 2022 16:09:20 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -129,32 +129,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:14:00 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ac7e0240-c159-4c9c-828e-d3e8df43e80f", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 17:59:39 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:09:23 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 17:59:40 GMT", + "Date": "Fri, 23 Sep 2022 16:09:20 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -162,12 +162,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -175,7 +175,7 @@ "Connection": "keep-alive", "Content-Length": "288", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -185,7 +185,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -193,27 +193,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 17:59:41 GMT", + "Date": "Fri, 23 Sep 2022 16:09:21 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-888258f599cf9c67fd8f087cf478a31c-3a1ce76e10ad1855-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-98efb152cd749caf69fada7d8037be61-f4d1b6558319cf94-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c32fb4e6-446c-466b-9a56-c7cd0ab43cc0", - "x-ms-ratelimit-remaining-subscription-writes": "1181", + "x-ms-correlation-request-id": "b5e4dc16-edaf-4a37-81be-f7be899e3224", + "x-ms-ratelimit-remaining-subscription-writes": "1117", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T175941Z:c32fb4e6-446c-466b-9a56-c7cd0ab43cc0", - "x-request-time": "0.056" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T160922Z:b5e4dc16-edaf-4a37-81be-f7be899e3224", + "x-request-time": "0.093" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -225,28 +225,28 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-15T03:14:01.4315202\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-16T17:59:41.0359041\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T16:09:22.3132857\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_43341606126/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_591373140868/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1844", + "Content-Length": "1845", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -260,9 +260,9 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo ${{inputs.component_in_string}} \u0026 echo ${{inputs.component_in_ranged_integer}} \u0026 echo ${{inputs.component_in_enum}} \u0026 echo ${{inputs.component_in_boolean}} \u0026 echo ${{inputs.component_in_ranged_number}} \u0026", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", - "name": "test_43341606126", + "name": "test_591373140868", "description": "This is the basic command component with several input types", "tags": { "tag": "tagvalue", @@ -317,23 +317,23 @@ "Cache-Control": "no-cache", "Content-Length": "2982", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 17:59:41 GMT", + "Date": "Fri, 23 Sep 2022 16:09:23 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_43341606126/versions/1?api-version=2022-05-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_591373140868/versions/1?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-ab64a3e0b5510a38ac0801115c2868a3-eb32c2eec1c6cdd0-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-a7a7164d40fabd693f6767f5e5c9912d-6fe6507e556be984-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "841df84a-2304-4a78-af15-8c2b697c9cbe", - "x-ms-ratelimit-remaining-subscription-writes": "1180", + "x-ms-correlation-request-id": "dbbcfc07-d201-4beb-a8c5-36d8635e7479", + "x-ms-ratelimit-remaining-subscription-writes": "1116", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T175942Z:841df84a-2304-4a78-af15-8c2b697c9cbe", - "x-request-time": "0.752" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T160924Z:dbbcfc07-d201-4beb-a8c5-36d8635e7479", + "x-request-time": "0.895" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_43341606126/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_591373140868/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { @@ -346,7 +346,7 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_43341606126", + "name": "test_591373140868", "version": "1", "display_name": "CommandComponentBasicInputs", "is_deterministic": "True", @@ -395,7 +395,7 @@ "max": "8.0" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -405,17 +405,17 @@ } }, "systemData": { - "createdAt": "2022-09-16T17:59:41.5344076\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:09:23.4590584\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T17:59:41.7497771\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:09:23.6520471\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } } ], "Variables": { - "component_name": "test_43341606126" + "component_name": "test_591373140868" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_command_component_create_input_output_types[type_contract/custom_model.yml].json b/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_command_component_create_input_output_types[type_contract/custom_model.yml].json index fe441adfa140..7574c0caa216 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_command_component_create_input_output_types[type_contract/custom_model.yml].json +++ b/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_command_component_create_input_output_types[type_contract/custom_model.yml].json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 17:59:33 GMT", + "Date": "Fri, 23 Sep 2022 16:09:06 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-b891779701585b4f605a2f89d2507421-671697f8bdadb097-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-c8523218d4177b34f310415aed7ddd4d-c4c0e0a97db3a419-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9475df53-f9fb-448d-ae3a-16ecddc08c80", - "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-correlation-request-id": "ef2390ad-502b-45ba-b427-e419f6873e93", + "x-ms-ratelimit-remaining-subscription-reads": "11896", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T175933Z:9475df53-f9fb-448d-ae3a-16ecddc08c80", - "x-request-time": "0.154" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T160907Z:ef2390ad-502b-45ba-b427-e419f6873e93", + "x-request-time": "0.113" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -47,17 +47,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -71,7 +71,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -79,21 +79,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 17:59:34 GMT", + "Date": "Fri, 23 Sep 2022 16:09:07 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-de8d9038d2e59f034fc8a69ce1c3d140-13921a71c5757093-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-09a1cfa6be76369988a7a2ff10d7b943-be89ecc7a9be959a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "72a15319-8ef5-46ee-9111-9badd706b844", - "x-ms-ratelimit-remaining-subscription-writes": "1193", + "x-ms-correlation-request-id": "199f38b9-5e89-4fb3-8bde-1f5bd6908064", + "x-ms-ratelimit-remaining-subscription-writes": "1139", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T175934Z:72a15319-8ef5-46ee-9111-9badd706b844", - "x-request-time": "0.128" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T160907Z:199f38b9-5e89-4fb3-8bde-1f5bd6908064", + "x-request-time": "0.112" }, "ResponseBody": { "secretsType": "AccountKey", @@ -101,15 +101,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 17:59:33 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:09:10 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -118,9 +118,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 17:59:34 GMT", - "ETag": "\u00220x8DA96C8560C1979\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:14:00 GMT", + "Date": "Fri, 23 Sep 2022 16:09:07 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -129,32 +129,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:14:00 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ac7e0240-c159-4c9c-828e-d3e8df43e80f", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 17:59:33 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:09:10 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 17:59:34 GMT", + "Date": "Fri, 23 Sep 2022 16:09:07 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -162,12 +162,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -175,7 +175,7 @@ "Connection": "keep-alive", "Content-Length": "288", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -185,7 +185,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -193,27 +193,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 17:59:34 GMT", + "Date": "Fri, 23 Sep 2022 16:09:08 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-2679ea5f5b27f58f588266ad8662afed-cb3e969b73c60265-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-3fd54c55d0663cd0bdd10f2a1ae005af-6194023ad2f1586d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d16a74fc-3123-4aa5-830a-d1d04ef54625", - "x-ms-ratelimit-remaining-subscription-writes": "1185", + "x-ms-correlation-request-id": "d5c2e38d-e8e6-4c77-8da6-89202e7e77ee", + "x-ms-ratelimit-remaining-subscription-writes": "1121", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T175934Z:d16a74fc-3123-4aa5-830a-d1d04ef54625", - "x-request-time": "0.091" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T160909Z:d5c2e38d-e8e6-4c77-8da6-89202e7e77ee", + "x-request-time": "0.076" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -225,28 +225,28 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-15T03:14:01.4315202\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-16T17:59:34.528373\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T16:09:09.1156329\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_386829117649/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_67993091533/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1467", + "Content-Length": "1466", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -260,9 +260,9 @@ "isArchived": false, "componentSpec": { "command": "python -c \u0022\n import pickle\n with open(\u0027${{inputs.component_in_custom_model}}/model.pkl\u0027, \u0027rb\u0027) as f:\n model = pickle.load(f)\n\u0022\n", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", - "name": "test_386829117649", + "name": "test_67993091533", "description": "This is the command component with input/output types of custom model", "tags": { "tag": "tagvalue", @@ -296,25 +296,25 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2329", + "Content-Length": "2324", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 17:59:35 GMT", + "Date": "Fri, 23 Sep 2022 16:09:10 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_386829117649/versions/1?api-version=2022-05-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_67993091533/versions/1?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-3282de3c5d086663535b994b7749d564-d3c8a3ffa7fb3e29-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-bd5c2f26dd78aedc4b34c52795e56fa8-baee741b6e65a859-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c1a170e9-0e3f-41f9-ba1a-96703b4bcd92", - "x-ms-ratelimit-remaining-subscription-writes": "1184", + "x-ms-correlation-request-id": "bcf639ac-7fbc-48a7-a256-2dc1795e892e", + "x-ms-ratelimit-remaining-subscription-writes": "1120", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T175935Z:c1a170e9-0e3f-41f9-ba1a-96703b4bcd92", - "x-request-time": "0.834" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T160910Z:bcf639ac-7fbc-48a7-a256-2dc1795e892e", + "x-request-time": "0.826" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_386829117649/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_67993091533/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { @@ -327,7 +327,7 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_386829117649", + "name": "test_67993091533", "version": "1", "display_name": "CommandComponentCustomInputOutputs", "is_deterministic": "True", @@ -355,7 +355,7 @@ "type": "triton_model" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -365,17 +365,17 @@ } }, "systemData": { - "createdAt": "2022-09-16T17:59:35.1015701\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:09:10.102913\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T17:59:35.3244526\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:09:10.3940711\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } } ], "Variables": { - "component_name": "test_386829117649" + "component_name": "test_67993091533" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_command_component_create_input_output_types[type_contract/mlflow_model.yml].json b/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_command_component_create_input_output_types[type_contract/mlflow_model.yml].json index b309c87b4edb..bb9958f0c969 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_command_component_create_input_output_types[type_contract/mlflow_model.yml].json +++ b/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_command_component_create_input_output_types[type_contract/mlflow_model.yml].json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 17:59:30 GMT", + "Date": "Fri, 23 Sep 2022 16:09:00 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-96d4daa36f2c2062f33777422bb3ed57-8fde7f1dc0b3f752-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-24459d1047ae9c830654587842302164-619bd1d1daf12aa0-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1b98f85a-9d4c-4015-b638-0f6f4e7d381c", - "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-correlation-request-id": "1d923961-af4e-49e7-bea9-6bcf7d6407c8", + "x-ms-ratelimit-remaining-subscription-reads": "11897", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T175930Z:1b98f85a-9d4c-4015-b638-0f6f4e7d381c", - "x-request-time": "0.086" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T160901Z:1d923961-af4e-49e7-bea9-6bcf7d6407c8", + "x-request-time": "0.081" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -47,17 +47,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -71,7 +71,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -79,21 +79,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 17:59:30 GMT", + "Date": "Fri, 23 Sep 2022 16:09:01 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-28d910111080e04d58b48c5b46bfa724-42970e9fe12ad03d-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-64dcf142439453dffc01050c183f7e0f-f52bac5333ddae39-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8a90acb6-9508-4064-a39f-cb531e266d29", - "x-ms-ratelimit-remaining-subscription-writes": "1194", + "x-ms-correlation-request-id": "8d5e7215-8c0e-425f-9f36-0772e0b88ccc", + "x-ms-ratelimit-remaining-subscription-writes": "1140", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T175930Z:8a90acb6-9508-4064-a39f-cb531e266d29", - "x-request-time": "0.093" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T160901Z:8d5e7215-8c0e-425f-9f36-0772e0b88ccc", + "x-request-time": "0.127" }, "ResponseBody": { "secretsType": "AccountKey", @@ -101,15 +101,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 17:59:29 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:09:03 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -118,9 +118,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 17:59:30 GMT", - "ETag": "\u00220x8DA96C8560C1979\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:14:00 GMT", + "Date": "Fri, 23 Sep 2022 16:09:01 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -129,32 +129,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:14:00 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ac7e0240-c159-4c9c-828e-d3e8df43e80f", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 17:59:29 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:09:04 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 17:59:30 GMT", + "Date": "Fri, 23 Sep 2022 16:09:01 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -162,12 +162,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -175,7 +175,7 @@ "Connection": "keep-alive", "Content-Length": "288", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -185,7 +185,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -193,27 +193,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 17:59:31 GMT", + "Date": "Fri, 23 Sep 2022 16:09:02 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-58c2db0e7f5e27b6307dac72e50a99bb-2d2ec575df6059fd-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-db3aa7b8cbf5ebc9495e4bb8f80a6dc3-fcb49483304a1253-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "87746cdd-1dde-46a9-b3d6-1de8074320d2", - "x-ms-ratelimit-remaining-subscription-writes": "1187", + "x-ms-correlation-request-id": "ccea4941-f1e2-4eee-88e3-dfca54673197", + "x-ms-ratelimit-remaining-subscription-writes": "1123", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T175931Z:87746cdd-1dde-46a9-b3d6-1de8074320d2", - "x-request-time": "0.053" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T160903Z:ccea4941-f1e2-4eee-88e3-dfca54673197", + "x-request-time": "0.080" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -225,20 +225,20 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-15T03:14:01.4315202\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-16T17:59:31.1911274\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T16:09:02.921602\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_609979920641/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_434938967080/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -246,7 +246,7 @@ "Connection": "keep-alive", "Content-Length": "1367", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -260,9 +260,9 @@ "isArchived": false, "componentSpec": { "command": "echo ${{inputs.component_in_mlflow_model_azure}}\necho ${{inputs.component_in_mlflow_model_uri}}\n", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", - "name": "test_609979920641", + "name": "test_434938967080", "description": "This is the command component with input/output types of MLTable", "tags": { "tag": "tagvalue", @@ -293,25 +293,25 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2206", + "Content-Length": "2204", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 17:59:32 GMT", + "Date": "Fri, 23 Sep 2022 16:09:03 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_609979920641/versions/1?api-version=2022-05-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_434938967080/versions/1?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-45534ff1361a5f830d06165f55851073-f140ac33aa5a1dd3-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-604e962e4308c2512d1436a5ca25c0bd-d7f6d464ad569afa-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "278c50f6-5f4b-4d2e-9714-8fce2371264b", - "x-ms-ratelimit-remaining-subscription-writes": "1186", + "x-ms-correlation-request-id": "5666b1e6-5811-446a-a91e-a505e1c5d8c7", + "x-ms-ratelimit-remaining-subscription-writes": "1122", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T175932Z:278c50f6-5f4b-4d2e-9714-8fce2371264b", - "x-request-time": "0.775" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T160904Z:5666b1e6-5811-446a-a91e-a505e1c5d8c7", + "x-request-time": "0.721" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_609979920641/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_434938967080/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { @@ -324,7 +324,7 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_609979920641", + "name": "test_434938967080", "version": "1", "display_name": "CommandComponentMLTableInputOutputs", "is_deterministic": "True", @@ -349,7 +349,7 @@ "type": "mlflow_model" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -359,17 +359,17 @@ } }, "systemData": { - "createdAt": "2022-09-16T17:59:31.7681212\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:09:03.8707489\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T17:59:31.9967439\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:09:04.0851817\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } } ], "Variables": { - "component_name": "test_609979920641" + "component_name": "test_434938967080" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_command_component_create_input_output_types[type_contract/mltable.yml].json b/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_command_component_create_input_output_types[type_contract/mltable.yml].json index 9b063a09d239..51fd32243731 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_command_component_create_input_output_types[type_contract/mltable.yml].json +++ b/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_command_component_create_input_output_types[type_contract/mltable.yml].json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 17:59:27 GMT", + "Date": "Fri, 23 Sep 2022 16:08:53 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-dc17d2a0dae1e1d218022832d2dc28e0-a2ffa1c35333204b-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-3f8433c0cd56f92ae7b77890e82d8a60-90b39ab2bcb8bb2f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "415643df-6dc6-4e5e-915e-12d5f2a232b7", - "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-correlation-request-id": "c674e703-36e0-4c2f-8934-64026be69187", + "x-ms-ratelimit-remaining-subscription-reads": "11898", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T175927Z:415643df-6dc6-4e5e-915e-12d5f2a232b7", - "x-request-time": "0.107" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T160853Z:c674e703-36e0-4c2f-8934-64026be69187", + "x-request-time": "0.080" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -47,17 +47,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -71,7 +71,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -79,21 +79,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 17:59:27 GMT", + "Date": "Fri, 23 Sep 2022 16:08:54 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-e14347e36e1d8c3483bcf5d80ceab201-29b5c7e1c8b579af-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-ee2b0ad578dfcc8d3e8ba0246f603159-9002ef086cad6f75-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c777cccd-2556-449e-a4b4-2796248ce168", - "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-correlation-request-id": "953f515b-91c8-415c-b539-9fcb01ad6458", + "x-ms-ratelimit-remaining-subscription-writes": "1141", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T175927Z:c777cccd-2556-449e-a4b4-2796248ce168", - "x-request-time": "0.094" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T160854Z:953f515b-91c8-415c-b539-9fcb01ad6458", + "x-request-time": "0.234" }, "ResponseBody": { "secretsType": "AccountKey", @@ -101,15 +101,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 17:59:26 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:08:56 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -118,9 +118,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 17:59:27 GMT", - "ETag": "\u00220x8DA96C8560C1979\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:14:00 GMT", + "Date": "Fri, 23 Sep 2022 16:08:54 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -129,32 +129,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:14:00 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ac7e0240-c159-4c9c-828e-d3e8df43e80f", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 17:59:26 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:08:57 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 17:59:27 GMT", + "Date": "Fri, 23 Sep 2022 16:08:54 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -162,12 +162,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -175,7 +175,7 @@ "Connection": "keep-alive", "Content-Length": "288", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -185,7 +185,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -193,27 +193,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 17:59:28 GMT", + "Date": "Fri, 23 Sep 2022 16:08:56 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-27b6b3074448f8d99877b4a0659a3317-c35e0957f173a2e2-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-a244442feb9722f7503ac08df4ab9150-c91024f89ed9253e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "07b132f7-afe0-4f68-839e-576e815a3e54", - "x-ms-ratelimit-remaining-subscription-writes": "1189", + "x-ms-correlation-request-id": "9935fcc9-d6c6-4a0a-8a28-0c8666a933e9", + "x-ms-ratelimit-remaining-subscription-writes": "1125", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T175928Z:07b132f7-afe0-4f68-839e-576e815a3e54", - "x-request-time": "0.074" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T160856Z:9935fcc9-d6c6-4a0a-8a28-0c8666a933e9", + "x-request-time": "0.092" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -225,20 +225,20 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-15T03:14:01.4315202\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-16T17:59:28.0291785\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T16:08:56.2957885\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_415705197437/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_312893876312/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -246,7 +246,7 @@ "Connection": "keep-alive", "Content-Length": "1483", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -260,9 +260,9 @@ "isArchived": false, "componentSpec": { "command": "echo ${{inputs.component_in_mltable_mount}}\necho ${{inputs.component_in_mltable_url}}\necho ${{inputs.component_in_mltable_eval}}\n", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", - "name": "test_415705197437", + "name": "test_312893876312", "description": "This is the command component with input/output types of MLTable", "tags": { "tag": "tagvalue", @@ -299,25 +299,25 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2409", + "Content-Length": "2407", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 17:59:29 GMT", + "Date": "Fri, 23 Sep 2022 16:08:57 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_415705197437/versions/1?api-version=2022-05-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_312893876312/versions/1?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-cd852f171f3649e92b97794e19d6981e-8452eafcc5b39f25-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-65ea6b2e46e2a848a07f68224523c084-69ae3b63de102def-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "984356f4-893d-475f-a8cc-35f8e9bdf823", - "x-ms-ratelimit-remaining-subscription-writes": "1188", + "x-ms-correlation-request-id": "c41c87a8-4976-464b-8b27-b22c958f4a07", + "x-ms-ratelimit-remaining-subscription-writes": "1124", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T175929Z:984356f4-893d-475f-a8cc-35f8e9bdf823", - "x-request-time": "0.854" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T160857Z:c41c87a8-4976-464b-8b27-b22c958f4a07", + "x-request-time": "0.795" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_415705197437/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_312893876312/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { @@ -330,7 +330,7 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_415705197437", + "name": "test_312893876312", "version": "1", "display_name": "CommandComponentMLTableInputOutputs", "is_deterministic": "True", @@ -362,7 +362,7 @@ "type": "mltable" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -372,17 +372,17 @@ } }, "systemData": { - "createdAt": "2022-09-16T17:59:28.5705225\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:08:57.4636618\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T17:59:28.8407657\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:08:57.6265076\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } } ], "Variables": { - "component_name": "test_415705197437" + "component_name": "test_312893876312" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_command_component_create_input_output_types[type_contract/path.yml].json b/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_command_component_create_input_output_types[type_contract/path.yml].json index 408bfe29a6a7..1544d7200858 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_command_component_create_input_output_types[type_contract/path.yml].json +++ b/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_command_component_create_input_output_types[type_contract/path.yml].json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 17:59:37 GMT", + "Date": "Fri, 23 Sep 2022 16:09:13 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-dfb6bb62ccf8a7864cf0d1ca1ffd534b-a9b43d6977867e79-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-6600b0f68cb6c1cb6af03eae74849fbd-1222e11bb3c0b7bb-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9cb1b4de-0b94-43db-9195-d438bbd93a06", - "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-correlation-request-id": "79ca7513-0200-441a-b1fd-b6ba4eff1b0d", + "x-ms-ratelimit-remaining-subscription-reads": "11895", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T175937Z:9cb1b4de-0b94-43db-9195-d438bbd93a06", - "x-request-time": "0.089" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T160913Z:79ca7513-0200-441a-b1fd-b6ba4eff1b0d", + "x-request-time": "0.084" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -47,17 +47,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -71,7 +71,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -79,21 +79,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 17:59:37 GMT", + "Date": "Fri, 23 Sep 2022 16:09:13 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-d65adef202833c941113122cc34520b7-c1b11159103b07d6-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-67c2bfda90e23766801e98daefaa8274-0d4967bd98256f5f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6980d28f-28fb-4c68-a0d7-de2279108474", - "x-ms-ratelimit-remaining-subscription-writes": "1192", + "x-ms-correlation-request-id": "d887b162-669d-415c-befe-2b3adc6f57fc", + "x-ms-ratelimit-remaining-subscription-writes": "1138", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T175937Z:6980d28f-28fb-4c68-a0d7-de2279108474", - "x-request-time": "0.119" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T160914Z:d887b162-669d-415c-befe-2b3adc6f57fc", + "x-request-time": "0.101" }, "ResponseBody": { "secretsType": "AccountKey", @@ -101,15 +101,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 17:59:36 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:09:16 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -118,9 +118,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 17:59:37 GMT", - "ETag": "\u00220x8DA96C8560C1979\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:14:00 GMT", + "Date": "Fri, 23 Sep 2022 16:09:13 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -129,32 +129,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:14:00 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ac7e0240-c159-4c9c-828e-d3e8df43e80f", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 17:59:36 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:09:16 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 17:59:37 GMT", + "Date": "Fri, 23 Sep 2022 16:09:14 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -162,12 +162,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -175,7 +175,7 @@ "Connection": "keep-alive", "Content-Length": "288", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -185,7 +185,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -193,27 +193,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 17:59:37 GMT", + "Date": "Fri, 23 Sep 2022 16:09:15 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-a6245fe68bf608bef7cda75e439a0d7b-03b59db52fcbacd5-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-29e76367c9561a2516af6f2490eddfc2-97399ac01acd3842-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "84a32505-10a7-4fd1-8029-b32a92d36925", - "x-ms-ratelimit-remaining-subscription-writes": "1183", + "x-ms-correlation-request-id": "0ec0083e-8723-44eb-8f31-f36186b595a0", + "x-ms-ratelimit-remaining-subscription-writes": "1119", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T175937Z:84a32505-10a7-4fd1-8029-b32a92d36925", - "x-request-time": "0.061" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T160915Z:0ec0083e-8723-44eb-8f31-f36186b595a0", + "x-request-time": "0.098" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -225,20 +225,20 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-15T03:14:01.4315202\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-16T17:59:37.7569215\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T16:09:15.5488306\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_855284486042/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_575153170919/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -246,7 +246,7 @@ "Connection": "keep-alive", "Content-Length": "1494", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -260,9 +260,9 @@ "isArchived": false, "componentSpec": { "command": "cp ${{inputs.component_in_file}} ${{outputs.component_out_file}}\ncp -r ${{inputs.component_in_folder}} ${{outputs.component_out_folder}}\necho \u0022${{inputs.component_in_path}} is a path\u0022\n", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", - "name": "test_855284486042", + "name": "test_575153170919", "description": "This is the command component with input/output types of path", "tags": { "tag": "tagvalue", @@ -299,25 +299,25 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2423", + "Content-Length": "2421", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 17:59:38 GMT", + "Date": "Fri, 23 Sep 2022 16:09:16 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_855284486042/versions/1?api-version=2022-05-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_575153170919/versions/1?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-fa769a9cc83a3808b6828809869b4134-56da1f7c8ffd00fa-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-ca69c17b12d54de79d7a85a9eb00ed97-965e0571d34c7f34-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a03fbee7-1e3a-46c1-bbb8-ec4e8a18fbff", - "x-ms-ratelimit-remaining-subscription-writes": "1182", + "x-ms-correlation-request-id": "7e30cf3f-c6db-4e73-8d28-ed7a523e1d93", + "x-ms-ratelimit-remaining-subscription-writes": "1118", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T175938Z:a03fbee7-1e3a-46c1-bbb8-ec4e8a18fbff", - "x-request-time": "0.811" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T160917Z:7e30cf3f-c6db-4e73-8d28-ed7a523e1d93", + "x-request-time": "0.675" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_855284486042/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_575153170919/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { @@ -330,7 +330,7 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_855284486042", + "name": "test_575153170919", "version": "1", "display_name": "CommandComponentPathInputOutputs", "is_deterministic": "True", @@ -362,7 +362,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -372,17 +372,17 @@ } }, "systemData": { - "createdAt": "2022-09-16T17:59:38.3036209\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:09:16.6796095\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T17:59:38.5644187\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:09:16.8817779\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } } ], "Variables": { - "component_name": "test_855284486042" + "component_name": "test_575153170919" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_command_component_dependency_label_resolution.json b/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_command_component_dependency_label_resolution.json index 4a70025579ef..dd431f75cd74 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_command_component_dependency_label_resolution.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_command_component_dependency_label_resolution.json @@ -1,7 +1,7 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/test_607262445699/versions/foo?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/test_299394825061/versions/foo?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -9,7 +9,7 @@ "Connection": "keep-alive", "Content-Length": "372", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -22,26 +22,27 @@ }, "StatusCode": 201, "ResponseHeaders": { + "Build-ID": "ch4", "Cache-Control": "no-cache", - "Content-Length": "1194", + "Content-Length": "1192", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:00:46 GMT", + "Date": "Fri, 23 Sep 2022 16:11:30 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/test_607262445699/versions/foo?api-version=2022-05-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/test_299394825061/versions/foo?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-c7a59e65e77efdf7f70d73498ec711d4-730397fe6e38d749-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-84691383f2b95654822a64bea6d6fcc7-97b1fd9face575f1-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a69561f0-5f51-4f9a-acb8-1a03f827685f", - "x-ms-ratelimit-remaining-subscription-writes": "1141", + "x-ms-correlation-request-id": "38399c96-c85a-409e-af99-5046e21f8afe", + "x-ms-ratelimit-remaining-subscription-writes": "1077", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180047Z:a69561f0-5f51-4f9a-acb8-1a03f827685f", - "x-request-time": "1.607" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161131Z:38399c96-c85a-409e-af99-5046e21f8afe", + "x-request-time": "10.708" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/test_607262445699/versions/foo", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/test_299394825061/versions/foo", "name": "foo", "type": "Microsoft.MachineLearningServices/workspaces/environments/versions", "properties": { @@ -56,17 +57,17 @@ "osType": "Linux" }, "systemData": { - "createdAt": "2022-09-16T18:00:45.6208421\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:11:20.7748596\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T18:00:45.6208421\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:11:20.7748596\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/test_607262445699/versions/bar?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/test_299394825061/versions/bar?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -74,7 +75,7 @@ "Connection": "keep-alive", "Content-Length": "372", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -87,26 +88,27 @@ }, "StatusCode": 201, "ResponseHeaders": { + "Build-ID": "ch4", "Cache-Control": "no-cache", - "Content-Length": "1194", + "Content-Length": "1192", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:00:48 GMT", + "Date": "Fri, 23 Sep 2022 16:11:32 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/test_607262445699/versions/bar?api-version=2022-05-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/test_299394825061/versions/bar?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-2559ffd54bbd5c31993431e552cf32c0-a68a961532a098a6-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-49d6879e5462ae0a724e29d976fd4f67-fa51c2b5eb64a1ce-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "255b0a9f-9093-40f8-b6d6-3943e59807dd", - "x-ms-ratelimit-remaining-subscription-writes": "1140", + "x-ms-correlation-request-id": "9dc11129-4e16-4fd3-a091-e07f8cac3d8d", + "x-ms-ratelimit-remaining-subscription-writes": "1076", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180048Z:255b0a9f-9093-40f8-b6d6-3943e59807dd", - "x-request-time": "1.583" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161132Z:9dc11129-4e16-4fd3-a091-e07f8cac3d8d", + "x-request-time": "0.312" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/test_607262445699/versions/bar", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/test_299394825061/versions/bar", "name": "bar", "type": "Microsoft.MachineLearningServices/workspaces/environments/versions", "properties": { @@ -121,11 +123,11 @@ "osType": "Linux" }, "systemData": { - "createdAt": "2022-09-16T18:00:48.4534573\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:11:32.6362488\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T18:00:48.4534573\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:11:32.6362488\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -137,7 +139,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -145,24 +147,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:00:58 GMT", + "Date": "Fri, 23 Sep 2022 16:11:44 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-1d23ece3ea1083aabc175dbfa07c6703-6fed6efc7a320b34-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-06cc5109328a555812156582db5685aa-4f2e9f7b155de199-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f0b84050-91b9-466b-898b-a29179fcd0b8", - "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-correlation-request-id": "535fdac9-1b3a-43ba-90fe-f47b27249b64", + "x-ms-ratelimit-remaining-subscription-reads": "11870", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180059Z:f0b84050-91b9-466b-898b-a29179fcd0b8", - "x-request-time": "0.089" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161144Z:535fdac9-1b3a-43ba-90fe-f47b27249b64", + "x-request-time": "0.085" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -177,17 +179,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -201,7 +203,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -209,21 +211,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:00:59 GMT", + "Date": "Fri, 23 Sep 2022 16:11:44 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-67b345656893b3299a594c8c19d8d138-6c1c51698f6eef8c-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-0ea30a6f4c00e16e7ef1970dc9521f37-2575eec02bf2337f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "088367d7-ffd4-4335-9420-f17d01182b0b", - "x-ms-ratelimit-remaining-subscription-writes": "1173", + "x-ms-correlation-request-id": "7eabb04b-45db-4c56-be57-3d75c2b8a903", + "x-ms-ratelimit-remaining-subscription-writes": "1119", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180059Z:088367d7-ffd4-4335-9420-f17d01182b0b", - "x-request-time": "0.093" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161144Z:7eabb04b-45db-4c56-be57-3d75c2b8a903", + "x-request-time": "0.157" }, "ResponseBody": { "secretsType": "AccountKey", @@ -231,15 +233,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 18:00:58 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:11:46 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -248,9 +250,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 18:00:59 GMT", - "ETag": "\u00220x8DA96C8560C1979\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:14:00 GMT", + "Date": "Fri, 23 Sep 2022 16:11:44 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -259,32 +261,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:14:00 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ac7e0240-c159-4c9c-828e-d3e8df43e80f", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 18:00:58 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:11:47 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 18:00:59 GMT", + "Date": "Fri, 23 Sep 2022 16:11:45 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -292,12 +294,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -305,7 +307,7 @@ "Connection": "keep-alive", "Content-Length": "288", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -315,7 +317,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -323,27 +325,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:00:59 GMT", + "Date": "Fri, 23 Sep 2022 16:11:46 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-537a6839462af264b83cbf741c777234-06fd5f19abafc477-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-f5b4c4386688da32ef499c2d46e7536a-0d7333507442f7ce-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "19634b87-2783-4e13-99c0-b9de16805583", - "x-ms-ratelimit-remaining-subscription-writes": "1139", + "x-ms-correlation-request-id": "6136fddc-b64f-4f4e-96d4-ed34eb52ac89", + "x-ms-ratelimit-remaining-subscription-writes": "1075", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180059Z:19634b87-2783-4e13-99c0-b9de16805583", - "x-request-time": "0.056" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161146Z:6136fddc-b64f-4f4e-96d4-ed34eb52ac89", + "x-request-time": "0.086" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -355,26 +357,26 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-15T03:14:01.4315202\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-16T18:00:59.7942172\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T16:11:46.0610917\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/test_607262445699/versions?api-version=2022-05-01\u0026$orderBy=createdtime%20desc\u0026$top=1", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/test_299394825061/versions?api-version=2022-05-01\u0026$orderBy=createdtime%20desc\u0026$top=1", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -382,29 +384,29 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:00:59 GMT", + "Date": "Fri, 23 Sep 2022 16:11:47 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-8a1ecfd08af7ea13f603b5536e8e1705-de5db1b1d74601ca-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-cc96afdb7a2bf6e8b5961c3928e52d99-39b2de5e753809e2-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6438ff5c-3736-4a41-8e5c-2fda53316fc4", - "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-correlation-request-id": "0508b2b6-0f0f-44ba-a739-424fcb241173", + "x-ms-ratelimit-remaining-subscription-reads": "11869", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180100Z:6438ff5c-3736-4a41-8e5c-2fda53316fc4", - "x-request-time": "0.099" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161147Z:0508b2b6-0f0f-44ba-a739-424fcb241173", + "x-request-time": "0.110" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/test_607262445699/versions/bar", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/test_299394825061/versions/bar", "name": "bar", "type": "Microsoft.MachineLearningServices/workspaces/environments/versions", "properties": { @@ -419,11 +421,11 @@ "osType": "Linux" }, "systemData": { - "createdAt": "2022-09-16T18:00:48.4534573\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:11:32.6362488\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T18:00:48.4534573\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:11:32.6362488\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -431,7 +433,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_104717184582/versions/0.0.1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_576335960201/versions/0.0.1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -439,7 +441,7 @@ "Connection": "keep-alive", "Content-Length": "1417", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -453,9 +455,9 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo $[[${{inputs.component_in_number}}]] \u0026 echo ${{inputs.component_in_path}} \u0026 echo ${{outputs.component_out_path}} \u003E ${{outputs.component_out_path}}/component_in_number", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", - "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/test_607262445699/versions/bar", - "name": "test_104717184582", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", + "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/test_299394825061/versions/bar", + "name": "test_576335960201", "description": "This is the basic command component", "tags": { "tag": "tagvalue", @@ -490,25 +492,25 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2304", + "Content-Length": "2302", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:01:01 GMT", + "Date": "Fri, 23 Sep 2022 16:11:48 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_104717184582/versions/0.0.1?api-version=2022-05-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_576335960201/versions/0.0.1?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-5591fc29b50c7f6eff8015a17133731f-210a07edba2d3b2d-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-11bc8f2cb30343b4de951ff7de4a3542-be984c1f179d2320-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ac28839d-6ecf-49db-9b23-79093e0d55c8", - "x-ms-ratelimit-remaining-subscription-writes": "1138", + "x-ms-correlation-request-id": "4ab94b5f-088f-405c-8dc9-74a2fbaedc97", + "x-ms-ratelimit-remaining-subscription-writes": "1074", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180101Z:ac28839d-6ecf-49db-9b23-79093e0d55c8", - "x-request-time": "0.820" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161148Z:4ab94b5f-088f-405c-8dc9-74a2fbaedc97", + "x-request-time": "0.613" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_104717184582/versions/0.0.1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_576335960201/versions/0.0.1", "name": "0.0.1", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { @@ -521,7 +523,7 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_104717184582", + "name": "test_576335960201", "version": "0.0.1", "display_name": "CommandComponentBasic", "is_deterministic": "True", @@ -549,8 +551,8 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", - "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/test_607262445699/versions/bar", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", + "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/test_299394825061/versions/bar", "resources": { "instance_count": "1" }, @@ -559,18 +561,18 @@ } }, "systemData": { - "createdAt": "2022-09-16T18:01:01.3150494\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:11:48.0037797\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T18:01:01.5768331\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:11:48.1792483\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } } ], "Variables": { - "component_name": "test_104717184582", - "environment_name": "test_607262445699" + "component_name": "test_576335960201", + "environment_name": "test_299394825061" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_command_component_get_latest_label.json b/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_command_component_get_latest_label.json index 3a1ffc6d15d7..be2f6bc161dd 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_command_component_get_latest_label.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_command_component_get_latest_label.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:04:52 GMT", + "Date": "Fri, 23 Sep 2022 16:11:51 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-6554f0ac8567fb1f7515581955549f70-7295602b221e9a90-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-22d83c8bda465f29a261bd1d82babe77-438ef5a5101bb423-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "02248163-a143-43c7-baba-40473c98d9f2", - "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-correlation-request-id": "9318b9a3-fec3-421e-b0b6-2010ea25c0b6", + "x-ms-ratelimit-remaining-subscription-reads": "11868", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180453Z:02248163-a143-43c7-baba-40473c98d9f2", - "x-request-time": "0.076" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161151Z:9318b9a3-fec3-421e-b0b6-2010ea25c0b6", + "x-request-time": "0.079" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -47,17 +47,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -71,7 +71,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -79,21 +79,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:04:53 GMT", + "Date": "Fri, 23 Sep 2022 16:11:52 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-3b123ec27a8e31377349f39f298ad592-a1e8d20e5684d8e2-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-2253484154b1dbcb27fee64fa6babe7e-1e4f828e1dac5fc5-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "358d8f99-73b8-407f-b4f4-d1ef5f9c7524", - "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-correlation-request-id": "64c51797-3aea-4034-aded-2409e7a5dc80", + "x-ms-ratelimit-remaining-subscription-writes": "1118", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180454Z:358d8f99-73b8-407f-b4f4-d1ef5f9c7524", - "x-request-time": "0.093" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161153Z:64c51797-3aea-4034-aded-2409e7a5dc80", + "x-request-time": "0.174" }, "ResponseBody": { "secretsType": "AccountKey", @@ -101,15 +101,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 18:04:53 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:11:55 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -118,9 +118,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 18:04:53 GMT", - "ETag": "\u00220x8DA96C8560C1979\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:14:00 GMT", + "Date": "Fri, 23 Sep 2022 16:11:53 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -129,32 +129,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:14:00 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ac7e0240-c159-4c9c-828e-d3e8df43e80f", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 18:04:53 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:11:55 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 18:04:54 GMT", + "Date": "Fri, 23 Sep 2022 16:11:53 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -162,12 +162,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -175,7 +175,7 @@ "Connection": "keep-alive", "Content-Length": "288", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -185,7 +185,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -193,27 +193,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:04:56 GMT", + "Date": "Fri, 23 Sep 2022 16:11:54 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-7ebe9d3342aa8790f510a85f8d9ddc42-5cc108a0cbcd670f-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-b1d9632d0fd8bae3aece9c0d3069e3fc-848b0f10f6971427-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c79911e8-53bb-4499-8a7b-2fe52072cf5b", - "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-correlation-request-id": "431d80ed-1f65-4fe0-a968-f8f1609b87c9", + "x-ms-ratelimit-remaining-subscription-writes": "1073", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180456Z:c79911e8-53bb-4499-8a7b-2fe52072cf5b", - "x-request-time": "0.073" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161154Z:431d80ed-1f65-4fe0-a968-f8f1609b87c9", + "x-request-time": "0.130" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -225,20 +225,20 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-15T03:14:01.4315202\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-16T18:04:56.5111606\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T16:11:54.5442272\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_601521908647/versions/foo?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_537894260212/versions/foo?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -246,7 +246,7 @@ "Connection": "keep-alive", "Content-Length": "1437", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -260,9 +260,9 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo $[[${{inputs.component_in_number}}]] \u0026 echo ${{inputs.component_in_path}} \u0026 echo ${{outputs.component_out_path}} \u003E ${{outputs.component_out_path}}/component_in_number", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", - "name": "test_601521908647", + "name": "test_537894260212", "description": "This is the basic command component", "tags": { "tag": "tagvalue", @@ -297,25 +297,25 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2320", + "Content-Length": "2317", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:04:57 GMT", + "Date": "Fri, 23 Sep 2022 16:11:56 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_601521908647/versions/foo?api-version=2022-05-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_537894260212/versions/foo?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-c5850fc72a638526cd1231f1d3765d5d-e71a1fcad5323242-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-45586fd7529393b62f6ad72bf9e21a17-f5e6d18328c5fa38-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a8d9e5d7-9b77-4df4-814c-96c43d83fcaf", - "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-correlation-request-id": "d4ba126d-c15a-45e6-a8e7-1176e95802a5", + "x-ms-ratelimit-remaining-subscription-writes": "1072", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180457Z:a8d9e5d7-9b77-4df4-814c-96c43d83fcaf", - "x-request-time": "0.878" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161156Z:d4ba126d-c15a-45e6-a8e7-1176e95802a5", + "x-request-time": "0.639" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_601521908647/versions/foo", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_537894260212/versions/foo", "name": "foo", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { @@ -328,7 +328,7 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_601521908647", + "name": "test_537894260212", "version": "foo", "display_name": "CommandComponentBasic", "is_deterministic": "True", @@ -356,7 +356,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -366,23 +366,23 @@ } }, "systemData": { - "createdAt": "2022-09-16T18:04:57.1946093\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:11:55.9056029\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T18:04:57.4127221\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:11:56.087686\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_601521908647/versions?api-version=2022-05-01\u0026$orderBy=createdtime%20desc\u0026$top=1", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_537894260212/versions?api-version=2022-05-01\u0026$orderBy=createdtime%20desc\u0026$top=1", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -390,29 +390,29 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:04:58 GMT", + "Date": "Fri, 23 Sep 2022 16:11:58 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-6874db72766fa93d98167346370b202b-f423329a3f912844-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-70a177ecd2ded60585efb431e9be1293-4949ab2206a05851-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0176915e-d96a-4fc3-84c5-c3b9e5baf424", - "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-correlation-request-id": "cbf2c5a9-ea55-45c6-b13f-da78ac8ab18e", + "x-ms-ratelimit-remaining-subscription-reads": "11867", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180459Z:0176915e-d96a-4fc3-84c5-c3b9e5baf424", - "x-request-time": "0.282" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161158Z:cbf2c5a9-ea55-45c6-b13f-da78ac8ab18e", + "x-request-time": "0.142" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_601521908647/versions/foo", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_537894260212/versions/foo", "name": "foo", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { @@ -425,7 +425,7 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_601521908647", + "name": "test_537894260212", "version": "foo", "display_name": "CommandComponentBasic", "is_deterministic": "True", @@ -453,7 +453,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -463,11 +463,11 @@ } }, "systemData": { - "createdAt": "2022-09-16T18:04:57.1946093\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:11:55.9056029\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T18:04:57.4127221\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:11:56.087686\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -481,7 +481,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -489,24 +489,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:04:58 GMT", + "Date": "Fri, 23 Sep 2022 16:11:58 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-29acb80b82d118f52b31f532e5fe115b-faf063e1a8884723-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-096e3ea67038c64cea38979bd39e2f9f-f777526b28930a41-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6fba4d9d-cdd2-47c1-bfcd-66d268cdea1e", - "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-correlation-request-id": "f82cc3ce-7692-4c0a-b590-1ac9d6b6b49c", + "x-ms-ratelimit-remaining-subscription-reads": "11866", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180459Z:6fba4d9d-cdd2-47c1-bfcd-66d268cdea1e", - "x-request-time": "0.091" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161158Z:f82cc3ce-7692-4c0a-b590-1ac9d6b6b49c", + "x-request-time": "0.116" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -521,17 +521,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -545,7 +545,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -553,21 +553,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:05:00 GMT", + "Date": "Fri, 23 Sep 2022 16:11:59 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-172324cc647bad01ffb69d87264633c1-520d9bb5fce48263-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-48d55be115d77ae5d8fc654e58b3f7a5-e627e6069a917d17-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "94af7877-ca50-4ad7-b6c4-8473b1217521", - "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-correlation-request-id": "c9c5adb7-0c0f-470b-a6a6-871b630829e5", + "x-ms-ratelimit-remaining-subscription-writes": "1117", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180500Z:94af7877-ca50-4ad7-b6c4-8473b1217521", - "x-request-time": "0.086" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161159Z:c9c5adb7-0c0f-470b-a6a6-871b630829e5", + "x-request-time": "0.093" }, "ResponseBody": { "secretsType": "AccountKey", @@ -575,15 +575,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 18:04:59 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:12:01 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -592,9 +592,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 18:05:00 GMT", - "ETag": "\u00220x8DA96C8560C1979\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:14:00 GMT", + "Date": "Fri, 23 Sep 2022 16:11:59 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -603,32 +603,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:14:00 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ac7e0240-c159-4c9c-828e-d3e8df43e80f", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 18:04:59 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:12:02 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 18:05:00 GMT", + "Date": "Fri, 23 Sep 2022 16:12:00 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -636,12 +636,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -649,7 +649,7 @@ "Connection": "keep-alive", "Content-Length": "288", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -659,7 +659,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -667,27 +667,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:05:00 GMT", + "Date": "Fri, 23 Sep 2022 16:12:00 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-9e9ca1fbe2f55fd2aa997fd95b87bbbc-a44f8c1b7708c56c-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-83522fd85ca1ab05271bc06ddcc73913-4ebef9b77e19df66-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1d83314f-6100-4ed3-bc2c-8e8561916fe8", - "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-correlation-request-id": "a330b5a1-8a08-4c4a-823c-e83d676560f7", + "x-ms-ratelimit-remaining-subscription-writes": "1071", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180501Z:1d83314f-6100-4ed3-bc2c-8e8561916fe8", - "x-request-time": "0.060" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161201Z:a330b5a1-8a08-4c4a-823c-e83d676560f7", + "x-request-time": "0.078" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -699,20 +699,20 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-15T03:14:01.4315202\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-16T18:05:01.1118009\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T16:12:01.0087137\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_601521908647/versions/bar?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_537894260212/versions/bar?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -720,7 +720,7 @@ "Connection": "keep-alive", "Content-Length": "1437", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -734,9 +734,9 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo $[[${{inputs.component_in_number}}]] \u0026 echo ${{inputs.component_in_path}} \u0026 echo ${{outputs.component_out_path}} \u003E ${{outputs.component_out_path}}/component_in_number", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", - "name": "test_601521908647", + "name": "test_537894260212", "description": "This is the basic command component", "tags": { "tag": "tagvalue", @@ -771,25 +771,25 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2320", + "Content-Length": "2318", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:05:02 GMT", + "Date": "Fri, 23 Sep 2022 16:12:02 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_601521908647/versions/bar?api-version=2022-05-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_537894260212/versions/bar?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-10d2c798e826a04d3859e503872648bf-d9da15e32a6d6f89-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-b5587c22e487e780332c67acc0edb67f-157f17b0ef0ee092-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "87b252ee-e8aa-462f-9d7a-e4a01bb95c93", - "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-correlation-request-id": "4fd7432d-ea1b-45a4-8e46-4a7d058f0883", + "x-ms-ratelimit-remaining-subscription-writes": "1070", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180502Z:87b252ee-e8aa-462f-9d7a-e4a01bb95c93", - "x-request-time": "0.780" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161202Z:4fd7432d-ea1b-45a4-8e46-4a7d058f0883", + "x-request-time": "0.594" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_601521908647/versions/bar", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_537894260212/versions/bar", "name": "bar", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { @@ -802,7 +802,7 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_601521908647", + "name": "test_537894260212", "version": "bar", "display_name": "CommandComponentBasic", "is_deterministic": "True", @@ -830,7 +830,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -840,23 +840,23 @@ } }, "systemData": { - "createdAt": "2022-09-16T18:05:02.4689072\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:12:01.8769496\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T18:05:02.7641611\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:12:02.0481091\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_601521908647/versions?api-version=2022-05-01\u0026$orderBy=createdtime%20desc\u0026$top=1", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_537894260212/versions?api-version=2022-05-01\u0026$orderBy=createdtime%20desc\u0026$top=1", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -864,29 +864,29 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:05:03 GMT", + "Date": "Fri, 23 Sep 2022 16:12:03 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-0aef9aa601b93651cc7e14a15555c57f-6cb712c99650a1b0-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-c61eddf119f74cecbbfd999a97d43637-6202cdf140981168-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b5003a40-ddf9-43f2-a110-814c8a05bf42", - "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-correlation-request-id": "a3b9f54a-e246-4c80-9698-1d609e59ae7b", + "x-ms-ratelimit-remaining-subscription-reads": "11865", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180504Z:b5003a40-ddf9-43f2-a110-814c8a05bf42", - "x-request-time": "0.189" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161203Z:a3b9f54a-e246-4c80-9698-1d609e59ae7b", + "x-request-time": "0.186" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_601521908647/versions/bar", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_537894260212/versions/bar", "name": "bar", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { @@ -899,7 +899,7 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_601521908647", + "name": "test_537894260212", "version": "bar", "display_name": "CommandComponentBasic", "is_deterministic": "True", @@ -927,7 +927,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -937,16 +937,16 @@ } }, "systemData": { - "createdAt": "2022-09-16T18:05:02.4689072\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:12:01.8769496\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T18:05:02.4689072\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:12:01.8769496\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } ], - "nextLink": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_601521908647/versions?api-version=2022-05-01\u0026$orderBy=createdtime\u002Bdesc\u0026$top=1\u0026$skipToken=MQ%3d%3d" + "nextLink": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_537894260212/versions?api-version=2022-05-01\u0026$orderBy=createdtime\u002Bdesc\u0026$top=1\u0026$skipToken=MQ%3d%3d" } }, { @@ -956,7 +956,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -964,24 +964,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:05:04 GMT", + "Date": "Fri, 23 Sep 2022 16:12:04 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-9b3069d8bcdf70eacdae46fac28b32c0-1713eb7fabd6157e-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-1906218e8df43f0481e81022c1a09834-93fd96c058d5d153-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5c9e98e0-be3f-4fdb-bcf9-0fa77ab90741", - "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-correlation-request-id": "342bd484-11bc-4a1a-855f-ae9e97795d09", + "x-ms-ratelimit-remaining-subscription-reads": "11864", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180504Z:5c9e98e0-be3f-4fdb-bcf9-0fa77ab90741", - "x-request-time": "0.104" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161204Z:342bd484-11bc-4a1a-855f-ae9e97795d09", + "x-request-time": "0.129" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -996,17 +996,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -1020,7 +1020,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1028,21 +1028,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:05:04 GMT", + "Date": "Fri, 23 Sep 2022 16:12:05 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-f6c143880ec4a74f2d6cb04ab433eeb7-e8e6be77dbcb9475-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-238c50561fbc22411f47beea624244cd-94ff526d6adba498-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ee37480b-b160-4b69-81eb-d397d1b85d7b", - "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-correlation-request-id": "8bdfca69-6222-49c4-8039-632c2ed48406", + "x-ms-ratelimit-remaining-subscription-writes": "1116", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180504Z:ee37480b-b160-4b69-81eb-d397d1b85d7b", - "x-request-time": "0.120" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161205Z:8bdfca69-6222-49c4-8039-632c2ed48406", + "x-request-time": "0.103" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1050,15 +1050,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 18:05:03 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:12:07 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -1067,9 +1067,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 18:05:04 GMT", - "ETag": "\u00220x8DA96C8560C1979\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:14:00 GMT", + "Date": "Fri, 23 Sep 2022 16:12:05 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1078,32 +1078,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:14:00 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ac7e0240-c159-4c9c-828e-d3e8df43e80f", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 18:05:03 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:12:07 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 18:05:04 GMT", + "Date": "Fri, 23 Sep 2022 16:12:05 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1111,12 +1111,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -1124,7 +1124,7 @@ "Connection": "keep-alive", "Content-Length": "288", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -1134,7 +1134,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -1142,27 +1142,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:05:06 GMT", + "Date": "Fri, 23 Sep 2022 16:12:06 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-5871db072fab575ea8a4137d5a3a8d72-2306d2b6b202d976-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-43eb3de71f52991bc7ca996113c7b325-74d8712eef1b590f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d7d76e2e-3b7d-4dfa-aa32-cb9c3fd9de93", - "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-correlation-request-id": "ebd82c0b-5bd1-4e8b-a262-79443240fa71", + "x-ms-ratelimit-remaining-subscription-writes": "1069", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180506Z:d7d76e2e-3b7d-4dfa-aa32-cb9c3fd9de93", - "x-request-time": "0.068" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161206Z:ebd82c0b-5bd1-4e8b-a262-79443240fa71", + "x-request-time": "0.104" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -1174,20 +1174,20 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-15T03:14:01.4315202\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-16T18:05:06.7682746\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T16:12:06.8482383\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_601521908647/versions/baz?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_537894260212/versions/baz?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -1195,7 +1195,7 @@ "Connection": "keep-alive", "Content-Length": "1437", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -1209,9 +1209,9 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo $[[${{inputs.component_in_number}}]] \u0026 echo ${{inputs.component_in_path}} \u0026 echo ${{outputs.component_out_path}} \u003E ${{outputs.component_out_path}}/component_in_number", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", - "name": "test_601521908647", + "name": "test_537894260212", "description": "This is the basic command component", "tags": { "tag": "tagvalue", @@ -1246,25 +1246,25 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2319", + "Content-Length": "2318", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:05:07 GMT", + "Date": "Fri, 23 Sep 2022 16:12:08 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_601521908647/versions/baz?api-version=2022-05-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_537894260212/versions/baz?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-4e93b810ba94fb8dcb3f87bf12ec8811-c958860f165cb7bc-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-3ecc4a674a54a6bbf34c887ca15312bb-6bee6e951b3ff71a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "22fc5423-44f5-4e23-99b1-c0a546b1e95a", - "x-ms-ratelimit-remaining-subscription-writes": "1194", + "x-ms-correlation-request-id": "3fff6e21-b7ed-4c05-946a-e27f83da44a8", + "x-ms-ratelimit-remaining-subscription-writes": "1068", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180508Z:22fc5423-44f5-4e23-99b1-c0a546b1e95a", - "x-request-time": "0.713" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161208Z:3fff6e21-b7ed-4c05-946a-e27f83da44a8", + "x-request-time": "0.597" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_601521908647/versions/baz", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_537894260212/versions/baz", "name": "baz", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { @@ -1277,7 +1277,7 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_601521908647", + "name": "test_537894260212", "version": "baz", "display_name": "CommandComponentBasic", "is_deterministic": "True", @@ -1305,7 +1305,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -1315,23 +1315,23 @@ } }, "systemData": { - "createdAt": "2022-09-16T18:05:07.647069\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:12:07.9577315\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T18:05:07.8476777\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:12:08.1485512\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_601521908647/versions?api-version=2022-05-01\u0026$orderBy=createdtime%20desc\u0026$top=1", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_537894260212/versions?api-version=2022-05-01\u0026$orderBy=createdtime%20desc\u0026$top=1", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1339,29 +1339,29 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:05:08 GMT", + "Date": "Fri, 23 Sep 2022 16:12:09 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-a2aa863a6eb9a27d5aae88406424b88a-41fba6ee3a83b26f-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-791a53a02aa590368f99850fbdefd1ae-7bf00034a2d236e8-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "92078815-2ede-4e11-b153-109d19b2e0ee", - "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-correlation-request-id": "7804782e-de79-4184-ab31-713519f7846b", + "x-ms-ratelimit-remaining-subscription-reads": "11863", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180509Z:92078815-2ede-4e11-b153-109d19b2e0ee", - "x-request-time": "0.190" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161210Z:7804782e-de79-4184-ab31-713519f7846b", + "x-request-time": "0.150" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_601521908647/versions/baz", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_537894260212/versions/baz", "name": "baz", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { @@ -1374,7 +1374,7 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_601521908647", + "name": "test_537894260212", "version": "baz", "display_name": "CommandComponentBasic", "is_deterministic": "True", @@ -1402,7 +1402,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -1412,16 +1412,16 @@ } }, "systemData": { - "createdAt": "2022-09-16T18:05:07.647069\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:12:07.9577315\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T18:05:07.647069\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:12:08.1485512\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } ], - "nextLink": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_601521908647/versions?api-version=2022-05-01\u0026$orderBy=createdtime\u002Bdesc\u0026$top=1\u0026$skipToken=MQ%3d%3d" + "nextLink": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_537894260212/versions?api-version=2022-05-01\u0026$orderBy=createdtime\u002Bdesc\u0026$top=1\u0026$skipToken=MQ%3d%3d" } }, { @@ -1431,7 +1431,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1439,24 +1439,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:05:09 GMT", + "Date": "Fri, 23 Sep 2022 16:12:10 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-3b96d26e0c4022c15b984207bb687b7c-ed2656fa54e1cbed-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-e466db2476d0af48ac67f4bf962d2a0e-65d0f6f45dc5ef6c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "94a876e5-6ac8-432b-9623-7e05b449c6fb", - "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-correlation-request-id": "18d312b1-2240-4085-a4ad-c1b708d573da", + "x-ms-ratelimit-remaining-subscription-reads": "11862", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180509Z:94a876e5-6ac8-432b-9623-7e05b449c6fb", - "x-request-time": "0.084" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161211Z:18d312b1-2240-4085-a4ad-c1b708d573da", + "x-request-time": "0.077" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -1471,17 +1471,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -1495,7 +1495,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1503,21 +1503,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:05:10 GMT", + "Date": "Fri, 23 Sep 2022 16:12:11 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-d09565f314bad94bd142ccb86430f757-ed20afc5bcae6cb6-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-14eb496756a3fc3a26338a14bcea4978-b0cdac381bd97b8e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "72f5da2e-7a61-4dd7-ae8e-5ed9ce155499", - "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-correlation-request-id": "59f1ffb5-6372-4ba1-9686-2317d9eb6213", + "x-ms-ratelimit-remaining-subscription-writes": "1115", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180510Z:72f5da2e-7a61-4dd7-ae8e-5ed9ce155499", - "x-request-time": "0.093" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161211Z:59f1ffb5-6372-4ba1-9686-2317d9eb6213", + "x-request-time": "0.184" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1525,15 +1525,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 18:05:09 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:12:14 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -1542,9 +1542,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 18:05:10 GMT", - "ETag": "\u00220x8DA96C8560C1979\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:14:00 GMT", + "Date": "Fri, 23 Sep 2022 16:12:12 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1553,32 +1553,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:14:00 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ac7e0240-c159-4c9c-828e-d3e8df43e80f", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 18:05:09 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:12:14 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 18:05:10 GMT", + "Date": "Fri, 23 Sep 2022 16:12:12 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1586,12 +1586,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -1599,7 +1599,7 @@ "Connection": "keep-alive", "Content-Length": "288", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -1609,7 +1609,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -1617,27 +1617,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:05:11 GMT", + "Date": "Fri, 23 Sep 2022 16:12:13 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-11af4c46e8be5322dfc3f10121a22e5b-41ce5f007844a743-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-f313526a34e6c8605908f25b5db6e6ed-66edcac4738b4fc3-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "738edf75-f6ae-4ee7-a4f3-9734173e6410", - "x-ms-ratelimit-remaining-subscription-writes": "1193", + "x-ms-correlation-request-id": "5a79b7e8-d035-4df6-8acf-154aaa870864", + "x-ms-ratelimit-remaining-subscription-writes": "1067", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180512Z:738edf75-f6ae-4ee7-a4f3-9734173e6410", - "x-request-time": "0.065" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161213Z:5a79b7e8-d035-4df6-8acf-154aaa870864", + "x-request-time": "0.083" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -1649,20 +1649,20 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-15T03:14:01.4315202\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-16T18:05:12.2150894\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T16:12:13.4420088\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_601521908647/versions/foobar?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_537894260212/versions/foobar?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -1670,7 +1670,7 @@ "Connection": "keep-alive", "Content-Length": "1440", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -1684,9 +1684,9 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo $[[${{inputs.component_in_number}}]] \u0026 echo ${{inputs.component_in_path}} \u0026 echo ${{outputs.component_out_path}} \u003E ${{outputs.component_out_path}}/component_in_number", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", - "name": "test_601521908647", + "name": "test_537894260212", "description": "This is the basic command component", "tags": { "tag": "tagvalue", @@ -1721,25 +1721,25 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2329", + "Content-Length": "2327", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:05:12 GMT", + "Date": "Fri, 23 Sep 2022 16:12:14 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_601521908647/versions/foobar?api-version=2022-05-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_537894260212/versions/foobar?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-38717eb89a512d6d11714c0572b98880-9c3a42280e970af2-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-c6e8b2af9143a4038b7a4e262a8cc108-fc5a6f537d805b7e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d575b050-b1b0-4303-a9a7-108db637fd2a", - "x-ms-ratelimit-remaining-subscription-writes": "1192", + "x-ms-correlation-request-id": "6457514a-1238-4204-bf32-58d1140091fe", + "x-ms-ratelimit-remaining-subscription-writes": "1066", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180513Z:d575b050-b1b0-4303-a9a7-108db637fd2a", - "x-request-time": "0.659" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161214Z:6457514a-1238-4204-bf32-58d1140091fe", + "x-request-time": "0.667" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_601521908647/versions/foobar", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_537894260212/versions/foobar", "name": "foobar", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { @@ -1752,7 +1752,7 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_601521908647", + "name": "test_537894260212", "version": "foobar", "display_name": "CommandComponentBasic", "is_deterministic": "True", @@ -1780,7 +1780,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -1790,23 +1790,23 @@ } }, "systemData": { - "createdAt": "2022-09-16T18:05:12.6704509\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:12:14.3327697\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T18:05:12.8920123\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:12:14.5552699\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_601521908647/versions?api-version=2022-05-01\u0026$orderBy=createdtime%20desc\u0026$top=1", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_537894260212/versions?api-version=2022-05-01\u0026$orderBy=createdtime%20desc\u0026$top=1", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1814,29 +1814,29 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:05:13 GMT", + "Date": "Fri, 23 Sep 2022 16:12:16 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-e3e3895f033dae4a9b4e63a9e1e4c72b-4ec133595bb3a143-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-35584e6d66f046c9961e8cd65dfe259e-c597d3c56f56cde2-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "344df58b-b0a5-4f4a-a75b-27a1273fa37a", - "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-correlation-request-id": "ec978f97-84ec-44d3-a2e1-81a876b625ca", + "x-ms-ratelimit-remaining-subscription-reads": "11861", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180514Z:344df58b-b0a5-4f4a-a75b-27a1273fa37a", - "x-request-time": "0.171" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161216Z:ec978f97-84ec-44d3-a2e1-81a876b625ca", + "x-request-time": "0.137" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_601521908647/versions/foobar", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_537894260212/versions/foobar", "name": "foobar", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { @@ -1849,7 +1849,7 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_601521908647", + "name": "test_537894260212", "version": "foobar", "display_name": "CommandComponentBasic", "is_deterministic": "True", @@ -1877,7 +1877,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -1887,20 +1887,20 @@ } }, "systemData": { - "createdAt": "2022-09-16T18:05:12.6704509\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:12:14.3327697\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T18:05:12.8920123\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:12:14.5552699\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } ], - "nextLink": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_601521908647/versions?api-version=2022-05-01\u0026$orderBy=createdtime\u002Bdesc\u0026$top=1\u0026$skipToken=MQ%3d%3d" + "nextLink": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_537894260212/versions?api-version=2022-05-01\u0026$orderBy=createdtime\u002Bdesc\u0026$top=1\u0026$skipToken=MQ%3d%3d" } } ], "Variables": { - "name": "test_601521908647" + "name": "test_537894260212" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_command_component_with_code.json b/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_command_component_with_code.json index bbb86ceea221..d6f442a6de83 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_command_component_with_code.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_command_component_with_code.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 17:59:43 GMT", + "Date": "Mon, 26 Sep 2022 08:18:56 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-f6901897d2d6c6ac731075ffe01bb25a-b564b093ce67bde1-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-c6c9efcd3a6ab4d27f7c7ed7ab505d1a-521b61865be7dbd0-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "de550b63-e767-49d3-8f47-11847287c71f", - "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-correlation-request-id": "23f1634c-4a1b-42b8-914f-00658609862f", + "x-ms-ratelimit-remaining-subscription-reads": "11995", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T175943Z:de550b63-e767-49d3-8f47-11847287c71f", - "x-request-time": "0.086" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T081856Z:23f1634c-4a1b-42b8-914f-00658609862f", + "x-request-time": "0.636" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -47,17 +47,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -71,7 +71,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -79,21 +79,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 17:59:43 GMT", + "Date": "Mon, 26 Sep 2022 08:18:57 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-b39731f563908ff7a5ec44a1e254975d-895d23da0ef8d31c-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-a9cca9392e5aaf5c3d02f75c4458b242-6f4633ff0c0d5645-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f3369c64-8a83-4c7f-a86c-3c07467070d9", - "x-ms-ratelimit-remaining-subscription-writes": "1190", + "x-ms-correlation-request-id": "f935ee14-1668-4aee-bacf-4a975288f8b6", + "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T175943Z:f3369c64-8a83-4c7f-a86c-3c07467070d9", - "x-request-time": "0.125" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T081858Z:f935ee14-1668-4aee-bacf-4a975288f8b6", + "x-request-time": "0.652" }, "ResponseBody": { "secretsType": "AccountKey", @@ -101,73 +101,268 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/helloworld_components_with_env/conda.yml", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/helloworld_components_with_env/.gitattributes", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 17:59:42 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Mon, 26 Sep 2022 08:18:58 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 404, "ResponseHeaders": { - "Accept-Ranges": "bytes", - "Content-Length": "180", - "Content-MD5": "EVxBbtisKKLnhC4INZp7ow==", - "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 17:59:43 GMT", - "ETag": "\u00220x8DA9788903AB6BD\u0022", - "Last-Modified": "Fri, 16 Sep 2022 02:10:01 GMT", + "Date": "Mon, 26 Sep 2022 08:18:59 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], + "Transfer-Encoding": "chunked", "Vary": "Origin", - "x-ms-access-tier": "Hot", - "x-ms-access-tier-inferred": "true", + "x-ms-error-code": "BlobNotFound", + "x-ms-version": "2021-08-06" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/helloworld_components_with_env/.gitattributes", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/xml", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "19", + "Content-MD5": "GTc0QMDRF8A1AiQ\u002BQg5suw==", + "Content-Type": "application/octet-stream", + "If-None-Match": "*", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Fri, 16 Sep 2022 02:10:01 GMT", - "x-ms-lease-state": "available", - "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "6213c46c-ceb3-49d8-b8c6-90b2857a04be", - "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "1", - "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-date": "Mon, 26 Sep 2022 08:18:59 GMT", + "x-ms-version": "2021-08-06" + }, + "RequestBody": "KiB0ZXh0PWF1dG8gZW9sPWxmCg==", + "StatusCode": 201, + "ResponseHeaders": { + "Content-Length": "0", + "Content-MD5": "GTc0QMDRF8A1AiQ\u002BQg5suw==", + "Date": "Mon, 26 Sep 2022 08:18:59 GMT", + "ETag": "\u00220x8DA9F97C399E436\u0022", + "Last-Modified": "Mon, 26 Sep 2022 08:18:59 GMT", + "Server": [ + "Windows-Azure-Blob/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-content-crc64": "y3e9M1S/S4w=", + "x-ms-request-server-encrypted": "true", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/helloworld_components_with_env/conda.yml", - "RequestMethod": "HEAD", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/helloworld_components_with_env/conda.yml", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/xml", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "169", + "Content-MD5": "Pnsr00p3x5XQockrsswRyg==", + "Content-Type": "application/octet-stream", + "If-None-Match": "*", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", + "x-ms-blob-type": "BlockBlob", + "x-ms-date": "Mon, 26 Sep 2022 08:18:59 GMT", + "x-ms-version": "2021-08-06" + }, + "RequestBody": "bmFtZTogZXhhbXBsZS1lbnZpcm9ubWVudApjaGFubmVsczoKICAtIGNvbmRhLWZvcmdlCmRlcGVuZGVuY2llczoKICAtIHB5dGhvbj0zLjYuMQogIC0gcGlwCiAgLSBwaXA6CiAgICAtIG5iZ2l0cHVsbGVyCiAgICAtIHNwaGlueC1nYWxsZXJ5CiAgICAtIHBhbmRhcwogICAgLSBtYXRwbG90bGliCg==", + "StatusCode": 201, + "ResponseHeaders": { + "Content-Length": "0", + "Content-MD5": "Pnsr00p3x5XQockrsswRyg==", + "Date": "Mon, 26 Sep 2022 08:18:59 GMT", + "ETag": "\u00220x8DA9F97C3B5F39C\u0022", + "Last-Modified": "Mon, 26 Sep 2022 08:18:59 GMT", + "Server": [ + "Windows-Azure-Blob/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-content-crc64": "rGw8VaOHJLc=", + "x-ms-request-server-encrypted": "true", + "x-ms-version": "2021-08-06" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/helloworld_components_with_env/env/conda.yml", + "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 17:59:42 GMT", - "x-ms-version": "2021-06-08" + "Content-Length": "169", + "Content-MD5": "Pnsr00p3x5XQockrsswRyg==", + "Content-Type": "application/octet-stream", + "If-None-Match": "*", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", + "x-ms-blob-type": "BlockBlob", + "x-ms-date": "Mon, 26 Sep 2022 08:18:59 GMT", + "x-ms-version": "2021-08-06" + }, + "RequestBody": "bmFtZTogZXhhbXBsZS1lbnZpcm9ubWVudApjaGFubmVsczoKICAtIGNvbmRhLWZvcmdlCmRlcGVuZGVuY2llczoKICAtIHB5dGhvbj0zLjYuMQogIC0gcGlwCiAgLSBwaXA6CiAgICAtIG5iZ2l0cHVsbGVyCiAgICAtIHNwaGlueC1nYWxsZXJ5CiAgICAtIHBhbmRhcwogICAgLSBtYXRwbG90bGliCg==", + "StatusCode": 201, + "ResponseHeaders": { + "Content-Length": "0", + "Content-MD5": "Pnsr00p3x5XQockrsswRyg==", + "Date": "Mon, 26 Sep 2022 08:18:59 GMT", + "ETag": "\u00220x8DA9F97C3D1DBF3\u0022", + "Last-Modified": "Mon, 26 Sep 2022 08:19:00 GMT", + "Server": [ + "Windows-Azure-Blob/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-content-crc64": "rGw8VaOHJLc=", + "x-ms-request-server-encrypted": "true", + "x-ms-version": "2021-08-06" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/helloworld_components_with_env/helloworld_component_env_inline.yml", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/xml", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "1133", + "Content-MD5": "PGVtE65cw9x1EGxhdbfpvQ==", + "Content-Type": "application/octet-stream", + "If-None-Match": "*", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", + "x-ms-blob-type": "BlockBlob", + "x-ms-date": "Mon, 26 Sep 2022 08:18:59 GMT", + "x-ms-version": "2021-08-06" + }, + "RequestBody": "JHNjaGVtYTogaHR0cHM6Ly9henVyZW1sc2NoZW1hcy5henVyZWVkZ2UubmV0L2RldmVsb3BtZW50L2NvbW1hbmRDb21wb25lbnQuc2NoZW1hLmpzb24KdHlwZTogY29tbWFuZAoKbmFtZTogaGVsbG93b3JsZF9jb21wb25lbnRfd2l0aF9lbnYKZGlzcGxheV9uYW1lOiBDb21tYW5kQ29tcG9uZW50QmFzaWMKZGVzY3JpcHRpb246IFRoaXMgaXMgdGhlIGJhc2ljIGNvbW1hbmQgY29tcG9uZW50CnRhZ3M6CiAgdGFnOiB0YWd2YWx1ZQogIG93bmVyOiBzZGt0ZWFtCgp2ZXJzaW9uOiAwLjAuMQoKaW5wdXRzOgogIGNvbXBvbmVudF9pbl9udW1iZXI6CiAgICBkZXNjcmlwdGlvbjogQSBudW1iZXIKICAgIHR5cGU6IG51bWJlcgogICAgZGVmYXVsdDogMTAuOTkKICAgIG9wdGlvbmFsOiBUcnVlCiAgY29tcG9uZW50X2luX3BhdGg6CiAgICBkZXNjcmlwdGlvbjogQSBwYXRoCiAgICB0eXBlOiB1cmlfZm9sZGVyCgpvdXRwdXRzOgogIGNvbXBvbmVudF9vdXRfcGF0aDoKICAgIHR5cGU6IHVyaV9mb2xkZXIKCiMgV3JpdGUgc29tZSBvdXRwdXQgdG8gd29yayBhcm91bmQgYSBidWcgd2hlbiBwaXBlbGluZSBub2RlIGZhaWxlZCB0byBydW4gd2l0aCBlbXB0eSBkYXRhc2V0IGFzIGlucHV0CmNvbW1hbmQ6ID4tCiAgZWNobyBIZWxsbyBXb3JsZCAmCiAgZWNobyAkW1ske3tpbnB1dHMuY29tcG9uZW50X2luX251bWJlcn19XV0gJgogIGVjaG8gJHt7aW5wdXRzLmNvbXBvbmVudF9pbl9wYXRofX0gJgogIGVjaG8gJHt7b3V0cHV0cy5jb21wb25lbnRfb3V0X3BhdGh9fSA\u002BICR7e291dHB1dHMuY29tcG9uZW50X291dF9wYXRofX0vY29tcG9uZW50X2luX251bWJlcgoKZW52aXJvbm1lbnQ6CiAgY29uZGFfZmlsZToKICAgIG5hbWU6IGV4YW1wbGUtZW52aXJvbm1lbnQKICAgIGNoYW5uZWxzOgogICAgICAtIGNvbmRhLWZvcmdlCiAgICBkZXBlbmRlbmNpZXM6CiAgICAgIC0gcHl0aG9uPTMuNi4xCiAgICAgIC0gcGlwCiAgICAgIC0gcGlwOgogICAgICAgICAgLSBuYmdpdHB1bGxlcgogICAgICAgICAgLSBzcGhpbngtZ2FsbGVyeQogICAgICAgICAgLSBwYW5kYXMKICAgICAgICAgIC0gbWF0cGxvdGxpYgogIGltYWdlOiBtY3IubWljcm9zb2Z0LmNvbS9henVyZW1sL29wZW5tcGkzLjEuMi11YnVudHUxOC4wNAo=", + "StatusCode": 201, + "ResponseHeaders": { + "Content-Length": "0", + "Content-MD5": "PGVtE65cw9x1EGxhdbfpvQ==", + "Date": "Mon, 26 Sep 2022 08:18:59 GMT", + "ETag": "\u00220x8DA9F97C3EDC44E\u0022", + "Last-Modified": "Mon, 26 Sep 2022 08:19:00 GMT", + "Server": [ + "Windows-Azure-Blob/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-content-crc64": "q42WXD/4dCM=", + "x-ms-request-server-encrypted": "true", + "x-ms-version": "2021-08-06" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/helloworld_components_with_env/helloworld_component_env_path_0.yml", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/xml", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "924", + "Content-MD5": "RRBPWy3j0KD3APcGzG3Kew==", + "Content-Type": "application/octet-stream", + "If-None-Match": "*", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", + "x-ms-blob-type": "BlockBlob", + "x-ms-date": "Mon, 26 Sep 2022 08:18:59 GMT", + "x-ms-version": "2021-08-06" + }, + "RequestBody": "JHNjaGVtYTogaHR0cHM6Ly9henVyZW1sc2NoZW1hcy5henVyZWVkZ2UubmV0L2RldmVsb3BtZW50L2NvbW1hbmRDb21wb25lbnQuc2NoZW1hLmpzb24KdHlwZTogY29tbWFuZAoKbmFtZTogaGVsbG93b3JsZF9jb21wb25lbnRfd2l0aF9lbnYKZGlzcGxheV9uYW1lOiBDb21tYW5kQ29tcG9uZW50QmFzaWMKZGVzY3JpcHRpb246IFRoaXMgaXMgdGhlIGJhc2ljIGNvbW1hbmQgY29tcG9uZW50CnRhZ3M6CiAgdGFnOiB0YWd2YWx1ZQogIG93bmVyOiBzZGt0ZWFtCgp2ZXJzaW9uOiAwLjAuMQoKaW5wdXRzOgogIGNvbXBvbmVudF9pbl9udW1iZXI6CiAgICBkZXNjcmlwdGlvbjogQSBudW1iZXIKICAgIHR5cGU6IG51bWJlcgogICAgZGVmYXVsdDogMTAuOTkKICAgIG9wdGlvbmFsOiBUcnVlCiAgY29tcG9uZW50X2luX3BhdGg6CiAgICBkZXNjcmlwdGlvbjogQSBwYXRoCiAgICB0eXBlOiB1cmlfZm9sZGVyCgpvdXRwdXRzOgogIGNvbXBvbmVudF9vdXRfcGF0aDoKICAgIHR5cGU6IHVyaV9mb2xkZXIKCiMgV3JpdGUgc29tZSBvdXRwdXQgdG8gd29yayBhcm91bmQgYSBidWcgd2hlbiBwaXBlbGluZSBub2RlIGZhaWxlZCB0byBydW4gd2l0aCBlbXB0eSBkYXRhc2V0IGFzIGlucHV0CmNvbW1hbmQ6ID4tCiAgZWNobyBIZWxsbyBXb3JsZCAmCiAgZWNobyAkW1ske3tpbnB1dHMuY29tcG9uZW50X2luX251bWJlcn19XV0gJgogIGVjaG8gJHt7aW5wdXRzLmNvbXBvbmVudF9pbl9wYXRofX0gJgogIGVjaG8gJHt7b3V0cHV0cy5jb21wb25lbnRfb3V0X3BhdGh9fSA\u002BICR7e291dHB1dHMuY29tcG9uZW50X291dF9wYXRofX0vY29tcG9uZW50X2luX251bWJlcgoKZW52aXJvbm1lbnQ6CiAgY29uZGFfZmlsZTogLi9jb25kYS55bWwKICBpbWFnZTogbWNyLm1pY3Jvc29mdC5jb20vYXp1cmVtbC9vcGVubXBpMy4xLjItdWJ1bnR1MTguMDQK", + "StatusCode": 201, + "ResponseHeaders": { + "Content-Length": "0", + "Content-MD5": "RRBPWy3j0KD3APcGzG3Kew==", + "Date": "Mon, 26 Sep 2022 08:19:00 GMT", + "ETag": "\u00220x8DA9F97C4036C02\u0022", + "Last-Modified": "Mon, 26 Sep 2022 08:19:00 GMT", + "Server": [ + "Windows-Azure-Blob/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-content-crc64": "wvqlZ8asYC8=", + "x-ms-request-server-encrypted": "true", + "x-ms-version": "2021-08-06" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/helloworld_components_with_env/helloworld_component_env_path_1.yml", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/xml", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "928", + "Content-MD5": "6TxGMT0ZAbkwrRQ4sAGmLQ==", + "Content-Type": "application/octet-stream", + "If-None-Match": "*", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", + "x-ms-blob-type": "BlockBlob", + "x-ms-date": "Mon, 26 Sep 2022 08:18:59 GMT", + "x-ms-version": "2021-08-06" + }, + "RequestBody": "JHNjaGVtYTogaHR0cHM6Ly9henVyZW1sc2NoZW1hcy5henVyZWVkZ2UubmV0L2RldmVsb3BtZW50L2NvbW1hbmRDb21wb25lbnQuc2NoZW1hLmpzb24KdHlwZTogY29tbWFuZAoKbmFtZTogaGVsbG93b3JsZF9jb21wb25lbnRfd2l0aF9lbnYKZGlzcGxheV9uYW1lOiBDb21tYW5kQ29tcG9uZW50QmFzaWMKZGVzY3JpcHRpb246IFRoaXMgaXMgdGhlIGJhc2ljIGNvbW1hbmQgY29tcG9uZW50CnRhZ3M6CiAgdGFnOiB0YWd2YWx1ZQogIG93bmVyOiBzZGt0ZWFtCgp2ZXJzaW9uOiAwLjAuMQoKaW5wdXRzOgogIGNvbXBvbmVudF9pbl9udW1iZXI6CiAgICBkZXNjcmlwdGlvbjogQSBudW1iZXIKICAgIHR5cGU6IG51bWJlcgogICAgZGVmYXVsdDogMTAuOTkKICAgIG9wdGlvbmFsOiBUcnVlCiAgY29tcG9uZW50X2luX3BhdGg6CiAgICBkZXNjcmlwdGlvbjogQSBwYXRoCiAgICB0eXBlOiB1cmlfZm9sZGVyCgpvdXRwdXRzOgogIGNvbXBvbmVudF9vdXRfcGF0aDoKICAgIHR5cGU6IHVyaV9mb2xkZXIKCiMgV3JpdGUgc29tZSBvdXRwdXQgdG8gd29yayBhcm91bmQgYSBidWcgd2hlbiBwaXBlbGluZSBub2RlIGZhaWxlZCB0byBydW4gd2l0aCBlbXB0eSBkYXRhc2V0IGFzIGlucHV0CmNvbW1hbmQ6ID4tCiAgZWNobyBIZWxsbyBXb3JsZCAmCiAgZWNobyAkW1ske3tpbnB1dHMuY29tcG9uZW50X2luX251bWJlcn19XV0gJgogIGVjaG8gJHt7aW5wdXRzLmNvbXBvbmVudF9pbl9wYXRofX0gJgogIGVjaG8gJHt7b3V0cHV0cy5jb21wb25lbnRfb3V0X3BhdGh9fSA\u002BICR7e291dHB1dHMuY29tcG9uZW50X291dF9wYXRofX0vY29tcG9uZW50X2luX251bWJlcgoKZW52aXJvbm1lbnQ6CiAgY29uZGFfZmlsZTogLi9lbnYvY29uZGEueW1sCiAgaW1hZ2U6IG1jci5taWNyb3NvZnQuY29tL2F6dXJlbWwvb3Blbm1waTMuMS4yLXVidW50dTE4LjA0Cg==", + "StatusCode": 201, + "ResponseHeaders": { + "Content-Length": "0", + "Content-MD5": "6TxGMT0ZAbkwrRQ4sAGmLQ==", + "Date": "Mon, 26 Sep 2022 08:19:00 GMT", + "ETag": "\u00220x8DA9F97C40A21CA\u0022", + "Last-Modified": "Mon, 26 Sep 2022 08:19:00 GMT", + "Server": [ + "Windows-Azure-Blob/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-content-crc64": "OwXNJb7jVoI=", + "x-ms-request-server-encrypted": "true", + "x-ms-version": "2021-08-06" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/helloworld_components_with_env/.gitattributes?comp=metadata", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/xml", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "0", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Mon, 26 Sep 2022 08:19:00 GMT", + "x-ms-meta-name": "000000000000000000000", + "x-ms-meta-upload_status": "completed", + "x-ms-meta-version": "1", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 404, + "StatusCode": 200, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 17:59:43 GMT", + "Content-Length": "0", + "Date": "Mon, 26 Sep 2022 08:19:00 GMT", + "ETag": "\u00220x8DA9F97C427DEA2\u0022", + "Last-Modified": "Mon, 26 Sep 2022 08:19:00 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": "chunked", - "Vary": "Origin", - "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-request-server-encrypted": "true", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/6213c46c-ceb3-49d8-b8c6-90b2857a04be/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -175,7 +370,7 @@ "Connection": "keep-alive", "Content-Length": "319", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -185,35 +380,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/helloworld_components_with_env" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/helloworld_components_with_env" } }, - "StatusCode": 200, + "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "834", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 17:59:44 GMT", + "Date": "Mon, 26 Sep 2022 08:19:03 GMT", "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-f39aa1cf7aa1d95ce470fef5da7bac31-59e240925d6f5f21-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-3e1103ae8fcf827a74b10a4da57dd74c-686c9a0ef7aeb271-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0c2cbe2b-ce61-4d10-b190-a3a0052af554", - "x-ms-ratelimit-remaining-subscription-writes": "1179", + "x-ms-correlation-request-id": "2384c78c-dfed-4cad-8982-eaab5d2c2324", + "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T175944Z:0c2cbe2b-ce61-4d10-b190-a3a0052af554", - "x-request-time": "0.105" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T081903Z:2384c78c-dfed-4cad-8982-eaab5d2c2324", + "x-request-time": "1.264" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/6213c46c-ceb3-49d8-b8c6-90b2857a04be/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -225,28 +416,28 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/helloworld_components_with_env" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/helloworld_components_with_env" }, "systemData": { - "createdAt": "2022-09-16T02:10:01.987909\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-26T08:19:03.4445575\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T17:59:44.7437311\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-26T08:19:03.4445575\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_589107957641/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_106968053495/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1085", + "Content-Length": "1070", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -260,9 +451,9 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/6213c46c-ceb3-49d8-b8c6-90b2857a04be/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", - "name": "test_589107957641", + "name": "test_106968053495", "description": "This is the basic command component", "tags": { "tag": "tagvalue", @@ -286,25 +477,25 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1807", + "Content-Length": "1789", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 17:59:45 GMT", + "Date": "Mon, 26 Sep 2022 08:19:07 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_589107957641/versions/1?api-version=2022-05-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_106968053495/versions/1?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-0d6396d404a2fda36c442f3e31cd1e51-a7dd95e799ab2451-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-9024d76681d4588da4f710a383d24ecc-4d991b59eb228b5b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d971aa90-c969-4c62-b15c-5389b82a2a8b", - "x-ms-ratelimit-remaining-subscription-writes": "1178", + "x-ms-correlation-request-id": "67b3489a-c3c8-47e4-8769-e6f79785aeb8", + "x-ms-ratelimit-remaining-subscription-writes": "1198", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T175945Z:d971aa90-c969-4c62-b15c-5389b82a2a8b", - "x-request-time": "0.841" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T081908Z:67b3489a-c3c8-47e4-8769-e6f79785aeb8", + "x-request-time": "3.899" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_589107957641/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_106968053495/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { @@ -317,7 +508,7 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_589107957641", + "name": "test_106968053495", "version": "1", "display_name": "CommandComponentBasic", "is_deterministic": "True", @@ -332,7 +523,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/6213c46c-ceb3-49d8-b8c6-90b2857a04be/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -342,17 +533,17 @@ } }, "systemData": { - "createdAt": "2022-09-16T17:59:45.3842061\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-26T08:19:07.3578349\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T17:59:45.6125754\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-26T08:19:08.015125\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } } ], "Variables": { - "component_name": "test_589107957641" + "component_name": "test_106968053495" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_component_archive_restore_version.json b/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_component_archive_restore_version.json index 6251babba6cb..b8de183b849a 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_component_archive_restore_version.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_component_archive_restore_version.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:01:18 GMT", + "Date": "Fri, 23 Sep 2022 16:12:27 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-03901546f472e597a29d5fe52d301cc5-ee7080881c11b0b5-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-8c12df956f233632476a37b1678ebfb6-4feb1dc79f6d30d0-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "59e1acb5-da1a-4920-9a34-cf4e9817cc29", - "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-correlation-request-id": "df8dcc07-07cb-4a1d-9a96-ff5d3d472d1c", + "x-ms-ratelimit-remaining-subscription-reads": "11858", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180118Z:59e1acb5-da1a-4920-9a34-cf4e9817cc29", - "x-request-time": "0.107" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161228Z:df8dcc07-07cb-4a1d-9a96-ff5d3d472d1c", + "x-request-time": "0.127" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -47,17 +47,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -71,7 +71,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -79,21 +79,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:01:18 GMT", + "Date": "Fri, 23 Sep 2022 16:12:28 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-7c5d64da12f0940baeddae4bc607636a-d06c5c272b7fd9a4-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-82289e1b362b2d07ff236799aa91b0f8-d5abf369eb4fec61-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c716ff7d-9182-45e4-8fcf-78d89c20b3d3", - "x-ms-ratelimit-remaining-subscription-writes": "1169", + "x-ms-correlation-request-id": "961ae01f-839b-4e71-929c-8f82c5423cdf", + "x-ms-ratelimit-remaining-subscription-writes": "1113", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180118Z:c716ff7d-9182-45e4-8fcf-78d89c20b3d3", - "x-request-time": "0.106" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161228Z:961ae01f-839b-4e71-929c-8f82c5423cdf", + "x-request-time": "0.105" }, "ResponseBody": { "secretsType": "AccountKey", @@ -101,15 +101,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 18:01:17 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:12:30 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -118,9 +118,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 18:01:18 GMT", - "ETag": "\u00220x8DA96C8560C1979\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:14:00 GMT", + "Date": "Fri, 23 Sep 2022 16:12:28 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -129,32 +129,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:14:00 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ac7e0240-c159-4c9c-828e-d3e8df43e80f", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 18:01:17 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:12:31 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 18:01:18 GMT", + "Date": "Fri, 23 Sep 2022 16:12:29 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -162,12 +162,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -175,7 +175,7 @@ "Connection": "keep-alive", "Content-Length": "288", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -185,7 +185,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -193,27 +193,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:01:19 GMT", + "Date": "Fri, 23 Sep 2022 16:12:30 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-f6f3211eb2c001ca892a3444868c377d-7518ba3dae7d8524-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-53870ec268b1ac71996daa89da21262e-67e8f8358cced573-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "847fb816-abb9-4f6b-ada5-bda5b800d203", - "x-ms-ratelimit-remaining-subscription-writes": "1131", + "x-ms-correlation-request-id": "0ce63e72-5e93-492c-aa9e-379107b8007f", + "x-ms-ratelimit-remaining-subscription-writes": "1063", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180119Z:847fb816-abb9-4f6b-ada5-bda5b800d203", - "x-request-time": "0.052" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161230Z:0ce63e72-5e93-492c-aa9e-379107b8007f", + "x-request-time": "0.075" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -225,20 +225,20 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-15T03:14:01.4315202\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-16T18:01:19.7343847\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T16:12:30.5256763\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_120109792935/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_332458084972/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -246,7 +246,7 @@ "Connection": "keep-alive", "Content-Length": "1435", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -260,9 +260,9 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo $[[${{inputs.component_in_number}}]] \u0026 echo ${{inputs.component_in_path}} \u0026 echo ${{outputs.component_out_path}} \u003E ${{outputs.component_out_path}}/component_in_number", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", - "name": "test_120109792935", + "name": "test_332458084972", "description": "This is the basic command component", "tags": { "tag": "tagvalue", @@ -297,25 +297,25 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2314", + "Content-Length": "2312", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:01:20 GMT", + "Date": "Fri, 23 Sep 2022 16:12:31 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_120109792935/versions/1?api-version=2022-05-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_332458084972/versions/1?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-9c730a250caf076827f18e055f82fd70-00aaea34903e01b1-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-505dba926c838ce3fdf611b646c8f320-ed52570a7e7116ae-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1b29bfab-9dc5-467c-a27d-efcbf433ccd4", - "x-ms-ratelimit-remaining-subscription-writes": "1130", + "x-ms-correlation-request-id": "04275b0b-0215-4125-8b0a-0056b7abbbb9", + "x-ms-ratelimit-remaining-subscription-writes": "1062", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180121Z:1b29bfab-9dc5-467c-a27d-efcbf433ccd4", - "x-request-time": "0.809" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161231Z:04275b0b-0215-4125-8b0a-0056b7abbbb9", + "x-request-time": "0.650" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_120109792935/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_332458084972/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { @@ -328,7 +328,7 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_120109792935", + "name": "test_332458084972", "version": "1", "display_name": "CommandComponentBasic", "is_deterministic": "True", @@ -356,7 +356,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -366,11 +366,11 @@ } }, "systemData": { - "createdAt": "2022-09-16T18:01:20.7267757\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:12:31.5779114\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T18:01:20.9590962\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:12:31.7424394\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -382,7 +382,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -390,24 +390,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:01:20 GMT", + "Date": "Fri, 23 Sep 2022 16:12:32 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-2fed1c2abaa30451c4349647fde570f7-77b6c1b42d1b26cf-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-abef7147a9bd53df88832f8ac9da6e79-0477d45415402707-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "36290649-8558-4b7b-a473-d1ff2fc6b5b2", - "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-correlation-request-id": "59f1dbb0-d9b0-4d74-b847-a5c2245132a6", + "x-ms-ratelimit-remaining-subscription-reads": "11857", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180121Z:36290649-8558-4b7b-a473-d1ff2fc6b5b2", - "x-request-time": "0.095" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161232Z:59f1dbb0-d9b0-4d74-b847-a5c2245132a6", + "x-request-time": "0.084" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -422,17 +422,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -446,7 +446,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -454,21 +454,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:01:22 GMT", + "Date": "Fri, 23 Sep 2022 16:12:33 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-8acadf30fdf25067d0a40d0b8487596f-46ef86656c4b1ddc-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-7367442d6346407c2bd5303f1a2f6e17-72ff2ac93f73dddf-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dd1c9243-0f68-42b7-a6eb-e17dcf3b23ef", - "x-ms-ratelimit-remaining-subscription-writes": "1168", + "x-ms-correlation-request-id": "1eb966bb-5c3b-4f22-9de9-46cda700479b", + "x-ms-ratelimit-remaining-subscription-writes": "1112", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180122Z:dd1c9243-0f68-42b7-a6eb-e17dcf3b23ef", - "x-request-time": "0.124" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161233Z:1eb966bb-5c3b-4f22-9de9-46cda700479b", + "x-request-time": "0.095" }, "ResponseBody": { "secretsType": "AccountKey", @@ -476,15 +476,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 18:01:21 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:12:35 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -493,9 +493,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 18:01:22 GMT", - "ETag": "\u00220x8DA96C8560C1979\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:14:00 GMT", + "Date": "Fri, 23 Sep 2022 16:12:33 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -504,32 +504,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:14:00 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ac7e0240-c159-4c9c-828e-d3e8df43e80f", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 18:01:22 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:12:36 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 18:01:22 GMT", + "Date": "Fri, 23 Sep 2022 16:12:34 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -537,12 +537,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -550,7 +550,7 @@ "Connection": "keep-alive", "Content-Length": "288", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -560,7 +560,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -568,27 +568,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:01:23 GMT", + "Date": "Fri, 23 Sep 2022 16:12:34 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-48eb177cf282250b7c5035bb2ac7ade7-af27fb789d8d2a46-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-7c9b5e7a392e72a87122a40593610fe2-adf50a0bbcb5ab08-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2080fbc3-d327-4c36-914c-5e536ef528a9", - "x-ms-ratelimit-remaining-subscription-writes": "1129", + "x-ms-correlation-request-id": "bf351da2-f2e5-4362-880a-f21c20aabaf3", + "x-ms-ratelimit-remaining-subscription-writes": "1061", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180123Z:2080fbc3-d327-4c36-914c-5e536ef528a9", - "x-request-time": "0.068" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161234Z:bf351da2-f2e5-4362-880a-f21c20aabaf3", + "x-request-time": "0.064" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -600,20 +600,20 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-15T03:14:01.4315202\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-16T18:01:23.5392303\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T16:12:34.881975\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_120109792935/versions/2?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_332458084972/versions/2?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -621,7 +621,7 @@ "Connection": "keep-alive", "Content-Length": "1435", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -635,9 +635,9 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo $[[${{inputs.component_in_number}}]] \u0026 echo ${{inputs.component_in_path}} \u0026 echo ${{outputs.component_out_path}} \u003E ${{outputs.component_out_path}}/component_in_number", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", - "name": "test_120109792935", + "name": "test_332458084972", "description": "This is the basic command component", "tags": { "tag": "tagvalue", @@ -672,25 +672,25 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2314", + "Content-Length": "2311", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:01:24 GMT", + "Date": "Fri, 23 Sep 2022 16:12:35 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_120109792935/versions/2?api-version=2022-05-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_332458084972/versions/2?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-57dccc951415459d0b8e7366e2db126f-191286200da22edf-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-b3953aac9a185d216270970596da41b4-0fc764808f818c32-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1a4e77ca-f9ec-4af5-905a-e36fcf4127ac", - "x-ms-ratelimit-remaining-subscription-writes": "1128", + "x-ms-correlation-request-id": "e37dd002-6aa7-4672-846f-0d6152d175ae", + "x-ms-ratelimit-remaining-subscription-writes": "1060", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180124Z:1a4e77ca-f9ec-4af5-905a-e36fcf4127ac", - "x-request-time": "0.799" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161236Z:e37dd002-6aa7-4672-846f-0d6152d175ae", + "x-request-time": "0.574" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_120109792935/versions/2", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_332458084972/versions/2", "name": "2", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { @@ -703,7 +703,7 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_120109792935", + "name": "test_332458084972", "version": "2", "display_name": "CommandComponentBasic", "is_deterministic": "True", @@ -731,7 +731,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -741,23 +741,23 @@ } }, "systemData": { - "createdAt": "2022-09-16T18:01:24.0514229\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:12:35.716384\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T18:01:24.3184611\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:12:35.8912051\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_120109792935/versions?api-version=2022-05-01\u0026listViewType=ActiveOnly", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_332458084972/versions?api-version=2022-05-01\u0026listViewType=ActiveOnly", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -765,29 +765,29 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:01:54 GMT", + "Date": "Fri, 23 Sep 2022 16:13:06 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-6e39fe39b1d205d93fdcc5744e27ba95-4013683bdc7db63a-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-9c81b0af2ce7b7bd4bcd3fec55cad973-463395af47e1c838-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6a3caddd-48f9-499f-98f9-8a1d6c413ba5", - "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-correlation-request-id": "9f912bd9-8d15-4485-9ee1-00ade52923ef", + "x-ms-ratelimit-remaining-subscription-reads": "11856", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180154Z:6a3caddd-48f9-499f-98f9-8a1d6c413ba5", - "x-request-time": "0.276" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161307Z:9f912bd9-8d15-4485-9ee1-00ade52923ef", + "x-request-time": "0.208" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_120109792935/versions/2", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_332458084972/versions/2", "name": "2", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { @@ -800,7 +800,7 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_120109792935", + "name": "test_332458084972", "version": "2", "display_name": "CommandComponentBasic", "is_deterministic": "True", @@ -828,7 +828,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -838,16 +838,16 @@ } }, "systemData": { - "createdAt": "2022-09-16T18:01:24.0514229\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:12:35.716384\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T18:01:24.3184611\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:12:35.8912051\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_120109792935/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_332458084972/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { @@ -860,7 +860,7 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_120109792935", + "name": "test_332458084972", "version": "1", "display_name": "CommandComponentBasic", "is_deterministic": "True", @@ -888,7 +888,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -898,11 +898,11 @@ } }, "systemData": { - "createdAt": "2022-09-16T18:01:20.7267757\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:12:31.5779114\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T18:01:20.9590962\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:12:31.7424394\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -910,13 +910,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_120109792935/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_332458084972/versions/1?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -924,27 +924,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:01:54 GMT", + "Date": "Fri, 23 Sep 2022 16:13:07 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-599124fe5af52667186d2ed73c07c0eb-fd701985a23fa28b-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-76ee98cdee222ecc0fa56539d627ebca-73e7bf87b0c7cf7f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d48cef18-bd9b-48f6-aaa9-cb835fe22948", - "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-correlation-request-id": "0fc540a4-1ab0-4f2a-b70a-28e9c215e36c", + "x-ms-ratelimit-remaining-subscription-reads": "11855", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180155Z:d48cef18-bd9b-48f6-aaa9-cb835fe22948", - "x-request-time": "0.162" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161307Z:0fc540a4-1ab0-4f2a-b70a-28e9c215e36c", + "x-request-time": "0.105" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_120109792935/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_332458084972/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { @@ -957,7 +957,7 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_120109792935", + "name": "test_332458084972", "version": "1", "display_name": "CommandComponentBasic", "is_deterministic": "True", @@ -985,7 +985,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -995,17 +995,17 @@ } }, "systemData": { - "createdAt": "2022-09-16T18:01:20.7267757\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:12:31.5779114\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T18:01:20.9590962\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:12:31.7424394\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_120109792935/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_332458084972/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -1013,7 +1013,7 @@ "Connection": "keep-alive", "Content-Length": "1414", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -1025,7 +1025,7 @@ "isAnonymous": false, "isArchived": true, "componentSpec": { - "name": "test_120109792935", + "name": "test_332458084972", "version": "1", "display_name": "CommandComponentBasic", "is_deterministic": "True", @@ -1053,7 +1053,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -1068,27 +1068,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:01:55 GMT", + "Date": "Fri, 23 Sep 2022 16:13:08 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-6430498783d3c4f48d5f91fbe362ced1-456dc206879fa73a-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-16a4d72de62d6cb4a54f6b6c9bdb40a3-14485e0faf4b544f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5ea14e3d-5d1b-4072-a7a7-b1f2a5b01bd3", - "x-ms-ratelimit-remaining-subscription-writes": "1127", + "x-ms-correlation-request-id": "d3e4a75e-b8af-4955-8a55-3a428d92c614", + "x-ms-ratelimit-remaining-subscription-writes": "1059", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180156Z:5ea14e3d-5d1b-4072-a7a7-b1f2a5b01bd3", - "x-request-time": "0.873" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161309Z:d3e4a75e-b8af-4955-8a55-3a428d92c614", + "x-request-time": "0.792" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_120109792935/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_332458084972/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { @@ -1101,7 +1101,7 @@ "isArchived": true, "isAnonymous": false, "componentSpec": { - "name": "test_120109792935", + "name": "test_332458084972", "version": "1", "display_name": "CommandComponentBasic", "is_deterministic": "True", @@ -1129,7 +1129,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -1139,23 +1139,23 @@ } }, "systemData": { - "createdAt": "2022-09-16T18:01:20.7267757\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:12:31.5779114\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T18:01:56.5548299\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:13:09.3022773\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_120109792935/versions?api-version=2022-05-01\u0026listViewType=ActiveOnly", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_332458084972/versions?api-version=2022-05-01\u0026listViewType=ActiveOnly", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1163,29 +1163,29 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:02:26 GMT", + "Date": "Fri, 23 Sep 2022 16:13:40 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-98965a209a8c82dec366e4188f7bf6b9-398f94eda1bc9a6b-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-4218ed04b4d8fe06a213d8b3219ae431-1269dda3c97ed90b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c7d37ae5-f984-4467-8004-6c0e8a01226a", - "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-correlation-request-id": "22b058e0-fe3d-4832-95b6-fdcaf4c0ecab", + "x-ms-ratelimit-remaining-subscription-reads": "11854", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180227Z:c7d37ae5-f984-4467-8004-6c0e8a01226a", - "x-request-time": "0.281" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161340Z:22b058e0-fe3d-4832-95b6-fdcaf4c0ecab", + "x-request-time": "0.227" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_120109792935/versions/2", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_332458084972/versions/2", "name": "2", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { @@ -1198,7 +1198,7 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_120109792935", + "name": "test_332458084972", "version": "2", "display_name": "CommandComponentBasic", "is_deterministic": "True", @@ -1226,7 +1226,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -1236,11 +1236,11 @@ } }, "systemData": { - "createdAt": "2022-09-16T18:01:24.0514229\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:12:35.716384\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T18:01:24.3184611\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:12:35.8912051\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -1248,13 +1248,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_120109792935/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_332458084972/versions/1?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1262,27 +1262,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:02:26 GMT", + "Date": "Fri, 23 Sep 2022 16:13:41 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-205f642280fc3723eb1448a927f4de53-0894810a8d496513-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-64b44c8b5a2f1d8f57215be7f8c4fc61-91048bd87499337b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7ace455c-5811-4173-abf2-3de7fb561f9f", - "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-correlation-request-id": "ea67b70f-c874-4f32-ac0f-0876679d08c7", + "x-ms-ratelimit-remaining-subscription-reads": "11853", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180227Z:7ace455c-5811-4173-abf2-3de7fb561f9f", - "x-request-time": "0.166" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161341Z:ea67b70f-c874-4f32-ac0f-0876679d08c7", + "x-request-time": "0.106" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_120109792935/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_332458084972/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { @@ -1295,7 +1295,7 @@ "isArchived": true, "isAnonymous": false, "componentSpec": { - "name": "test_120109792935", + "name": "test_332458084972", "version": "1", "display_name": "CommandComponentBasic", "is_deterministic": "True", @@ -1323,7 +1323,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -1333,17 +1333,17 @@ } }, "systemData": { - "createdAt": "2022-09-16T18:01:20.7267757\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:12:31.5779114\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T18:01:56.5548299\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:13:09.3022773\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_120109792935/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_332458084972/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -1351,7 +1351,7 @@ "Connection": "keep-alive", "Content-Length": "1415", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -1363,7 +1363,7 @@ "isAnonymous": false, "isArchived": false, "componentSpec": { - "name": "test_120109792935", + "name": "test_332458084972", "version": "1", "display_name": "CommandComponentBasic", "is_deterministic": "True", @@ -1391,7 +1391,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -1406,27 +1406,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:02:27 GMT", + "Date": "Fri, 23 Sep 2022 16:13:43 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-82f0b247f39f561402abc9cab9303d8a-eb5ad40f1d74ed8a-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-c72682555b42ce34f4c788f79f3f52fa-ed702279f24989ca-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a5ebe4a0-9814-4ac5-b98c-34406f204b82", - "x-ms-ratelimit-remaining-subscription-writes": "1126", + "x-ms-correlation-request-id": "e2253a91-0857-421f-aca4-a9b9feebf8ec", + "x-ms-ratelimit-remaining-subscription-writes": "1058", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180228Z:a5ebe4a0-9814-4ac5-b98c-34406f204b82", - "x-request-time": "0.882" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161343Z:e2253a91-0857-421f-aca4-a9b9feebf8ec", + "x-request-time": "0.860" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_120109792935/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_332458084972/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { @@ -1439,7 +1439,7 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_120109792935", + "name": "test_332458084972", "version": "1", "display_name": "CommandComponentBasic", "is_deterministic": "True", @@ -1467,7 +1467,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -1477,23 +1477,23 @@ } }, "systemData": { - "createdAt": "2022-09-16T18:01:20.7267757\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:12:31.5779114\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T18:02:28.3629779\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:13:43.0325586\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_120109792935/versions?api-version=2022-05-01\u0026listViewType=ActiveOnly", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_332458084972/versions?api-version=2022-05-01\u0026listViewType=ActiveOnly", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1501,29 +1501,29 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:02:58 GMT", + "Date": "Fri, 23 Sep 2022 16:14:14 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-6795cdbdc777f0a37a8c9b08ff887d68-6326ace020d4fad6-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-97616b7cbd6aeeaf85717164fac40447-5e7fcc7e94c2c3c6-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "312dddb0-7895-44c9-971a-cb9b32e0e8c3", - "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-correlation-request-id": "fb629ef8-24ab-4172-a70a-f88ab1cc8c6c", + "x-ms-ratelimit-remaining-subscription-reads": "11852", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180258Z:312dddb0-7895-44c9-971a-cb9b32e0e8c3", - "x-request-time": "0.206" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161414Z:fb629ef8-24ab-4172-a70a-f88ab1cc8c6c", + "x-request-time": "0.243" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_120109792935/versions/2", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_332458084972/versions/2", "name": "2", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { @@ -1536,7 +1536,7 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_120109792935", + "name": "test_332458084972", "version": "2", "display_name": "CommandComponentBasic", "is_deterministic": "True", @@ -1564,7 +1564,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -1574,16 +1574,16 @@ } }, "systemData": { - "createdAt": "2022-09-16T18:01:24.0514229\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:12:35.716384\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T18:01:24.3184611\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:12:35.8912051\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } }, { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_120109792935/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_332458084972/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { @@ -1596,7 +1596,7 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_120109792935", + "name": "test_332458084972", "version": "1", "display_name": "CommandComponentBasic", "is_deterministic": "True", @@ -1624,7 +1624,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -1634,11 +1634,11 @@ } }, "systemData": { - "createdAt": "2022-09-16T18:01:20.7267757\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:12:31.5779114\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T18:02:28.3629779\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:13:43.0325586\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -1647,6 +1647,6 @@ } ], "Variables": { - "namee": "test_120109792935" + "namee": "test_332458084972" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_component_create_default_code.json b/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_component_create_default_code.json index bb17db97ff97..6985406127f3 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_component_create_default_code.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_component_create_default_code.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:00:07 GMT", + "Date": "Fri, 23 Sep 2022 16:10:07 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-89bc8589d4314503763e8b8ba6a9f600-15a94e016dfac602-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-c92527e6c5aa01f73f774146b88f81d7-6499cc4d52679c0b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0a56f987-c2bd-4dba-87f6-321dbf60b589", - "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-correlation-request-id": "ba8ba9da-59a2-4eca-9490-2a760d3dacaa", + "x-ms-ratelimit-remaining-subscription-reads": "11887", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180007Z:0a56f987-c2bd-4dba-87f6-321dbf60b589", - "x-request-time": "0.098" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161008Z:ba8ba9da-59a2-4eca-9490-2a760d3dacaa", + "x-request-time": "0.081" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -47,17 +47,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -71,7 +71,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -79,21 +79,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:00:07 GMT", + "Date": "Fri, 23 Sep 2022 16:10:08 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-ce8cc62bff6493a6d5eb6bc709f9c086-4ce5d8e8f1f5aec5-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-4b8b0655c27e02c4f3144f4131d35d54-1dbb53503c3b25a7-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "532cb07a-970b-46e5-82a7-be393fa2a246", - "x-ms-ratelimit-remaining-subscription-writes": "1184", + "x-ms-correlation-request-id": "8e215419-1d84-46eb-97b8-ae79e4fa8ace", + "x-ms-ratelimit-remaining-subscription-writes": "1130", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180007Z:532cb07a-970b-46e5-82a7-be393fa2a246", - "x-request-time": "0.105" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161009Z:8e215419-1d84-46eb-97b8-ae79e4fa8ace", + "x-request-time": "0.203" }, "ResponseBody": { "secretsType": "AccountKey", @@ -101,15 +101,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 18:00:06 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:10:11 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -118,9 +118,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 18:00:07 GMT", - "ETag": "\u00220x8DA96C8560C1979\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:14:00 GMT", + "Date": "Fri, 23 Sep 2022 16:10:09 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -129,32 +129,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:14:00 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ac7e0240-c159-4c9c-828e-d3e8df43e80f", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 18:00:06 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:10:11 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 18:00:07 GMT", + "Date": "Fri, 23 Sep 2022 16:10:09 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -162,12 +162,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -175,7 +175,7 @@ "Connection": "keep-alive", "Content-Length": "288", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -185,7 +185,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -193,27 +193,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:00:08 GMT", + "Date": "Fri, 23 Sep 2022 16:10:09 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-87913067deef8f6db986187578e105e4-3be0580b24a04917-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-580372e4225f2975bc52507e83c477ea-d379b3bfc5ca782d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "38739536-a6f1-48aa-9462-991d7773aeeb", - "x-ms-ratelimit-remaining-subscription-writes": "1166", + "x-ms-correlation-request-id": "e3d6507d-7174-4590-90cf-f931cd27c11a", + "x-ms-ratelimit-remaining-subscription-writes": "1102", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180008Z:38739536-a6f1-48aa-9462-991d7773aeeb", - "x-request-time": "0.079" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161010Z:e3d6507d-7174-4590-90cf-f931cd27c11a", + "x-request-time": "0.197" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -225,20 +225,20 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-15T03:14:01.4315202\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-16T18:00:08.3947729\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T16:10:10.3884396\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_858274817042/versions/0.0.1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_694876015662/versions/0.0.1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -246,7 +246,7 @@ "Connection": "keep-alive", "Content-Length": "1439", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -260,9 +260,9 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo $[[${{inputs.component_in_number}}]] \u0026 echo ${{inputs.component_in_path}} \u0026 echo ${{outputs.component_out_path}} \u003E ${{outputs.component_out_path}}/component_in_number", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", - "name": "test_858274817042", + "name": "test_694876015662", "description": "This is the basic command component", "tags": { "tag": "tagvalue", @@ -297,25 +297,25 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2326", + "Content-Length": "2323", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:00:10 GMT", + "Date": "Fri, 23 Sep 2022 16:10:11 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_858274817042/versions/0.0.1?api-version=2022-05-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_694876015662/versions/0.0.1?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-120d8c02b34576fcbcac95c49ffbf2ce-19534cae3c19b59b-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-1932f5b297e7b55d47d733f19bae9bcf-bda404e686f3b5b9-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0515e623-3fe1-4a09-8d11-9b3579de57c3", - "x-ms-ratelimit-remaining-subscription-writes": "1165", + "x-ms-correlation-request-id": "791eb5f3-6212-4b95-bbe7-7d20bb49c857", + "x-ms-ratelimit-remaining-subscription-writes": "1101", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180010Z:0515e623-3fe1-4a09-8d11-9b3579de57c3", - "x-request-time": "0.779" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161011Z:791eb5f3-6212-4b95-bbe7-7d20bb49c857", + "x-request-time": "0.705" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_858274817042/versions/0.0.1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_694876015662/versions/0.0.1", "name": "0.0.1", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { @@ -328,7 +328,7 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_858274817042", + "name": "test_694876015662", "version": "0.0.1", "display_name": "CommandComponentBasic", "is_deterministic": "True", @@ -356,7 +356,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -366,11 +366,11 @@ } }, "systemData": { - "createdAt": "2022-09-16T18:00:09.9351311\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:10:11.428651\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T18:00:10.1677227\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:10:11.6161019\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -382,7 +382,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -390,24 +390,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:00:10 GMT", + "Date": "Fri, 23 Sep 2022 16:10:12 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-fdd9f77987deb78b700d8ebc9bdfe9d4-070be4eb4dd95e6d-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-c5251cc0d039dd67864e9d3bed655c52-41de8f8c0a1491dc-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b0d5897b-95d1-49ca-abeb-84c88d7857c6", - "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-correlation-request-id": "5dbb69a8-16f2-459a-bb22-c112aaa7e50f", + "x-ms-ratelimit-remaining-subscription-reads": "11886", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180010Z:b0d5897b-95d1-49ca-abeb-84c88d7857c6", - "x-request-time": "0.099" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161012Z:5dbb69a8-16f2-459a-bb22-c112aaa7e50f", + "x-request-time": "0.157" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -422,17 +422,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -446,7 +446,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -454,21 +454,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:00:10 GMT", + "Date": "Fri, 23 Sep 2022 16:10:13 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-1f6dd8fc54c0d5b3e9e122fb3b387e74-a1e5fe2e13e9f20d-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-539c1ab0ba23ec3329b37a48df58e68f-466b262d35f4403c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "09bd1ed4-e982-46ea-97a0-f1363a2d4925", - "x-ms-ratelimit-remaining-subscription-writes": "1183", + "x-ms-correlation-request-id": "57e78a00-bd34-4bc3-a3c3-994901197ce4", + "x-ms-ratelimit-remaining-subscription-writes": "1129", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180010Z:09bd1ed4-e982-46ea-97a0-f1363a2d4925", - "x-request-time": "0.098" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161013Z:57e78a00-bd34-4bc3-a3c3-994901197ce4", + "x-request-time": "0.088" }, "ResponseBody": { "secretsType": "AccountKey", @@ -476,15 +476,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 18:00:09 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:10:15 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -493,9 +493,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 18:00:10 GMT", - "ETag": "\u00220x8DA96C8560C1979\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:14:00 GMT", + "Date": "Fri, 23 Sep 2022 16:10:13 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -504,32 +504,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:14:00 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ac7e0240-c159-4c9c-828e-d3e8df43e80f", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 18:00:09 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:10:15 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 18:00:10 GMT", + "Date": "Fri, 23 Sep 2022 16:10:13 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -537,12 +537,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -550,7 +550,7 @@ "Connection": "keep-alive", "Content-Length": "288", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -560,7 +560,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -568,27 +568,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:00:10 GMT", + "Date": "Fri, 23 Sep 2022 16:10:14 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-b571bd058d49e9ce21c151eddb1c73b2-2ee3e390c7d55313-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-8f383a97e5987082eb7ea6d17cb9b731-3143dcbde777192a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f2e8e726-b0d9-4ad0-9796-f0114952be67", - "x-ms-ratelimit-remaining-subscription-writes": "1164", + "x-ms-correlation-request-id": "abb428b7-b2dc-4b87-8bb0-46d9f05c633f", + "x-ms-ratelimit-remaining-subscription-writes": "1100", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180011Z:f2e8e726-b0d9-4ad0-9796-f0114952be67", - "x-request-time": "0.051" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161014Z:abb428b7-b2dc-4b87-8bb0-46d9f05c633f", + "x-request-time": "0.080" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -600,20 +600,20 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-15T03:14:01.4315202\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-16T18:00:11.1800279\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T16:10:14.6914787\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_858274817042/versions/0.0.1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_694876015662/versions/0.0.1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -621,7 +621,7 @@ "Connection": "keep-alive", "Content-Length": "1402", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -635,9 +635,9 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo $[[${{inputs.component_in_number}}]] \u0026 echo ${{inputs.component_in_path}} \u0026 echo ${{outputs.component_out_path}} \u003E ${{outputs.component_out_path}}/component_in_number", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", - "name": "test_858274817042", + "name": "test_694876015662", "description": "Updated description", "tags": { "tag": "tagvalue", @@ -674,27 +674,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:00:13 GMT", + "Date": "Fri, 23 Sep 2022 16:10:16 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-4038155752a5615f5bae95fb296754dc-b07608b74e2e4a77-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-a0d3033c719fb9ffca6fae46109b0c62-4a578ca3610080df-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cc8dbc10-a42d-43ff-aa15-f299983e2e88", - "x-ms-ratelimit-remaining-subscription-writes": "1163", + "x-ms-correlation-request-id": "74fb2694-1bcf-462f-8bac-d41bd6b01582", + "x-ms-ratelimit-remaining-subscription-writes": "1099", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180013Z:cc8dbc10-a42d-43ff-aa15-f299983e2e88", - "x-request-time": "1.146" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161016Z:74fb2694-1bcf-462f-8bac-d41bd6b01582", + "x-request-time": "0.850" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_858274817042/versions/0.0.1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_694876015662/versions/0.0.1", "name": "0.0.1", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { @@ -707,7 +707,7 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_858274817042", + "name": "test_694876015662", "version": "0.0.1", "display_name": "UpdatedComponent", "is_deterministic": "True", @@ -735,7 +735,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -745,17 +745,17 @@ } }, "systemData": { - "createdAt": "2022-09-16T18:00:09.9351311\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:10:11.428651\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T18:00:13.2527999\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:10:16.0638768\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } } ], "Variables": { - "component_name": "test_858274817042" + "component_name": "test_694876015662" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_component_create_twice_same_code_arm_id.json b/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_component_create_twice_same_code_arm_id.json index 35d62769b027..83a8860266dc 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_component_create_twice_same_code_arm_id.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_component_create_twice_same_code_arm_id.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 17:59:52 GMT", + "Date": "Fri, 23 Sep 2022 16:09:43 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-87c18a142cc499fff5d6acbeaf481ae7-6a8afd15e9591c9f-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-64de814ef1039b2e9c10ad13b66cfd0c-b300d3b39ab4c293-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "680791b8-91c5-4719-b357-b21ab706d79c", - "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-correlation-request-id": "45fc4fc7-035c-4a28-8ed0-8af40dd0a8b9", + "x-ms-ratelimit-remaining-subscription-reads": "11891", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T175952Z:680791b8-91c5-4719-b357-b21ab706d79c", - "x-request-time": "0.093" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T160944Z:45fc4fc7-035c-4a28-8ed0-8af40dd0a8b9", + "x-request-time": "0.113" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -47,17 +47,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -71,7 +71,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -79,21 +79,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 17:59:53 GMT", + "Date": "Fri, 23 Sep 2022 16:09:44 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-42e0fdce1aa6c9b4ebee775a9cca9ae2-5d404dfe35b7341a-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-c2d2fee135678f68d018bf885d98ca42-f10be43501241151-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e2bf1333-02bb-44bc-9822-e6f94b2e0e77", - "x-ms-ratelimit-remaining-subscription-writes": "1188", + "x-ms-correlation-request-id": "b3b2482a-31c6-4c20-a2cb-d50d818220a6", + "x-ms-ratelimit-remaining-subscription-writes": "1134", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T175953Z:e2bf1333-02bb-44bc-9822-e6f94b2e0e77", - "x-request-time": "0.096" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T160945Z:b3b2482a-31c6-4c20-a2cb-d50d818220a6", + "x-request-time": "0.152" }, "ResponseBody": { "secretsType": "AccountKey", @@ -101,20 +101,20 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/test_component_create_twice_sa0/component.yml", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/test_component_create_twice_sa0/component.yml", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 17:59:52 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:09:47 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 17:59:53 GMT", + "Date": "Fri, 23 Sep 2022 16:09:45 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -122,72 +122,72 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/test_component_create_twice_sa0/component.yml", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/test_component_create_twice_sa0/component.yml", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "279", - "Content-MD5": "z9hje\u002BKwZEK5SyyKeOo3kw==", + "Content-MD5": "9BTmCL\u002BmWU5p2arMuySg0Q==", "Content-Type": "application/octet-stream", "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Fri, 16 Sep 2022 17:59:52 GMT", - "x-ms-version": "2021-06-08" + "x-ms-date": "Fri, 23 Sep 2022 16:09:47 GMT", + "x-ms-version": "2021-08-06" }, - "RequestBody": "DQokc2NoZW1hOiBodHRwczovL2F6dXJlbWxzY2hlbWFzLmF6dXJlZWRnZS5uZXQvZGV2ZWxvcG1lbnQvY29tbWFuZENvbXBvbmVudC5zY2hlbWEuanNvbg0KbmFtZTogdGVzdF8xMzc1MjM1MDk0MTANCnZlcnNpb246IDENCnR5cGU6IGNvbW1hbmQNCm5hbWU6IFNhbXBsZUNvbW1hbmRDb21wb25lbnRCYXNpYw0KY29tbWFuZDogZWNobyBIZWxsbyBXb3JsZA0KY29kZTogIi4iDQplbnZpcm9ubWVudDogYXp1cmVtbDpBenVyZU1MLXNrbGVhcm4tMC4yNC11YnVudHUxOC4wNC1weTM3LWNwdTox", + "RequestBody": "DQokc2NoZW1hOiBodHRwczovL2F6dXJlbWxzY2hlbWFzLmF6dXJlZWRnZS5uZXQvZGV2ZWxvcG1lbnQvY29tbWFuZENvbXBvbmVudC5zY2hlbWEuanNvbg0KbmFtZTogdGVzdF80MTQ5MzMyMjM1ODQNCnZlcnNpb246IDENCnR5cGU6IGNvbW1hbmQNCm5hbWU6IFNhbXBsZUNvbW1hbmRDb21wb25lbnRCYXNpYw0KY29tbWFuZDogZWNobyBIZWxsbyBXb3JsZA0KY29kZTogIi4iDQplbnZpcm9ubWVudDogYXp1cmVtbDpBenVyZU1MLXNrbGVhcm4tMC4yNC11YnVudHUxOC4wNC1weTM3LWNwdTox", "StatusCode": 201, "ResponseHeaders": { "Content-Length": "0", - "Content-MD5": "z9hje\u002BKwZEK5SyyKeOo3kw==", - "Date": "Fri, 16 Sep 2022 17:59:53 GMT", - "ETag": "\u00220x8DA980D42309AC5\u0022", - "Last-Modified": "Fri, 16 Sep 2022 17:59:53 GMT", + "Content-MD5": "9BTmCL\u002BmWU5p2arMuySg0Q==", + "Date": "Fri, 23 Sep 2022 16:09:45 GMT", + "ETag": "\u00220x8DA9D7E0854AD2A\u0022", + "Last-Modified": "Fri, 23 Sep 2022 16:09:45 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-content-crc64": "bpB0dXZw97k=", + "x-ms-content-crc64": "uTKV0fGdUU8=", "x-ms-request-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/test_component_create_twice_sa0/component.yml?comp=metadata", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/test_component_create_twice_sa0/component.yml?comp=metadata", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 17:59:52 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:09:47 GMT", "x-ms-meta-name": "000000000000000000000", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Fri, 16 Sep 2022 17:59:53 GMT", - "ETag": "\u00220x8DA980D42372987\u0022", - "Last-Modified": "Fri, 16 Sep 2022 17:59:53 GMT", + "Date": "Fri, 23 Sep 2022 16:09:46 GMT", + "ETag": "\u00220x8DA9D7E08868B63\u0022", + "Last-Modified": "Fri, 23 Sep 2022 16:09:46 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, @@ -200,7 +200,7 @@ "Connection": "keep-alive", "Content-Length": "320", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -210,28 +210,28 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/test_component_create_twice_sa0" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/test_component_create_twice_sa0" } }, "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "837", + "Content-Length": "835", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 17:59:54 GMT", + "Date": "Fri, 23 Sep 2022 16:09:46 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-90cb49b01241da15f35622fd7085be17-1c13f03b095afe88-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-fc6daba36b1c62fa41a81f5009cbe325-ddb8cce95153b0ca-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3f4bd833-19f3-4b86-a7c2-eef2e0e1aa3c", - "x-ms-ratelimit-remaining-subscription-writes": "1174", + "x-ms-correlation-request-id": "e262ee4f-4408-4ec3-bc62-b75190aef1a3", + "x-ms-ratelimit-remaining-subscription-writes": "1110", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T175954Z:3f4bd833-19f3-4b86-a7c2-eef2e0e1aa3c", - "x-request-time": "0.120" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T160947Z:e262ee4f-4408-4ec3-bc62-b75190aef1a3", + "x-request-time": "0.196" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", @@ -246,20 +246,20 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/test_component_create_twice_sa0" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/test_component_create_twice_sa0" }, "systemData": { - "createdAt": "2022-09-16T17:59:54.1360212\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:09:46.9512313\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T17:59:54.1360212\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:09:46.9512313\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_137523509410/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_414933223584/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -267,7 +267,7 @@ "Connection": "keep-alive", "Content-Length": "803", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -279,7 +279,7 @@ "command": "echo Hello World", "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", - "name": "test_137523509410", + "name": "test_414933223584", "tags": {}, "version": "1", "$schema": "https://azuremlschemas.azureedge.net/development/commandComponent.schema.json", @@ -294,25 +294,25 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1449", + "Content-Length": "1448", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 17:59:54 GMT", + "Date": "Fri, 23 Sep 2022 16:09:48 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_137523509410/versions/1?api-version=2022-05-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_414933223584/versions/1?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-f6eaae20f0ab1094af82b9c5c72d046f-d308c6d948bb045e-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-203febc934a9a56277042766ea667645-3211b7d17325db1a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "70c26c8e-3a96-4e8d-a14b-5d871a34bb1f", - "x-ms-ratelimit-remaining-subscription-writes": "1173", + "x-ms-correlation-request-id": "cb5e59c5-dbc1-4ca4-ba32-ca8b0d834520", + "x-ms-ratelimit-remaining-subscription-writes": "1109", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T175955Z:70c26c8e-3a96-4e8d-a14b-5d871a34bb1f", - "x-request-time": "0.690" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T160948Z:cb5e59c5-dbc1-4ca4-ba32-ca8b0d834520", + "x-request-time": "0.598" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_137523509410/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_414933223584/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { @@ -322,7 +322,7 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_137523509410", + "name": "test_414933223584", "version": "1", "is_deterministic": "True", "type": "command", @@ -336,11 +336,11 @@ } }, "systemData": { - "createdAt": "2022-09-16T17:59:54.6737431\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:09:48.4631715\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T17:59:54.890885\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:09:48.6366237\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -352,7 +352,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -360,24 +360,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 17:59:55 GMT", + "Date": "Fri, 23 Sep 2022 16:09:49 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-b106ec0a561807caa0b1e153703da089-565440e13126e499-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-a10c0a1baaafc6096bbb15cd815563f4-64c97c4233169974-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4f726ba1-49cd-471a-a5e0-e8af08a54fce", - "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-correlation-request-id": "ba0044e8-eaf6-412f-936d-83607a663830", + "x-ms-ratelimit-remaining-subscription-reads": "11890", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T175955Z:4f726ba1-49cd-471a-a5e0-e8af08a54fce", - "x-request-time": "0.106" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T160949Z:ba0044e8-eaf6-412f-936d-83607a663830", + "x-request-time": "0.085" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -392,17 +392,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -416,7 +416,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -424,21 +424,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 17:59:56 GMT", + "Date": "Fri, 23 Sep 2022 16:09:50 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-62d9d72985fa4aadc626c589f31d984b-a96f258d6c386d57-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-03a49c97461ae7a1ebc53c1aa7f82ad4-e9f5afe58d283743-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ebf28ac6-40ca-439b-a5b2-b2d588b71d8b", - "x-ms-ratelimit-remaining-subscription-writes": "1187", + "x-ms-correlation-request-id": "e1442e62-84a4-46d8-b56e-24187ce47a8f", + "x-ms-ratelimit-remaining-subscription-writes": "1133", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T175956Z:ebf28ac6-40ca-439b-a5b2-b2d588b71d8b", - "x-request-time": "0.098" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T160950Z:e1442e62-84a4-46d8-b56e-24187ce47a8f", + "x-request-time": "0.215" }, "ResponseBody": { "secretsType": "AccountKey", @@ -446,26 +446,26 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/test_component_create_twice_sa0/component.yml", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/test_component_create_twice_sa0/component.yml", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 17:59:55 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:09:52 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Accept-Ranges": "bytes", "Content-Length": "279", - "Content-MD5": "z9hje\u002BKwZEK5SyyKeOo3kw==", + "Content-MD5": "9BTmCL\u002BmWU5p2arMuySg0Q==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 17:59:56 GMT", - "ETag": "\u00220x8DA980D42372987\u0022", - "Last-Modified": "Fri, 16 Sep 2022 17:59:53 GMT", + "Date": "Fri, 23 Sep 2022 16:09:51 GMT", + "ETag": "\u00220x8DA9D7E08868B63\u0022", + "Last-Modified": "Fri, 23 Sep 2022 16:09:46 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -474,32 +474,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Fri, 16 Sep 2022 17:59:53 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 16:09:45 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", "x-ms-meta-name": "000000000000000000000", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/test_component_create_twice_sa0/component.yml", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/test_component_create_twice_sa0/component.yml", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 17:59:55 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:09:53 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 17:59:56 GMT", + "Date": "Fri, 23 Sep 2022 16:09:51 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -507,7 +507,7 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, @@ -520,7 +520,7 @@ "Connection": "keep-alive", "Content-Length": "320", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -530,7 +530,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/test_component_create_twice_sa0" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/test_component_create_twice_sa0" } }, "StatusCode": 200, @@ -538,24 +538,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 17:59:57 GMT", + "Date": "Fri, 23 Sep 2022 16:09:51 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-9fa6b58f0a8772d98cbe27e23ad0f3ac-97f821204a042f43-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-2bda7f538eedb617b364e594d6d7c44a-ebfa2098f1097f89-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "01ae9534-47e7-4e29-be30-a3acc3626022", - "x-ms-ratelimit-remaining-subscription-writes": "1172", + "x-ms-correlation-request-id": "18866373-7c9c-4ce4-98af-a5f180e17580", + "x-ms-ratelimit-remaining-subscription-writes": "1108", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T175957Z:01ae9534-47e7-4e29-be30-a3acc3626022", - "x-request-time": "0.056" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T160952Z:18866373-7c9c-4ce4-98af-a5f180e17580", + "x-request-time": "0.101" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", @@ -570,20 +570,20 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/test_component_create_twice_sa0" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/test_component_create_twice_sa0" }, "systemData": { - "createdAt": "2022-09-16T17:59:54.1360212\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:09:46.9512313\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T17:59:57.4058464\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:09:52.3685864\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_137523509410/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_414933223584/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -591,7 +591,7 @@ "Connection": "keep-alive", "Content-Length": "803", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -603,7 +603,7 @@ "command": "echo Hello World", "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", - "name": "test_137523509410", + "name": "test_414933223584", "tags": {}, "version": "1", "$schema": "https://azuremlschemas.azureedge.net/development/commandComponent.schema.json", @@ -620,27 +620,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 17:59:58 GMT", + "Date": "Fri, 23 Sep 2022 16:09:52 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-54c72bff8203b9cc53ef9858df9a6614-c33660894c63ecac-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-f2babc1792bdcf139def9ff177cbe079-3af154d7b8ce8618-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b5229e06-d3da-4445-a542-8e2a52935e0c", - "x-ms-ratelimit-remaining-subscription-writes": "1171", + "x-ms-correlation-request-id": "85cf18f0-8b57-4fb6-9bdd-07792ba62f9f", + "x-ms-ratelimit-remaining-subscription-writes": "1107", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T175958Z:b5229e06-d3da-4445-a542-8e2a52935e0c", - "x-request-time": "0.798" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T160953Z:85cf18f0-8b57-4fb6-9bdd-07792ba62f9f", + "x-request-time": "0.644" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_137523509410/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_414933223584/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { @@ -650,7 +650,7 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_137523509410", + "name": "test_414933223584", "version": "1", "is_deterministic": "True", "type": "command", @@ -664,17 +664,17 @@ } }, "systemData": { - "createdAt": "2022-09-16T17:59:54.6737431\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:09:48.4631715\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T17:59:58.2941002\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:09:53.5911784\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } } ], "Variables": { - "component_name": "test_137523509410" + "component_name": "test_414933223584" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_component_update.json b/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_component_update.json index 46223ffea348..5552d458ade4 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_component_update.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_component_update.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:09:43 GMT", + "Date": "Fri, 23 Sep 2022 16:09:35 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-30abef79ab25b47fc825582aa148bb81-ed74628faf9d6575-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-bbaf868f0eb49f0b9fec282beb247a79-ebaac5e685b8fdfb-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ffb074b7-e271-4cd5-a23e-9b8f1c8b20a9", - "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-correlation-request-id": "1a420bfe-185e-472f-8f37-be37681568c0", + "x-ms-ratelimit-remaining-subscription-reads": "11892", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T150944Z:ffb074b7-e271-4cd5-a23e-9b8f1c8b20a9", - "x-request-time": "0.582" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T160935Z:1a420bfe-185e-472f-8f37-be37681568c0", + "x-request-time": "0.107" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -47,17 +47,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sawcdivl5vo3cem", - "containerName": "azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-19T00:10:19.4497254\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-19T00:10:20.0957203\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -71,7 +71,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -79,21 +79,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:09:44 GMT", + "Date": "Fri, 23 Sep 2022 16:09:36 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-9329d460fa114e54bcbeb1da389fed68-8674e7c1a52838f7-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-006e0374fbec70969bf0840255aac56a-0c42700f90e06229-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "154072b6-71cf-4608-bf4d-d5f347ba6d1f", - "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-correlation-request-id": "902fa993-4cb3-4c8d-9169-c3e48fc63bc7", + "x-ms-ratelimit-remaining-subscription-writes": "1135", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T150945Z:154072b6-71cf-4608-bf4d-d5f347ba6d1f", - "x-request-time": "0.151" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T160936Z:902fa993-4cb3-4c8d-9169-c3e48fc63bc7", + "x-request-time": "0.118" }, "ResponseBody": { "secretsType": "AccountKey", @@ -101,15 +101,15 @@ } }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Mon, 19 Sep 2022 15:09:45 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:09:38 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -118,9 +118,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Mon, 19 Sep 2022 15:09:45 GMT", - "ETag": "\u00220x8DA99D37A4F8142\u0022", - "Last-Modified": "Mon, 19 Sep 2022 00:11:19 GMT", + "Date": "Fri, 23 Sep 2022 16:09:37 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -129,32 +129,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Mon, 19 Sep 2022 00:11:19 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "3d85346b-0def-4d25-b9b1-cc4bdc4a3056", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Mon, 19 Sep 2022 15:09:45 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:09:39 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Mon, 19 Sep 2022 15:09:45 GMT", + "Date": "Fri, 23 Sep 2022 16:09:37 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -162,12 +162,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3d85346b-0def-4d25-b9b1-cc4bdc4a3056/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -175,7 +175,7 @@ "Connection": "keep-alive", "Content-Length": "288", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -185,7 +185,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -193,27 +193,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:09:47 GMT", + "Date": "Fri, 23 Sep 2022 16:09:37 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-8768e6eb68adbd729415053f4fe9652b-5de3bb527f6a36c0-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-b36685a9e56c27beaaee4781ae011c5e-26c1c1f9344e8c28-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1dff289a-e8ab-4edc-b062-ced6634a3751", - "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-correlation-request-id": "2c6734a3-ee03-4727-8c11-dc98989fbb6e", + "x-ms-ratelimit-remaining-subscription-writes": "1113", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T150948Z:1dff289a-e8ab-4edc-b062-ced6634a3751", - "x-request-time": "0.272" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T160938Z:2c6734a3-ee03-4727-8c11-dc98989fbb6e", + "x-request-time": "0.076" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3d85346b-0def-4d25-b9b1-cc4bdc4a3056/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -225,20 +225,20 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-19T00:11:20.0229231\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-19T15:09:48.1048948\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T16:09:38.0274472\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_821114944420/versions/0.0.1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_846611987183/versions/0.0.1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -246,7 +246,7 @@ "Connection": "keep-alive", "Content-Length": "1439", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -260,9 +260,9 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo $[[${{inputs.component_in_number}}]] \u0026 echo ${{inputs.component_in_path}} \u0026 echo ${{outputs.component_out_path}} \u003E ${{outputs.component_out_path}}/component_in_number", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3d85346b-0def-4d25-b9b1-cc4bdc4a3056/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", - "name": "test_821114944420", + "name": "test_846611987183", "description": "This is the basic command component", "tags": { "tag": "tagvalue", @@ -297,25 +297,25 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2326", + "Content-Length": "2324", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:09:49 GMT", + "Date": "Fri, 23 Sep 2022 16:09:38 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_821114944420/versions/0.0.1?api-version=2022-05-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_846611987183/versions/0.0.1?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-2499cb14096794cd323f860f8f7247f7-22dee2f7040eecd0-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-293f533ba6963fc3c0027c6d4ebf2cb5-057994ae924e31cb-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d9986625-c65b-4194-a285-a0002fe96015", - "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-correlation-request-id": "41e93c28-e2d7-4468-a7f4-10aaa2f0b544", + "x-ms-ratelimit-remaining-subscription-writes": "1112", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T150949Z:d9986625-c65b-4194-a285-a0002fe96015", - "x-request-time": "1.452" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T160939Z:41e93c28-e2d7-4468-a7f4-10aaa2f0b544", + "x-request-time": "0.596" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_821114944420/versions/0.0.1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_846611987183/versions/0.0.1", "name": "0.0.1", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { @@ -328,7 +328,7 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_821114944420", + "name": "test_846611987183", "version": "0.0.1", "display_name": "CommandComponentBasic", "is_deterministic": "True", @@ -356,7 +356,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3d85346b-0def-4d25-b9b1-cc4bdc4a3056/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -366,17 +366,17 @@ } }, "systemData": { - "createdAt": "2022-09-19T15:09:49.3806707\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:09:39.0291584\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-19T15:09:49.6196225\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:09:39.2015453\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_821114944420/versions/0.0.1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_846611987183/versions/0.0.1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -384,7 +384,7 @@ "Connection": "keep-alive", "Content-Length": "1642", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -399,13 +399,13 @@ "componentSpec": { "_source": "REMOTE.WORKSPACE.COMPONENT", "command": "echo Hello World \u0026 echo $[[${{inputs.component_in_number}}]] \u0026 echo ${{inputs.component_in_path}} \u0026 echo ${{outputs.component_out_path}} \u003E ${{outputs.component_out_path}}/component_in_number", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3d85346b-0def-4d25-b9b1-cc4bdc4a3056/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": 1 }, - "name": "test_821114944420", - "id": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_821114944420/versions/0.0.1", + "name": "test_846611987183", + "id": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_846611987183/versions/0.0.1", "description": "Updated description", "tags": { "tag": "tagvalue", @@ -441,27 +441,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:09:50 GMT", + "Date": "Fri, 23 Sep 2022 16:09:40 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-34cf561ceafbdff1028fd318cb01f3a9-03364a4f7392a49a-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-e36f1b979c6674ddb7b0989b8f06e5a3-d7e1ae83ec9bda07-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "65ed5dad-b92d-4517-ad25-86707fc3a2de", - "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-correlation-request-id": "c62d9312-724a-4821-b52b-c968f271b659", + "x-ms-ratelimit-remaining-subscription-writes": "1111", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T150951Z:65ed5dad-b92d-4517-ad25-86707fc3a2de", - "x-request-time": "1.085" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T160941Z:c62d9312-724a-4821-b52b-c968f271b659", + "x-request-time": "0.787" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_821114944420/versions/0.0.1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_846611987183/versions/0.0.1", "name": "0.0.1", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { @@ -474,7 +474,7 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_821114944420", + "name": "test_846611987183", "version": "0.0.1", "display_name": "UpdatedComponent", "is_deterministic": "True", @@ -502,7 +502,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3d85346b-0def-4d25-b9b1-cc4bdc4a3056/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -512,17 +512,17 @@ } }, "systemData": { - "createdAt": "2022-09-19T15:09:49.3806707\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:09:39.0291584\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-19T15:09:51.0170529\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:09:40.9462503\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } } ], "Variables": { - "component_name": "test_821114944420" + "component_name": "test_846611987183" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_component_update_code.json b/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_component_update_code.json index d6404990cc96..713a5fd067be 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_component_update_code.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_component_update_code.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 17:59:59 GMT", + "Date": "Fri, 23 Sep 2022 16:09:55 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-e8daf6bfee59849a3718b522d5031c41-ee55e8d81d41652a-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-6e30c2f6a86706d7287974c846d8a720-6b83fcc03021bfc3-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "51138fb0-4910-482e-9214-0869b4cad250", - "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-correlation-request-id": "fa41303e-635b-4e51-b958-2552e13b6b84", + "x-ms-ratelimit-remaining-subscription-reads": "11889", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T175959Z:51138fb0-4910-482e-9214-0869b4cad250", - "x-request-time": "0.086" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T160956Z:fa41303e-635b-4e51-b958-2552e13b6b84", + "x-request-time": "0.136" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -47,17 +47,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -71,7 +71,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -79,21 +79,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 17:59:59 GMT", + "Date": "Fri, 23 Sep 2022 16:09:56 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-2839f90d3ec8f0014eb0cc6d8067df67-3c6059abf92bdba5-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-901018de4256dff34b5d95996e09aebf-240c60cb7d7e40eb-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8e04ab57-9d4d-46d6-bb30-155af2e80c7a", - "x-ms-ratelimit-remaining-subscription-writes": "1186", + "x-ms-correlation-request-id": "b77a449d-84fe-41f7-a17d-304929632e5a", + "x-ms-ratelimit-remaining-subscription-writes": "1132", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180000Z:8e04ab57-9d4d-46d6-bb30-155af2e80c7a", - "x-request-time": "0.099" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T160957Z:b77a449d-84fe-41f7-a17d-304929632e5a", + "x-request-time": "0.123" }, "ResponseBody": { "secretsType": "AccountKey", @@ -101,15 +101,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/helloworld_components_with_env/conda.yml", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/helloworld_components_with_env/conda.yml", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 17:59:59 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:09:59 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -118,9 +118,9 @@ "Content-Length": "180", "Content-MD5": "EVxBbtisKKLnhC4INZp7ow==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 18:00:00 GMT", - "ETag": "\u00220x8DA9788903AB6BD\u0022", - "Last-Modified": "Fri, 16 Sep 2022 02:10:01 GMT", + "Date": "Fri, 23 Sep 2022 16:09:57 GMT", + "ETag": "\u00220x8DA9D7DFF1BF313\u0022", + "Last-Modified": "Fri, 23 Sep 2022 16:09:30 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -129,32 +129,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Fri, 16 Sep 2022 02:10:01 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 16:09:29 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "6213c46c-ceb3-49d8-b8c6-90b2857a04be", + "x-ms-meta-name": "000000000000000000000", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/helloworld_components_with_env/conda.yml", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/helloworld_components_with_env/conda.yml", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 17:59:59 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:10:00 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 18:00:00 GMT", + "Date": "Fri, 23 Sep 2022 16:09:58 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -162,12 +162,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/6213c46c-ceb3-49d8-b8c6-90b2857a04be/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -175,7 +175,7 @@ "Connection": "keep-alive", "Content-Length": "319", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -185,7 +185,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/helloworld_components_with_env" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/helloworld_components_with_env" } }, "StatusCode": 200, @@ -193,27 +193,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:00:00 GMT", + "Date": "Fri, 23 Sep 2022 16:09:58 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-833ecc5d7a1e363d9d7060d91685ffde-88461920a98b4665-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-3677e4807879311e3b5587305f58d6fa-6a94cce651295747-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2c3c3a64-49ce-4474-b471-86f55dd42286", - "x-ms-ratelimit-remaining-subscription-writes": "1170", + "x-ms-correlation-request-id": "3fd3c1c6-eb81-422d-8755-b0cc590b2a73", + "x-ms-ratelimit-remaining-subscription-writes": "1106", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180000Z:2c3c3a64-49ce-4474-b471-86f55dd42286", - "x-request-time": "0.061" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T160959Z:3fd3c1c6-eb81-422d-8755-b0cc590b2a73", + "x-request-time": "0.089" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/6213c46c-ceb3-49d8-b8c6-90b2857a04be/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -225,28 +225,28 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/helloworld_components_with_env" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/helloworld_components_with_env" }, "systemData": { - "createdAt": "2022-09-16T02:10:01.987909\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:09:31.1207112\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T18:00:00.525943\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:09:58.981343\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_209684359208/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_494531034307/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1085", + "Content-Length": "1070", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -260,9 +260,9 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/6213c46c-ceb3-49d8-b8c6-90b2857a04be/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", - "name": "test_209684359208", + "name": "test_494531034307", "description": "This is the basic command component", "tags": { "tag": "tagvalue", @@ -286,25 +286,25 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1807", + "Content-Length": "1790", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:00:02 GMT", + "Date": "Fri, 23 Sep 2022 16:09:59 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_209684359208/versions/1?api-version=2022-05-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_494531034307/versions/1?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-91d6ed57b049999630f4aa9215a6c8ae-d7e2c3d62315e96c-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-69ea9d77573bf79b81e081f4c7862789-9ac9f692cbf7c856-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ba690ec8-837d-4d18-9e5f-01eb66d4af77", - "x-ms-ratelimit-remaining-subscription-writes": "1169", + "x-ms-correlation-request-id": "b7249c53-f88e-4d23-86ef-7deaf5d2fc75", + "x-ms-ratelimit-remaining-subscription-writes": "1105", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180002Z:ba690ec8-837d-4d18-9e5f-01eb66d4af77", - "x-request-time": "0.898" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161000Z:b7249c53-f88e-4d23-86ef-7deaf5d2fc75", + "x-request-time": "0.619" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_209684359208/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_494531034307/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { @@ -317,7 +317,7 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_209684359208", + "name": "test_494531034307", "version": "1", "display_name": "CommandComponentBasic", "is_deterministic": "True", @@ -332,7 +332,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/6213c46c-ceb3-49d8-b8c6-90b2857a04be/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -342,11 +342,11 @@ } }, "systemData": { - "createdAt": "2022-09-16T18:00:02.2971217\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:09:59.9037821\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T18:00:02.5603623\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:10:00.0690863\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -358,7 +358,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -366,24 +366,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:00:02 GMT", + "Date": "Fri, 23 Sep 2022 16:10:00 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-58d1ddd3d9de4db4a6a49eddc06edcef-25d3172c4814f936-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-18780a3edb6800c7267120a8908a8ece-b6ad61cbc40286bd-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "02aa9359-2740-4e64-a1f9-1ec606571e94", - "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-correlation-request-id": "e0d0127c-7b06-4972-80e1-693b0f07545f", + "x-ms-ratelimit-remaining-subscription-reads": "11888", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180003Z:02aa9359-2740-4e64-a1f9-1ec606571e94", - "x-request-time": "0.153" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161000Z:e0d0127c-7b06-4972-80e1-693b0f07545f", + "x-request-time": "0.114" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -398,17 +398,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -422,7 +422,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -430,21 +430,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:00:03 GMT", + "Date": "Fri, 23 Sep 2022 16:10:00 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-beb15e94c7ece51cc537ebd6d905450b-227e4db627c6fbf0-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-11c704208beeeef0284bd1fb86a33cc1-7c85301e28c03959-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b0f0c322-2f82-4af1-a45f-c956d23bdfac", - "x-ms-ratelimit-remaining-subscription-writes": "1185", + "x-ms-correlation-request-id": "9dc28509-79b9-434d-90d4-a03ad1cb0220", + "x-ms-ratelimit-remaining-subscription-writes": "1131", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180003Z:b0f0c322-2f82-4af1-a45f-c956d23bdfac", - "x-request-time": "0.126" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161001Z:9dc28509-79b9-434d-90d4-a03ad1cb0220", + "x-request-time": "0.197" }, "ResponseBody": { "secretsType": "AccountKey", @@ -452,20 +452,20 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/test_component_update_code0/code.yml", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/test_component_update_code0/code.yml", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 18:00:02 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:10:03 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 18:00:03 GMT", + "Date": "Fri, 23 Sep 2022 16:10:01 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -473,77 +473,77 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/test_component_update_code0/code.yml", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/test_component_update_code0/code.yml", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "70", - "Content-MD5": "Kh9t0xK2Tg6mkZQMv5h29w==", + "Content-MD5": "3medAn/p\u002Bxxd18EjyaB/Jw==", "Content-Type": "application/octet-stream", "If-None-Match": "*", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", "x-ms-blob-type": "BlockBlob", - "x-ms-date": "Fri, 16 Sep 2022 18:00:02 GMT", - "x-ms-version": "2021-06-08" + "x-ms-date": "Fri, 23 Sep 2022 16:10:04 GMT", + "x-ms-version": "2021-08-06" }, - "RequestBody": "DQogICAgICAgIG5hbWU6IHRlc3RfMjA5Njg0MzU5MjA4DQogICAgICAgIHZlcnNpb246IDENCiAgICAgICAgcGF0aDogLg==", + "RequestBody": "DQogICAgICAgIG5hbWU6IHRlc3RfNDk0NTMxMDM0MzA3DQogICAgICAgIHZlcnNpb246IDENCiAgICAgICAgcGF0aDogLg==", "StatusCode": 201, "ResponseHeaders": { "Content-Length": "0", - "Content-MD5": "Kh9t0xK2Tg6mkZQMv5h29w==", - "Date": "Fri, 16 Sep 2022 18:00:03 GMT", - "ETag": "\u00220x8DA980D47E4A800\u0022", - "Last-Modified": "Fri, 16 Sep 2022 18:00:03 GMT", + "Content-MD5": "3medAn/p\u002Bxxd18EjyaB/Jw==", + "Date": "Fri, 23 Sep 2022 16:10:02 GMT", + "ETag": "\u00220x8DA9D7E122C4F65\u0022", + "Last-Modified": "Fri, 23 Sep 2022 16:10:02 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "x-ms-content-crc64": "PboBRmJvOcQ=", + "x-ms-content-crc64": "nH6AWhVLS\u002BE=", "x-ms-request-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/test_component_update_code0/code.yml?comp=metadata", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/test_component_update_code0/code.yml?comp=metadata", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 18:00:02 GMT", - "x-ms-meta-name": "test_209684359208", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:10:04 GMT", + "x-ms-meta-name": "test_494531034307", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Content-Length": "0", - "Date": "Fri, 16 Sep 2022 18:00:03 GMT", - "ETag": "\u00220x8DA980D47EA738C\u0022", - "Last-Modified": "Fri, 16 Sep 2022 18:00:03 GMT", + "Date": "Fri, 23 Sep 2022 16:10:02 GMT", + "ETag": "\u00220x8DA9D7E125CCE4B\u0022", + "Last-Modified": "Fri, 23 Sep 2022 16:10:02 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], "x-ms-request-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/test_209684359208/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/test_494531034307/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -551,7 +551,7 @@ "Connection": "keep-alive", "Content-Length": "317", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -561,31 +561,31 @@ }, "isAnonymous": false, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/test_component_update_code0" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/test_component_update_code0" } }, "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "829", + "Content-Length": "827", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:00:04 GMT", + "Date": "Fri, 23 Sep 2022 16:10:02 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/test_209684359208/versions/1?api-version=2022-05-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/test_494531034307/versions/1?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-371b500bc4871d5f41216fedc393533d-57e1fa2749a513d8-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-52d9423abd8e13e580404051958c9d3b-b713151604ca6542-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a4b72997-5625-4d39-a96c-e38e9050cf03", - "x-ms-ratelimit-remaining-subscription-writes": "1168", + "x-ms-correlation-request-id": "77dd4826-f070-4baf-b6f1-35eab25d4b38", + "x-ms-ratelimit-remaining-subscription-writes": "1104", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180004Z:a4b72997-5625-4d39-a96c-e38e9050cf03", - "x-request-time": "0.161" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161003Z:77dd4826-f070-4baf-b6f1-35eab25d4b38", + "x-request-time": "0.229" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/test_209684359208/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/test_494531034307/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -597,20 +597,20 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/test_component_update_code0" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/test_component_update_code0" }, "systemData": { - "createdAt": "2022-09-16T18:00:04.5337945\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:10:03.4241549\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T18:00:04.5337945\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:10:03.4241549\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_209684359208/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_494531034307/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -618,7 +618,7 @@ "Connection": "keep-alive", "Content-Length": "1066", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -632,9 +632,9 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/test_209684359208/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/test_494531034307/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", - "name": "test_209684359208", + "name": "test_494531034307", "description": "This is the basic command component", "tags": { "tag": "tagvalue", @@ -658,25 +658,25 @@ "StatusCode": 400, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1246", + "Content-Length": "1238", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:00:05 GMT", + "Date": "Fri, 23 Sep 2022 16:10:04 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c6d437b2-7930-438e-b596-153dff9ab011", - "x-ms-ratelimit-remaining-subscription-writes": "1167", + "x-ms-correlation-request-id": "fa179a10-11eb-4968-8165-01e52d2a0071", + "x-ms-ratelimit-remaining-subscription-writes": "1103", "x-ms-response-type": "error", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180005Z:c6d437b2-7930-438e-b596-153dff9ab011", - "x-request-time": "0.827" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161005Z:fa179a10-11eb-4968-8165-01e52d2a0071", + "x-request-time": "0.772" }, "ResponseBody": { "error": { "code": "UserError", - "message": "Failed to update component test_209684359208 since field \u0022code\u0022 is immutable, try specifying a new version.", + "message": "Failed to update component test_494531034307 since field \u0022code\u0022 is immutable, try specifying a new version.", "details": [], "additionalInfo": [ { @@ -689,27 +689,27 @@ "type": "Correlation", "info": { "value": { - "operation": "a8f59941e633058424f563c496cdeb2f", - "request": "29dde503de7917eb" + "operation": "8212428af83fd83cde84e561f46de2d2", + "request": "954d8030c45e5768" } } }, { "type": "Environment", "info": { - "value": "eastus2euap" + "value": "eastus2" } }, { "type": "Location", "info": { - "value": "eastus2euap" + "value": "eastus2" } }, { "type": "Time", "info": { - "value": "2022-09-16T18:00:05.7535456\u002B00:00" + "value": "2022-09-23T16:10:05.0499396\u002B00:00" } }, { @@ -733,6 +733,6 @@ } ], "Variables": { - "component_name": "test_209684359208" + "component_name": "test_494531034307" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_entity_command_component_create.json b/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_entity_command_component_create.json index d8c56d644f52..d617e85b74ad 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_entity_command_component_create.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_entity_command_component_create.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:03:00 GMT", + "Date": "Mon, 26 Sep 2022 08:23:18 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-b66ac88f300c9d1a2b78558ef769ef85-0a0f68f6d760b9f7-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-d69cbf5802346ca1c7a7cde19f7c23bd-c02e2dda988c0803-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "025adda2-b266-4c6f-8746-12abb2666832", - "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-correlation-request-id": "1f4fea9f-8e5b-4e27-8e5f-83b98f87b7d2", + "x-ms-ratelimit-remaining-subscription-reads": "11996", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180300Z:025adda2-b266-4c6f-8746-12abb2666832", - "x-request-time": "0.098" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T082319Z:1f4fea9f-8e5b-4e27-8e5f-83b98f87b7d2", + "x-request-time": "0.105" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -47,17 +47,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -71,7 +71,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -79,21 +79,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:03:00 GMT", + "Date": "Mon, 26 Sep 2022 08:23:19 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-c312fee635eb0466cfcd2d43059407e7-329df2694f72aedf-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-70937abf8b968d2b67db3703aef81b39-b7683d51c31dc9b5-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f4fe076d-f827-4066-b10b-f206d2e6dfea", - "x-ms-ratelimit-remaining-subscription-writes": "1167", + "x-ms-correlation-request-id": "3a86a6e2-6003-4128-8d12-14fd1bf01df2", + "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180300Z:f4fe076d-f827-4066-b10b-f206d2e6dfea", - "x-request-time": "0.096" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T082320Z:3a86a6e2-6003-4128-8d12-14fd1bf01df2", + "x-request-time": "0.528" }, "ResponseBody": { "secretsType": "AccountKey", @@ -101,26 +101,26 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/helloworld_components_with_env/conda.yml", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/helloworld_components_with_env/.gitattributes", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 18:02:59 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Mon, 26 Sep 2022 08:23:20 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Accept-Ranges": "bytes", - "Content-Length": "180", - "Content-MD5": "EVxBbtisKKLnhC4INZp7ow==", + "Content-Length": "19", + "Content-MD5": "GTc0QMDRF8A1AiQ\u002BQg5suw==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 18:03:00 GMT", - "ETag": "\u00220x8DA9788903AB6BD\u0022", - "Last-Modified": "Fri, 16 Sep 2022 02:10:01 GMT", + "Date": "Mon, 26 Sep 2022 08:23:20 GMT", + "ETag": "\u00220x8DA9F97C427DEA2\u0022", + "Last-Modified": "Mon, 26 Sep 2022 08:19:00 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -129,32 +129,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Fri, 16 Sep 2022 02:10:01 GMT", + "x-ms-creation-time": "Mon, 26 Sep 2022 08:18:59 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "6213c46c-ceb3-49d8-b8c6-90b2857a04be", + "x-ms-meta-name": "d2e19b1a-b732-4ee9-89a0-e05fd9f670a6", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/helloworld_components_with_env/conda.yml", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/helloworld_components_with_env/.gitattributes", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 18:03:00 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Mon, 26 Sep 2022 08:23:21 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 18:03:00 GMT", + "Date": "Mon, 26 Sep 2022 08:23:20 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -162,12 +162,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/6213c46c-ceb3-49d8-b8c6-90b2857a04be/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/d2e19b1a-b732-4ee9-89a0-e05fd9f670a6/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -175,7 +175,7 @@ "Connection": "keep-alive", "Content-Length": "319", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -185,7 +185,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/helloworld_components_with_env" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/helloworld_components_with_env" } }, "StatusCode": 200, @@ -193,27 +193,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:03:01 GMT", + "Date": "Mon, 26 Sep 2022 08:23:22 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-5ab967ac0d7e22d1388f0991ae51a5a4-3f5c21dfc0289c15-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-faf56197a55037784da39fe0b60349e7-a92997dc2a4aecc0-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e84bf623-fe53-4d3d-8f9a-d79aa97ea10c", - "x-ms-ratelimit-remaining-subscription-writes": "1125", + "x-ms-correlation-request-id": "944e0094-1472-49fd-9e47-4ef36e073cc4", + "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180301Z:e84bf623-fe53-4d3d-8f9a-d79aa97ea10c", - "x-request-time": "0.068" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T082323Z:944e0094-1472-49fd-9e47-4ef36e073cc4", + "x-request-time": "0.328" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/6213c46c-ceb3-49d8-b8c6-90b2857a04be/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/d2e19b1a-b732-4ee9-89a0-e05fd9f670a6/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -225,20 +225,20 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/helloworld_components_with_env" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/helloworld_components_with_env" }, "systemData": { - "createdAt": "2022-09-16T02:10:01.987909\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-26T08:19:03.4445575\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T18:03:01.9309585\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-26T08:23:23.3893268\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_371765566778/versions/3?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_765744749077/versions/3?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -246,7 +246,7 @@ "Connection": "keep-alive", "Content-Length": "978", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -260,9 +260,9 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/6213c46c-ceb3-49d8-b8c6-90b2857a04be/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/d2e19b1a-b732-4ee9-89a0-e05fd9f670a6/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", - "name": "test_371765566778", + "name": "test_765744749077", "description": "This is the basic command component", "tags": { "tag": "tagvalue", @@ -285,25 +285,25 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1791", + "Content-Length": "1789", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:03:02 GMT", + "Date": "Mon, 26 Sep 2022 08:23:27 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_371765566778/versions/3?api-version=2022-05-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_765744749077/versions/3?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-23d81d53b8f95c6574f06ec1ac056138-1ef070072ae9fffe-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-e2dce1e116dab420c3bfb97b4ba3193c-da2d207df90de28e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "515116b0-0748-47c7-abd3-f20d69101d6b", - "x-ms-ratelimit-remaining-subscription-writes": "1124", + "x-ms-correlation-request-id": "8f167991-43e2-43c3-b99e-f46d64dbc83a", + "x-ms-ratelimit-remaining-subscription-writes": "1198", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180303Z:515116b0-0748-47c7-abd3-f20d69101d6b", - "x-request-time": "0.841" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T082327Z:8f167991-43e2-43c3-b99e-f46d64dbc83a", + "x-request-time": "2.851" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_371765566778/versions/3", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_765744749077/versions/3", "name": "3", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { @@ -316,7 +316,7 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_371765566778", + "name": "test_765744749077", "version": "3", "display_name": "CommandComponentBasic", "is_deterministic": "True", @@ -331,7 +331,7 @@ "type": "path" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/6213c46c-ceb3-49d8-b8c6-90b2857a04be/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/d2e19b1a-b732-4ee9-89a0-e05fd9f670a6/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -341,17 +341,17 @@ } }, "systemData": { - "createdAt": "2022-09-16T18:03:02.5525019\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-26T08:23:25.7325987\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T18:03:02.8099053\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-26T08:23:26.5794266\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } } ], "Variables": { - "component_name": "test_371765566778" + "component_name": "test_765744749077" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_helloworld_nested_pipeline_component.json b/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_helloworld_nested_pipeline_component.json index e8658499bace..83e7ae64e25e 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_helloworld_nested_pipeline_component.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_helloworld_nested_pipeline_component.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:03:11 GMT", + "Date": "Fri, 23 Sep 2022 16:14:46 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-ebfbb8c7777d8f459efc51f8662da84b-65bea0c9f5072044-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-69fd8c7d47d738e23f512f95bb1b1f18-6eb5c713fd1d0628-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "71196532-e868-4d26-8a85-042ee69ee7fc", - "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-correlation-request-id": "b6a11cf2-2a03-47a2-9884-220c2aa4d8ca", + "x-ms-ratelimit-remaining-subscription-reads": "11846", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180311Z:71196532-e868-4d26-8a85-042ee69ee7fc", - "x-request-time": "0.261" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161447Z:b6a11cf2-2a03-47a2-9884-220c2aa4d8ca", + "x-request-time": "0.158" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -47,17 +47,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -71,7 +71,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -79,21 +79,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:03:13 GMT", + "Date": "Fri, 23 Sep 2022 16:14:46 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-f3e8e7861defd4931360f2961c22d476-0e2caf5a479408a8-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-c0e049fdcb5aa11ce7b7e26635a761f7-c6d0ca61aed7be65-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0ad4a07a-2907-4393-adfe-6a0b457da4d2", - "x-ms-ratelimit-remaining-subscription-writes": "1164", + "x-ms-correlation-request-id": "d0592550-9786-4b04-b9d5-1b186680bfd7", + "x-ms-ratelimit-remaining-subscription-writes": "1108", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180313Z:0ad4a07a-2907-4393-adfe-6a0b457da4d2", - "x-request-time": "0.167" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161447Z:d0592550-9786-4b04-b9d5-1b186680bfd7", + "x-request-time": "0.091" }, "ResponseBody": { "secretsType": "AccountKey", @@ -101,15 +101,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 18:03:12 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:14:49 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -118,9 +118,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 18:03:12 GMT", - "ETag": "\u00220x8DA96C8560C1979\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:14:00 GMT", + "Date": "Fri, 23 Sep 2022 16:14:47 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -129,32 +129,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:14:00 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ac7e0240-c159-4c9c-828e-d3e8df43e80f", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 18:03:12 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:14:50 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 18:03:12 GMT", + "Date": "Fri, 23 Sep 2022 16:14:47 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -162,12 +162,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -175,7 +175,7 @@ "Connection": "keep-alive", "Content-Length": "288", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -185,7 +185,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -193,27 +193,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:03:13 GMT", + "Date": "Fri, 23 Sep 2022 16:14:48 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-a7e87b18e5864414d2b3bcbdafa64af8-2cfde6eb67612644-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-2c5b7723dca387794cee65a15f2ba7c3-1a523e04ce6244a7-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f6ea6189-a91a-4419-9e12-bdaed52b15c8", - "x-ms-ratelimit-remaining-subscription-writes": "1118", + "x-ms-correlation-request-id": "9a58585d-1b66-4bac-8477-5a2aaeab9043", + "x-ms-ratelimit-remaining-subscription-writes": "1050", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180313Z:f6ea6189-a91a-4419-9e12-bdaed52b15c8", - "x-request-time": "0.056" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161449Z:9a58585d-1b66-4bac-8477-5a2aaeab9043", + "x-request-time": "0.106" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -225,14 +225,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-15T03:14:01.4315202\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-16T18:03:13.4480301\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T16:14:49.0807598\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -246,7 +246,7 @@ "Connection": "keep-alive", "Content-Length": "1448", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -260,7 +260,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo $[[${{inputs.component_in_number}}]] \u0026 echo ${{inputs.component_in_path}} \u0026 echo ${{outputs.component_out_path}} \u003E ${{outputs.component_out_path}}/component_in_number", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "description": "This is the basic command component", @@ -297,26 +297,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2418", + "Content-Length": "2413", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:03:13 GMT", + "Date": "Fri, 23 Sep 2022 16:14:49 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-1e8c183f19607648bb3739dbead83096-d4c694854b606718-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-14edf0daeb29ad08d295c970168b0428-73cd2d7bccc5c9a7-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "320b4800-a25c-4bbd-851d-564ab67044b5", - "x-ms-ratelimit-remaining-subscription-writes": "1117", + "x-ms-correlation-request-id": "c86714e0-5e4c-4780-bddf-f840714729eb", + "x-ms-ratelimit-remaining-subscription-writes": "1049", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180313Z:320b4800-a25c-4bbd-851d-564ab67044b5", - "x-request-time": "0.310" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161450Z:c86714e0-5e4c-4780-bddf-f840714729eb", + "x-request-time": "0.373" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/97773628-7861-48c4-ad89-574b3ab855d9", - "name": "97773628-7861-48c4-ad89-574b3ab855d9", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/4f589440-3f2e-4f17-a8f1-f0f3a615594b", + "name": "4f589440-3f2e-4f17-a8f1-f0f3a615594b", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -329,7 +329,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "97773628-7861-48c4-ad89-574b3ab855d9", + "version": "4f589440-3f2e-4f17-a8f1-f0f3a615594b", "display_name": "CommandComponentBasic", "is_deterministic": "True", "type": "command", @@ -356,7 +356,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -366,11 +366,11 @@ } }, "systemData": { - "createdAt": "2022-09-16T02:13:39.2731727\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:40.98508\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T02:13:39.4533584\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:20:41.170452\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -382,9 +382,9 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1617", + "Content-Length": "1635", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -452,8 +452,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/97773628-7861-48c4-ad89-574b3ab855d9" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/4f589440-3f2e-4f17-a8f1-f0f3a615594b" } }, "_source": "YAML.COMPONENT", @@ -464,26 +465,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1713", + "Content-Length": "1711", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:03:15 GMT", + "Date": "Fri, 23 Sep 2022 16:14:51 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-385b64547b966a0dd01f5931faae03d2-ce8ecd49a69928e6-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-5b03f37c4a48278d76e4285ea94b714f-a4e3ab36dfb7a451-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2df46eef-6841-486d-a79d-b908344d4988", - "x-ms-ratelimit-remaining-subscription-writes": "1116", + "x-ms-correlation-request-id": "037c9927-bc2f-4bed-8fba-abb177fda8e3", + "x-ms-ratelimit-remaining-subscription-writes": "1048", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180315Z:2df46eef-6841-486d-a79d-b908344d4988", - "x-request-time": "0.993" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161451Z:037c9927-bc2f-4bed-8fba-abb177fda8e3", + "x-request-time": "0.733" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/95765cb4-2b7c-4871-947d-81fc1622475a", - "name": "95765cb4-2b7c-4871-947d-81fc1622475a", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/0b2dcd67-be29-43f2-b211-da1052f5d8f4", + "name": "0b2dcd67-be29-43f2-b211-da1052f5d8f4", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -496,7 +497,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "95765cb4-2b7c-4871-947d-81fc1622475a", + "version": "0b2dcd67-be29-43f2-b211-da1052f5d8f4", "display_name": "Hello World Pipeline Component", "is_deterministic": "True", "type": "pipeline", @@ -527,25 +528,25 @@ } }, "systemData": { - "createdAt": "2022-09-16T18:03:14.9135045\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:14:51.5672033\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T18:03:14.9135045\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:14:51.5672033\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_437777927757/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_636919347013/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1438", + "Content-Length": "1456", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -558,7 +559,7 @@ "isAnonymous": false, "isArchived": false, "componentSpec": { - "name": "test_437777927757", + "name": "test_636919347013", "description": "This is the basic pipeline component", "tags": { "tag": "tagvalue", @@ -603,8 +604,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/95765cb4-2b7c-4871-947d-81fc1622475a" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/0b2dcd67-be29-43f2-b211-da1052f5d8f4" } }, "_source": "YAML.COMPONENT", @@ -615,25 +617,25 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1725", + "Content-Length": "1724", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:03:16 GMT", + "Date": "Fri, 23 Sep 2022 16:14:52 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_437777927757/versions/1?api-version=2022-05-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_636919347013/versions/1?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-ce1afc8600cbf30bfab04c9ac4d07560-c29ac2979ac6996c-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-7403b574ac6f7a78f72c613ab3537376-1fdcd50668d5bec7-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ec3e2b38-f0bd-439a-9713-1a3e7910ee0b", - "x-ms-ratelimit-remaining-subscription-writes": "1115", + "x-ms-correlation-request-id": "9b2439cf-7aeb-459e-80c6-c1d59341e8d1", + "x-ms-ratelimit-remaining-subscription-writes": "1047", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180316Z:ec3e2b38-f0bd-439a-9713-1a3e7910ee0b", - "x-request-time": "1.155" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161453Z:9b2439cf-7aeb-459e-80c6-c1d59341e8d1", + "x-request-time": "0.890" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_437777927757/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_636919347013/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { @@ -646,7 +648,7 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_437777927757", + "name": "test_636919347013", "version": "1", "display_name": "Hello World Pipeline Component", "is_deterministic": "True", @@ -681,17 +683,17 @@ } }, "systemData": { - "createdAt": "2022-09-16T18:03:16.16814\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:14:52.886426\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T18:03:16.3801415\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:14:53.0871476\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } } ], "Variables": { - "component_name": "test_437777927757" + "component_name": "test_636919347013" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_mpi_component.json b/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_mpi_component.json index f2609bd24869..ce7895075dca 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_mpi_component.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_mpi_component.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:58:06 GMT", + "Date": "Fri, 23 Sep 2022 16:10:19 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-c22a2ebae9060562f1d7b718eda00c52-373f8126a5926b12-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-fe28dca3ff27bf3bcacd5a0cdc814ea7-fe7d95f55c2f7b05-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "47cfaf1f-060a-4ef7-bf5f-6e9ddd169448", - "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-correlation-request-id": "0c1edf89-9320-4a97-9a69-042dfcd8a51f", + "x-ms-ratelimit-remaining-subscription-reads": "11885", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T145807Z:47cfaf1f-060a-4ef7-bf5f-6e9ddd169448", - "x-request-time": "0.088" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161019Z:0c1edf89-9320-4a97-9a69-042dfcd8a51f", + "x-request-time": "0.079" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -47,17 +47,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sawcdivl5vo3cem", - "containerName": "azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-19T00:10:19.4497254\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-19T00:10:20.0957203\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -71,7 +71,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -79,21 +79,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:58:07 GMT", + "Date": "Fri, 23 Sep 2022 16:10:20 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-bb9ec543b010d8b27bc8f6de466b883a-d7e43215028b546a-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-1be561057aa40318392eb9c58a866d75-73e416b26ef3e9ff-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d2f37875-d122-443e-b91e-8c3aedddcb19", - "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-correlation-request-id": "7e370711-3014-4f62-b86d-da3e121dc8ce", + "x-ms-ratelimit-remaining-subscription-writes": "1128", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T145807Z:d2f37875-d122-443e-b91e-8c3aedddcb19", - "x-request-time": "0.141" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161020Z:7e370711-3014-4f62-b86d-da3e121dc8ce", + "x-request-time": "0.085" }, "ResponseBody": { "secretsType": "AccountKey", @@ -101,15 +101,15 @@ } }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Mon, 19 Sep 2022 14:58:07 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:10:22 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -118,9 +118,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Mon, 19 Sep 2022 14:58:07 GMT", - "ETag": "\u00220x8DA99D37A4F8142\u0022", - "Last-Modified": "Mon, 19 Sep 2022 00:11:19 GMT", + "Date": "Fri, 23 Sep 2022 16:10:20 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -129,32 +129,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Mon, 19 Sep 2022 00:11:19 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "3d85346b-0def-4d25-b9b1-cc4bdc4a3056", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Mon, 19 Sep 2022 14:58:07 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:10:22 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Mon, 19 Sep 2022 14:58:07 GMT", + "Date": "Fri, 23 Sep 2022 16:10:21 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -162,12 +162,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3d85346b-0def-4d25-b9b1-cc4bdc4a3056/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -175,7 +175,7 @@ "Connection": "keep-alive", "Content-Length": "288", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -185,7 +185,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -193,27 +193,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:58:08 GMT", + "Date": "Fri, 23 Sep 2022 16:10:21 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-a1f007f02478edc5c9f52edb8e4cfccd-f0f4ae6843be3626-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-5f474b40f84e5b1bff1e834b33a5d1de-9c14fac4dd78732e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c8a1f88f-aa23-41cd-91d4-2ad4dcfe0cda", - "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-correlation-request-id": "43121a0c-b5c6-4083-8877-a99669600ac9", + "x-ms-ratelimit-remaining-subscription-writes": "1098", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T145809Z:c8a1f88f-aa23-41cd-91d4-2ad4dcfe0cda", - "x-request-time": "0.089" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161022Z:43121a0c-b5c6-4083-8877-a99669600ac9", + "x-request-time": "0.109" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3d85346b-0def-4d25-b9b1-cc4bdc4a3056/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -225,51 +225,51 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-19T00:11:20.0229231\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-19T14:58:09.0089037\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T16:10:21.9177218\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_46910633677?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_898205794417?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1076", + "Content-Length": "1069", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:58:09 GMT", + "Date": "Fri, 23 Sep 2022 16:10:22 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "29ff7acd-336d-4615-af56-0d00c69e4ce6", - "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-correlation-request-id": "cda6ffa0-583a-46c5-a4c6-2f91133d6fd0", + "x-ms-ratelimit-remaining-subscription-reads": "11884", "x-ms-response-type": "error", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T145809Z:29ff7acd-336d-4615-af56-0d00c69e4ce6", - "x-request-time": "0.203" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161022Z:cda6ffa0-583a-46c5-a4c6-2f91133d6fd0", + "x-request-time": "0.121" }, "ResponseBody": { "error": { "code": "UserError", - "message": "Not found component test_46910633677.", + "message": "Not found component test_898205794417.", "details": [], "additionalInfo": [ { @@ -282,27 +282,27 @@ "type": "Correlation", "info": { "value": { - "operation": "c9100c39ccb31f2c5ded4abc15e0738f", - "request": "63a19897c166cffb" + "operation": "4b36a9285806c69eff24f34a5b92fe4f", + "request": "668d55455faede56" } } }, { "type": "Environment", "info": { - "value": "eastus2euap" + "value": "eastus2" } }, { "type": "Location", "info": { - "value": "eastus2euap" + "value": "eastus2" } }, { "type": "Time", "info": { - "value": "2022-09-19T14:58:09.3604562\u002B00:00" + "value": "2022-09-23T16:10:22.6423161\u002B00:00" } }, { @@ -322,15 +322,15 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_46910633677/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_898205794417/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1437", + "Content-Length": "1438", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -344,7 +344,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo ${{inputs.component_in_number}} \u0026 echo ${{inputs.component_in_path}} \u0026 echo ${{outputs.component_out_path}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3d85346b-0def-4d25-b9b1-cc4bdc4a3056/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": 2 @@ -353,7 +353,7 @@ "type": "mpi", "process_count_per_instance": 1 }, - "name": "test_46910633677", + "name": "test_898205794417", "description": "This is the mpi command component", "tags": { "tag": "tagvalue", @@ -388,23 +388,23 @@ "Cache-Control": "no-cache", "Content-Length": "2348", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:58:10 GMT", + "Date": "Fri, 23 Sep 2022 16:10:23 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_46910633677/versions/1?api-version=2022-05-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_898205794417/versions/1?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-dc18361e2dd933469a355348d2e5cf50-9d0491f9a3ac3821-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-b2a1598e1415686e2fa0fff03f58e25e-acbe194428e47a32-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7aed8fee-fc12-4771-abb9-d37d3d925645", - "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-correlation-request-id": "99d3b3b5-04ec-483b-b02b-d60d30102868", + "x-ms-ratelimit-remaining-subscription-writes": "1097", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T145810Z:7aed8fee-fc12-4771-abb9-d37d3d925645", - "x-request-time": "0.968" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161024Z:99d3b3b5-04ec-483b-b02b-d60d30102868", + "x-request-time": "0.655" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_46910633677/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_898205794417/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { @@ -417,7 +417,7 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_46910633677", + "name": "test_898205794417", "version": "1", "display_name": "CommandComponentMpi", "is_deterministic": "True", @@ -445,7 +445,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3d85346b-0def-4d25-b9b1-cc4bdc4a3056/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "2" @@ -459,11 +459,11 @@ } }, "systemData": { - "createdAt": "2022-09-19T14:58:10.0585462\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:10:23.7244976\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-19T14:58:10.3097114\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:10:23.9137994\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -475,7 +475,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -483,24 +483,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:58:10 GMT", + "Date": "Fri, 23 Sep 2022 16:10:24 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-f910e437930a72dcf8244a6cb0b59d16-16ab3f0601e72525-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-9b18baf0d2ef3e4c0de2d1cfb23db1fe-6654a05314bf019f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c04575ef-96c9-4834-ab6d-936d734aac61", - "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-correlation-request-id": "7a7460ac-3e76-41d9-8cb5-9aa0cb45a1fb", + "x-ms-ratelimit-remaining-subscription-reads": "11883", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T145810Z:c04575ef-96c9-4834-ab6d-936d734aac61", - "x-request-time": "0.105" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161025Z:7a7460ac-3e76-41d9-8cb5-9aa0cb45a1fb", + "x-request-time": "0.100" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -515,17 +515,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sawcdivl5vo3cem", - "containerName": "azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-19T00:10:19.4497254\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-19T00:10:20.0957203\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -539,7 +539,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -547,21 +547,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:58:10 GMT", + "Date": "Fri, 23 Sep 2022 16:10:25 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-523f67bed913f9eefb62706c028d2cc6-49ffaeb000c9e263-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-6cfb47e4cf1ccf407ed69fa36ab18b95-0432961397a558a0-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5a9b7497-7bfd-45d1-8e66-6d9c4144cea9", - "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-correlation-request-id": "2279dcea-ed37-47b0-95a9-5242102fab60", + "x-ms-ratelimit-remaining-subscription-writes": "1127", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T145811Z:5a9b7497-7bfd-45d1-8e66-6d9c4144cea9", - "x-request-time": "0.094" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161025Z:2279dcea-ed37-47b0-95a9-5242102fab60", + "x-request-time": "0.086" }, "ResponseBody": { "secretsType": "AccountKey", @@ -569,15 +569,15 @@ } }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Mon, 19 Sep 2022 14:58:10 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:10:27 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -586,9 +586,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Mon, 19 Sep 2022 14:58:11 GMT", - "ETag": "\u00220x8DA99D37A4F8142\u0022", - "Last-Modified": "Mon, 19 Sep 2022 00:11:19 GMT", + "Date": "Fri, 23 Sep 2022 16:10:26 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -597,32 +597,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Mon, 19 Sep 2022 00:11:19 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "3d85346b-0def-4d25-b9b1-cc4bdc4a3056", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Mon, 19 Sep 2022 14:58:11 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:10:28 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Mon, 19 Sep 2022 14:58:11 GMT", + "Date": "Fri, 23 Sep 2022 16:10:26 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -630,12 +630,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3d85346b-0def-4d25-b9b1-cc4bdc4a3056/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -643,7 +643,7 @@ "Connection": "keep-alive", "Content-Length": "288", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -653,7 +653,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -661,27 +661,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:58:11 GMT", + "Date": "Fri, 23 Sep 2022 16:10:27 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-709cefc20962815e32bf0d7e4828cf5d-a6f9fcc2ed62fcee-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-51e625c85df3a72aa451e309a4d8b727-a39ce6e6abe480c7-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a405d5cc-99e6-4b23-be3d-e23420e307a7", - "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-correlation-request-id": "e1992554-7d3e-4f58-98a5-7fd940df87c4", + "x-ms-ratelimit-remaining-subscription-writes": "1096", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T145811Z:a405d5cc-99e6-4b23-be3d-e23420e307a7", - "x-request-time": "0.084" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161027Z:e1992554-7d3e-4f58-98a5-7fd940df87c4", + "x-request-time": "0.094" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3d85346b-0def-4d25-b9b1-cc4bdc4a3056/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -693,51 +693,51 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-19T00:11:20.0229231\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-19T14:58:11.5200873\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T16:10:27.3448887\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_193109492557?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_845752156100?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1077", + "Content-Length": "1069", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:58:11 GMT", + "Date": "Fri, 23 Sep 2022 16:10:27 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c6b34aef-3909-4251-83b0-54cd4022cf8b", - "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-correlation-request-id": "b3aea27d-c2ba-4bc0-91fa-526132f26e19", + "x-ms-ratelimit-remaining-subscription-reads": "11882", "x-ms-response-type": "error", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T145811Z:c6b34aef-3909-4251-83b0-54cd4022cf8b", - "x-request-time": "0.118" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161028Z:b3aea27d-c2ba-4bc0-91fa-526132f26e19", + "x-request-time": "0.121" }, "ResponseBody": { "error": { "code": "UserError", - "message": "Not found component test_193109492557.", + "message": "Not found component test_845752156100.", "details": [], "additionalInfo": [ { @@ -750,27 +750,27 @@ "type": "Correlation", "info": { "value": { - "operation": "8ed90e93d34f251f5d4f73f2a0e5b767", - "request": "117bf67db8227664" + "operation": "f52cda5ad799c62598b830dc877b1ce7", + "request": "b8ebe8b16145d76b" } } }, { "type": "Environment", "info": { - "value": "eastus2euap" + "value": "eastus2" } }, { "type": "Location", "info": { - "value": "eastus2euap" + "value": "eastus2" } }, { "type": "Time", "info": { - "value": "2022-09-19T14:58:11.7919432\u002B00:00" + "value": "2022-09-23T16:10:28.0282166\u002B00:00" } }, { @@ -790,7 +790,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_193109492557/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_845752156100/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -798,7 +798,7 @@ "Connection": "keep-alive", "Content-Length": "1337", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -812,7 +812,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo ${{inputs.component_in_number}} \u0026 echo ${{inputs.component_in_path}} \u0026 echo ${{outputs.component_out_path}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3d85346b-0def-4d25-b9b1-cc4bdc4a3056/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": 2 @@ -821,7 +821,7 @@ "type": "mpi", "process_count_per_instance": 1 }, - "name": "test_193109492557", + "name": "test_845752156100", "description": "This is the mpi command component", "tags": { "tag": "tagvalue", @@ -853,25 +853,25 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2340", + "Content-Length": "2337", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:58:13 GMT", + "Date": "Fri, 23 Sep 2022 16:10:29 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_193109492557/versions/1?api-version=2022-05-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_845752156100/versions/1?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-a134ce5ea7c9cdab9eb029ef3536f945-389df8c179ea5d3a-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-95a111aece63d8f25d78c3042d85cc5c-3ede00d9fce38768-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ac1f1ec2-96ab-4299-9d95-7ffa3a8b2319", - "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-correlation-request-id": "9b4c0a2b-5fc0-4f25-98b8-5bb2edab4def", + "x-ms-ratelimit-remaining-subscription-writes": "1095", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T145813Z:ac1f1ec2-96ab-4299-9d95-7ffa3a8b2319", - "x-request-time": "0.953" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161029Z:9b4c0a2b-5fc0-4f25-98b8-5bb2edab4def", + "x-request-time": "0.816" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_193109492557/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_845752156100/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { @@ -884,7 +884,7 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_193109492557", + "name": "test_845752156100", "version": "1", "display_name": "CommandComponentMpi", "is_deterministic": "True", @@ -912,7 +912,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3d85346b-0def-4d25-b9b1-cc4bdc4a3056/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "2" @@ -926,18 +926,18 @@ } }, "systemData": { - "createdAt": "2022-09-19T14:58:12.8861493\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:10:28.907355\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-19T14:58:13.1248105\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:10:29.1199121\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } } ], "Variables": { - "component_name": "test_46910633677", - "new_name": "test_193109492557" + "component_name": "test_898205794417", + "new_name": "test_845752156100" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_parallel_component.json b/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_parallel_component.json index 309a935cc752..02eb1b3c9428 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_parallel_component.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_parallel_component.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:54:20 GMT", + "Date": "Fri, 23 Sep 2022 16:08:02 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-9644431ac34e9d8af252844eb995cab3-591e3beeb84eea82-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-c6c6f3cc8981f8b3e86f971030a7309b-8bc4ceae234bd770-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9ee1f1ec-d4d0-4e2f-a65d-f7c970034bb1", - "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-correlation-request-id": "67f21eea-3744-4a5b-a19b-16243025f14a", + "x-ms-ratelimit-remaining-subscription-reads": "11902", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T145420Z:9ee1f1ec-d4d0-4e2f-a65d-f7c970034bb1", - "x-request-time": "0.084" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T160802Z:67f21eea-3744-4a5b-a19b-16243025f14a", + "x-request-time": "0.101" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -47,17 +47,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sawcdivl5vo3cem", - "containerName": "azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-19T00:10:19.4497254\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-19T00:10:20.0957203\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -71,7 +71,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -79,21 +79,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:54:20 GMT", + "Date": "Fri, 23 Sep 2022 16:08:02 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-bc9c67c15812203d86b957563e6f8000-b535c1fe610fa2ee-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-cc544f02c5d911eea81ccb0177fcdbc6-67d77c4f76ab2c7e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ae1e68a1-e83d-4680-b362-0347a108f399", - "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-correlation-request-id": "c206f222-438b-428d-90ec-6984a5018e77", + "x-ms-ratelimit-remaining-subscription-writes": "1143", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T145421Z:ae1e68a1-e83d-4680-b362-0347a108f399", - "x-request-time": "0.100" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T160803Z:c206f222-438b-428d-90ec-6984a5018e77", + "x-request-time": "0.084" }, "ResponseBody": { "secretsType": "AccountKey", @@ -101,15 +101,15 @@ } }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000/python/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Mon, 19 Sep 2022 14:54:21 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:08:05 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -118,9 +118,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Mon, 19 Sep 2022 14:54:21 GMT", - "ETag": "\u00220x8DA9A4ECD2041B0\u0022", - "Last-Modified": "Mon, 19 Sep 2022 14:54:06 GMT", + "Date": "Fri, 23 Sep 2022 16:08:03 GMT", + "ETag": "\u00220x8DA9D76EE2580A0\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:18:55 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -129,32 +129,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Mon, 19 Sep 2022 14:54:06 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:18:53 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "38553b6d-8c3a-4241-9e7d-ce3e7ac44d11", + "x-ms-meta-name": "7e0b7b4c-1de6-4a8e-a698-623e36fe7206", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/az-ml-artifacts/00000000000000000000000000000000/python/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/python/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Mon, 19 Sep 2022 14:54:21 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:08:05 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Mon, 19 Sep 2022 14:54:21 GMT", + "Date": "Fri, 23 Sep 2022 16:08:03 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -162,12 +162,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/38553b6d-8c3a-4241-9e7d-ce3e7ac44d11/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/7e0b7b4c-1de6-4a8e-a698-623e36fe7206/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -175,7 +175,7 @@ "Connection": "keep-alive", "Content-Length": "295", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -185,7 +185,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000/python" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python" } }, "StatusCode": 200, @@ -193,27 +193,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:54:23 GMT", + "Date": "Fri, 23 Sep 2022 16:08:04 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-add1c8d9ba38a47c6f4fb17346d9fdac-72977b2ab91a6d32-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-637505c8c4f57c2f752687c13f893186-46ba08460f56c567-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dbc29476-6e81-4f10-ae35-fe663d45a413", - "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-correlation-request-id": "06e8d591-5145-4580-a2ac-56c209bc9c36", + "x-ms-ratelimit-remaining-subscription-writes": "1131", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T145424Z:dbc29476-6e81-4f10-ae35-fe663d45a413", - "x-request-time": "0.075" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T160805Z:06e8d591-5145-4580-a2ac-56c209bc9c36", + "x-request-time": "0.083" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/38553b6d-8c3a-4241-9e7d-ce3e7ac44d11/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/7e0b7b4c-1de6-4a8e-a698-623e36fe7206/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -225,20 +225,20 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000/python" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python" }, "systemData": { - "createdAt": "2022-09-19T14:54:07.8154588\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:18:57.5027157\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-19T14:54:24.7901128\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:08:04.9067133\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_133241450982/versions/1.0.0?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_876983474877/versions/1.0.0?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -246,7 +246,7 @@ "Connection": "keep-alive", "Content-Length": "1757", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -256,7 +256,7 @@ "isAnonymous": false, "isArchived": false, "componentSpec": { - "name": "test_133241450982", + "name": "test_876983474877", "description": "parallel component for batch score", "tags": {}, "version": "1.0.0", @@ -292,7 +292,7 @@ "logging_level": "INFO", "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/38553b6d-8c3a-4241-9e7d-ce3e7ac44d11/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/7e0b7b4c-1de6-4a8e-a698-623e36fe7206/versions/1", "entry_script": "pass_through.py", "program_arguments": "--label ${{inputs.label}} --model ${{inputs.score_model}} --output_scored_result ${{outputs.scored_result}}", "append_row_to": "${{outputs.scoring_summary}}", @@ -314,25 +314,25 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2715", + "Content-Length": "2713", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:54:25 GMT", + "Date": "Fri, 23 Sep 2022 16:08:06 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_133241450982/versions/1.0.0?api-version=2022-05-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_876983474877/versions/1.0.0?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-4df1b3c39446f64ef012e29118c03df0-b493af183ba35072-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-d8603741786d60a103c65569f0159fed-f9db69ad5c677954-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ff8bbd93-df71-4a2f-aaec-a6c11b302e27", - "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-correlation-request-id": "e8cdf870-7cc4-41ff-a238-b9bbe1b15784", + "x-ms-ratelimit-remaining-subscription-writes": "1130", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T145426Z:ff8bbd93-df71-4a2f-aaec-a6c11b302e27", - "x-request-time": "0.948" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T160806Z:e8cdf870-7cc4-41ff-a238-b9bbe1b15784", + "x-request-time": "0.786" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_133241450982/versions/1.0.0", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_876983474877/versions/1.0.0", "name": "1.0.0", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { @@ -342,7 +342,7 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_133241450982", + "name": "test_876983474877", "version": "1.0.0", "display_name": "BatchScore", "is_deterministic": "True", @@ -374,7 +374,7 @@ } }, "task": { - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/38553b6d-8c3a-4241-9e7d-ce3e7ac44d11/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/7e0b7b4c-1de6-4a8e-a698-623e36fe7206/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-Minimal/versions/2", "program_arguments": "--label ${{inputs.label}} --model ${{inputs.score_model}} --output_scored_result ${{outputs.scored_result}}", "entry_script": "pass_through.py", @@ -395,23 +395,23 @@ } }, "systemData": { - "createdAt": "2022-09-19T14:54:25.5595318\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:08:06.3976474\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-19T14:54:25.8059088\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:08:06.5985566\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_133241450982/versions/1.0.0?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_876983474877/versions/1.0.0?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -419,27 +419,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:54:25 GMT", + "Date": "Fri, 23 Sep 2022 16:08:06 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-f2e71dfcc65804f8e11072b64cdec3f7-014306b77044a2b6-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-21930e64ebd5c0de11ecae4a6b9b4083-d352ef4e30af280d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2b7d1023-ece2-4de6-b179-6b896db9e130", - "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-correlation-request-id": "256bada7-7762-4542-a646-206a34a180a3", + "x-ms-ratelimit-remaining-subscription-reads": "11901", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T145426Z:2b7d1023-ece2-4de6-b179-6b896db9e130", - "x-request-time": "0.167" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T160807Z:256bada7-7762-4542-a646-206a34a180a3", + "x-request-time": "0.117" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_133241450982/versions/1.0.0", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_876983474877/versions/1.0.0", "name": "1.0.0", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { @@ -449,7 +449,7 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_133241450982", + "name": "test_876983474877", "version": "1.0.0", "display_name": "BatchScore", "is_deterministic": "True", @@ -481,7 +481,7 @@ } }, "task": { - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/38553b6d-8c3a-4241-9e7d-ce3e7ac44d11/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/7e0b7b4c-1de6-4a8e-a698-623e36fe7206/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-Minimal/versions/2", "program_arguments": "--label ${{inputs.label}} --model ${{inputs.score_model}} --output_scored_result ${{outputs.scored_result}}", "entry_script": "pass_through.py", @@ -502,11 +502,11 @@ } }, "systemData": { - "createdAt": "2022-09-19T14:54:25.5595318\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:08:06.3976474\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-19T14:54:25.8059088\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:08:06.5985566\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -518,7 +518,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -526,24 +526,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:54:25 GMT", + "Date": "Fri, 23 Sep 2022 16:08:07 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-68b2479d0ddb075ac385b018dbbefc76-6d0d6358a66ad9ea-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-58dda0d1c5e43e0e35d37163cd42842b-ffc097b2706dca36-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e6778cce-10d4-4641-9a4d-e036b1ca35df", - "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-correlation-request-id": "db7f8368-14af-4871-b9a0-f60f53a2dd2c", + "x-ms-ratelimit-remaining-subscription-reads": "11900", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T145426Z:e6778cce-10d4-4641-9a4d-e036b1ca35df", - "x-request-time": "0.082" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T160808Z:db7f8368-14af-4871-b9a0-f60f53a2dd2c", + "x-request-time": "0.084" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -558,17 +558,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sawcdivl5vo3cem", - "containerName": "azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-19T00:10:19.4497254\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-19T00:10:20.0957203\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -582,7 +582,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -590,21 +590,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:54:25 GMT", + "Date": "Fri, 23 Sep 2022 16:08:08 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-d310fce617beded4be577fcc06c797ab-c38331628767bc83-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-41f5e710af829b90097920ac17161b0e-594e2b82a78ff77c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fd75a94a-bf93-45e5-8bcb-8b448994a371", - "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-correlation-request-id": "1f59b095-61bd-444c-9de4-eca9e05b0438", + "x-ms-ratelimit-remaining-subscription-writes": "1142", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T145426Z:fd75a94a-bf93-45e5-8bcb-8b448994a371", - "x-request-time": "0.102" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T160809Z:1f59b095-61bd-444c-9de4-eca9e05b0438", + "x-request-time": "0.108" }, "ResponseBody": { "secretsType": "AccountKey", @@ -612,15 +612,15 @@ } }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000/python/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Mon, 19 Sep 2022 14:54:26 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:08:11 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -629,9 +629,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Mon, 19 Sep 2022 14:54:26 GMT", - "ETag": "\u00220x8DA9A4ECD2041B0\u0022", - "Last-Modified": "Mon, 19 Sep 2022 14:54:06 GMT", + "Date": "Fri, 23 Sep 2022 16:08:08 GMT", + "ETag": "\u00220x8DA9D76EE2580A0\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:18:55 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -640,32 +640,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Mon, 19 Sep 2022 14:54:06 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:18:53 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "38553b6d-8c3a-4241-9e7d-ce3e7ac44d11", + "x-ms-meta-name": "7e0b7b4c-1de6-4a8e-a698-623e36fe7206", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/az-ml-artifacts/00000000000000000000000000000000/python/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/python/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Mon, 19 Sep 2022 14:54:26 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:08:11 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Mon, 19 Sep 2022 14:54:26 GMT", + "Date": "Fri, 23 Sep 2022 16:08:09 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -673,12 +673,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/38553b6d-8c3a-4241-9e7d-ce3e7ac44d11/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/7e0b7b4c-1de6-4a8e-a698-623e36fe7206/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -686,7 +686,7 @@ "Connection": "keep-alive", "Content-Length": "295", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -696,7 +696,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000/python" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python" } }, "StatusCode": 200, @@ -704,27 +704,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:54:27 GMT", + "Date": "Fri, 23 Sep 2022 16:08:09 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-7642520351bcefd3bf80b0fd2fb76f43-6eece124549c5cf7-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-504baaa196b10e52562e8a9f6d3e1f47-a013314980393e98-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9d861a02-2444-41fe-b6d2-1dfec5669db5", - "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-correlation-request-id": "ec8b2868-b0df-4e69-a446-d9ee2665bcaa", + "x-ms-ratelimit-remaining-subscription-writes": "1129", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T145427Z:9d861a02-2444-41fe-b6d2-1dfec5669db5", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T160810Z:ec8b2868-b0df-4e69-a446-d9ee2665bcaa", "x-request-time": "0.087" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/38553b6d-8c3a-4241-9e7d-ce3e7ac44d11/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/7e0b7b4c-1de6-4a8e-a698-623e36fe7206/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -736,20 +736,20 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000/python" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python" }, "systemData": { - "createdAt": "2022-09-19T14:54:07.8154588\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:18:57.5027157\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-19T14:54:27.1121658\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:08:10.5737586\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_133241450982/versions/2?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_876983474877/versions/2?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -757,7 +757,7 @@ "Connection": "keep-alive", "Content-Length": "1753", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -767,7 +767,7 @@ "isAnonymous": false, "isArchived": false, "componentSpec": { - "name": "test_133241450982", + "name": "test_876983474877", "description": "parallel component for batch score", "tags": {}, "version": "2", @@ -803,7 +803,7 @@ "logging_level": "INFO", "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/38553b6d-8c3a-4241-9e7d-ce3e7ac44d11/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/7e0b7b4c-1de6-4a8e-a698-623e36fe7206/versions/1", "entry_script": "pass_through.py", "program_arguments": "--label ${{inputs.label}} --model ${{inputs.score_model}} --output_scored_result ${{outputs.scored_result}}", "append_row_to": "${{outputs.scoring_summary}}", @@ -825,25 +825,25 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2703", + "Content-Length": "2701", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 14:54:28 GMT", + "Date": "Fri, 23 Sep 2022 16:08:11 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_133241450982/versions/2?api-version=2022-05-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_876983474877/versions/2?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-d5ea8c93e119206888aa0109f96b8442-ac940ef3a801893e-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-2dc197fc97e0ad5a55b801eb5a2a025a-dc43c93ed0d8a187-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c0a258cb-48a0-49b8-97cb-f924d2fc5d0d", - "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-correlation-request-id": "672f5e0b-57f6-478b-b4ab-c7fbf3d0cab8", + "x-ms-ratelimit-remaining-subscription-writes": "1128", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T145428Z:c0a258cb-48a0-49b8-97cb-f924d2fc5d0d", - "x-request-time": "1.005" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T160811Z:672f5e0b-57f6-478b-b4ab-c7fbf3d0cab8", + "x-request-time": "0.641" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_133241450982/versions/2", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_876983474877/versions/2", "name": "2", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { @@ -853,7 +853,7 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_133241450982", + "name": "test_876983474877", "version": "2", "display_name": "BatchScore", "is_deterministic": "True", @@ -885,7 +885,7 @@ } }, "task": { - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/38553b6d-8c3a-4241-9e7d-ce3e7ac44d11/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/7e0b7b4c-1de6-4a8e-a698-623e36fe7206/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-Minimal/versions/2", "program_arguments": "--label ${{inputs.label}} --model ${{inputs.score_model}} --output_scored_result ${{outputs.scored_result}}", "entry_script": "pass_through.py", @@ -906,17 +906,17 @@ } }, "systemData": { - "createdAt": "2022-09-19T14:54:27.8471408\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:08:11.4388832\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-19T14:54:28.1343528\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:08:11.6226493\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } } ], "Variables": { - "component_name": "test_133241450982" + "component_name": "test_876983474877" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_pytorch_component.json b/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_pytorch_component.json index 2564c2777ba1..2d68e33278f5 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_pytorch_component.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_pytorch_component.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:00:18 GMT", + "Date": "Fri, 23 Sep 2022 16:10:32 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-4e5256f0299ce8f476b6a246bfbbc1b8-9e977a68a16590a1-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-2b09f603e7acfabebe49f75eed46fb93-3f0256579b22b9ad-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3b204a6b-e061-4d02-93f8-ad3de1580ec6", - "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-correlation-request-id": "2276517d-4a01-4df1-bcd2-c9014e964873", + "x-ms-ratelimit-remaining-subscription-reads": "11881", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T150018Z:3b204a6b-e061-4d02-93f8-ad3de1580ec6", - "x-request-time": "0.293" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161032Z:2276517d-4a01-4df1-bcd2-c9014e964873", + "x-request-time": "0.122" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -47,17 +47,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sawcdivl5vo3cem", - "containerName": "azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-19T00:10:19.4497254\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-19T00:10:20.0957203\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -71,7 +71,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -79,21 +79,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:00:19 GMT", + "Date": "Fri, 23 Sep 2022 16:10:33 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-fafdd16909e98a421324dacba0ae45f2-65c3de9b84811870-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-aa68930b9edb2ba9717b22f0ae7aa616-2e0b9d709a93c271-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c33cf974-0219-404a-8c1b-94ee92bc1c7d", - "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-correlation-request-id": "b6c65a36-2a90-418f-bf69-aa51c29eb7e9", + "x-ms-ratelimit-remaining-subscription-writes": "1126", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T150019Z:c33cf974-0219-404a-8c1b-94ee92bc1c7d", - "x-request-time": "0.138" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161033Z:b6c65a36-2a90-418f-bf69-aa51c29eb7e9", + "x-request-time": "0.132" }, "ResponseBody": { "secretsType": "AccountKey", @@ -101,15 +101,15 @@ } }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Mon, 19 Sep 2022 15:00:19 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:10:35 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -118,9 +118,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Mon, 19 Sep 2022 15:00:18 GMT", - "ETag": "\u00220x8DA99D37A4F8142\u0022", - "Last-Modified": "Mon, 19 Sep 2022 00:11:19 GMT", + "Date": "Fri, 23 Sep 2022 16:10:33 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -129,32 +129,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Mon, 19 Sep 2022 00:11:19 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "3d85346b-0def-4d25-b9b1-cc4bdc4a3056", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Mon, 19 Sep 2022 15:00:19 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:10:36 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Mon, 19 Sep 2022 15:00:18 GMT", + "Date": "Fri, 23 Sep 2022 16:10:34 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -162,12 +162,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3d85346b-0def-4d25-b9b1-cc4bdc4a3056/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -175,7 +175,7 @@ "Connection": "keep-alive", "Content-Length": "288", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -185,7 +185,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -193,27 +193,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:00:20 GMT", + "Date": "Fri, 23 Sep 2022 16:10:34 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-d6a64797b5493afc34cc52c70aee3124-3d8545adf65411b5-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-584a5b04e92480687fc50276180f11d2-abfbe305b05238e8-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1f2b8cce-0bdf-4960-b247-17f73587bfe5", - "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-correlation-request-id": "08684072-ad23-4dbb-8c91-b12c9cbdcf7e", + "x-ms-ratelimit-remaining-subscription-writes": "1094", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T150020Z:1f2b8cce-0bdf-4960-b247-17f73587bfe5", - "x-request-time": "0.264" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161035Z:08684072-ad23-4dbb-8c91-b12c9cbdcf7e", + "x-request-time": "0.082" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3d85346b-0def-4d25-b9b1-cc4bdc4a3056/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -225,51 +225,51 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-19T00:11:20.0229231\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-19T15:00:20.850049\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T16:10:35.0250502\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_946081416468?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_967219585120?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1077", + "Content-Length": "1069", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:00:21 GMT", + "Date": "Fri, 23 Sep 2022 16:10:35 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1b3aa841-1548-49ba-9228-f11f2ba2b091", - "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-correlation-request-id": "17891fb2-20b5-461d-82a3-b4c687bf91d4", + "x-ms-ratelimit-remaining-subscription-reads": "11880", "x-ms-response-type": "error", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T150021Z:1b3aa841-1548-49ba-9228-f11f2ba2b091", - "x-request-time": "0.190" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161035Z:17891fb2-20b5-461d-82a3-b4c687bf91d4", + "x-request-time": "0.112" }, "ResponseBody": { "error": { "code": "UserError", - "message": "Not found component test_946081416468.", + "message": "Not found component test_967219585120.", "details": [], "additionalInfo": [ { @@ -282,27 +282,27 @@ "type": "Correlation", "info": { "value": { - "operation": "786e23bf6cad2bf36f650b579578146d", - "request": "54c3ac2150f04a79" + "operation": "205195c9c73e1ffaeae5f532e409aa58", + "request": "1f6181a67eb7ffde" } } }, { "type": "Environment", "info": { - "value": "eastus2euap" + "value": "eastus2" } }, { "type": "Location", "info": { - "value": "eastus2euap" + "value": "eastus2" } }, { "type": "Time", "info": { - "value": "2022-09-19T15:00:21.1856884\u002B00:00" + "value": "2022-09-23T16:10:35.7935315\u002B00:00" } }, { @@ -322,7 +322,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_946081416468/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_967219585120/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -330,7 +330,7 @@ "Connection": "keep-alive", "Content-Length": "1454", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -344,7 +344,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo ${{inputs.component_in_number}} \u0026 echo ${{inputs.component_in_path}} \u0026 echo ${{outputs.component_out_path}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3d85346b-0def-4d25-b9b1-cc4bdc4a3056/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": 2 @@ -353,7 +353,7 @@ "type": "pytorch", "process_count_per_instance": 4 }, - "name": "test_946081416468", + "name": "test_967219585120", "description": "This is the pytorch command component", "tags": { "tag": "tagvalue", @@ -386,25 +386,25 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2362", + "Content-Length": "2360", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:00:22 GMT", + "Date": "Fri, 23 Sep 2022 16:10:36 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_946081416468/versions/1?api-version=2022-05-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_967219585120/versions/1?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-912a36083ff87c81e1dbabeab8902f0f-896888012cc0bfcb-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-6a747e2d6e418cc3eeacc1990b4523c9-158e739b5bc870cf-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1b0478d2-6859-4510-87ab-98731990cc92", - "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-correlation-request-id": "e5b7c298-fa3b-48ad-99c1-2299b8df9f25", + "x-ms-ratelimit-remaining-subscription-writes": "1093", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T150023Z:1b0478d2-6859-4510-87ab-98731990cc92", - "x-request-time": "1.505" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161037Z:e5b7c298-fa3b-48ad-99c1-2299b8df9f25", + "x-request-time": "0.666" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_946081416468/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_967219585120/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { @@ -417,7 +417,7 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_946081416468", + "name": "test_967219585120", "version": "1", "display_name": "CommandComponentPytorch", "is_deterministic": "True", @@ -445,7 +445,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3d85346b-0def-4d25-b9b1-cc4bdc4a3056/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "2" @@ -459,17 +459,17 @@ } }, "systemData": { - "createdAt": "2022-09-19T15:00:22.6355232\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:10:36.6813251\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-19T15:00:22.8493574\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:10:36.8597327\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } } ], "Variables": { - "component_name": "test_946081416468" + "component_name": "test_967219585120" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_simple_pipeline_component_create.json b/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_simple_pipeline_component_create.json index 1f5be3e14fdb..97ff7d8ce539 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_simple_pipeline_component_create.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_simple_pipeline_component_create.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:03:04 GMT", + "Date": "Fri, 23 Sep 2022 16:14:29 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-dc54d6ec736e3eb2bd8e301838a707a8-e82c885aa25113c8-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-515bb7d79047cfbf0b0571f3e18e7c88-1255e915b326e714-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9aec095d-2471-4ba6-8a7b-6f36218f8c8b", - "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-correlation-request-id": "a593d911-78a6-4bd1-9923-ab6a1b3ef23e", + "x-ms-ratelimit-remaining-subscription-reads": "11850", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180304Z:9aec095d-2471-4ba6-8a7b-6f36218f8c8b", - "x-request-time": "0.117" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161430Z:a593d911-78a6-4bd1-9923-ab6a1b3ef23e", + "x-request-time": "0.148" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -47,17 +47,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -71,7 +71,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -79,21 +79,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:03:05 GMT", + "Date": "Fri, 23 Sep 2022 16:14:30 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-8357460c3a6fd6a6fa50f74f55195e36-c82a70e687e791ee-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-5c449c8e55f690e576f707333edd9c6e-55ce8601d8e967ff-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "aa7853b8-bfdb-4feb-80f3-33278ed157f4", - "x-ms-ratelimit-remaining-subscription-writes": "1166", + "x-ms-correlation-request-id": "e19c9600-ca17-4d98-b1ee-c74b1c0e41a7", + "x-ms-ratelimit-remaining-subscription-writes": "1110", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180305Z:aa7853b8-bfdb-4feb-80f3-33278ed157f4", - "x-request-time": "0.097" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161431Z:e19c9600-ca17-4d98-b1ee-c74b1c0e41a7", + "x-request-time": "0.096" }, "ResponseBody": { "secretsType": "AccountKey", @@ -101,15 +101,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 18:03:04 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:14:33 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -118,9 +118,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 18:03:04 GMT", - "ETag": "\u00220x8DA96C8560C1979\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:14:00 GMT", + "Date": "Fri, 23 Sep 2022 16:14:30 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -129,32 +129,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:14:00 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ac7e0240-c159-4c9c-828e-d3e8df43e80f", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 18:03:04 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:14:33 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 18:03:05 GMT", + "Date": "Fri, 23 Sep 2022 16:14:31 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -162,12 +162,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -175,7 +175,7 @@ "Connection": "keep-alive", "Content-Length": "288", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -185,7 +185,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -193,27 +193,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:03:05 GMT", + "Date": "Fri, 23 Sep 2022 16:14:32 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-f65bb994cd041441c3c4361ccc4de4b8-3c0cf901a240cfee-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-a2e7bc3cb6e87dd4e7f3daa7c1150d2d-cd168121842463af-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bd309147-464c-4d4d-b238-8e87a67f39a8", - "x-ms-ratelimit-remaining-subscription-writes": "1123", + "x-ms-correlation-request-id": "e5fad192-0208-4aaa-a3e1-4493d0133bc0", + "x-ms-ratelimit-remaining-subscription-writes": "1055", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180305Z:bd309147-464c-4d4d-b238-8e87a67f39a8", - "x-request-time": "0.062" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161432Z:e5fad192-0208-4aaa-a3e1-4493d0133bc0", + "x-request-time": "0.078" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -225,14 +225,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-15T03:14:01.4315202\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-16T18:03:05.5234259\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T16:14:32.6776756\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -244,7 +244,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -252,24 +252,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:03:06 GMT", + "Date": "Fri, 23 Sep 2022 16:14:33 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-19e298ca6c9020dfda81f2d610d5e239-0973968ba4556e58-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-821f13c0142a43af10ca0d00e46b7500-5f818b0a475ebc1c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1e460e4d-b831-4b9c-ab71-408a852c2640", - "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-correlation-request-id": "94f789a9-9fa7-4221-a683-7c53aa77880a", + "x-ms-ratelimit-remaining-subscription-reads": "11849", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180306Z:1e460e4d-b831-4b9c-ab71-408a852c2640", - "x-request-time": "0.464" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161433Z:94f789a9-9fa7-4221-a683-7c53aa77880a", + "x-request-time": "0.584" }, "ResponseBody": { "value": [ @@ -292,10 +292,10 @@ "osType": "Linux" }, "systemData": { - "createdAt": "2022-09-08T23:49:50.184588\u002B00:00", + "createdAt": "2022-09-09T02:07:11.801389\u002B00:00", "createdBy": "Microsoft", "createdByType": "User", - "lastModifiedAt": "2022-09-08T23:49:50.184588\u002B00:00", + "lastModifiedAt": "2022-09-09T02:07:11.801389\u002B00:00", "lastModifiedBy": "Microsoft", "lastModifiedByType": "User" } @@ -312,7 +312,7 @@ "Connection": "keep-alive", "Content-Length": "867", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -322,7 +322,7 @@ "isArchived": false, "componentSpec": { "command": "echo \u0022hello\u0022 \u0026\u0026 echo \u0022world\u0022 \u003E ${{outputs.world_output}}/world.txt", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/44", "name": "azureml_anonymous", "tags": {}, @@ -343,26 +343,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1750", + "Content-Length": "1748", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:03:06 GMT", + "Date": "Fri, 23 Sep 2022 16:14:34 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-9de9c145fe27ce45091f2f3db3f115f7-945216ee23ac32a5-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-e6686dee9ddaf9926a9b04fc06388e69-538694bd283fabc1-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4e9fb851-71c4-427f-b007-d9f5ab9361c4", - "x-ms-ratelimit-remaining-subscription-writes": "1122", + "x-ms-correlation-request-id": "a952d287-965e-4c13-a96b-39f7096505bb", + "x-ms-ratelimit-remaining-subscription-writes": "1054", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180306Z:4e9fb851-71c4-427f-b007-d9f5ab9361c4", - "x-request-time": "0.345" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161434Z:a952d287-965e-4c13-a96b-39f7096505bb", + "x-request-time": "0.515" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/c33c5b54-9e61-4a1b-8448-481308d48282", - "name": "c33c5b54-9e61-4a1b-8448-481308d48282", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bff9b750-1c91-4c98-a092-6b997d8e8ac1", + "name": "bff9b750-1c91-4c98-a092-6b997d8e8ac1", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -372,7 +372,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "c33c5b54-9e61-4a1b-8448-481308d48282", + "version": "bff9b750-1c91-4c98-a092-6b997d8e8ac1", "display_name": "component_a_job", "is_deterministic": "True", "type": "command", @@ -381,7 +381,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/44", "resources": { "instance_count": "1" @@ -391,11 +391,11 @@ } }, "systemData": { - "createdAt": "2022-09-16T02:13:30.6989245\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:14:34.6726708\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T02:13:30.8768045\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:14:34.6726708\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -407,7 +407,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -415,24 +415,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:03:06 GMT", + "Date": "Fri, 23 Sep 2022 16:14:35 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-798052b890ddbc4a10d14671680d76a6-27e0755390dcf3c3-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-f4ca6cefca53ec46e3cd595b8610635f-c2bb54bdfea15cf5-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f7263db0-4c4d-4f6a-a079-ddbd4cd67c42", - "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-correlation-request-id": "d35a42b1-081c-4e5e-a889-156170f43ed1", + "x-ms-ratelimit-remaining-subscription-reads": "11848", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180306Z:f7263db0-4c4d-4f6a-a079-ddbd4cd67c42", - "x-request-time": "0.097" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161436Z:d35a42b1-081c-4e5e-a889-156170f43ed1", + "x-request-time": "0.108" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -447,17 +447,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -471,7 +471,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -479,21 +479,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:03:07 GMT", + "Date": "Fri, 23 Sep 2022 16:14:36 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-c84534664c6a3f980f5cfecf5bd63af5-f78a753cf1742948-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-81c4d1b7a1bfaf1fab81b985fd96834d-0048f67bcf999b3a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "da32ae67-8426-423a-a837-abdc8c7b4f90", - "x-ms-ratelimit-remaining-subscription-writes": "1165", + "x-ms-correlation-request-id": "3d5e1ddd-7051-4621-ad2a-9e0745f6dc2f", + "x-ms-ratelimit-remaining-subscription-writes": "1109", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180307Z:da32ae67-8426-423a-a837-abdc8c7b4f90", - "x-request-time": "0.101" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161436Z:3d5e1ddd-7051-4621-ad2a-9e0745f6dc2f", + "x-request-time": "0.083" }, "ResponseBody": { "secretsType": "AccountKey", @@ -501,15 +501,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 18:03:06 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:14:38 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -518,9 +518,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 18:03:06 GMT", - "ETag": "\u00220x8DA96C8560C1979\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:14:00 GMT", + "Date": "Fri, 23 Sep 2022 16:14:36 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -529,32 +529,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:14:00 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ac7e0240-c159-4c9c-828e-d3e8df43e80f", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 18:03:06 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:14:39 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 18:03:07 GMT", + "Date": "Fri, 23 Sep 2022 16:14:36 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -562,12 +562,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -575,7 +575,7 @@ "Connection": "keep-alive", "Content-Length": "288", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -585,7 +585,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -593,27 +593,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:03:07 GMT", + "Date": "Fri, 23 Sep 2022 16:14:37 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-fa01a9ea15679aa7da25e15938ea7e9d-7e393ea289de0e82-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-7a0e9922630d5b854f544aec43667ea0-e87f604953aa999b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fe9144e9-918e-49a6-bfae-411a6ccad32e", - "x-ms-ratelimit-remaining-subscription-writes": "1121", + "x-ms-correlation-request-id": "946723c0-b2dc-475d-b9e9-c5d1c3d335aa", + "x-ms-ratelimit-remaining-subscription-writes": "1053", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180307Z:fe9144e9-918e-49a6-bfae-411a6ccad32e", - "x-request-time": "0.085" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161438Z:946723c0-b2dc-475d-b9e9-c5d1c3d335aa", + "x-request-time": "0.356" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -625,14 +625,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-15T03:14:01.4315202\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-16T18:03:07.5276775\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T16:14:38.2821141\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -644,7 +644,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -652,24 +652,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:03:07 GMT", + "Date": "Fri, 23 Sep 2022 16:14:38 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-4187e19c5deb38b6b8a1df19e8f7f2b4-cdeb892745d0b8a6-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-daac2061f145134288650cd7c2735de4-5229b8341f0c0e51-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "108d8b3a-f8b2-4df7-a6b3-89ea88a19335", - "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-correlation-request-id": "b316eb1e-48d3-4df8-a635-82a5cef30685", + "x-ms-ratelimit-remaining-subscription-reads": "11847", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180307Z:108d8b3a-f8b2-4df7-a6b3-89ea88a19335", - "x-request-time": "0.260" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161439Z:b316eb1e-48d3-4df8-a635-82a5cef30685", + "x-request-time": "0.583" }, "ResponseBody": { "value": [ @@ -692,10 +692,10 @@ "osType": "Linux" }, "systemData": { - "createdAt": "2022-09-08T23:49:50.184588\u002B00:00", + "createdAt": "2022-09-09T02:07:11.801389\u002B00:00", "createdBy": "Microsoft", "createdByType": "User", - "lastModifiedAt": "2022-09-08T23:49:50.184588\u002B00:00", + "lastModifiedAt": "2022-09-09T02:07:11.801389\u002B00:00", "lastModifiedBy": "Microsoft", "lastModifiedByType": "User" } @@ -712,7 +712,7 @@ "Connection": "keep-alive", "Content-Length": "867", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -722,7 +722,7 @@ "isArchived": false, "componentSpec": { "command": "echo \u0022hello\u0022 \u0026\u0026 echo \u0022world\u0022 \u003E ${{outputs.world_output}}/world.txt", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/44", "name": "azureml_anonymous", "tags": {}, @@ -743,26 +743,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1750", + "Content-Length": "1748", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:03:08 GMT", + "Date": "Fri, 23 Sep 2022 16:14:40 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-7571aae9df0ef4d88d0e87be2c0ebb49-565aaeba65e3b7c7-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-de52033ca5e4bb015e9528f6cef7f766-7e02887afbc46dd5-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8bfe41f6-0716-42d2-acab-6f75334fc288", - "x-ms-ratelimit-remaining-subscription-writes": "1120", + "x-ms-correlation-request-id": "9cbe1f71-be37-4871-a140-35af556b7583", + "x-ms-ratelimit-remaining-subscription-writes": "1052", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180308Z:8bfe41f6-0716-42d2-acab-6f75334fc288", - "x-request-time": "0.330" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161440Z:9cbe1f71-be37-4871-a140-35af556b7583", + "x-request-time": "0.733" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/c33c5b54-9e61-4a1b-8448-481308d48282", - "name": "c33c5b54-9e61-4a1b-8448-481308d48282", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bff9b750-1c91-4c98-a092-6b997d8e8ac1", + "name": "bff9b750-1c91-4c98-a092-6b997d8e8ac1", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -772,7 +772,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "c33c5b54-9e61-4a1b-8448-481308d48282", + "version": "bff9b750-1c91-4c98-a092-6b997d8e8ac1", "display_name": "component_a_job", "is_deterministic": "True", "type": "command", @@ -781,7 +781,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/44", "resources": { "instance_count": "1" @@ -791,25 +791,25 @@ } }, "systemData": { - "createdAt": "2022-09-16T02:13:30.6989245\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:14:34.6726708\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T02:13:30.8768045\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:14:34.8417539\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_924367540621/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_187918932949/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1384", + "Content-Length": "1402", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -822,7 +822,7 @@ "isAnonymous": false, "isArchived": false, "componentSpec": { - "name": "test_924367540621", + "name": "test_187918932949", "description": "This is the basic pipeline component", "tags": { "tag": "tagvalue", @@ -863,8 +863,9 @@ "computeId": "${{parent.inputs.node_compute}}", "inputs": {}, "outputs": {}, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/c33c5b54-9e61-4a1b-8448-481308d48282" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bff9b750-1c91-4c98-a092-6b997d8e8ac1" } }, "_source": "YAML.COMPONENT", @@ -875,25 +876,25 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1646", + "Content-Length": "1644", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 18:03:09 GMT", + "Date": "Fri, 23 Sep 2022 16:14:41 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_924367540621/versions/1?api-version=2022-05-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_187918932949/versions/1?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-0cc9999406dde8a026fe80525b8ff1db-180f85e72eb978e6-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-8629f5194d4e0ec9ac86173ca03bd86b-bb8bb03a39cb1df3-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "82530265-b6d0-4a37-a53d-7071ee33b965", - "x-ms-ratelimit-remaining-subscription-writes": "1119", + "x-ms-correlation-request-id": "6d3da05d-ec36-45c7-a9dd-ad1add41150c", + "x-ms-ratelimit-remaining-subscription-writes": "1051", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T180309Z:82530265-b6d0-4a37-a53d-7071ee33b965", - "x-request-time": "1.100" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161442Z:6d3da05d-ec36-45c7-a9dd-ad1add41150c", + "x-request-time": "0.981" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_924367540621/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_187918932949/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { @@ -906,7 +907,7 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_924367540621", + "name": "test_187918932949", "version": "1", "display_name": "Hello World Pipeline Component", "is_deterministic": "True", @@ -938,17 +939,17 @@ } }, "systemData": { - "createdAt": "2022-09-16T18:03:09.3863897\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:14:42.1055076\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T18:03:09.5968346\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:14:42.3076609\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } } ], "Variables": { - "component_name": "test_924367540621" + "component_name": "test_187918932949" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_tensorflow_component.json b/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_tensorflow_component.json index 6d5516abb0c1..ca0c055ab9f5 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_tensorflow_component.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/component/e2etests/test_component.pyTestComponenttest_tensorflow_component.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:02:18 GMT", + "Date": "Fri, 23 Sep 2022 16:10:39 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-e7bb6d2e8940c9831817f186fa4976d0-1aa7871f65c4595a-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-2758ad782b2634aa13031ab9b23fa56d-0875d182879155a0-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "515674c2-8b98-444e-ab38-d6577d9af885", - "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-correlation-request-id": "c3e0ec05-d513-40e6-bdff-0ed10d088be1", + "x-ms-ratelimit-remaining-subscription-reads": "11879", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T150218Z:515674c2-8b98-444e-ab38-d6577d9af885", - "x-request-time": "0.113" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161040Z:c3e0ec05-d513-40e6-bdff-0ed10d088be1", + "x-request-time": "0.097" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -47,17 +47,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sawcdivl5vo3cem", - "containerName": "azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-19T00:10:19.4497254\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-19T00:10:20.0957203\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -71,7 +71,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -79,21 +79,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:02:19 GMT", + "Date": "Fri, 23 Sep 2022 16:10:40 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-631f6e640434b3f15839bd85a22a956e-d855400f820c5418-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-91ba5751f27008f96f7e668a9d7cf0dc-06823fc2c33b4212-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "db1505ef-55b1-423f-bf60-34b182f4aa6a", - "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-correlation-request-id": "e79edec6-ea82-491a-a784-559992d6a8f4", + "x-ms-ratelimit-remaining-subscription-writes": "1125", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T150220Z:db1505ef-55b1-423f-bf60-34b182f4aa6a", - "x-request-time": "0.091" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161040Z:e79edec6-ea82-491a-a784-559992d6a8f4", + "x-request-time": "0.080" }, "ResponseBody": { "secretsType": "AccountKey", @@ -101,15 +101,15 @@ } }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Mon, 19 Sep 2022 15:02:20 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:10:42 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -118,9 +118,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Mon, 19 Sep 2022 15:02:19 GMT", - "ETag": "\u00220x8DA99D37A4F8142\u0022", - "Last-Modified": "Mon, 19 Sep 2022 00:11:19 GMT", + "Date": "Fri, 23 Sep 2022 16:10:41 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -129,32 +129,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Mon, 19 Sep 2022 00:11:19 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "3d85346b-0def-4d25-b9b1-cc4bdc4a3056", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Mon, 19 Sep 2022 15:02:20 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:10:43 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Mon, 19 Sep 2022 15:02:19 GMT", + "Date": "Fri, 23 Sep 2022 16:10:41 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -162,12 +162,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3d85346b-0def-4d25-b9b1-cc4bdc4a3056/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -175,7 +175,7 @@ "Connection": "keep-alive", "Content-Length": "288", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -185,7 +185,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -193,27 +193,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:02:22 GMT", + "Date": "Fri, 23 Sep 2022 16:10:41 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-f229a3f1e86691659cd6b8acdec26727-6f288f0844b71266-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-0dbba649ea40d2ba30556136cc0c5f84-ede34a387b983876-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0fea0a2c-5831-43f3-8609-be89398bf1ef", - "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-correlation-request-id": "f753496d-ece2-4a45-bd95-cc70750a028a", + "x-ms-ratelimit-remaining-subscription-writes": "1092", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T150222Z:0fea0a2c-5831-43f3-8609-be89398bf1ef", - "x-request-time": "0.065" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161042Z:f753496d-ece2-4a45-bd95-cc70750a028a", + "x-request-time": "0.084" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3d85346b-0def-4d25-b9b1-cc4bdc4a3056/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -225,51 +225,51 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-19T00:11:20.0229231\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-19T15:02:22.9054651\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T16:10:42.2328922\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_976299322366?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_171872377068?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1077", + "Content-Length": "1069", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:02:22 GMT", + "Date": "Fri, 23 Sep 2022 16:10:42 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b65922c6-a9df-463b-a774-323d5c4db82d", - "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-correlation-request-id": "926c5644-5593-49b1-b599-a37e8ba9ebfc", + "x-ms-ratelimit-remaining-subscription-reads": "11878", "x-ms-response-type": "error", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T150223Z:b65922c6-a9df-463b-a774-323d5c4db82d", - "x-request-time": "0.134" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161042Z:926c5644-5593-49b1-b599-a37e8ba9ebfc", + "x-request-time": "0.088" }, "ResponseBody": { "error": { "code": "UserError", - "message": "Not found component test_976299322366.", + "message": "Not found component test_171872377068.", "details": [], "additionalInfo": [ { @@ -282,27 +282,27 @@ "type": "Correlation", "info": { "value": { - "operation": "e0f246dc4b6c6eae7ea7ba8df752ab71", - "request": "3474c5a8dc599eb7" + "operation": "feac1bd5b8d2fe63a6c064a9ae30b4c8", + "request": "5d41eb3ddc1e4570" } } }, { "type": "Environment", "info": { - "value": "eastus2euap" + "value": "eastus2" } }, { "type": "Location", "info": { - "value": "eastus2euap" + "value": "eastus2" } }, { "type": "Time", "info": { - "value": "2022-09-19T15:02:23.3697941\u002B00:00" + "value": "2022-09-23T16:10:42.8747982\u002B00:00" } }, { @@ -322,7 +322,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_976299322366/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_171872377068/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -330,7 +330,7 @@ "Connection": "keep-alive", "Content-Length": "1481", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -344,7 +344,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo ${{inputs.component_in_number}} \u0026 echo ${{inputs.component_in_path}} \u0026 echo ${{outputs.component_out_path}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3d85346b-0def-4d25-b9b1-cc4bdc4a3056/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": 2 @@ -354,7 +354,7 @@ "parameter_server_count": 1, "worker_count": 2 }, - "name": "test_976299322366", + "name": "test_171872377068", "description": "This is the TensorFlow command component", "tags": { "tag": "tagvalue", @@ -387,25 +387,25 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2395", + "Content-Length": "2394", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:02:24 GMT", + "Date": "Fri, 23 Sep 2022 16:10:43 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_976299322366/versions/1?api-version=2022-05-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_171872377068/versions/1?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-016f397ace1b15d9bec7eabe72bab120-3fc09e119c8f4e1a-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-d57a8d8e92477f5bcfce46a3ca680172-83c374ee37037435-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7f9d08ce-3746-45d3-a1dd-e1c281864e9a", - "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-correlation-request-id": "a826e2db-ae57-4ba6-ab28-18455bddb393", + "x-ms-ratelimit-remaining-subscription-writes": "1091", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T150225Z:7f9d08ce-3746-45d3-a1dd-e1c281864e9a", - "x-request-time": "0.858" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161044Z:a826e2db-ae57-4ba6-ab28-18455bddb393", + "x-request-time": "0.714" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_976299322366/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_171872377068/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { @@ -418,7 +418,7 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_976299322366", + "name": "test_171872377068", "version": "1", "display_name": "CommandComponentTensorFlow", "is_deterministic": "True", @@ -446,7 +446,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3d85346b-0def-4d25-b9b1-cc4bdc4a3056/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "2" @@ -461,17 +461,17 @@ } }, "systemData": { - "createdAt": "2022-09-19T15:02:24.674788\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:10:43.7506352\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-19T15:02:24.9244316\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T16:10:43.9737316\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } } ], "Variables": { - "component_name": "test_976299322366" + "component_name": "test_171872377068" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_command_by_pass.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_command_by_pass.json index 22723350ebdb..da159b8c5577 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_command_by_pass.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_command_by_pass.json @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:07:56 GMT", + "Date": "Fri, 23 Sep 2022 16:21:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-bc9adfe0a717cad90f8ef419c47d83b4-3691963176b8b5c1-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-2b174a0b7c912189f1359e1477f0b596-06261ecb3f4ec555-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bf08680c-c47c-4214-915b-0ef0793a259d", + "x-ms-correlation-request-id": "3d36c6bd-c153-412c-a6b1-af0d43d24360", "x-ms-ratelimit-remaining-subscription-reads": "11967", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020757Z:bf08680c-c47c-4214-915b-0ef0793a259d", - "x-request-time": "0.085" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162114Z:3d36c6bd-c153-412c-a6b1-af0d43d24360", + "x-request-time": "0.090" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -47,17 +47,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -79,21 +79,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:07:57 GMT", + "Date": "Fri, 23 Sep 2022 16:21:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-94022469ddc0e844f21407247674467f-b4acfd769ed33b91-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-31ef38a12f81df5cb4e63c9fec7ec4ed-cf061c540fc333d5-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "644f86b4-3447-4616-86b5-1a00f5485ff6", + "x-ms-correlation-request-id": "9ddd80f7-695b-4efa-93b7-b2030188169e", "x-ms-ratelimit-remaining-subscription-writes": "1180", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020758Z:644f86b4-3447-4616-86b5-1a00f5485ff6", - "x-request-time": "0.087" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162115Z:9ddd80f7-695b-4efa-93b7-b2030188169e", + "x-request-time": "0.117" }, "ResponseBody": { "secretsType": "AccountKey", @@ -101,14 +101,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:07:59 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:21:17 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -118,9 +118,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 02:07:58 GMT", - "ETag": "\u00220x8DA9ABCB2F66FF1\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:00:47 GMT", + "Date": "Fri, 23 Sep 2022 16:21:15 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -129,10 +129,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:00:47 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ca7591cf-36a6-4425-bb3d-579cd587b206", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -141,20 +141,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:08:00 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:21:18 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 02:07:59 GMT", + "Date": "Fri, 23 Sep 2022 16:21:15 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -167,7 +167,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -185,7 +185,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -193,27 +193,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:07:59 GMT", + "Date": "Fri, 23 Sep 2022 16:21:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-b5f7a2eb2243afb95e0c1a5b4a25a0b6-8fc37c1dd7f39b66-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-7336469fab879dfa7ab322c17bcfbdc8-7f8d03e053880c91-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fa23d4ac-a65a-4af0-8d53-f138f7f7959d", + "x-ms-correlation-request-id": "947bba4c-fae9-4f91-ba07-271938b5fb05", "x-ms-ratelimit-remaining-subscription-writes": "1154", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020800Z:fa23d4ac-a65a-4af0-8d53-f138f7f7959d", - "x-request-time": "0.071" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162116Z:947bba4c-fae9-4f91-ba07-271938b5fb05", + "x-request-time": "0.069" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -225,13 +225,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-20T04:00:48.9804975\u002B00:00", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:08:00.3146817\u002B00:00", + "lastModifiedAt": "2022-09-23T16:21:16.8085263\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -260,7 +260,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo $[[${{inputs.component_in_number}}]] \u0026 echo ${{inputs.component_in_path}} \u0026 echo ${{outputs.component_out_path}} \u003E ${{outputs.component_out_path}}/component_in_number", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "description": "This is the basic command component", @@ -299,24 +299,24 @@ "Cache-Control": "no-cache", "Content-Length": "2415", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:08:01 GMT", + "Date": "Fri, 23 Sep 2022 16:21:17 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-9be3575ba0a65fa957c42998e9e7646b-f4fbc22af6b2f24a-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-2c822be4378e0bd60c1ee9914c5cd934-ad150881c1a7852d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f5f75219-38de-4ed8-b567-760071e0de12", + "x-ms-correlation-request-id": "0f6203e8-2c43-469b-80b4-edce16d460a5", "x-ms-ratelimit-remaining-subscription-writes": "1153", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020802Z:f5f75219-38de-4ed8-b567-760071e0de12", - "x-request-time": "0.375" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162118Z:0f6203e8-2c43-469b-80b4-edce16d460a5", + "x-request-time": "0.527" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ce5d9826-bed1-4a86-933d-2aaf773c07fe", - "name": "ce5d9826-bed1-4a86-933d-2aaf773c07fe", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b2f0a8df-692b-4c48-bb14-b04ddb32732b", + "name": "b2f0a8df-692b-4c48-bb14-b04ddb32732b", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -329,7 +329,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "ce5d9826-bed1-4a86-933d-2aaf773c07fe", + "version": "b2f0a8df-692b-4c48-bb14-b04ddb32732b", "display_name": "test_command_by_pass", "is_deterministic": "True", "type": "command", @@ -356,7 +356,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -366,10 +366,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T01:18:21.8840406\u002B00:00", + "createdAt": "2022-09-23T16:21:17.9850046\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T01:18:22.1018404\u002B00:00", + "lastModifiedAt": "2022-09-23T16:21:17.9850046\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -382,7 +382,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "2102", + "Content-Length": "2138", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -394,7 +394,7 @@ "owner": "sdkteam", "tag": "tagvalue" }, - "displayName": "test_598904222549", + "displayName": "test_654744661890", "experimentName": "dsl_exp", "isArchived": false, "jobType": "Pipeline", @@ -434,9 +434,10 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", "new_field": "val", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ce5d9826-bed1-4a86-933d-2aaf773c07fe" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b2f0a8df-692b-4c48-bb14-b04ddb32732b" }, "node2": { "resources": null, @@ -459,8 +460,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ce5d9826-bed1-4a86-933d-2aaf773c07fe" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b2f0a8df-692b-4c48-bb14-b04ddb32732b" } }, "outputs": {}, @@ -474,22 +476,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4615", + "Content-Length": "4667", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:08:08 GMT", + "Date": "Fri, 23 Sep 2022 16:21:25 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-74ce794f0e8ebc32fe95b09b2e759dd1-d6fdcf224a5a6086-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-bea382e6ec62656180f347f48d3c056d-81ff7e63df7ca2f5-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d04687fb-ffac-407f-9612-f55235482cf4", + "x-ms-correlation-request-id": "5687680f-3a3d-4941-a03b-b873c1e4826c", "x-ms-ratelimit-remaining-subscription-writes": "1152", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020809Z:d04687fb-ffac-407f-9612-f55235482cf4", - "x-request-time": "2.855" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162126Z:5687680f-3a3d-4941-a03b-b873c1e4826c", + "x-request-time": "3.105" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -513,7 +515,7 @@ "azureml.defaultDataStoreName": "workspaceblobstore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_598904222549", + "displayName": "test_654744661890", "status": "Preparing", "experimentName": "dsl_exp", "services": { @@ -566,9 +568,10 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", "new_field": "val", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ce5d9826-bed1-4a86-933d-2aaf773c07fe" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b2f0a8df-692b-4c48-bb14-b04ddb32732b" }, "node2": { "resources": null, @@ -591,8 +594,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ce5d9826-bed1-4a86-933d-2aaf773c07fe" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b2f0a8df-692b-4c48-bb14-b04ddb32732b" } }, "inputs": { @@ -617,7 +621,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T02:08:08.8248831\u002B00:00", + "createdAt": "2022-09-23T16:21:25.6276728\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } @@ -625,6 +629,6 @@ } ], "Variables": { - "pipeline_name": "test_598904222549" + "pipeline_name": "test_654744661890" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_command_component_create.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_command_component_create.json index daef15cd05f9..6da33490590a 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_command_component_create.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_command_component_create.json @@ -15,11 +15,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:04:02 GMT", + "Date": "Fri, 23 Sep 2022 16:17:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-ae8c1eb5f0acb1b8675f777456d59816-c334201b94ce1737-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-cd157cdb789ec23f093db0b40e7cc364-e3f55d15e542043c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -28,11 +28,11 @@ ], "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "812618c0-daa3-484c-8672-6341bc220ee0", + "x-ms-correlation-request-id": "2856060d-3c36-49ca-885f-b748e9eb2b0d", "x-ms-ratelimit-remaining-subscription-reads": "11999", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020403Z:812618c0-daa3-484c-8672-6341bc220ee0", - "x-request-time": "0.031" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161715Z:2856060d-3c36-49ca-885f-b748e9eb2b0d", + "x-request-time": "0.041" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -41,8 +41,8 @@ "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T11:47:20.6013506\u002B00:00", - "modifiedOn": "2022-09-15T11:47:27.309088\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -60,18 +60,18 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 1, + "currentNodeCount": 0, "targetNodeCount": 0, "nodeStateCounts": { "preparingNodeCount": 0, "runningNodeCount": 0, "idleNodeCount": 0, "unusableNodeCount": 0, - "leavingNodeCount": 1, + "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-21T02:00:16.087\u002B00:00", + "allocationState": "Steady", + "allocationStateTransitionTime": "2022-09-23T16:00:46.691\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -97,24 +97,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:04:07 GMT", + "Date": "Fri, 23 Sep 2022 16:17:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-15e02543c5b34306adb7ca7fcf445f0d-36125e3e3acda5ac-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-014fc196ad3407b8e467e818cbeb6ea8-6ec216ed7c1bd9ec-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cd700b34-bae8-44e1-84d8-4208ce394a9f", + "x-ms-correlation-request-id": "89253663-757c-460b-8a0f-6f6d0ffe3d24", "x-ms-ratelimit-remaining-subscription-reads": "11998", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020407Z:cd700b34-bae8-44e1-84d8-4208ce394a9f", - "x-request-time": "0.654" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161721Z:89253663-757c-460b-8a0f-6f6d0ffe3d24", + "x-request-time": "0.135" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -129,17 +129,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -161,21 +161,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:04:08 GMT", + "Date": "Fri, 23 Sep 2022 16:17:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-80228d169d3ab0944a7e96eee0b663f4-256425f517ab8807-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-c49d38845f24a8f3a85a5d3e4c1cbf38-f2de96650a725391-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "00668a67-7580-4d5d-92cd-3eb84e4941fd", + "x-ms-correlation-request-id": "3f94af37-1ee6-4fb7-8bb0-bdd85264917b", "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020408Z:00668a67-7580-4d5d-92cd-3eb84e4941fd", - "x-request-time": "0.293" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161722Z:3f94af37-1ee6-4fb7-8bb0-bdd85264917b", + "x-request-time": "0.179" }, "ResponseBody": { "secretsType": "AccountKey", @@ -183,14 +183,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:04:10 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:17:24 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -200,9 +200,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 02:04:10 GMT", - "ETag": "\u00220x8DA9ABCB2F66FF1\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:00:47 GMT", + "Date": "Fri, 23 Sep 2022 16:17:23 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -211,10 +211,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:00:47 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ca7591cf-36a6-4425-bb3d-579cd587b206", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -223,20 +223,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:04:12 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:17:26 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 02:04:10 GMT", + "Date": "Fri, 23 Sep 2022 16:17:23 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -249,7 +249,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -267,7 +267,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -275,27 +275,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:04:12 GMT", + "Date": "Fri, 23 Sep 2022 16:17:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-cdf63a0d27dc13a5775b9bcb05cd7cb5-e38737576b86b975-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-90a67adf6bb9b49d8d22e04f4928cef3-ff16a6b3119b82a4-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c5b4fe35-96ab-4061-92f3-765d5a48ab38", + "x-ms-correlation-request-id": "ea24d719-5997-400d-8f10-06c4710aea72", "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020412Z:c5b4fe35-96ab-4061-92f3-765d5a48ab38", - "x-request-time": "0.580" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161725Z:ea24d719-5997-400d-8f10-06c4710aea72", + "x-request-time": "0.158" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -307,13 +307,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-20T04:00:48.9804975\u002B00:00", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:04:12.4845513\u002B00:00", + "lastModifiedAt": "2022-09-23T16:17:25.7777678\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -342,7 +342,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo $[[${{inputs.component_in_number}}]] \u0026 echo ${{inputs.component_in_path}} \u0026 echo ${{outputs.component_out_path}} \u003E ${{outputs.component_out_path}}/component_in_number", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "description": "This is the basic command component", @@ -381,24 +381,24 @@ "Cache-Control": "no-cache", "Content-Length": "2416", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:04:14 GMT", + "Date": "Fri, 23 Sep 2022 16:17:27 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-8074925e5cd9bb212e4540096a18ac52-e0433e50981dec3c-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-931b25538db535b9fd27a9445fc53539-02fb70724fd92d24-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "84963500-e0b3-484d-b5a1-fce837f58e7d", + "x-ms-correlation-request-id": "93ed2815-0c0e-4ae9-ae9c-7005ad19dd27", "x-ms-ratelimit-remaining-subscription-writes": "1198", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020414Z:84963500-e0b3-484d-b5a1-fce837f58e7d", - "x-request-time": "1.480" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161728Z:93ed2815-0c0e-4ae9-ae9c-7005ad19dd27", + "x-request-time": "1.507" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32", - "name": "2a153b3f-78e1-419b-8273-bfc76c28df32", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191", + "name": "bf151e23-da4f-4101-bf39-8bf62d31a191", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -411,7 +411,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "2a153b3f-78e1-419b-8273-bfc76c28df32", + "version": "bf151e23-da4f-4101-bf39-8bf62d31a191", "display_name": "CommandComponentBasic", "is_deterministic": "True", "type": "command", @@ -438,7 +438,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -448,10 +448,10 @@ } }, "systemData": { - "createdAt": "2022-09-20T04:04:55.6745883\u002B00:00", + "createdAt": "2022-09-23T16:11:01.2843263\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-20T04:04:55.8538952\u002B00:00", + "lastModifiedAt": "2022-09-23T16:11:01.4598118\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -472,24 +472,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:04:15 GMT", + "Date": "Fri, 23 Sep 2022 16:17:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-f97bacc042460954040ed2f372c02b32-e2c9fb5772e708c3-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-84f3fbbb5d76284c817c446fb4c7cae8-2c8ffce475104466-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b6ec5c59-7dec-4482-9574-adb102556dfd", + "x-ms-correlation-request-id": "4cba7eac-ceb9-482b-97a7-1b96a12423ef", "x-ms-ratelimit-remaining-subscription-reads": "11997", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020415Z:b6ec5c59-7dec-4482-9574-adb102556dfd", - "x-request-time": "0.084" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161728Z:4cba7eac-ceb9-482b-97a7-1b96a12423ef", + "x-request-time": "0.200" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -504,17 +504,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -536,21 +536,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:04:16 GMT", + "Date": "Fri, 23 Sep 2022 16:17:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-29ee2e2b405b57a53edad83e4933c729-4d83fc61729b0842-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-3367fa7336328d787e13617bfcc30725-e8a20b58d2f44750-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "792b86ad-22bc-439c-9af0-9c446146769a", + "x-ms-correlation-request-id": "a9757b9b-33cd-47a2-acc6-602001426414", "x-ms-ratelimit-remaining-subscription-writes": "1198", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020416Z:792b86ad-22bc-439c-9af0-9c446146769a", - "x-request-time": "0.086" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161729Z:a9757b9b-33cd-47a2-acc6-602001426414", + "x-request-time": "0.097" }, "ResponseBody": { "secretsType": "AccountKey", @@ -558,14 +558,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:04:18 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:17:31 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -575,9 +575,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 02:04:16 GMT", - "ETag": "\u00220x8DA9ABCB2F66FF1\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:00:47 GMT", + "Date": "Fri, 23 Sep 2022 16:17:29 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -586,10 +586,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:00:47 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ca7591cf-36a6-4425-bb3d-579cd587b206", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -598,20 +598,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:04:18 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:17:32 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 02:04:17 GMT", + "Date": "Fri, 23 Sep 2022 16:17:29 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -624,7 +624,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -642,7 +642,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -650,27 +650,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:04:18 GMT", + "Date": "Fri, 23 Sep 2022 16:17:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-96d96678789ae0751dcd7d0341618a46-269f6b3301b0b868-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-2b3573fc0b9a423c3f5da4e3be1f753c-076eeaa4406595b2-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "77e39165-5daa-4c26-941d-701d6a744d2b", + "x-ms-correlation-request-id": "3e38fad5-215e-4713-9bc2-60b1e4591976", "x-ms-ratelimit-remaining-subscription-writes": "1197", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020418Z:77e39165-5daa-4c26-941d-701d6a744d2b", - "x-request-time": "0.109" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161731Z:3e38fad5-215e-4713-9bc2-60b1e4591976", + "x-request-time": "0.086" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -682,13 +682,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-20T04:00:48.9804975\u002B00:00", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:04:18.2562044\u002B00:00", + "lastModifiedAt": "2022-09-23T16:17:30.9897063\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -717,7 +717,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo $[[${{inputs.component_in_number}}]] \u0026 echo ${{inputs.component_in_path}} \u0026 echo ${{outputs.component_out_path}} \u003E ${{outputs.component_out_path}}/component_in_number", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "description": "This is the basic command component", @@ -756,24 +756,24 @@ "Cache-Control": "no-cache", "Content-Length": "2416", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:04:19 GMT", + "Date": "Fri, 23 Sep 2022 16:17:32 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-64b735d4905a269905d85bf2d28fbbd9-955c36e30afac32c-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-a7b21c09c1f2df014e48ee3718264c7a-68382559de1faf30-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9a7ef9d3-8205-4aa9-9e60-70897ae9a43f", + "x-ms-correlation-request-id": "60fde0c9-b3ee-4d8c-b6ca-ef0ba7ee5cca", "x-ms-ratelimit-remaining-subscription-writes": "1196", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020419Z:9a7ef9d3-8205-4aa9-9e60-70897ae9a43f", - "x-request-time": "0.342" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161732Z:60fde0c9-b3ee-4d8c-b6ca-ef0ba7ee5cca", + "x-request-time": "0.441" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32", - "name": "2a153b3f-78e1-419b-8273-bfc76c28df32", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191", + "name": "bf151e23-da4f-4101-bf39-8bf62d31a191", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -786,7 +786,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "2a153b3f-78e1-419b-8273-bfc76c28df32", + "version": "bf151e23-da4f-4101-bf39-8bf62d31a191", "display_name": "CommandComponentBasic", "is_deterministic": "True", "type": "command", @@ -813,7 +813,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -823,10 +823,10 @@ } }, "systemData": { - "createdAt": "2022-09-20T04:04:55.6745883\u002B00:00", + "createdAt": "2022-09-23T16:11:01.2843263\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-20T04:04:55.8538952\u002B00:00", + "lastModifiedAt": "2022-09-23T16:11:01.4598118\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -839,7 +839,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "2137", + "Content-Length": "2173", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -852,7 +852,7 @@ "tag": "tagvalue" }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", - "displayName": "test_100439071946", + "displayName": "test_648830097390", "experimentName": "dsl_pipeline_e2e", "isArchived": false, "jobType": "Pipeline", @@ -871,12 +871,12 @@ } }, "jobs": { - "test_184820533507": { + "test_660390936270": { "resources": null, "distribution": null, "limits": null, "environment_variables": {}, - "name": "test_184820533507", + "name": "test_660390936270", "type": "command", "display_name": null, "tags": {}, @@ -892,15 +892,16 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191" }, - "test_184820533507_1": { + "test_660390936270_1": { "resources": null, "distribution": null, "limits": null, "environment_variables": {}, - "name": "test_184820533507_1", + "name": "test_660390936270_1", "type": "command", "display_name": null, "tags": {}, @@ -916,8 +917,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191" } }, "outputs": {}, @@ -930,22 +932,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4617", + "Content-Length": "4669", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:04:27 GMT", + "Date": "Fri, 23 Sep 2022 16:17:49 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-06d4faccc4def229bc60ec57fd6c52a2-5440ee5b2cf2aae1-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-92b7b7ad2f9cf275dbd25e182192d01e-20d65135eb48d123-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a616f043-62da-4575-9914-44b66adf414c", + "x-ms-correlation-request-id": "04bb3a91-bbf1-4720-9283-f7d57e2bb80f", "x-ms-ratelimit-remaining-subscription-writes": "1195", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020428Z:a616f043-62da-4575-9914-44b66adf414c", - "x-request-time": "4.346" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161749Z:04bb3a91-bbf1-4720-9283-f7d57e2bb80f", + "x-request-time": "4.401" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -969,7 +971,7 @@ "azureml.defaultDataStoreName": "workspaceblobstore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_100439071946", + "displayName": "test_648830097390", "status": "Preparing", "experimentName": "dsl_pipeline_e2e", "services": { @@ -1000,12 +1002,12 @@ "_source": "DSL" }, "jobs": { - "test_184820533507": { + "test_660390936270": { "resources": null, "distribution": null, "limits": null, "environment_variables": {}, - "name": "test_184820533507", + "name": "test_660390936270", "type": "command", "display_name": null, "tags": {}, @@ -1021,15 +1023,16 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191" }, - "test_184820533507_1": { + "test_660390936270_1": { "resources": null, "distribution": null, "limits": null, "environment_variables": {}, - "name": "test_184820533507_1", + "name": "test_660390936270_1", "type": "command", "display_name": null, "tags": {}, @@ -1045,8 +1048,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191" } }, "inputs": { @@ -1071,7 +1075,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T02:04:27.6047661\u002B00:00", + "createdAt": "2022-09-23T16:17:49.4932494\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } @@ -1079,7 +1083,7 @@ } ], "Variables": { - "component_name": "test_184820533507", - "pipeline_name": "test_100439071946" + "component_name": "test_660390936270", + "pipeline_name": "test_648830097390" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_command_component_create_from_remote.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_command_component_create_from_remote.json index 04500715237e..98267bc349b7 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_command_component_create_from_remote.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_command_component_create_from_remote.json @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:05:16 GMT", + "Date": "Fri, 23 Sep 2022 16:18:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-aa4198552594ad4cd5d3c61d0b4607d8-f51fcb3a10f0c80e-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-9f52ede512703f9c55026d7efdeb2461-a9b117811c4351b6-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e7f49170-0679-480b-9880-53a7e69e5167", + "x-ms-correlation-request-id": "d0c947cd-5404-4e33-8abc-5285553ff280", "x-ms-ratelimit-remaining-subscription-reads": "11990", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020516Z:e7f49170-0679-480b-9880-53a7e69e5167", - "x-request-time": "0.126" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161857Z:d0c947cd-5404-4e33-8abc-5285553ff280", + "x-request-time": "0.106" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/microsoftsamples_command_component_basic/versions/0.0.1", @@ -76,7 +76,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -86,10 +86,10 @@ } }, "systemData": { - "createdAt": "2022-09-20T04:00:52.1302541\u002B00:00", + "createdAt": "2022-09-23T15:21:21.8475494\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-20T04:00:52.3447403\u002B00:00", + "lastModifiedAt": "2022-09-23T15:21:22.0816072\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -110,24 +110,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:05:17 GMT", + "Date": "Fri, 23 Sep 2022 16:18:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-cd53fb2323d2f0b0fbfce605a7f07065-f40732bc34ef89fd-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-d9dda105538ffda3c059a20464f6595c-ace2e12520fba7f2-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2bd6081a-98e9-4797-9eb3-f60c37927e0a", + "x-ms-correlation-request-id": "b1b3e74f-f833-4aba-986e-a07f576627c2", "x-ms-ratelimit-remaining-subscription-reads": "11989", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020517Z:2bd6081a-98e9-4797-9eb3-f60c37927e0a", - "x-request-time": "0.144" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161857Z:b1b3e74f-f833-4aba-986e-a07f576627c2", + "x-request-time": "0.123" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/microsoftsamples_command_component_basic/versions/0.0.1", @@ -171,7 +171,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -181,10 +181,10 @@ } }, "systemData": { - "createdAt": "2022-09-20T04:00:52.1302541\u002B00:00", + "createdAt": "2022-09-23T15:21:21.8475494\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-20T04:00:52.3447403\u002B00:00", + "lastModifiedAt": "2022-09-23T15:21:22.0816072\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -205,24 +205,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:05:19 GMT", + "Date": "Fri, 23 Sep 2022 16:18:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-5529f75b9f2fed9bc0607f39796e91b2-a8f7e66393298f21-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-0e7426273ef8b5533e52fc737f0c1bc9-a6efbd724c3851cb-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "63c27990-4ce3-47cf-adfa-c578948652ba", + "x-ms-correlation-request-id": "46a5b84b-6058-479a-9ea4-217256b047c1", "x-ms-ratelimit-remaining-subscription-reads": "11988", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020519Z:63c27990-4ce3-47cf-adfa-c578948652ba", - "x-request-time": "0.035" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161859Z:46a5b84b-6058-479a-9ea4-217256b047c1", + "x-request-time": "0.052" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -231,8 +231,8 @@ "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T11:47:20.6013506\u002B00:00", - "modifiedOn": "2022-09-15T11:47:27.309088\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -261,7 +261,7 @@ "preemptedNodeCount": 0 }, "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-21T02:03:08.787\u002B00:00", + "allocationStateTransitionTime": "2022-09-23T16:00:46.691\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -279,7 +279,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "2336", + "Content-Length": "2371", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -292,7 +292,7 @@ "tag": "tagvalue" }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", - "displayName": "test_990867958827", + "displayName": "test_33037840884", "experimentName": "dsl_pipeline_e2e", "isArchived": false, "jobType": "Pipeline", @@ -339,6 +339,7 @@ "job_output_type": "uri_folder" } }, + "properties": {}, "_source": "REMOTE.WORKSPACE.COMPONENT", "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/microsoftsamples_command_component_basic/versions/0.0.1" }, @@ -371,6 +372,7 @@ "type": "literal" } }, + "properties": {}, "_source": "REMOTE.WORKSPACE.COMPONENT", "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/microsoftsamples_command_component_basic/versions/0.0.1" } @@ -388,22 +390,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "5083", + "Content-Length": "5134", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:05:26 GMT", + "Date": "Fri, 23 Sep 2022 16:19:06 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-627ce320b06b845c11765cbad2e44fd6-289a8d23dda30e64-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-f7180043d1be7997d75716cac1a0f8cd-16f59cffeafb5819-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5f17e2eb-6389-4247-ab98-54454d30d479", + "x-ms-correlation-request-id": "1a47e41e-c732-46ad-be9e-277b336c6093", "x-ms-ratelimit-remaining-subscription-writes": "1184", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020526Z:5f17e2eb-6389-4247-ab98-54454d30d479", - "x-request-time": "3.290" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161907Z:1a47e41e-c732-46ad-be9e-277b336c6093", + "x-request-time": "3.137" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -427,7 +429,7 @@ "azureml.defaultDataStoreName": "workspaceblobstore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_990867958827", + "displayName": "test_33037840884", "status": "Preparing", "experimentName": "dsl_pipeline_e2e", "services": { @@ -485,6 +487,7 @@ "job_output_type": "uri_folder" } }, + "properties": {}, "_source": "REMOTE.WORKSPACE.COMPONENT", "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/microsoftsamples_command_component_basic/versions/0.0.1" }, @@ -517,6 +520,7 @@ "type": "literal" } }, + "properties": {}, "_source": "REMOTE.WORKSPACE.COMPONENT", "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/microsoftsamples_command_component_basic/versions/0.0.1" } @@ -550,7 +554,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T02:05:26.3381434\u002B00:00", + "createdAt": "2022-09-23T16:19:06.6795017\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } @@ -558,6 +562,6 @@ } ], "Variables": { - "pipeline_name": "test_990867958827" + "pipeline_name": "test_33037840884" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_command_component_create_with_output.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_command_component_create_with_output.json index 74c1b6209db5..36d10bee5b50 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_command_component_create_with_output.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_command_component_create_with_output.json @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:04:54 GMT", + "Date": "Fri, 23 Sep 2022 16:18:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-9983cd0180f8fb3b7f449f456056f447-ee6f324416ad6d78-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-c5fab185fdf4b338abf84a3c74bfc668-72d621602ff30e70-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "486a1010-d26b-4340-a383-074d1c7ab2f0", + "x-ms-correlation-request-id": "31c2466c-87a0-4a05-815d-3f430c5828fc", "x-ms-ratelimit-remaining-subscription-reads": "11993", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020454Z:486a1010-d26b-4340-a383-074d1c7ab2f0", - "x-request-time": "0.054" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161836Z:31c2466c-87a0-4a05-815d-3f430c5828fc", + "x-request-time": "0.061" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -41,8 +41,8 @@ "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T11:47:20.6013506\u002B00:00", - "modifiedOn": "2022-09-15T11:47:27.309088\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -71,7 +71,7 @@ "preemptedNodeCount": 0 }, "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-21T02:03:08.787\u002B00:00", + "allocationStateTransitionTime": "2022-09-23T16:00:46.691\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -97,24 +97,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:04:56 GMT", + "Date": "Fri, 23 Sep 2022 16:18:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-febeb14716114aea826d9664c95fde94-e2ceb924e8f09fb3-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-c19b8f52b6d15426c653980b2349f88b-14decd4817207d2f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "324342d0-1ead-496e-b42d-585ff3b65de0", + "x-ms-correlation-request-id": "76d67a68-af69-4dc3-b0b0-4a2b4c4bb333", "x-ms-ratelimit-remaining-subscription-reads": "11992", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020456Z:324342d0-1ead-496e-b42d-585ff3b65de0", - "x-request-time": "0.079" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161838Z:76d67a68-af69-4dc3-b0b0-4a2b4c4bb333", + "x-request-time": "0.213" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -129,17 +129,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -161,21 +161,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:04:57 GMT", + "Date": "Fri, 23 Sep 2022 16:18:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-9367f992ab464ad6503d1344d454cdce-5ec5ff35f0d26f77-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-01cd40cd4707f63f151acbba1deea51f-0dcc526ca20ec3d9-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e7c5210f-2515-42c9-a146-3e8c742a6e7e", + "x-ms-correlation-request-id": "678aebb0-b9f3-44f0-ad30-0cbf99b5f28b", "x-ms-ratelimit-remaining-subscription-writes": "1195", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020458Z:e7c5210f-2515-42c9-a146-3e8c742a6e7e", - "x-request-time": "0.115" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161839Z:678aebb0-b9f3-44f0-ad30-0cbf99b5f28b", + "x-request-time": "0.080" }, "ResponseBody": { "secretsType": "AccountKey", @@ -183,14 +183,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:04:59 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:18:41 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -200,9 +200,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 02:04:58 GMT", - "ETag": "\u00220x8DA9ABCB2F66FF1\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:00:47 GMT", + "Date": "Fri, 23 Sep 2022 16:18:38 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -211,10 +211,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:00:47 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ca7591cf-36a6-4425-bb3d-579cd587b206", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -223,20 +223,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:05:00 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:18:41 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 02:04:58 GMT", + "Date": "Fri, 23 Sep 2022 16:18:39 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -249,7 +249,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -267,7 +267,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -275,27 +275,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:04:59 GMT", + "Date": "Fri, 23 Sep 2022 16:18:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-2afc5f3807f382227130b9c81c528153-2dfb788c576cb9be-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-08b1ddf27d4a21ca4a195c0168039d2e-403a3045fff0c995-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dd25d0aa-9ed7-43eb-a6d4-6eb2009e5cea", + "x-ms-correlation-request-id": "2c7174d6-e41f-4ea8-9d2f-0dc1427468c4", "x-ms-ratelimit-remaining-subscription-writes": "1189", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020500Z:dd25d0aa-9ed7-43eb-a6d4-6eb2009e5cea", - "x-request-time": "0.070" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161840Z:2c7174d6-e41f-4ea8-9d2f-0dc1427468c4", + "x-request-time": "0.098" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -307,13 +307,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-20T04:00:48.9804975\u002B00:00", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:04:59.9417603\u002B00:00", + "lastModifiedAt": "2022-09-23T16:18:40.2699435\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -342,7 +342,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo $[[${{inputs.component_in_number}}]] \u0026 echo ${{inputs.component_in_path}} \u0026 echo ${{outputs.component_out_path}} \u003E ${{outputs.component_out_path}}/component_in_number", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "description": "This is the basic command component", @@ -381,24 +381,24 @@ "Cache-Control": "no-cache", "Content-Length": "2416", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:05:00 GMT", + "Date": "Fri, 23 Sep 2022 16:18:41 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-2c386cab03617d28fb39239960de927f-c898e14cc24ed9eb-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-eec1f503d67934674ddbbc17ed4b4fd5-805d5af83eb919c2-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "00c48224-79a1-4bc0-9b88-5bb40794f723", + "x-ms-correlation-request-id": "4738c7ed-7875-4910-8f30-b39c3a0f03ba", "x-ms-ratelimit-remaining-subscription-writes": "1188", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020501Z:00c48224-79a1-4bc0-9b88-5bb40794f723", - "x-request-time": "0.345" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161841Z:4738c7ed-7875-4910-8f30-b39c3a0f03ba", + "x-request-time": "0.364" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32", - "name": "2a153b3f-78e1-419b-8273-bfc76c28df32", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191", + "name": "bf151e23-da4f-4101-bf39-8bf62d31a191", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -411,7 +411,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "2a153b3f-78e1-419b-8273-bfc76c28df32", + "version": "bf151e23-da4f-4101-bf39-8bf62d31a191", "display_name": "CommandComponentBasic", "is_deterministic": "True", "type": "command", @@ -438,7 +438,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -448,10 +448,10 @@ } }, "systemData": { - "createdAt": "2022-09-20T04:04:55.6745883\u002B00:00", + "createdAt": "2022-09-23T16:11:01.2843263\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-20T04:04:55.8538952\u002B00:00", + "lastModifiedAt": "2022-09-23T16:11:01.4598118\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -472,24 +472,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:05:01 GMT", + "Date": "Fri, 23 Sep 2022 16:18:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-b7246625bb97f80f3d70b8cb70fb8320-1419c785706e38f4-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-01f33c4afedfa6e46e07ffa1a5519b28-66bb47e3f158d44f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8b2497bb-89c2-4286-8502-e684cba8b8ea", + "x-ms-correlation-request-id": "a2838b10-ad41-4904-848f-8533d8767dfd", "x-ms-ratelimit-remaining-subscription-reads": "11991", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020501Z:8b2497bb-89c2-4286-8502-e684cba8b8ea", - "x-request-time": "0.089" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161842Z:a2838b10-ad41-4904-848f-8533d8767dfd", + "x-request-time": "0.092" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -504,17 +504,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -536,21 +536,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:05:02 GMT", + "Date": "Fri, 23 Sep 2022 16:18:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-18851d28e5fc86e526c5c396c2ecccb7-da7fc2b6e8470499-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-9305c873ab3d334eff8aa0831c606d8b-662b6855275d0f37-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a499044e-cdd2-4185-adf1-04baf231069c", + "x-ms-correlation-request-id": "f097b66c-6b56-4826-88a2-74b8f1230ff0", "x-ms-ratelimit-remaining-subscription-writes": "1194", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020502Z:a499044e-cdd2-4185-adf1-04baf231069c", - "x-request-time": "0.113" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161842Z:f097b66c-6b56-4826-88a2-74b8f1230ff0", + "x-request-time": "0.118" }, "ResponseBody": { "secretsType": "AccountKey", @@ -558,14 +558,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:05:04 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:18:45 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -575,9 +575,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 02:05:03 GMT", - "ETag": "\u00220x8DA9ABCB2F66FF1\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:00:47 GMT", + "Date": "Fri, 23 Sep 2022 16:18:42 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -586,10 +586,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:00:47 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ca7591cf-36a6-4425-bb3d-579cd587b206", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -598,20 +598,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:05:04 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:18:45 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 02:05:03 GMT", + "Date": "Fri, 23 Sep 2022 16:18:43 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -624,7 +624,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -642,7 +642,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -650,27 +650,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:05:04 GMT", + "Date": "Fri, 23 Sep 2022 16:18:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-eec094d6709ee7eb3eabc04f20f6d799-47ac017bd1c9a9b4-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-a886ae63e52c56581b9f3f3d91acfeed-4d09ea99dd6560b1-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "191bd4bb-91f1-4734-a853-df5fce25ba99", + "x-ms-correlation-request-id": "4f189250-2941-4041-af35-9f44d03cc38e", "x-ms-ratelimit-remaining-subscription-writes": "1187", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020504Z:191bd4bb-91f1-4734-a853-df5fce25ba99", - "x-request-time": "0.141" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161844Z:4f189250-2941-4041-af35-9f44d03cc38e", + "x-request-time": "0.085" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -682,13 +682,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-20T04:00:48.9804975\u002B00:00", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:05:04.64348\u002B00:00", + "lastModifiedAt": "2022-09-23T16:18:44.5071157\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -717,7 +717,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo $[[${{inputs.component_in_number}}]] \u0026 echo ${{inputs.component_in_path}} \u0026 echo ${{outputs.component_out_path}} \u003E ${{outputs.component_out_path}}/component_in_number", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "description": "This is the basic command component", @@ -756,24 +756,24 @@ "Cache-Control": "no-cache", "Content-Length": "2416", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:05:05 GMT", + "Date": "Fri, 23 Sep 2022 16:18:45 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-8f46395aca300b20cdf80efe4859f3ca-20cf139727b8491c-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-88db7b12ff068de5ea2ba10005b8c14e-5404651ec55c1a05-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f5ded349-d848-433f-a1f7-5a3b78bfd014", + "x-ms-correlation-request-id": "ba5c03ba-fb05-40a1-bb6f-9d906786ec24", "x-ms-ratelimit-remaining-subscription-writes": "1186", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020505Z:f5ded349-d848-433f-a1f7-5a3b78bfd014", - "x-request-time": "0.317" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161845Z:ba5c03ba-fb05-40a1-bb6f-9d906786ec24", + "x-request-time": "0.342" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32", - "name": "2a153b3f-78e1-419b-8273-bfc76c28df32", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191", + "name": "bf151e23-da4f-4101-bf39-8bf62d31a191", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -786,7 +786,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "2a153b3f-78e1-419b-8273-bfc76c28df32", + "version": "bf151e23-da4f-4101-bf39-8bf62d31a191", "display_name": "CommandComponentBasic", "is_deterministic": "True", "type": "command", @@ -813,7 +813,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -823,10 +823,10 @@ } }, "systemData": { - "createdAt": "2022-09-20T04:04:55.6745883\u002B00:00", + "createdAt": "2022-09-23T16:11:01.2843263\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-20T04:04:55.8538952\u002B00:00", + "lastModifiedAt": "2022-09-23T16:11:01.4598118\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -839,7 +839,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "2202", + "Content-Length": "2239", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -852,7 +852,7 @@ "tag": "tagvalue" }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", - "displayName": "test_72466976822", + "displayName": "test_399695890395", "experimentName": "dsl_pipeline_e2e", "isArchived": false, "jobType": "Pipeline", @@ -892,8 +892,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191" }, "node2": { "resources": null, @@ -921,8 +922,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191" } }, "outputs": { @@ -938,22 +940,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4845", + "Content-Length": "4898", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:05:12 GMT", + "Date": "Fri, 23 Sep 2022 16:18:52 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-fead8c996105c57c4fc8f72749861731-bd61968fb7b87f25-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-1075efb706a78c6b542451d1fa1ac914-52d64106bd5d0b08-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2c1ee767-dcfb-4228-b87b-5da7a944ac90", + "x-ms-correlation-request-id": "fd2c5710-9de7-48bb-9734-776286cb4126", "x-ms-ratelimit-remaining-subscription-writes": "1185", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020512Z:2c1ee767-dcfb-4228-b87b-5da7a944ac90", - "x-request-time": "3.240" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161852Z:fd2c5710-9de7-48bb-9734-776286cb4126", + "x-request-time": "3.650" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -977,7 +979,7 @@ "azureml.defaultDataStoreName": "workspaceblobstore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_72466976822", + "displayName": "test_399695890395", "status": "Preparing", "experimentName": "dsl_pipeline_e2e", "services": { @@ -1028,8 +1030,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191" }, "node2": { "resources": null, @@ -1057,8 +1060,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191" } }, "inputs": { @@ -1090,7 +1094,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T02:05:12.3681514\u002B00:00", + "createdAt": "2022-09-23T16:18:52.3444588\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } @@ -1098,7 +1102,7 @@ } ], "Variables": { - "component_name": "test_97613229863", - "pipeline_name": "test_72466976822" + "component_name": "test_63924099983", + "pipeline_name": "test_399695890395" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_command_function.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_command_function.json index 31fd41e6deae..0196e08e0a4f 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_command_function.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_command_function.json @@ -15,11 +15,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 05:43:35 GMT", + "Date": "Fri, 23 Sep 2022 16:20:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-9ed40fcad98fd1cff8757700be23763a-750139f139954d21-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-e518f2b63523e381058c22871e413327-eac29017aa8d95b0-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -28,11 +28,11 @@ ], "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4c0da48e-c682-4010-98a6-9091cabfa3cb", - "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-correlation-request-id": "a1510f06-7038-4000-87bd-a9aedb276a74", + "x-ms-ratelimit-remaining-subscription-reads": "11975", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T054336Z:4c0da48e-c682-4010-98a6-9091cabfa3cb", - "x-request-time": "0.036" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162024Z:a1510f06-7038-4000-87bd-a9aedb276a74", + "x-request-time": "0.074" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -41,8 +41,8 @@ "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T11:47:20.6013506\u002B00:00", - "modifiedOn": "2022-09-15T11:47:27.309088\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -61,7 +61,7 @@ }, "subnet": null, "currentNodeCount": 0, - "targetNodeCount": 0, + "targetNodeCount": 3, "nodeStateCounts": { "preparingNodeCount": 0, "runningNodeCount": 0, @@ -70,8 +70,8 @@ "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-21T04:19:27.614\u002B00:00", + "allocationState": "Resizing", + "allocationStateTransitionTime": "2022-09-23T16:19:36.368\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -97,24 +97,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 05:43:39 GMT", + "Date": "Fri, 23 Sep 2022 16:20:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-aada8864bac36a1b0ad87b37f8b6b459-e47f7b3100765e21-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-ea77985edb1d8699c96a006a51763e82-78adb44d52043cd9-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "de8c9c70-0304-4b3c-81f7-e6fbd31d6e96", - "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-correlation-request-id": "64db69cc-a72f-4526-bf10-6ae89427f976", + "x-ms-ratelimit-remaining-subscription-reads": "11974", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T054340Z:de8c9c70-0304-4b3c-81f7-e6fbd31d6e96", - "x-request-time": "0.692" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162026Z:64db69cc-a72f-4526-bf10-6ae89427f976", + "x-request-time": "0.082" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -129,17 +129,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -161,21 +161,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 05:43:40 GMT", + "Date": "Fri, 23 Sep 2022 16:20:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-1e163648df13a4f4da9becccbb7e485f-472e4e707195d198-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-fedff891c63e5f98a2304a4f259c574d-8fc7ed117f2210f4-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "923aa7a9-fc3d-446f-827f-18e603e6f2d2", - "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-correlation-request-id": "63b9b0b1-e26e-4084-8972-a6594df1ad98", + "x-ms-ratelimit-remaining-subscription-writes": "1185", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T054341Z:923aa7a9-fc3d-446f-827f-18e603e6f2d2", - "x-request-time": "0.303" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162027Z:63b9b0b1-e26e-4084-8972-a6594df1ad98", + "x-request-time": "0.092" }, "ResponseBody": { "secretsType": "AccountKey", @@ -183,14 +183,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 05:43:43 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:20:29 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -200,9 +200,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 05:43:43 GMT", - "ETag": "\u00220x8DA9ABCB2F66FF1\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:00:47 GMT", + "Date": "Fri, 23 Sep 2022 16:20:27 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -211,10 +211,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:00:47 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ca7591cf-36a6-4425-bb3d-579cd587b206", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -223,20 +223,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 05:43:44 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:20:30 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 05:43:43 GMT", + "Date": "Fri, 23 Sep 2022 16:20:27 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -249,7 +249,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -267,7 +267,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -275,27 +275,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 05:43:47 GMT", + "Date": "Fri, 23 Sep 2022 16:20:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-4b17813e3a584042cc5db993a95e14d1-263c7f4a9bd64457-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-af01c073c05a2238d30241ee672d2203-241fc25053ee6e61-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8556b0f5-afa6-4e10-b2c6-5c3aa53bd43d", - "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-correlation-request-id": "cde2f880-f2e2-4e1a-9c11-173c97747cd5", + "x-ms-ratelimit-remaining-subscription-writes": "1167", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T054347Z:8556b0f5-afa6-4e10-b2c6-5c3aa53bd43d", - "x-request-time": "0.619" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162028Z:cde2f880-f2e2-4e1a-9c11-173c97747cd5", + "x-request-time": "0.080" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -307,13 +307,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-20T04:00:48.9804975\u002B00:00", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T05:43:47.192153\u002B00:00", + "lastModifiedAt": "2022-09-23T16:20:28.7360075\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -342,7 +342,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo $[[${{inputs.component_in_number}}]] \u0026 echo ${{inputs.component_in_path}} \u0026 echo ${{outputs.component_out_path}} \u003E ${{outputs.component_out_path}}/component_in_number", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "description": "This is the basic command component", @@ -381,24 +381,24 @@ "Cache-Control": "no-cache", "Content-Length": "2421", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 05:43:49 GMT", + "Date": "Fri, 23 Sep 2022 16:20:29 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-687e68bd5921cbaf529f478988d02df2-bade3d811bd533f7-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-571cd92ff40e882a0d33e690eb155ae7-9ddcc5fae703c61c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7fb6a8a0-2c58-4b53-8812-528277253f1b", - "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-correlation-request-id": "685a0ea9-dac1-4d22-992d-57c5b89692e0", + "x-ms-ratelimit-remaining-subscription-writes": "1166", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T054349Z:7fb6a8a0-2c58-4b53-8812-528277253f1b", - "x-request-time": "1.216" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162029Z:685a0ea9-dac1-4d22-992d-57c5b89692e0", + "x-request-time": "0.562" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/4c44959d-6d51-4d8d-aa5c-7e4c41411870", - "name": "4c44959d-6d51-4d8d-aa5c-7e4c41411870", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/00d19df5-cf1c-490b-860f-cb17c39f5939", + "name": "00d19df5-cf1c-490b-860f-cb17c39f5939", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -411,7 +411,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "4c44959d-6d51-4d8d-aa5c-7e4c41411870", + "version": "00d19df5-cf1c-490b-860f-cb17c39f5939", "display_name": "test_command_function_node", "is_deterministic": "True", "type": "command", @@ -438,7 +438,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -448,10 +448,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T01:17:29.7524852\u002B00:00", + "createdAt": "2022-09-23T16:20:29.6606678\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T01:17:29.8963566\u002B00:00", + "lastModifiedAt": "2022-09-23T16:20:29.6606678\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -472,24 +472,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 05:43:50 GMT", + "Date": "Fri, 23 Sep 2022 16:20:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-facf2c82f47bb8ed146c3e31e8448464-f30773a8ac488d41-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-3d2a98a36a6ced9fd5d0bba7d9d9f080-12de03788fafc402-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bac678c6-d659-4254-b077-43fecec6d9c2", - "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-correlation-request-id": "d1967ba6-f141-4fe6-b7ed-7033cd25a330", + "x-ms-ratelimit-remaining-subscription-reads": "11973", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T054350Z:bac678c6-d659-4254-b077-43fecec6d9c2", - "x-request-time": "0.112" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162030Z:d1967ba6-f141-4fe6-b7ed-7033cd25a330", + "x-request-time": "0.184" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -504,17 +504,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -536,21 +536,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 05:43:50 GMT", + "Date": "Fri, 23 Sep 2022 16:20:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-19f1bcb914ea7f55abbee533afa20450-ea5bea951c03bd51-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-c78a4c2db9973b00a0fc724bbb292511-7231862978d289be-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5eb4865b-de83-48e1-99ad-46331bc36f3e", - "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-correlation-request-id": "b54f4cf4-16cf-4c5c-830d-b4bd35f13ce2", + "x-ms-ratelimit-remaining-subscription-writes": "1184", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T054351Z:5eb4865b-de83-48e1-99ad-46331bc36f3e", - "x-request-time": "0.094" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162031Z:b54f4cf4-16cf-4c5c-830d-b4bd35f13ce2", + "x-request-time": "0.086" }, "ResponseBody": { "secretsType": "AccountKey", @@ -558,14 +558,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 05:43:52 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:20:33 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -575,9 +575,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 05:43:51 GMT", - "ETag": "\u00220x8DA9ABCB2F66FF1\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:00:47 GMT", + "Date": "Fri, 23 Sep 2022 16:20:31 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -586,10 +586,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:00:47 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ca7591cf-36a6-4425-bb3d-579cd587b206", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -598,20 +598,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 05:43:53 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:20:33 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 05:43:51 GMT", + "Date": "Fri, 23 Sep 2022 16:20:31 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -624,7 +624,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -642,7 +642,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -650,27 +650,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 05:43:53 GMT", + "Date": "Fri, 23 Sep 2022 16:20:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-016190db12d929068fcd06058c9b0630-955705b7707d6ab7-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-09f2874513db957151e2ee7091815a3c-c1469e8ea6daaecb-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "00761913-0fb5-4ba2-a174-04ddd240afe2", - "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-correlation-request-id": "e4a4745b-1817-4f2b-a29a-39c3a81b06f9", + "x-ms-ratelimit-remaining-subscription-writes": "1165", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T054353Z:00761913-0fb5-4ba2-a174-04ddd240afe2", - "x-request-time": "0.084" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162032Z:e4a4745b-1817-4f2b-a29a-39c3a81b06f9", + "x-request-time": "0.077" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -682,13 +682,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-20T04:00:48.9804975\u002B00:00", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T05:43:53.1858427\u002B00:00", + "lastModifiedAt": "2022-09-23T16:20:32.523654\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -713,7 +713,7 @@ "isArchived": false, "componentSpec": { "command": "echo \u0022hello world\u0022", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": 2 @@ -750,26 +750,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2057", + "Content-Length": "2058", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 05:43:55 GMT", + "Date": "Fri, 23 Sep 2022 16:20:33 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-60c0b96e42f8c0871c9b37187177495d-712a5b63f3941df5-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-d5cb4cbc99f4987daf93c93328ad5eb2-94b09326ff6cff9e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6b9d2244-441f-4882-802f-0b79276a2f96", - "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-correlation-request-id": "373412a3-e395-48c1-8535-08219ec109b6", + "x-ms-ratelimit-remaining-subscription-writes": "1164", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T054355Z:6b9d2244-441f-4882-802f-0b79276a2f96", - "x-request-time": "0.422" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162034Z:373412a3-e395-48c1-8535-08219ec109b6", + "x-request-time": "0.575" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/18606cfe-c9ec-4084-b737-392dc4751205", - "name": "18606cfe-c9ec-4084-b737-392dc4751205", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/8ee29b13-6acc-4565-985c-aeffb40eb0d8", + "name": "8ee29b13-6acc-4565-985c-aeffb40eb0d8", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -779,7 +779,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "18606cfe-c9ec-4084-b737-392dc4751205", + "version": "8ee29b13-6acc-4565-985c-aeffb40eb0d8", "display_name": "node2", "is_deterministic": "True", "type": "command", @@ -799,7 +799,7 @@ "type": "mlflow_model" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "2" @@ -813,10 +813,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T01:17:34.6148556\u002B00:00", + "createdAt": "2022-09-23T16:20:33.7001148\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T01:17:34.806211\u002B00:00", + "lastModifiedAt": "2022-09-23T16:20:33.7001148\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -837,24 +837,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 05:43:56 GMT", + "Date": "Fri, 23 Sep 2022 16:20:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-61ce5fafe46e06555d0c8dc8194a64aa-fbff8f272abc5f97-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-7fd2904dfbd4ba969d516ac127f0ee3f-8ae8feb7e1f136f0-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "abf63569-1eab-436b-8207-214da415d024", - "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-correlation-request-id": "15b0e474-0aee-4d0c-b70b-3d287abb1560", + "x-ms-ratelimit-remaining-subscription-reads": "11972", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T054356Z:abf63569-1eab-436b-8207-214da415d024", - "x-request-time": "0.101" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162034Z:15b0e474-0aee-4d0c-b70b-3d287abb1560", + "x-request-time": "0.087" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -869,17 +869,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -901,21 +901,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 05:43:57 GMT", + "Date": "Fri, 23 Sep 2022 16:20:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-634c3e1ec0c9d58e5138eb1a25c84ae2-92ab2cd959483d03-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-fa361fb98e8d03331bdad17685e4f068-12656670177aec89-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "64bda73a-cde0-4893-a2be-233e76c47cfb", - "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-correlation-request-id": "92f7f8b6-ad89-496b-94d5-7dea0c8ac252", + "x-ms-ratelimit-remaining-subscription-writes": "1183", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T054357Z:64bda73a-cde0-4893-a2be-233e76c47cfb", - "x-request-time": "0.112" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162035Z:92f7f8b6-ad89-496b-94d5-7dea0c8ac252", + "x-request-time": "0.083" }, "ResponseBody": { "secretsType": "AccountKey", @@ -923,14 +923,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 05:43:59 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:20:37 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -940,9 +940,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 05:43:57 GMT", - "ETag": "\u00220x8DA9ABCB2F66FF1\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:00:47 GMT", + "Date": "Fri, 23 Sep 2022 16:20:35 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -951,10 +951,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:00:47 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ca7591cf-36a6-4425-bb3d-579cd587b206", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -963,20 +963,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 05:43:59 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:20:37 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 05:43:58 GMT", + "Date": "Fri, 23 Sep 2022 16:20:35 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -989,7 +989,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -1007,7 +1007,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -1015,27 +1015,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 05:44:00 GMT", + "Date": "Fri, 23 Sep 2022 16:20:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-1b4b13b85c345cf5277fea0fa68cf672-1392840410554c90-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-14291bc232b951a700e86bc69f2b1733-cae8bbd0ad5d9f68-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5382a395-6597-4120-8cf0-57c77710f195", - "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-correlation-request-id": "6e10e7d1-8d44-4288-904d-4db20de356cd", + "x-ms-ratelimit-remaining-subscription-writes": "1163", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T054400Z:5382a395-6597-4120-8cf0-57c77710f195", - "x-request-time": "0.076" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162036Z:6e10e7d1-8d44-4288-904d-4db20de356cd", + "x-request-time": "0.068" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -1047,13 +1047,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-20T04:00:48.9804975\u002B00:00", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T05:44:00.1912119\u002B00:00", + "lastModifiedAt": "2022-09-23T16:20:36.6208903\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -1078,7 +1078,7 @@ "isArchived": false, "componentSpec": { "command": "echo \u0022hello world\u0022", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": 2 @@ -1118,24 +1118,24 @@ "Cache-Control": "no-cache", "Content-Length": "2073", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 05:44:01 GMT", + "Date": "Fri, 23 Sep 2022 16:20:37 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-9138bfaa30616a1fc217b81844ab13b7-656c5138669b8c38-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-b2c9b94a21c51498e4535168812ded90-59245cfb8b51aa24-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "41dcd979-9595-4b57-8cc8-ae73f67ac4e7", - "x-ms-ratelimit-remaining-subscription-writes": "1194", + "x-ms-correlation-request-id": "3ee13594-33e6-4999-b160-baf55b741be4", + "x-ms-ratelimit-remaining-subscription-writes": "1162", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T054401Z:41dcd979-9595-4b57-8cc8-ae73f67ac4e7", - "x-request-time": "0.361" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162037Z:3ee13594-33e6-4999-b160-baf55b741be4", + "x-request-time": "0.521" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/4fefca38-5351-4656-9648-7b9a10bd9701", - "name": "4fefca38-5351-4656-9648-7b9a10bd9701", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/46f42b24-b5a2-46c8-93b0-15095d56054b", + "name": "46f42b24-b5a2-46c8-93b0-15095d56054b", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1145,7 +1145,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "4fefca38-5351-4656-9648-7b9a10bd9701", + "version": "46f42b24-b5a2-46c8-93b0-15095d56054b", "display_name": "command-function-job", "is_deterministic": "True", "type": "command", @@ -1165,7 +1165,7 @@ "type": "mlflow_model" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "2" @@ -1179,10 +1179,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T01:17:38.9860421\u002B00:00", + "createdAt": "2022-09-23T16:20:37.5605732\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T01:17:39.1584584\u002B00:00", + "lastModifiedAt": "2022-09-23T16:20:37.5605732\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -1195,7 +1195,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "2963", + "Content-Length": "3017", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -1208,7 +1208,7 @@ "tag": "tagvalue" }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", - "displayName": "test_551270351930", + "displayName": "test_800228473883", "experimentName": "mixed_pipeline", "isArchived": false, "jobType": "Pipeline", @@ -1244,8 +1244,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/4c44959d-6d51-4d8d-aa5c-7e4c41411870" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/00d19df5-cf1c-490b-860f-cb17c39f5939" }, "node2": { "resources": { @@ -1274,8 +1275,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "CLASS", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/18606cfe-c9ec-4084-b737-392dc4751205" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/8ee29b13-6acc-4565-985c-aeffb40eb0d8" }, "node3": { "resources": { @@ -1311,8 +1313,9 @@ "type": "literal" } }, + "properties": {}, "_source": "BUILDER", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/4fefca38-5351-4656-9648-7b9a10bd9701" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/46f42b24-b5a2-46c8-93b0-15095d56054b" } }, "outputs": { @@ -1328,22 +1331,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "5876", + "Content-Length": "5954", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 05:44:10 GMT", + "Date": "Fri, 23 Sep 2022 16:20:45 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-412ae21bdf831edef647608f75f0fb5d-7b3b2062212406a4-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-ccded0577848a5b1466d5feeb44b71e2-b364371d174d903f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "49dff607-4881-4ffe-880b-0222ee52c9c9", - "x-ms-ratelimit-remaining-subscription-writes": "1193", + "x-ms-correlation-request-id": "d60369e2-cac3-4e29-88e7-6ac763355756", + "x-ms-ratelimit-remaining-subscription-writes": "1161", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T054411Z:49dff607-4881-4ffe-880b-0222ee52c9c9", - "x-request-time": "3.872" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162046Z:d60369e2-cac3-4e29-88e7-6ac763355756", + "x-request-time": "3.946" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -1367,7 +1370,7 @@ "azureml.defaultDataStoreName": "workspaceblobstore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_551270351930", + "displayName": "test_800228473883", "status": "Preparing", "experimentName": "mixed_pipeline", "services": { @@ -1418,8 +1421,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/4c44959d-6d51-4d8d-aa5c-7e4c41411870" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/00d19df5-cf1c-490b-860f-cb17c39f5939" }, "node2": { "resources": { @@ -1448,8 +1452,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "CLASS", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/18606cfe-c9ec-4084-b737-392dc4751205" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/8ee29b13-6acc-4565-985c-aeffb40eb0d8" }, "node3": { "resources": { @@ -1485,8 +1490,9 @@ "type": "literal" } }, + "properties": {}, "_source": "BUILDER", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/4fefca38-5351-4656-9648-7b9a10bd9701" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/46f42b24-b5a2-46c8-93b0-15095d56054b" } }, "inputs": { @@ -1513,7 +1519,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T05:44:10.6215429\u002B00:00", + "createdAt": "2022-09-23T16:20:45.5404425\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } @@ -1521,6 +1527,6 @@ } ], "Variables": { - "pipeline_name": "test_551270351930" + "pipeline_name": "test_800228473883" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_command_with_optional_inputs.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_command_with_optional_inputs.json index a3c5273e0831..0ee0870f478a 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_command_with_optional_inputs.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_command_with_optional_inputs.json @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 05:44:35 GMT", + "Date": "Fri, 23 Sep 2022 16:20:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-a181b4b8f8862928b8e61118b3f318d4-f1e4c7519a054229-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-176001cc9bf004c51aa99dcff34b6da8-37f976fe4f1a8848-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3c3e9570-0ec0-49af-a0ce-6b7942803b10", - "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-correlation-request-id": "6de73cd7-c25c-4224-9047-e7b328d4d62e", + "x-ms-ratelimit-remaining-subscription-reads": "11971", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T054435Z:3c3e9570-0ec0-49af-a0ce-6b7942803b10", - "x-request-time": "0.101" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162050Z:6de73cd7-c25c-4224-9047-e7b328d4d62e", + "x-request-time": "0.104" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -47,17 +47,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -79,21 +79,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 05:44:36 GMT", + "Date": "Fri, 23 Sep 2022 16:20:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-d3fb4909981afe51c54c2307671c082d-c9df60a825d33206-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-ddc2178610a87663e5f8ea40e41f265c-200f92ca0c6db722-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "47c62cab-3c59-4b12-ad82-d551e47b3115", - "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-correlation-request-id": "1a40d6e4-57d4-41a0-8517-d0adc904f936", + "x-ms-ratelimit-remaining-subscription-writes": "1182", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T054436Z:47c62cab-3c59-4b12-ad82-d551e47b3115", - "x-request-time": "0.146" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162051Z:1a40d6e4-57d4-41a0-8517-d0adc904f936", + "x-request-time": "0.131" }, "ResponseBody": { "secretsType": "AccountKey", @@ -101,14 +101,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 05:44:38 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:20:53 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -118,9 +118,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 05:44:37 GMT", - "ETag": "\u00220x8DA9ABCB2F66FF1\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:00:47 GMT", + "Date": "Fri, 23 Sep 2022 16:20:51 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -129,10 +129,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:00:47 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ca7591cf-36a6-4425-bb3d-579cd587b206", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -141,20 +141,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 05:44:40 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:20:53 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 05:44:38 GMT", + "Date": "Fri, 23 Sep 2022 16:20:51 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -167,7 +167,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -185,7 +185,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -193,27 +193,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 05:44:41 GMT", + "Date": "Fri, 23 Sep 2022 16:20:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-874edf94e74088b2149d0ebf0f69e0f4-37433a02578a0d5a-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-ce0f24ca7d9d41424d206a237edbabeb-5082d5af0802bc26-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "268995fb-340e-46d8-830a-7b3ff79e55d7", - "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-correlation-request-id": "209d0de4-8d72-4558-97f3-1ee420338256", + "x-ms-ratelimit-remaining-subscription-writes": "1160", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T054441Z:268995fb-340e-46d8-830a-7b3ff79e55d7", - "x-request-time": "0.087" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162052Z:209d0de4-8d72-4558-97f3-1ee420338256", + "x-request-time": "0.091" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -225,20 +225,20 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-20T04:00:48.9804975\u002B00:00", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T05:44:40.9248108\u002B00:00", + "lastModifiedAt": "2022-09-23T16:20:52.4727527\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_optional_input_component_test_418804321478?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_optional_input_component_test_332640863166?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", @@ -252,24 +252,24 @@ "Cache-Control": "no-cache", "Content-Length": "1099", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 05:44:41 GMT", + "Date": "Fri, 23 Sep 2022 16:20:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3f5b5354-45d1-4b3b-9b06-7868cf54a425", - "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-correlation-request-id": "340563df-c9e1-41c1-9a62-b4c07f1beaa6", + "x-ms-ratelimit-remaining-subscription-reads": "11970", "x-ms-response-type": "error", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T054442Z:3f5b5354-45d1-4b3b-9b06-7868cf54a425", - "x-request-time": "0.128" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162053Z:340563df-c9e1-41c1-9a62-b4c07f1beaa6", + "x-request-time": "0.110" }, "ResponseBody": { "error": { "code": "UserError", - "message": "Not found component test_optional_input_component_test_418804321478.", + "message": "Not found component test_optional_input_component_test_332640863166.", "details": [], "additionalInfo": [ { @@ -282,8 +282,8 @@ "type": "Correlation", "info": { "value": { - "operation": "d478f2267fded656c5f1d578154b8d2b", - "request": "2072af02070a8af4" + "operation": "952e7ea19ed9538a5f36b309b3e393cb", + "request": "5a1f891c322a69ce" } } }, @@ -302,7 +302,7 @@ { "type": "Time", "info": { - "value": "2022-09-21T05:44:41.9220902\u002B00:00" + "value": "2022-09-23T16:20:53.1705455\u002B00:00" } }, { @@ -322,7 +322,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_optional_input_component_test_418804321478/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_optional_input_component_test_332640863166/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -340,7 +340,7 @@ "isArchived": false, "componentSpec": { "command": "echo \u0022hello world\u0022 \u0026 echo $[[${{inputs.float}}]] \u0026 echo $[[${{inputs.integer}}]] \u0026 echo $[[${{inputs.string}}]] \u0026 echo $[[${{inputs.boolean}}]] \u0026 echo ${{inputs.uri_folder}} \u0026 echo $[[${{inputs.optional_0}}]] \u0026 echo $[[${{inputs.optional_1}}]]\u0026 echo $[[${{inputs.optional_2}}]]", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": 2 @@ -349,7 +349,7 @@ "type": "pytorch", "process_count_per_instance": 2 }, - "name": "test_optional_input_component_test_418804321478", + "name": "test_optional_input_component_test_332640863166", "tags": {}, "display_name": "command_with_optional_inputs", "is_deterministic": true, @@ -410,23 +410,23 @@ "Cache-Control": "no-cache", "Content-Length": "3030", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 05:44:43 GMT", + "Date": "Fri, 23 Sep 2022 16:20:54 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_optional_input_component_test_418804321478/versions/1?api-version=2022-05-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_optional_input_component_test_332640863166/versions/1?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-ae0e6b130b3cb8b1fab156b0ebef3cb1-0cc4e859419828be-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-7cbaea15cc946576366dfbd5151644ed-6f197ecc8a6d463a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "55c0202f-ec86-4d71-94eb-28059daadb92", - "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-correlation-request-id": "7b16910e-05e0-4072-adc4-4c8e06739222", + "x-ms-ratelimit-remaining-subscription-writes": "1159", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T054444Z:55c0202f-ec86-4d71-94eb-28059daadb92", - "x-request-time": "0.841" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162054Z:7b16910e-05e0-4072-adc4-4c8e06739222", + "x-request-time": "0.740" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_optional_input_component_test_418804321478/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_optional_input_component_test_332640863166/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { @@ -436,7 +436,7 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_optional_input_component_test_418804321478", + "name": "test_optional_input_component_test_332640863166", "version": "1", "display_name": "command_with_optional_inputs", "is_deterministic": "True", @@ -489,7 +489,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "2" @@ -503,10 +503,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T05:44:43.5588192\u002B00:00", + "createdAt": "2022-09-23T16:20:54.1291118\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T05:44:43.7854064\u002B00:00", + "lastModifiedAt": "2022-09-23T16:20:54.3316752\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -527,11 +527,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 05:44:47 GMT", + "Date": "Fri, 23 Sep 2022 16:20:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-a0541614c30f9cce8dcbf197df071c04-b29b2fbf35f2c36e-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-4189d8f2dbfd5e098c229b9507453427-ef2c31b9d9e186f8-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -540,11 +540,11 @@ ], "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "55d6e5fd-99a4-4330-850a-f56b706f0c39", - "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-correlation-request-id": "61e77b9d-1f3e-4b1b-8f4a-0b6a8ac478f9", + "x-ms-ratelimit-remaining-subscription-reads": "11969", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T054447Z:55d6e5fd-99a4-4330-850a-f56b706f0c39", - "x-request-time": "0.031" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162057Z:61e77b9d-1f3e-4b1b-8f4a-0b6a8ac478f9", + "x-request-time": "0.057" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -553,8 +553,8 @@ "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T11:47:20.6013506\u002B00:00", - "modifiedOn": "2022-09-15T11:47:27.309088\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -573,7 +573,7 @@ }, "subnet": null, "currentNodeCount": 0, - "targetNodeCount": 0, + "targetNodeCount": 3, "nodeStateCounts": { "preparingNodeCount": 0, "runningNodeCount": 0, @@ -582,8 +582,8 @@ "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-21T04:19:27.614\u002B00:00", + "allocationState": "Resizing", + "allocationStateTransitionTime": "2022-09-23T16:19:36.368\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -609,24 +609,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 05:44:48 GMT", + "Date": "Fri, 23 Sep 2022 16:20:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-7694b300cf5831892dc8c7a5bdc81741-0b4a83b706022349-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-cca38888d1e0d837efaf653aebdd4481-b9b3365a437ade57-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ea9d0cda-3a9e-49bb-9e4b-292740b152d5", - "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-correlation-request-id": "e0183f73-1c16-444a-b4ae-1a6abea506a6", + "x-ms-ratelimit-remaining-subscription-reads": "11968", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T054448Z:ea9d0cda-3a9e-49bb-9e4b-292740b152d5", - "x-request-time": "0.078" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162057Z:e0183f73-1c16-444a-b4ae-1a6abea506a6", + "x-request-time": "0.145" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -641,17 +641,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -673,21 +673,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 05:44:49 GMT", + "Date": "Fri, 23 Sep 2022 16:20:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-fefff47cfecd2d25975aaf25aeab5477-5f1c92d1ec5cbf17-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-48f4a1ab39342a830d16d1c75137b849-df3b443d3e9c3b29-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "408848b8-1be1-4a07-92f8-c48ac8307e4d", - "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-correlation-request-id": "b5b5f9ec-9b95-41a7-b5dc-436d8bf311ae", + "x-ms-ratelimit-remaining-subscription-writes": "1181", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T054449Z:408848b8-1be1-4a07-92f8-c48ac8307e4d", - "x-request-time": "0.191" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162058Z:b5b5f9ec-9b95-41a7-b5dc-436d8bf311ae", + "x-request-time": "0.089" }, "ResponseBody": { "secretsType": "AccountKey", @@ -695,14 +695,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 05:44:51 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:21:00 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -712,9 +712,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 05:44:49 GMT", - "ETag": "\u00220x8DA9ABCB2F66FF1\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:00:47 GMT", + "Date": "Fri, 23 Sep 2022 16:20:58 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -723,10 +723,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:00:47 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ca7591cf-36a6-4425-bb3d-579cd587b206", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -735,20 +735,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 05:44:51 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:21:00 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 05:44:49 GMT", + "Date": "Fri, 23 Sep 2022 16:20:58 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -761,7 +761,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -779,7 +779,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -787,27 +787,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 05:44:51 GMT", + "Date": "Fri, 23 Sep 2022 16:20:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-6235903fa060f738bd0ee33db5de550f-c5b14637e55045c3-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-6eaef2d74ac37efb29505774d85c977c-c3a6f194013aab5f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f0233e86-21f3-4d2a-96f5-6ff8576c5bd2", - "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-correlation-request-id": "d6583391-b322-4a02-a0ed-94dcaa9e0429", + "x-ms-ratelimit-remaining-subscription-writes": "1158", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T054451Z:f0233e86-21f3-4d2a-96f5-6ff8576c5bd2", - "x-request-time": "0.095" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162059Z:d6583391-b322-4a02-a0ed-94dcaa9e0429", + "x-request-time": "0.068" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -819,13 +819,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-20T04:00:48.9804975\u002B00:00", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T05:44:51.1675815\u002B00:00", + "lastModifiedAt": "2022-09-23T16:20:59.4717376\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -854,7 +854,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo $[[${{inputs.component_in_number}}]] \u0026 echo $[[${{inputs.component_in_path_optional}}]] \u0026 echo ${{inputs.component_in_path}} \u0026 echo ${{outputs.component_out_path}} \u003E ${{outputs.component_out_path}}/component_in_number", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "description": "This is the basic command component with optional inputs", @@ -897,24 +897,24 @@ "Cache-Control": "no-cache", "Content-Length": "2633", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 05:44:52 GMT", + "Date": "Fri, 23 Sep 2022 16:21:00 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-231b66f66a03b4d52d108e8360e18641-9ccd6ac2e0ffb15b-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-053a2b0f3e7dedcecd684eec108e8774-0d60ee13bbce31f0-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f2806f3d-0ce6-4329-b320-84c01ae88a1f", - "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-correlation-request-id": "1fe3a040-6180-4461-a1a2-5eddfa56253c", + "x-ms-ratelimit-remaining-subscription-writes": "1157", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T054452Z:f2806f3d-0ce6-4329-b320-84c01ae88a1f", - "x-request-time": "0.319" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162100Z:1fe3a040-6180-4461-a1a2-5eddfa56253c", + "x-request-time": "0.521" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ec028592-c9a9-4921-8850-645472ae4ac6", - "name": "ec028592-c9a9-4921-8850-645472ae4ac6", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/563b0acc-eea2-43c0-b2be-92764794fb5e", + "name": "563b0acc-eea2-43c0-b2be-92764794fb5e", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -927,7 +927,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "ec028592-c9a9-4921-8850-645472ae4ac6", + "version": "563b0acc-eea2-43c0-b2be-92764794fb5e", "display_name": "CommandComponentBasicWithOptionalInputs", "is_deterministic": "True", "type": "command", @@ -958,7 +958,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -968,10 +968,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T01:18:04.3357592\u002B00:00", + "createdAt": "2022-09-23T16:21:00.4001309\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T01:18:04.5777071\u002B00:00", + "lastModifiedAt": "2022-09-23T16:21:00.4001309\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -996,7 +996,7 @@ "isArchived": false, "componentSpec": { "command": "echo \u0022hello world\u0022 \u0026 echo $[[${{inputs.float}}]] \u0026 echo $[[${{inputs.integer}}]] \u0026 echo $[[${{inputs.string}}]] \u0026 echo $[[${{inputs.boolean}}]] \u0026 echo ${{inputs.uri_folder}} \u0026 echo $[[${{inputs.optional_0}}]] \u0026 echo $[[${{inputs.optional_1}}]]\u0026 echo $[[${{inputs.optional_2}}]]", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": 2 @@ -1067,24 +1067,24 @@ "Cache-Control": "no-cache", "Content-Length": "3074", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 05:44:53 GMT", + "Date": "Fri, 23 Sep 2022 16:21:01 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-4de27890ae266d3becebb92469f6cb7f-dad6bc73925f0a78-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-ac25e7aad283d8ebada1b9824bf6e414-464410cf4a8b1834-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8d909f1e-f725-4779-8bdf-68c1a7fde3eb", - "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-correlation-request-id": "5a32c02e-69b3-4797-8519-2d4e80c1c36c", + "x-ms-ratelimit-remaining-subscription-writes": "1156", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T054453Z:8d909f1e-f725-4779-8bdf-68c1a7fde3eb", - "x-request-time": "0.334" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162101Z:5a32c02e-69b3-4797-8519-2d4e80c1c36c", + "x-request-time": "0.515" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/3aa5e44a-500a-40a1-84d1-ecc8c3d639ce", - "name": "3aa5e44a-500a-40a1-84d1-ecc8c3d639ce", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b0c694d7-6f4c-4b1d-8d55-0f6507eb5000", + "name": "b0c694d7-6f4c-4b1d-8d55-0f6507eb5000", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1094,7 +1094,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "3aa5e44a-500a-40a1-84d1-ecc8c3d639ce", + "version": "b0c694d7-6f4c-4b1d-8d55-0f6507eb5000", "display_name": "command_with_optional_inputs", "is_deterministic": "True", "type": "command", @@ -1146,7 +1146,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "2" @@ -1160,10 +1160,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T01:18:05.8690605\u002B00:00", + "createdAt": "2022-09-23T16:21:01.6672135\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T01:18:06.0394973\u002B00:00", + "lastModifiedAt": "2022-09-23T16:21:01.6672135\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -1176,7 +1176,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "2044", + "Content-Length": "2080", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -1189,7 +1189,7 @@ "tag": "tagvalue" }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", - "displayName": "test_optional_input_component_pipeline_test_549275664273", + "displayName": "test_optional_input_component_pipeline_test_247444090560", "experimentName": "azure-ai-ml", "isArchived": false, "jobType": "Pipeline", @@ -1217,8 +1217,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ec028592-c9a9-4921-8850-645472ae4ac6" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/563b0acc-eea2-43c0-b2be-92764794fb5e" }, "node2": { "resources": { @@ -1250,8 +1251,9 @@ "type": "literal" } }, + "properties": {}, "_source": "BUILDER", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/3aa5e44a-500a-40a1-84d1-ecc8c3d639ce" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b0c694d7-6f4c-4b1d-8d55-0f6507eb5000" } }, "outputs": { @@ -1267,22 +1269,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4502", + "Content-Length": "4554", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 05:45:00 GMT", + "Date": "Fri, 23 Sep 2022 16:21:09 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-3eb7748c1b826520b5ba959bc31926da-5ee2d38e4998b73f-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-3b07a85a2594a331a4217f7b7279c6fc-6cdf4020bf7b4fc6-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0a7df505-7cc3-4535-87ef-d9a157d395b2", - "x-ms-ratelimit-remaining-subscription-writes": "1194", + "x-ms-correlation-request-id": "fe3a83d6-149e-4838-aa44-e0858a513416", + "x-ms-ratelimit-remaining-subscription-writes": "1155", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T054501Z:0a7df505-7cc3-4535-87ef-d9a157d395b2", - "x-request-time": "3.515" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162109Z:fe3a83d6-149e-4838-aa44-e0858a513416", + "x-request-time": "3.859" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -1306,7 +1308,7 @@ "azureml.defaultDataStoreName": "workspaceblobstore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_optional_input_component_pipeline_test_549275664273", + "displayName": "test_optional_input_component_pipeline_test_247444090560", "status": "Preparing", "experimentName": "azure-ai-ml", "services": { @@ -1353,8 +1355,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ec028592-c9a9-4921-8850-645472ae4ac6" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/563b0acc-eea2-43c0-b2be-92764794fb5e" }, "node2": { "resources": { @@ -1386,8 +1389,9 @@ "type": "literal" } }, + "properties": {}, "_source": "BUILDER", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/3aa5e44a-500a-40a1-84d1-ecc8c3d639ce" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b0c694d7-6f4c-4b1d-8d55-0f6507eb5000" } }, "inputs": { @@ -1409,7 +1413,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T05:45:00.3217774\u002B00:00", + "createdAt": "2022-09-23T16:21:09.4415522\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } @@ -1417,7 +1421,7 @@ } ], "Variables": { - "component_name": "test_418804321478", - "pipeline_name": "test_549275664273" + "component_name": "test_332640863166", + "pipeline_name": "test_247444090560" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_component_load_from_remote.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_component_load_from_remote.json index cc44971934ef..70b84f16b84e 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_component_load_from_remote.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_component_load_from_remote.json @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:05:30 GMT", + "Date": "Fri, 23 Sep 2022 16:19:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-c0d0636352e0587e0921ef3584481d1c-77c15f3f1950589a-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-020a5698fc3c380cfa81e9db3debfd85-281c4b04b2c0b1f3-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e8f3a3c8-7b7c-46e4-8b46-547f8fbb3219", + "x-ms-correlation-request-id": "fd321f42-9389-42f3-92ed-13ec6b6c3c65", "x-ms-ratelimit-remaining-subscription-reads": "11987", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020530Z:e8f3a3c8-7b7c-46e4-8b46-547f8fbb3219", - "x-request-time": "0.114" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161911Z:fd321f42-9389-42f3-92ed-13ec6b6c3c65", + "x-request-time": "0.102" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/microsoftsamples_command_component_basic/versions/0.0.1", @@ -76,7 +76,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -86,10 +86,10 @@ } }, "systemData": { - "createdAt": "2022-09-20T04:00:52.1302541\u002B00:00", + "createdAt": "2022-09-23T15:21:21.8475494\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-20T04:00:52.3447403\u002B00:00", + "lastModifiedAt": "2022-09-23T15:21:22.0816072\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -110,24 +110,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:05:31 GMT", + "Date": "Fri, 23 Sep 2022 16:19:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-01326425d08da5719f853f38ce1e9a68-39822e11bcaac19d-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-2c0dcb347613875bddcb1586eeb88967-d3cc3205a0822b56-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4bb9b097-fd8c-4669-ae0e-4e670be89029", + "x-ms-correlation-request-id": "da9537fe-28fe-4abd-8136-554eb3743ab6", "x-ms-ratelimit-remaining-subscription-reads": "11986", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020531Z:4bb9b097-fd8c-4669-ae0e-4e670be89029", - "x-request-time": "0.166" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161912Z:da9537fe-28fe-4abd-8136-554eb3743ab6", + "x-request-time": "0.116" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/microsoftsamples_command_component_basic/versions/0.0.1", @@ -171,7 +171,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -181,10 +181,10 @@ } }, "systemData": { - "createdAt": "2022-09-20T04:00:52.1302541\u002B00:00", + "createdAt": "2022-09-23T15:21:21.8475494\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-20T04:00:52.3447403\u002B00:00", + "lastModifiedAt": "2022-09-23T15:21:22.0816072\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_component_reuse.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_component_reuse.json index b1d86510e72a..8a5ffc33719e 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_component_reuse.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_component_reuse.json @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:10:26 GMT", + "Date": "Fri, 23 Sep 2022 16:23:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-f8b70f20fcef894e62e2ec6d6c2fe5b6-3642650d7056b488-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-e6a73cba9169a9fb2db64ad7968fdd16-e23ea2a20e6c07cd-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6d04545a-239b-4570-bbfa-a5587dbcac5f", + "x-ms-correlation-request-id": "1f60247b-3cd0-4be8-9fba-b6a9de02e3ac", "x-ms-ratelimit-remaining-subscription-reads": "11959", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021026Z:6d04545a-239b-4570-bbfa-a5587dbcac5f", - "x-request-time": "0.035" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162338Z:1f60247b-3cd0-4be8-9fba-b6a9de02e3ac", + "x-request-time": "0.034" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -41,8 +41,8 @@ "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T11:47:20.6013506\u002B00:00", - "modifiedOn": "2022-09-15T11:47:27.309088\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -60,18 +60,18 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 0, - "targetNodeCount": 3, + "currentNodeCount": 3, + "targetNodeCount": 4, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 0, + "runningNodeCount": 3, "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-21T02:08:16.303\u002B00:00", + "allocationStateTransitionTime": "2022-09-23T16:23:36.455\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -97,24 +97,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:10:27 GMT", + "Date": "Fri, 23 Sep 2022 16:23:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-c3d69e126227a57bd20ea70c89f404b0-4ae8e5d2c8d5fd9b-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-fe6ce5c06477a9eaa94f1a9033deeece-1659338bf32e941b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4eacc94c-7668-4458-bb52-b0b0dd665b58", + "x-ms-correlation-request-id": "35702580-ef6d-4323-a23b-c908a1cde710", "x-ms-ratelimit-remaining-subscription-reads": "11958", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021028Z:4eacc94c-7668-4458-bb52-b0b0dd665b58", - "x-request-time": "0.055" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162338Z:35702580-ef6d-4323-a23b-c908a1cde710", + "x-request-time": "0.033" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -123,8 +123,8 @@ "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T11:47:20.6013506\u002B00:00", - "modifiedOn": "2022-09-15T11:47:27.309088\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -142,18 +142,18 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 0, - "targetNodeCount": 3, + "currentNodeCount": 3, + "targetNodeCount": 4, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 0, + "runningNodeCount": 3, "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-21T02:08:16.303\u002B00:00", + "allocationStateTransitionTime": "2022-09-23T16:23:36.455\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -179,24 +179,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:10:28 GMT", + "Date": "Fri, 23 Sep 2022 16:23:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-649b28e6194780abdc58058262f3bee5-0efc84e23fe8fca3-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-6b746400267b4427bda3b536701d3821-c032e41d4d907fe1-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3dbc7396-8a15-45f8-914a-5ec935283717", + "x-ms-correlation-request-id": "aeb60ddd-4a8d-491e-8592-c259ed98d6ea", "x-ms-ratelimit-remaining-subscription-reads": "11957", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021028Z:3dbc7396-8a15-45f8-914a-5ec935283717", - "x-request-time": "0.036" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162339Z:aeb60ddd-4a8d-491e-8592-c259ed98d6ea", + "x-request-time": "0.037" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -205,8 +205,8 @@ "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T11:47:20.6013506\u002B00:00", - "modifiedOn": "2022-09-15T11:47:27.309088\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -224,18 +224,18 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 0, - "targetNodeCount": 3, + "currentNodeCount": 3, + "targetNodeCount": 4, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 0, + "runningNodeCount": 3, "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-21T02:08:16.303\u002B00:00", + "allocationStateTransitionTime": "2022-09-23T16:23:36.455\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -261,24 +261,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:10:31 GMT", + "Date": "Fri, 23 Sep 2022 16:23:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-7882b4bb5849c870fed64c7fc1af0d41-265ac7d903ca7c4f-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-19ae28ec035bac622a32acd204f648f2-ce37c96b645b62d3-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ed9caed0-5783-4f05-a52a-db3a5df7aa92", + "x-ms-correlation-request-id": "57bc0548-0d36-4557-9b6e-aba180a17a93", "x-ms-ratelimit-remaining-subscription-reads": "11956", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021031Z:ed9caed0-5783-4f05-a52a-db3a5df7aa92", - "x-request-time": "0.093" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162342Z:57bc0548-0d36-4557-9b6e-aba180a17a93", + "x-request-time": "0.099" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -293,17 +293,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -325,21 +325,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:10:32 GMT", + "Date": "Fri, 23 Sep 2022 16:23:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-c49ae220358221b8d6f3d6642a7f74a2-6d377b4a219b9a61-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-904df8e7d0cc29857e537bb98204db94-7434faa1661551fa-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f45ce356-4f38-4a67-932a-e1c5b2dd5fce", + "x-ms-correlation-request-id": "cf20e58e-f702-42fd-b17f-889e89783a83", "x-ms-ratelimit-remaining-subscription-writes": "1173", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021032Z:f45ce356-4f38-4a67-932a-e1c5b2dd5fce", - "x-request-time": "0.105" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162343Z:cf20e58e-f702-42fd-b17f-889e89783a83", + "x-request-time": "0.167" }, "ResponseBody": { "secretsType": "AccountKey", @@ -347,14 +347,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:10:33 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:23:45 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -364,9 +364,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 02:10:32 GMT", - "ETag": "\u00220x8DA9ABCB2F66FF1\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:00:47 GMT", + "Date": "Fri, 23 Sep 2022 16:23:42 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -375,10 +375,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:00:47 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ca7591cf-36a6-4425-bb3d-579cd587b206", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -387,20 +387,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:10:34 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:23:45 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 02:10:32 GMT", + "Date": "Fri, 23 Sep 2022 16:23:43 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -413,7 +413,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -431,7 +431,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -439,27 +439,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:10:34 GMT", + "Date": "Fri, 23 Sep 2022 16:23:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-e238bff875899dd0ea8079493f858cfc-33baf388acab0a9a-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-c2d0e91a94185c79f15b203870ea5dc0-7c8677c9b8ad1f57-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "be858f1a-e595-4539-951c-f9136f563bef", + "x-ms-correlation-request-id": "c0baca16-669e-44ca-97e0-ea140db9fc74", "x-ms-ratelimit-remaining-subscription-writes": "1129", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021034Z:be858f1a-e595-4539-951c-f9136f563bef", - "x-request-time": "0.092" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162345Z:c0baca16-669e-44ca-97e0-ea140db9fc74", + "x-request-time": "0.459" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -471,13 +471,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-20T04:00:48.9804975\u002B00:00", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:10:34.0001371\u002B00:00", + "lastModifiedAt": "2022-09-23T16:23:44.9845414\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -506,7 +506,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo $[[${{inputs.component_in_number}}]] \u0026 echo ${{inputs.component_in_path}} \u0026 echo ${{outputs.component_out_path}} \u003E ${{outputs.component_out_path}}/component_in_number", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "description": "This is the basic command component", @@ -545,24 +545,24 @@ "Cache-Control": "no-cache", "Content-Length": "2416", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:10:35 GMT", + "Date": "Fri, 23 Sep 2022 16:23:46 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-fcdcaca5e4897c0e44bb3593e7d64fc5-1fcb497df84bb91d-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-8146a565cd5951e3bf0648f7ebe7d65e-5fbade2cd25ee5bd-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a3b70f7b-fe23-4e0c-9655-1a3664e9f44a", + "x-ms-correlation-request-id": "c6b429e2-0463-4cd6-bcbe-fafa99f30c82", "x-ms-ratelimit-remaining-subscription-writes": "1128", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021035Z:a3b70f7b-fe23-4e0c-9655-1a3664e9f44a", - "x-request-time": "0.383" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162346Z:c6b429e2-0463-4cd6-bcbe-fafa99f30c82", + "x-request-time": "0.762" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32", - "name": "2a153b3f-78e1-419b-8273-bfc76c28df32", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191", + "name": "bf151e23-da4f-4101-bf39-8bf62d31a191", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -575,7 +575,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "2a153b3f-78e1-419b-8273-bfc76c28df32", + "version": "bf151e23-da4f-4101-bf39-8bf62d31a191", "display_name": "CommandComponentBasic", "is_deterministic": "True", "type": "command", @@ -602,7 +602,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -612,10 +612,10 @@ } }, "systemData": { - "createdAt": "2022-09-20T04:04:55.6745883\u002B00:00", + "createdAt": "2022-09-23T16:11:01.2843263\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-20T04:04:55.8538952\u002B00:00", + "lastModifiedAt": "2022-09-23T16:11:01.4598118\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -636,24 +636,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:10:36 GMT", + "Date": "Fri, 23 Sep 2022 16:23:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-592f9108a05200105125fb0bac2c0452-5d32b4e784788535-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-170197ea80f221e63e8eb40b6424be51-bce81e09b13f1fa0-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d0e29b99-fa94-46e7-aa90-694591208542", + "x-ms-correlation-request-id": "0d325bc7-ac13-4d04-bce6-8a709085fbd7", "x-ms-ratelimit-remaining-subscription-reads": "11955", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021036Z:d0e29b99-fa94-46e7-aa90-694591208542", - "x-request-time": "0.076" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162347Z:0d325bc7-ac13-4d04-bce6-8a709085fbd7", + "x-request-time": "0.078" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -668,17 +668,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -700,21 +700,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:10:37 GMT", + "Date": "Fri, 23 Sep 2022 16:23:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-d8660face8bdcc1b1b4ac8a617725cab-cb0a764ecf086156-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-bd95a9e170c5a314d9caa87c15ca43cb-faf764a68915b419-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "728041b6-d00a-453a-8dd3-8eb76fe2c444", + "x-ms-correlation-request-id": "3897b70a-c99d-4d5e-a9d3-091f8b75f7d4", "x-ms-ratelimit-remaining-subscription-writes": "1172", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021037Z:728041b6-d00a-453a-8dd3-8eb76fe2c444", - "x-request-time": "0.087" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162348Z:3897b70a-c99d-4d5e-a9d3-091f8b75f7d4", + "x-request-time": "0.120" }, "ResponseBody": { "secretsType": "AccountKey", @@ -722,14 +722,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:10:39 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:23:50 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -739,9 +739,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 02:10:37 GMT", - "ETag": "\u00220x8DA9ABCB2F66FF1\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:00:47 GMT", + "Date": "Fri, 23 Sep 2022 16:23:48 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -750,10 +750,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:00:47 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ca7591cf-36a6-4425-bb3d-579cd587b206", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -762,20 +762,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:10:39 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:23:51 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 02:10:38 GMT", + "Date": "Fri, 23 Sep 2022 16:23:48 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -788,7 +788,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -806,7 +806,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -814,27 +814,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:10:39 GMT", + "Date": "Fri, 23 Sep 2022 16:23:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-a399f47092fcc785c2ef20a52b48a8fb-b1189ae1a85c5ff5-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-774bd454e4549de836be8027b49b8608-02efd24b36f588cd-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b1704d08-4d1d-4444-8287-e0eef0ee9a00", + "x-ms-correlation-request-id": "b07f0963-d27c-4b46-8923-58305d964935", "x-ms-ratelimit-remaining-subscription-writes": "1127", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021039Z:b1704d08-4d1d-4444-8287-e0eef0ee9a00", - "x-request-time": "0.099" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162349Z:b07f0963-d27c-4b46-8923-58305d964935", + "x-request-time": "0.077" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -846,13 +846,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-20T04:00:48.9804975\u002B00:00", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:10:39.3064529\u002B00:00", + "lastModifiedAt": "2022-09-23T16:23:49.7625483\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -881,7 +881,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo $[[${{inputs.component_in_number}}]] \u0026 echo ${{inputs.component_in_path}} \u0026 echo ${{outputs.component_out_path}} \u003E ${{outputs.component_out_path}}/component_in_number", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "description": "This is the basic command component", @@ -920,24 +920,24 @@ "Cache-Control": "no-cache", "Content-Length": "2416", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:10:40 GMT", + "Date": "Fri, 23 Sep 2022 16:23:50 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-f767b1531f01c86a06af17790b622ab7-71a29f5b76744783-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-738de201d8cf8c4bd599374195a19b48-bdba4815caff2f9f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f88877a2-822c-4c0d-b441-67cfb6fe6cd9", + "x-ms-correlation-request-id": "2499bd65-41e3-401f-aa16-d9a4cdaac378", "x-ms-ratelimit-remaining-subscription-writes": "1126", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021040Z:f88877a2-822c-4c0d-b441-67cfb6fe6cd9", - "x-request-time": "0.330" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162350Z:2499bd65-41e3-401f-aa16-d9a4cdaac378", + "x-request-time": "0.354" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32", - "name": "2a153b3f-78e1-419b-8273-bfc76c28df32", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191", + "name": "bf151e23-da4f-4101-bf39-8bf62d31a191", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -950,7 +950,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "2a153b3f-78e1-419b-8273-bfc76c28df32", + "version": "bf151e23-da4f-4101-bf39-8bf62d31a191", "display_name": "CommandComponentBasic", "is_deterministic": "True", "type": "command", @@ -977,7 +977,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -987,10 +987,10 @@ } }, "systemData": { - "createdAt": "2022-09-20T04:04:55.6745883\u002B00:00", + "createdAt": "2022-09-23T16:11:01.2843263\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-20T04:04:55.8538952\u002B00:00", + "lastModifiedAt": "2022-09-23T16:11:01.4598118\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -1003,7 +1003,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "2867", + "Content-Length": "2921", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -1047,8 +1047,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191" }, "node2": { "resources": null, @@ -1071,8 +1072,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191" }, "node3": { "resources": null, @@ -1095,8 +1097,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191" } }, "outputs": {}, @@ -1108,22 +1111,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "5449", + "Content-Length": "5527", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:10:49 GMT", + "Date": "Fri, 23 Sep 2022 16:23:59 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-444f5f88db6e6718bac62e9b5d79b225-c78fe580966bf015-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-7e08541c6d4b444710918390d5512e17-eaa0c534e5ae775c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b52eeef1-3219-4fe9-aa33-dbcda4e739b9", + "x-ms-correlation-request-id": "c02748f8-142b-461c-94c1-484c2aaeb65b", "x-ms-ratelimit-remaining-subscription-writes": "1125", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021049Z:b52eeef1-3219-4fe9-aa33-dbcda4e739b9", - "x-request-time": "3.117" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162359Z:c02748f8-142b-461c-94c1-484c2aaeb65b", + "x-request-time": "3.781" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -1194,8 +1197,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191" }, "node2": { "resources": null, @@ -1218,8 +1222,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191" }, "node3": { "resources": null, @@ -1242,8 +1247,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191" } }, "inputs": { @@ -1263,7 +1269,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T02:10:49.0607277\u002B00:00", + "createdAt": "2022-09-23T16:23:58.8190198\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_component_with_binding.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_component_with_binding.json index 1881637110af..6ce6185a34f3 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_component_with_binding.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_component_with_binding.json @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:05:34 GMT", + "Date": "Fri, 23 Sep 2022 16:19:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-ae6edb5add53c8847d9e5f21c2d7f85c-fe8c57607531c6ea-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-0cb71c218e5906bad033ad5c4241b85d-2c1b8edd2d39b730-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "43c1113b-7eb7-496a-bd2a-2476681c0875", + "x-ms-correlation-request-id": "1419e1ad-ba65-498d-b92b-753a5bc37f4d", "x-ms-ratelimit-remaining-subscription-reads": "11985", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020534Z:43c1113b-7eb7-496a-bd2a-2476681c0875", - "x-request-time": "0.042" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161915Z:1419e1ad-ba65-498d-b92b-753a5bc37f4d", + "x-request-time": "0.040" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -41,8 +41,8 @@ "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T11:47:20.6013506\u002B00:00", - "modifiedOn": "2022-09-15T11:47:27.309088\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -71,7 +71,7 @@ "preemptedNodeCount": 0 }, "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-21T02:03:08.787\u002B00:00", + "allocationStateTransitionTime": "2022-09-23T16:00:46.691\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -97,24 +97,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:05:36 GMT", + "Date": "Fri, 23 Sep 2022 16:19:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-8e457617bfda2e0000ba2b3976496851-9442295b28b049da-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-e20c56319a930af95b40f919aed0e700-c897f9377ac93798-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b98213e2-7c4e-463b-bdca-704ea3c1d122", + "x-ms-correlation-request-id": "9bf69a50-746c-4f29-9c68-c86b36b57682", "x-ms-ratelimit-remaining-subscription-reads": "11984", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020537Z:b98213e2-7c4e-463b-bdca-704ea3c1d122", - "x-request-time": "0.090" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161918Z:9bf69a50-746c-4f29-9c68-c86b36b57682", + "x-request-time": "0.092" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -129,17 +129,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -161,21 +161,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:05:37 GMT", + "Date": "Fri, 23 Sep 2022 16:19:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-b456360022be9f216288233060e7337a-249f84b540f96cd6-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-116ea56dd456604d89d5aaef57c31b19-d81a4f5ea6bf7de5-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1bf494f3-3005-48a8-9b3f-49940c22b024", + "x-ms-correlation-request-id": "fea95ee0-e568-470e-bc81-0630949532d0", "x-ms-ratelimit-remaining-subscription-writes": "1193", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020537Z:1bf494f3-3005-48a8-9b3f-49940c22b024", - "x-request-time": "0.084" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161918Z:fea95ee0-e568-470e-bc81-0630949532d0", + "x-request-time": "0.101" }, "ResponseBody": { "secretsType": "AccountKey", @@ -183,14 +183,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:05:39 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:19:20 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -200,9 +200,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 02:05:38 GMT", - "ETag": "\u00220x8DA9ABCB2F66FF1\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:00:47 GMT", + "Date": "Fri, 23 Sep 2022 16:19:18 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -211,10 +211,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:00:47 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ca7591cf-36a6-4425-bb3d-579cd587b206", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -223,20 +223,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:05:39 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:19:21 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 02:05:38 GMT", + "Date": "Fri, 23 Sep 2022 16:19:18 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -249,7 +249,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -267,7 +267,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -275,27 +275,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:05:39 GMT", + "Date": "Fri, 23 Sep 2022 16:19:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-8b8072004b3f5bbc69d039be79b53663-046acea5154edba9-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-4e4f8b9deba3c2a3336e75e3245774b5-cfeb28b74a3a763c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a715151f-a2fa-4462-87d0-9b0058221d31", + "x-ms-correlation-request-id": "57f81b9f-5f5d-4f73-9c97-aaed155b45c0", "x-ms-ratelimit-remaining-subscription-writes": "1183", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020540Z:a715151f-a2fa-4462-87d0-9b0058221d31", - "x-request-time": "0.092" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161919Z:57f81b9f-5f5d-4f73-9c97-aaed155b45c0", + "x-request-time": "0.093" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -307,13 +307,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-20T04:00:48.9804975\u002B00:00", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:05:40.1837569\u002B00:00", + "lastModifiedAt": "2022-09-23T16:19:19.8098534\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -342,7 +342,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo $[[${{inputs.component_in_number}}]] \u0026 echo ${{inputs.component_in_path}} \u0026 echo ${{outputs.component_out_path}} \u003E ${{outputs.component_out_path}}/component_in_number", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "description": "This is the basic command component", @@ -381,24 +381,24 @@ "Cache-Control": "no-cache", "Content-Length": "2416", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:05:40 GMT", + "Date": "Fri, 23 Sep 2022 16:19:19 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-5f3afc8bafafdc4d0d7e3c6f26c7efac-d350ad34102dac23-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-f642bb02addf9f46ae7b587c1c07a356-4f5866c938cfec4c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "71d2c0e9-f722-41cb-8632-2a5bf29419f9", + "x-ms-correlation-request-id": "c4f18b1b-b084-43e6-ba49-1915fc9ab136", "x-ms-ratelimit-remaining-subscription-writes": "1182", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020541Z:71d2c0e9-f722-41cb-8632-2a5bf29419f9", - "x-request-time": "0.342" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161920Z:c4f18b1b-b084-43e6-ba49-1915fc9ab136", + "x-request-time": "0.295" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32", - "name": "2a153b3f-78e1-419b-8273-bfc76c28df32", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191", + "name": "bf151e23-da4f-4101-bf39-8bf62d31a191", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -411,7 +411,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "2a153b3f-78e1-419b-8273-bfc76c28df32", + "version": "bf151e23-da4f-4101-bf39-8bf62d31a191", "display_name": "CommandComponentBasic", "is_deterministic": "True", "type": "command", @@ -438,7 +438,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -448,10 +448,10 @@ } }, "systemData": { - "createdAt": "2022-09-20T04:04:55.6745883\u002B00:00", + "createdAt": "2022-09-23T16:11:01.2843263\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-20T04:04:55.8538952\u002B00:00", + "lastModifiedAt": "2022-09-23T16:11:01.4598118\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -472,24 +472,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:05:41 GMT", + "Date": "Fri, 23 Sep 2022 16:19:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-7d4e98c8d20fa645dfd784fb8f984f75-9fe578ad80e12485-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-d01d4654f5186e53b0c27b2a18251b08-e0e696c0abfb180b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c9b38290-4971-4f4d-a82e-a68c69d51cbd", + "x-ms-correlation-request-id": "7d4690a3-5f98-4821-bb09-d02515e7ca5d", "x-ms-ratelimit-remaining-subscription-reads": "11983", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020542Z:c9b38290-4971-4f4d-a82e-a68c69d51cbd", - "x-request-time": "0.073" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161921Z:7d4690a3-5f98-4821-bb09-d02515e7ca5d", + "x-request-time": "0.089" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -504,17 +504,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -536,21 +536,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:05:42 GMT", + "Date": "Fri, 23 Sep 2022 16:19:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-cb0847420c5a076c2275eb2e456a261f-d0b825c9e27a250c-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-142cec3d279c2d77caef9a2422042f6f-b666e04bbf618b73-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e4586e71-49ea-4dd3-a798-dc3802fe6e4c", + "x-ms-correlation-request-id": "4150f248-8328-421a-a1cd-ff07774b5e49", "x-ms-ratelimit-remaining-subscription-writes": "1192", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020543Z:e4586e71-49ea-4dd3-a798-dc3802fe6e4c", - "x-request-time": "0.094" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161922Z:4150f248-8328-421a-a1cd-ff07774b5e49", + "x-request-time": "0.089" }, "ResponseBody": { "secretsType": "AccountKey", @@ -558,14 +558,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:05:44 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:19:24 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -575,9 +575,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 02:05:43 GMT", - "ETag": "\u00220x8DA9ABCB2F66FF1\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:00:47 GMT", + "Date": "Fri, 23 Sep 2022 16:19:21 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -586,10 +586,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:00:47 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ca7591cf-36a6-4425-bb3d-579cd587b206", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -598,20 +598,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:05:44 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:19:24 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 02:05:43 GMT", + "Date": "Fri, 23 Sep 2022 16:19:22 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -624,7 +624,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -642,7 +642,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -650,27 +650,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:05:43 GMT", + "Date": "Fri, 23 Sep 2022 16:19:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-e3fb6c20284552d1375877109c985ee4-a05ddfb8cde402e8-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-4e9c1f4c95c0f0a43168b9f097b21017-8ac6f6706771e2cd-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "801bf632-4282-40c8-a8b3-f9bbd24a8a58", + "x-ms-correlation-request-id": "bce80d03-b2bd-40f3-9f30-ed73773f5454", "x-ms-ratelimit-remaining-subscription-writes": "1181", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020544Z:801bf632-4282-40c8-a8b3-f9bbd24a8a58", - "x-request-time": "0.112" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161923Z:bce80d03-b2bd-40f3-9f30-ed73773f5454", + "x-request-time": "0.070" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -682,13 +682,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-20T04:00:48.9804975\u002B00:00", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:05:44.3869301\u002B00:00", + "lastModifiedAt": "2022-09-23T16:19:23.2801383\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -713,7 +713,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026\u0026 echo ${{inputs.component_in_number}} \u0026\u0026 mkdir -p ${{outputs.component_out_path_1}} \u0026\u0026 mkdir -p ${{outputs.component_out_path_2}} \u0026\u0026 cp -r ${{inputs.component_in_path_1}} ${{outputs.component_out_path_1}} \u0026\u0026 cp -r ${{inputs.component_in_path_2}} ${{outputs.component_out_path_2}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "tags": {}, @@ -752,26 +752,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2551", + "Content-Length": "2552", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:05:45 GMT", + "Date": "Fri, 23 Sep 2022 16:19:23 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-e8b35f04c5115e534ab1665645a2143c-1f58818ed7cf51af-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-252d17542fccbe4f82b1560cb9ed952c-049713489f7db660-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0b44316f-b858-4d40-a796-e9d709c5b96d", + "x-ms-correlation-request-id": "5c884777-30d3-448c-9257-d2b952d57c9f", "x-ms-ratelimit-remaining-subscription-writes": "1180", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020546Z:0b44316f-b858-4d40-a796-e9d709c5b96d", - "x-request-time": "0.316" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161924Z:5c884777-30d3-448c-9257-d2b952d57c9f", + "x-request-time": "0.512" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/7e5b62f2-bf30-48f1-9ef1-711d7b7c8e05", - "name": "7e5b62f2-bf30-48f1-9ef1-711d7b7c8e05", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/551fb04d-5a0e-4ed7-a820-4e931a4ec22a", + "name": "551fb04d-5a0e-4ed7-a820-4e931a4ec22a", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -781,7 +781,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "7e5b62f2-bf30-48f1-9ef1-711d7b7c8e05", + "version": "551fb04d-5a0e-4ed7-a820-4e931a4ec22a", "display_name": "ComponentMergeOutputs", "is_deterministic": "True", "type": "command", @@ -811,7 +811,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -821,10 +821,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T01:16:28.0741005\u002B00:00", + "createdAt": "2022-09-23T16:19:24.3189442\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T01:16:28.217309\u002B00:00", + "lastModifiedAt": "2022-09-23T16:19:24.3189442\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -837,7 +837,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "3420", + "Content-Length": "3474", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -850,7 +850,7 @@ "tag": "tagvalue" }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", - "displayName": "test_618293025180", + "displayName": "test_731568943137", "experimentName": "dsl_pipeline_e2e", "isArchived": false, "jobType": "Pipeline", @@ -895,8 +895,9 @@ "job_output_type": "uri_folder" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191" }, "hello_world_component_2": { "resources": null, @@ -924,8 +925,9 @@ "job_output_type": "uri_folder" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191" }, "merge_component_outputs": { "resources": null, @@ -961,8 +963,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/7e5b62f2-bf30-48f1-9ef1-711d7b7c8e05" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/551fb04d-5a0e-4ed7-a820-4e931a4ec22a" } }, "outputs": { @@ -981,22 +984,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "6593", + "Content-Length": "6671", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:05:52 GMT", + "Date": "Fri, 23 Sep 2022 16:19:32 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-c2f0b7b0fb4106c77565a407c6f22d08-e0d56c49fd867d54-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-24532019993507f64272c0441c0328ae-ca14273c2154257b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ee37fe20-e11b-49a6-be1a-3a0855861300", + "x-ms-correlation-request-id": "110e93b6-537a-48df-baff-2b5fc9792386", "x-ms-ratelimit-remaining-subscription-writes": "1179", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020553Z:ee37fe20-e11b-49a6-be1a-3a0855861300", - "x-request-time": "3.160" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161932Z:110e93b6-537a-48df-baff-2b5fc9792386", + "x-request-time": "3.839" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -1020,7 +1023,7 @@ "azureml.defaultDataStoreName": "workspaceblobstore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_618293025180", + "displayName": "test_731568943137", "status": "Preparing", "experimentName": "dsl_pipeline_e2e", "services": { @@ -1076,8 +1079,9 @@ "job_output_type": "uri_folder" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191" }, "hello_world_component_2": { "resources": null, @@ -1105,8 +1109,9 @@ "job_output_type": "uri_folder" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191" }, "merge_component_outputs": { "resources": null, @@ -1142,8 +1147,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/7e5b62f2-bf30-48f1-9ef1-711d7b7c8e05" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/551fb04d-5a0e-4ed7-a820-4e931a4ec22a" } }, "inputs": { @@ -1181,7 +1187,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T02:05:52.4092478\u002B00:00", + "createdAt": "2022-09-23T16:19:31.9049898\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } @@ -1189,6 +1195,6 @@ } ], "Variables": { - "pipeline_name": "test_618293025180" + "pipeline_name": "test_731568943137" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_component_with_default_optional_input.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_component_with_default_optional_input.json index 0363daa8c2d4..cb89e0f62ac6 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_component_with_default_optional_input.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_component_with_default_optional_input.json @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:08:28 GMT", + "Date": "Fri, 23 Sep 2022 16:21:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-6dcaba13a83937712a588d51913cd368-c3e131820a7a8277-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-be1ce16b129380003f2e052b7d54bac8-62f8f5fdf57a9cfa-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e75e93d7-b19c-4ddf-8c5e-de00b1c9f262", + "x-ms-correlation-request-id": "7891a61b-fdc3-40af-98c8-ff0e49b28b53", "x-ms-ratelimit-remaining-subscription-reads": "11965", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020829Z:e75e93d7-b19c-4ddf-8c5e-de00b1c9f262", - "x-request-time": "0.078" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162146Z:7891a61b-fdc3-40af-98c8-ff0e49b28b53", + "x-request-time": "0.086" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -47,17 +47,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -79,21 +79,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:08:30 GMT", + "Date": "Fri, 23 Sep 2022 16:21:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-3277836738ecb14a6890234519ea2ae4-3f740ba70feb59fa-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-2c52cbf2b5354666b0b61e4b9febb69c-1d02318b23fe5fbb-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "012faca0-5ff1-4d70-a871-5979cdd47ec6", + "x-ms-correlation-request-id": "d8083634-b555-4f75-8916-8c265c203688", "x-ms-ratelimit-remaining-subscription-writes": "1178", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020831Z:012faca0-5ff1-4d70-a871-5979cdd47ec6", - "x-request-time": "0.082" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162147Z:d8083634-b555-4f75-8916-8c265c203688", + "x-request-time": "0.125" }, "ResponseBody": { "secretsType": "AccountKey", @@ -101,14 +101,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:08:33 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:21:49 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -118,9 +118,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 02:08:32 GMT", - "ETag": "\u00220x8DA9ABCB2F66FF1\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:00:47 GMT", + "Date": "Fri, 23 Sep 2022 16:21:46 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -129,10 +129,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:00:47 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ca7591cf-36a6-4425-bb3d-579cd587b206", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -141,20 +141,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:08:33 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:21:49 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 02:08:32 GMT", + "Date": "Fri, 23 Sep 2022 16:21:47 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -167,7 +167,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -185,7 +185,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -193,27 +193,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:08:32 GMT", + "Date": "Fri, 23 Sep 2022 16:21:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-af33e088cc8d70611753c866620e91f2-0e9d2af20c2b235c-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-3b9b772166469b22f25cd3dc8d8e00f8-a504966763fc44bb-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7b4f5127-208a-4b13-87b8-f1fc789e1cc4", + "x-ms-correlation-request-id": "172585db-4722-4068-a809-6cd4da6388c6", "x-ms-ratelimit-remaining-subscription-writes": "1148", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020833Z:7b4f5127-208a-4b13-87b8-f1fc789e1cc4", - "x-request-time": "0.112" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162148Z:172585db-4722-4068-a809-6cd4da6388c6", + "x-request-time": "0.075" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -225,13 +225,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-20T04:00:48.9804975\u002B00:00", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:08:33.4099126\u002B00:00", + "lastModifiedAt": "2022-09-23T16:21:48.6104414\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -260,7 +260,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo required_param ${{inputs.required_param}} \u0026 echo required_param_with_default ${{inputs.required_param_with_default}} \u0026 $[[echo optional_param ${{inputs.optional_param}} \u0026]] $[[echo optional_param_with_default ${{inputs.optional_param_with_default}} \u0026]] echo required_input ${{inputs.required_input}} \u0026 $[[echo optional_input ${{inputs.optional_input}} \u0026]]", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "description": "Component with default and optional parameters", @@ -308,24 +308,24 @@ "Cache-Control": "no-cache", "Content-Length": "2950", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:08:34 GMT", + "Date": "Fri, 23 Sep 2022 16:21:49 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-fcc395f625914092e6c3d49d4b6fdc8f-654b2adfe6ddb7c5-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-6f0beaefcad2ca4e716dc0547c72197d-942f4fe803c76675-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3a9406f5-ad4b-449e-ad82-52a5b542f9e7", + "x-ms-correlation-request-id": "277d2e17-a905-49fb-b9ac-427536411f6e", "x-ms-ratelimit-remaining-subscription-writes": "1147", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020835Z:3a9406f5-ad4b-449e-ad82-52a5b542f9e7", - "x-request-time": "0.568" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162149Z:277d2e17-a905-49fb-b9ac-427536411f6e", + "x-request-time": "0.548" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/442057b9-8251-4d34-94d9-693f1d52fe49", - "name": "442057b9-8251-4d34-94d9-693f1d52fe49", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/00ea3a38-ff46-4b2f-91a1-8c70a425d2f5", + "name": "00ea3a38-ff46-4b2f-91a1-8c70a425d2f5", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -338,7 +338,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "442057b9-8251-4d34-94d9-693f1d52fe49", + "version": "00ea3a38-ff46-4b2f-91a1-8c70a425d2f5", "display_name": "Component with default and optional parameters", "is_deterministic": "True", "type": "command", @@ -375,7 +375,7 @@ "default": "optional_param_with_default" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -385,10 +385,10 @@ } }, "systemData": { - "createdAt": "2022-09-20T04:02:29.1889657\u002B00:00", + "createdAt": "2022-09-23T16:21:49.5868048\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-20T04:02:29.3736161\u002B00:00", + "lastModifiedAt": "2022-09-23T16:21:49.5868048\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -401,7 +401,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1880", + "Content-Length": "1916", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -437,8 +437,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/442057b9-8251-4d34-94d9-693f1d52fe49" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/00ea3a38-ff46-4b2f-91a1-8c70a425d2f5" }, "default_optional_component_1": { "resources": null, @@ -461,8 +462,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/442057b9-8251-4d34-94d9-693f1d52fe49" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/00ea3a38-ff46-4b2f-91a1-8c70a425d2f5" } }, "outputs": {}, @@ -475,22 +477,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4091", + "Content-Length": "4143", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:08:42 GMT", + "Date": "Fri, 23 Sep 2022 16:21:57 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-afeeb56b685c6535d9713bbc2ebd5c52-d1a0daf3cb2d917a-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-61405647d47099bee498d263b56395a9-8f1e124a1ed7580e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3cd508e8-ac6a-41e5-a15e-e04313c4c7eb", + "x-ms-correlation-request-id": "18457d3f-fff8-4d2e-86dd-0716fd2811cd", "x-ms-ratelimit-remaining-subscription-writes": "1146", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020842Z:3cd508e8-ac6a-41e5-a15e-e04313c4c7eb", - "x-request-time": "3.358" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162158Z:18457d3f-fff8-4d2e-86dd-0716fd2811cd", + "x-request-time": "3.436" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -563,8 +565,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/442057b9-8251-4d34-94d9-693f1d52fe49" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/00ea3a38-ff46-4b2f-91a1-8c70a425d2f5" }, "default_optional_component_1": { "resources": null, @@ -587,8 +590,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/442057b9-8251-4d34-94d9-693f1d52fe49" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/00ea3a38-ff46-4b2f-91a1-8c70a425d2f5" } }, "inputs": {}, @@ -596,7 +600,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T02:08:42.4328423\u002B00:00", + "createdAt": "2022-09-23T16:21:57.5551248\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_create_pipeline_component_by_dsl.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_create_pipeline_component_by_dsl.json index 0f5c92ac43c5..29a8a2ad79be 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_create_pipeline_component_by_dsl.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_create_pipeline_component_by_dsl.json @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:09:39 GMT", + "Date": "Fri, 23 Sep 2022 16:22:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-7f586664662e00d324811b0c939505b4-7e4d37c58652b683-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-93271256c04549051be3dd2b6bf5fdeb-22769547b17d4b91-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b80d2801-a0bc-47bd-862a-bd6d03e3ad15", + "x-ms-correlation-request-id": "3e390ed2-1a24-4897-be08-5e9f632d47ad", "x-ms-ratelimit-remaining-subscription-reads": "11962", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020940Z:b80d2801-a0bc-47bd-862a-bd6d03e3ad15", - "x-request-time": "0.084" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162252Z:3e390ed2-1a24-4897-be08-5e9f632d47ad", + "x-request-time": "0.089" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -47,17 +47,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -79,21 +79,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:09:41 GMT", + "Date": "Fri, 23 Sep 2022 16:22:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-d16bc9779e8677de4e4c56c96bbe20a9-e5f5751b42025db2-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-57be8213dd957e56ee689f3d3ba985cd-815f3b1f4c5177fa-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "99708787-ed50-4bff-a03b-7bed02099767", + "x-ms-correlation-request-id": "bf1f6a74-df1c-416c-a9d5-0f513e687d90", "x-ms-ratelimit-remaining-subscription-writes": "1175", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020941Z:99708787-ed50-4bff-a03b-7bed02099767", - "x-request-time": "0.093" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162253Z:bf1f6a74-df1c-416c-a9d5-0f513e687d90", + "x-request-time": "0.126" }, "ResponseBody": { "secretsType": "AccountKey", @@ -101,14 +101,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:09:43 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:22:55 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -118,9 +118,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 02:09:42 GMT", - "ETag": "\u00220x8DA9ABCB2F66FF1\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:00:47 GMT", + "Date": "Fri, 23 Sep 2022 16:22:53 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -129,10 +129,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:00:47 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ca7591cf-36a6-4425-bb3d-579cd587b206", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -141,20 +141,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:09:43 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:22:56 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 02:09:42 GMT", + "Date": "Fri, 23 Sep 2022 16:22:54 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -167,7 +167,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -185,7 +185,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -193,27 +193,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:09:43 GMT", + "Date": "Fri, 23 Sep 2022 16:22:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-2a07f708aa5b398b08d0e375520071a5-5b0b51e8780f2179-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-f2cc0e8da729612cce6169abf2abc806-e586ddcfa0f5421c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d61a314f-cc4a-4df6-a9a5-7f1afffdf798", + "x-ms-correlation-request-id": "1cbc0cfa-cd2d-49b8-be58-076127b05da2", "x-ms-ratelimit-remaining-subscription-writes": "1137", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020943Z:d61a314f-cc4a-4df6-a9a5-7f1afffdf798", - "x-request-time": "0.070" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162255Z:1cbc0cfa-cd2d-49b8-be58-076127b05da2", + "x-request-time": "0.150" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -225,13 +225,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-20T04:00:48.9804975\u002B00:00", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:09:43.5776017\u002B00:00", + "lastModifiedAt": "2022-09-23T16:22:55.2645054\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -260,7 +260,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo required_param ${{inputs.required_param}} \u0026 echo required_param_with_default ${{inputs.required_param_with_default}} \u0026 $[[echo optional_param ${{inputs.optional_param}} \u0026]] $[[echo optional_param_with_default ${{inputs.optional_param_with_default}} \u0026]] echo required_input ${{inputs.required_input}} \u0026 $[[echo optional_input ${{inputs.optional_input}} \u0026]]", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "description": "Component with default and optional parameters", @@ -308,24 +308,24 @@ "Cache-Control": "no-cache", "Content-Length": "2950", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:09:44 GMT", + "Date": "Fri, 23 Sep 2022 16:22:56 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-2dc5f8685098165e6fa16452c9214b64-a745b0674545c8db-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-e397289b20dd6990a698f6ba010386c5-4eaff0231591b14a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "598d8539-871d-4efc-b9f6-795599e55f4a", + "x-ms-correlation-request-id": "4738f2bb-d9b3-4488-b3d9-1b1a3c8aea60", "x-ms-ratelimit-remaining-subscription-writes": "1136", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020945Z:598d8539-871d-4efc-b9f6-795599e55f4a", - "x-request-time": "0.575" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162256Z:4738f2bb-d9b3-4488-b3d9-1b1a3c8aea60", + "x-request-time": "0.447" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/442057b9-8251-4d34-94d9-693f1d52fe49", - "name": "442057b9-8251-4d34-94d9-693f1d52fe49", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/00ea3a38-ff46-4b2f-91a1-8c70a425d2f5", + "name": "00ea3a38-ff46-4b2f-91a1-8c70a425d2f5", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -338,7 +338,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "442057b9-8251-4d34-94d9-693f1d52fe49", + "version": "00ea3a38-ff46-4b2f-91a1-8c70a425d2f5", "display_name": "Component with default and optional parameters", "is_deterministic": "True", "type": "command", @@ -375,7 +375,7 @@ "default": "optional_param_with_default" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -385,10 +385,10 @@ } }, "systemData": { - "createdAt": "2022-09-20T04:02:29.1889657\u002B00:00", + "createdAt": "2022-09-23T16:21:49.5868048\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-20T04:02:29.3736161\u002B00:00", + "lastModifiedAt": "2022-09-23T16:21:49.7502091\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -404,56 +404,88 @@ "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 404, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1071", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:09:45 GMT", + "Date": "Fri, 23 Sep 2022 16:22:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-c39a6e6259f00a440d19a2ceb6d88dc1-318bf2b0a326c1b2-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-eastus2-01", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f94941a9-daa5-4495-a1de-dfb5868e8e65", + "x-ms-correlation-request-id": "5f7195ad-36b2-47b7-87a6-abfef57b3f64", "x-ms-ratelimit-remaining-subscription-reads": "11961", - "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020946Z:f94941a9-daa5-4495-a1de-dfb5868e8e65", - "x-request-time": "0.051" + "x-ms-response-type": "error", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162257Z:5f7195ad-36b2-47b7-87a6-abfef57b3f64", + "x-request-time": "0.095" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/valid_pipeline_func", - "name": "valid_pipeline_func", - "type": "Microsoft.MachineLearningServices/workspaces/components", - "properties": { - "description": "", - "tags": {}, - "properties": {}, - "isArchived": false, - "latestVersion": null, - "nextVersion": "2022-09-21-02-09-46-3129541" - }, - "systemData": { - "createdAt": "2022-09-20T04:03:53.6602429\u002B00:00", - "lastModifiedAt": "2022-09-21T01:42:36.1700954\u002B00:00" + "error": { + "code": "UserError", + "message": "Not found component valid_pipeline_func.", + "details": [], + "additionalInfo": [ + { + "type": "ComponentName", + "info": { + "value": "managementfrontend" + } + }, + { + "type": "Correlation", + "info": { + "value": { + "operation": "c55246a87a8d560c00ca488b4071575b", + "request": "e98786ad31ae1e88" + } + } + }, + { + "type": "Environment", + "info": { + "value": "eastus2" + } + }, + { + "type": "Location", + "info": { + "value": "eastus2" + } + }, + { + "type": "Time", + "info": { + "value": "2022-09-23T16:22:57.8083032\u002B00:00" + } + }, + { + "type": "InnerError", + "info": { + "value": { + "code": "NotFound", + "innerError": { + "code": "ComponentNotFound", + "innerError": null + } + } + } + } + ] } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/valid_pipeline_func/versions/2022-09-21-02-09-46-3129541?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/valid_pipeline_func/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1799", + "Content-Length": "1835", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -504,8 +536,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/442057b9-8251-4d34-94d9-693f1d52fe49" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/00ea3a38-ff46-4b2f-91a1-8c70a425d2f5" }, "node2": { "resources": null, @@ -528,8 +561,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/442057b9-8251-4d34-94d9-693f1d52fe49" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/00ea3a38-ff46-4b2f-91a1-8c70a425d2f5" } }, "_source": "DSL", @@ -540,26 +574,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1400", + "Content-Length": "1322", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:09:47 GMT", + "Date": "Fri, 23 Sep 2022 16:22:58 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/valid_pipeline_func/versions/2022-09-21-02-09-46-3129541?api-version=2022-05-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/valid_pipeline_func/versions/1?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-98cf34064bc2ee4e01538065adf67e71-8a30ac791056b405-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-414376f038b1b30f2d24508c3955fd6b-511b70df40b490ba-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4e695a04-b4be-4abf-b41b-00662eeb2694", + "x-ms-correlation-request-id": "d3b2a6a8-a4b1-4821-9185-c14cd4bd3736", "x-ms-ratelimit-remaining-subscription-writes": "1135", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020948Z:4e695a04-b4be-4abf-b41b-00662eeb2694", - "x-request-time": "1.107" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162259Z:d3b2a6a8-a4b1-4821-9185-c14cd4bd3736", + "x-request-time": "0.957" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/valid_pipeline_func/versions/2022-09-21-02-09-46-3129541", - "name": "2022-09-21-02-09-46-3129541", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/valid_pipeline_func/versions/1", + "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -569,7 +603,7 @@ "isAnonymous": false, "componentSpec": { "name": "valid_pipeline_func", - "version": "2022-09-21-02-09-46-3129541", + "version": "1", "display_name": "valid_pipeline_func", "is_deterministic": "True", "type": "pipeline", @@ -592,10 +626,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T02:09:47.6765044\u002B00:00", + "createdAt": "2022-09-23T16:22:58.9491009\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:09:47.8873073\u002B00:00", + "lastModifiedAt": "2022-09-23T16:22:59.1417226\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_data_input.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_data_input.json index f8b783ce2e8d..e0ee8a91344f 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_data_input.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_data_input.json @@ -15,11 +15,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:05:57 GMT", + "Date": "Fri, 23 Sep 2022 17:34:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-cd0be4e14b4fabc3b8ad83d58ddbf315-0802449f49a68c86-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-092936d419222e7e54107c70e0c77d54-120d5f60a09939a8-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -28,11 +28,11 @@ ], "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4f226eb0-67f2-4554-be92-4585b7f6689b", - "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-correlation-request-id": "2ad9d98b-de2d-4da4-a4bc-398a6d716c0f", + "x-ms-ratelimit-remaining-subscription-reads": "11999", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020557Z:4f226eb0-67f2-4554-be92-4585b7f6689b", - "x-request-time": "0.036" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173420Z:2ad9d98b-de2d-4da4-a4bc-398a6d716c0f", + "x-request-time": "0.062" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -41,8 +41,8 @@ "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T11:47:20.6013506\u002B00:00", - "modifiedOn": "2022-09-15T11:47:27.309088\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -61,7 +61,7 @@ }, "subnet": null, "currentNodeCount": 0, - "targetNodeCount": 0, + "targetNodeCount": 4, "nodeStateCounts": { "preparingNodeCount": 0, "runningNodeCount": 0, @@ -70,9 +70,30 @@ "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-21T02:03:08.787\u002B00:00", - "errors": null, + "allocationState": "Resizing", + "allocationStateTransitionTime": "2022-09-23T17:33:36.582\u002B00:00", + "errors": [ + { + "error": { + "code": "DiskFull", + "message": "ComputeNode.Id=tvmps_363864b505daf64a62c550b3039bf88a46c953293d3b4013e4cf21c28d5e312b_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_ae1eeb6a8f3122c9bccdf09343b2e3cd8217911e792aac6cd3d94797ad4b0ad4_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_c6e688f61710764bba9d4ebb13a6e8b9182eca42a7dc5ec038eda668590ef1b3_d: There is not enough disk space on the node", + "details": [ + { + "code": "Message", + "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." + }, + { + "code": "Message", + "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." + }, + { + "code": "Message", + "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." + } + ] + } + } + ], "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -97,24 +118,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:06:00 GMT", + "Date": "Fri, 23 Sep 2022 17:34:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-a4034822f2e51aea34e67561de7fb0ca-4a9003547a34ca64-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-d8a26c504bdd6a0f7bb334e4fe58ec73-0966d5fef1a86f11-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "41180876-66e1-4030-92bd-c4e449f400c9", - "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-correlation-request-id": "f93dc09e-5089-48fa-9e54-03cc7c188710", + "x-ms-ratelimit-remaining-subscription-reads": "11998", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020600Z:41180876-66e1-4030-92bd-c4e449f400c9", - "x-request-time": "0.076" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173423Z:f93dc09e-5089-48fa-9e54-03cc7c188710", + "x-request-time": "0.111" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -129,17 +150,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -161,21 +182,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:06:01 GMT", + "Date": "Fri, 23 Sep 2022 17:34:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-0c8a48b13c395c3eebc4768f7cebd245-48a6729e78695e48-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-2edf57247a0c90fb2f2e07c2a90212f3-9a8cbd6f7d7b9ebb-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "935269f6-0dba-422f-bafc-70a62a38a604", - "x-ms-ratelimit-remaining-subscription-writes": "1191", + "x-ms-correlation-request-id": "183e0e1d-a7c3-43e2-b434-4a692141c807", + "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020601Z:935269f6-0dba-422f-bafc-70a62a38a604", - "x-request-time": "0.085" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173424Z:183e0e1d-a7c3-43e2-b434-4a692141c807", + "x-request-time": "0.231" }, "ResponseBody": { "secretsType": "AccountKey", @@ -183,14 +204,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/prep_src/prep.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/prep_src/prep.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:06:02 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:34:26 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -200,9 +221,9 @@ "Content-Length": "4138", "Content-MD5": "0KXmFx7HK/7s4zv4\u002BZJGlg==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 02:06:01 GMT", - "ETag": "\u00220x8DA9ABCBE5D009D\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:01:06 GMT", + "Date": "Fri, 23 Sep 2022 17:34:24 GMT", + "ETag": "\u00220x8DA9D7F6B218418\u0022", + "Last-Modified": "Fri, 23 Sep 2022 16:19:41 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -211,10 +232,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:01:06 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 16:19:40 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "68e72a69-1ddf-4585-b08a-07ebf80d02d2", + "x-ms-meta-name": "8d652f51-6f84-4f3e-bc2c-c6cffe1b4bac", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -223,20 +244,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/prep_src/prep.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/prep_src/prep.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:06:03 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:34:27 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 02:06:02 GMT", + "Date": "Fri, 23 Sep 2022 17:34:25 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -249,7 +270,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/68e72a69-1ddf-4585-b08a-07ebf80d02d2/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/8d652f51-6f84-4f3e-bc2c-c6cffe1b4bac/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -267,7 +288,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/prep_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/prep_src" } }, "StatusCode": 200, @@ -275,27 +296,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:06:03 GMT", + "Date": "Fri, 23 Sep 2022 17:34:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-78141ebe7db2b2130978bc2c8401b5b9-ce1aa184eea78aac-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-4e902025be45e2f355e81a5494f3edee-7efe80a6dc9daa72-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "df86ef75-d086-453a-b625-f6062496bd4b", - "x-ms-ratelimit-remaining-subscription-writes": "1178", + "x-ms-correlation-request-id": "a722fe8c-1d85-4e3c-8aa2-068bd81b0a06", + "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020603Z:df86ef75-d086-453a-b625-f6062496bd4b", - "x-request-time": "0.098" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173427Z:a722fe8c-1d85-4e3c-8aa2-068bd81b0a06", + "x-request-time": "0.520" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/68e72a69-1ddf-4585-b08a-07ebf80d02d2/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/8d652f51-6f84-4f3e-bc2c-c6cffe1b4bac/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -307,13 +328,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/prep_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/prep_src" }, "systemData": { - "createdAt": "2022-09-20T04:01:08.1080226\u002B00:00", + "createdAt": "2022-09-23T16:19:41.7340169\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:06:03.158096\u002B00:00", + "lastModifiedAt": "2022-09-23T17:34:27.834917\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -338,7 +359,7 @@ "isArchived": false, "componentSpec": { "command": "python prep.py --raw_data ${{inputs.raw_data}} --prep_data ${{outputs.prep_data}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/68e72a69-1ddf-4585-b08a-07ebf80d02d2/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/8d652f51-6f84-4f3e-bc2c-c6cffe1b4bac/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cuda11-gpu/versions/3", "name": "azureml_anonymous", "tags": {}, @@ -365,24 +386,24 @@ "Cache-Control": "no-cache", "Content-Length": "1880", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:06:04 GMT", + "Date": "Fri, 23 Sep 2022 17:34:28 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-7467aa7f767eba7ec11024dcda9e2165-d9a854b50e6a3db4-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-e636c16841c6ec3203f3b70e2588ef05-b10acae85a09af88-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "eff2293f-fd06-4c7c-aabc-a4c7a4cbd9e3", - "x-ms-ratelimit-remaining-subscription-writes": "1177", + "x-ms-correlation-request-id": "5fdbc58f-2df2-4baf-b12c-393532262ab8", + "x-ms-ratelimit-remaining-subscription-writes": "1198", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020604Z:eff2293f-fd06-4c7c-aabc-a4c7a4cbd9e3", - "x-request-time": "0.389" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173429Z:5fdbc58f-2df2-4baf-b12c-393532262ab8", + "x-request-time": "1.225" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/02a9007f-e5c9-48fa-bbfc-924075b33168", - "name": "02a9007f-e5c9-48fa-bbfc-924075b33168", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/fef442a0-e032-4c3f-88b3-3e429c1ac3ad", + "name": "fef442a0-e032-4c3f-88b3-3e429c1ac3ad", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -392,7 +413,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "02a9007f-e5c9-48fa-bbfc-924075b33168", + "version": "fef442a0-e032-4c3f-88b3-3e429c1ac3ad", "display_name": "PrepTaxiData", "is_deterministic": "True", "type": "command", @@ -407,7 +428,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/68e72a69-1ddf-4585-b08a-07ebf80d02d2/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/8d652f51-6f84-4f3e-bc2c-c6cffe1b4bac/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cuda11-gpu/versions/3", "resources": { "instance_count": "1" @@ -417,10 +438,10 @@ } }, "systemData": { - "createdAt": "2022-09-20T04:01:09.8180617\u002B00:00", + "createdAt": "2022-09-23T16:19:43.0390453\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-20T04:01:10.0413337\u002B00:00", + "lastModifiedAt": "2022-09-23T16:19:43.2483917\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -441,24 +462,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:06:05 GMT", + "Date": "Fri, 23 Sep 2022 17:34:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-df00045e0ec5c39449da4757f1c05c11-b71726aecaa80398-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-610024dbc6fd9698f2b131a0d98ec301-771e17ca44fdb9b5-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "59af91b3-1b2c-4a1f-a76a-9952662fe1ef", - "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-correlation-request-id": "dcb913d5-d46d-4a55-97a9-6e7e4bf691b8", + "x-ms-ratelimit-remaining-subscription-reads": "11997", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020605Z:59af91b3-1b2c-4a1f-a76a-9952662fe1ef", - "x-request-time": "0.078" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173430Z:dcb913d5-d46d-4a55-97a9-6e7e4bf691b8", + "x-request-time": "0.086" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -473,17 +494,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -505,21 +526,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:06:06 GMT", + "Date": "Fri, 23 Sep 2022 17:34:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-b6e3b3b03b5513e2c657558009db441e-13aa80a40a3c06bb-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-79bfe062ab138c51402dfc221bcaf6b0-75dc879d3eb58db0-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "51b38c28-2a0b-4b17-b165-f5946de0ff6a", - "x-ms-ratelimit-remaining-subscription-writes": "1190", + "x-ms-correlation-request-id": "92401cd4-26f4-45d6-9d94-842c081945d8", + "x-ms-ratelimit-remaining-subscription-writes": "1198", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020606Z:51b38c28-2a0b-4b17-b165-f5946de0ff6a", - "x-request-time": "0.125" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173431Z:92401cd4-26f4-45d6-9d94-842c081945d8", + "x-request-time": "0.097" }, "ResponseBody": { "secretsType": "AccountKey", @@ -527,14 +548,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/transform_src/transform.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/transform_src/transform.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:06:07 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:34:33 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -544,9 +565,9 @@ "Content-Length": "5512", "Content-MD5": "YTwbWiBVzF01p1o6D8iCLw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 02:06:06 GMT", - "ETag": "\u00220x8DA9ABCC3056872\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:01:14 GMT", + "Date": "Fri, 23 Sep 2022 17:34:30 GMT", + "ETag": "\u00220x8DA9D7F6E01CB47\u0022", + "Last-Modified": "Fri, 23 Sep 2022 16:19:45 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -555,10 +576,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:01:14 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 16:19:45 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "2b63a6e0-23d8-4099-802c-7447849f3e2a", + "x-ms-meta-name": "e6cd90ac-dad6-40fb-9b5c-495726930ab0", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -567,20 +588,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/transform_src/transform.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/transform_src/transform.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:06:08 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:34:33 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 02:06:07 GMT", + "Date": "Fri, 23 Sep 2022 17:34:31 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -593,7 +614,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2b63a6e0-23d8-4099-802c-7447849f3e2a/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/e6cd90ac-dad6-40fb-9b5c-495726930ab0/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -611,7 +632,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/transform_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/transform_src" } }, "StatusCode": 200, @@ -619,27 +640,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:06:07 GMT", + "Date": "Fri, 23 Sep 2022 17:34:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-94d60f26f258f9273f49e40f19d536bb-dbbed41fd318a8b6-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-f5927e7217248e79b4884ff52e99fccb-ae69f9768037e1b9-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "24e2debf-b6de-4161-bcb9-df84e88f7189", - "x-ms-ratelimit-remaining-subscription-writes": "1176", + "x-ms-correlation-request-id": "8c4cc843-914e-46be-b627-144081995e50", + "x-ms-ratelimit-remaining-subscription-writes": "1197", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020607Z:24e2debf-b6de-4161-bcb9-df84e88f7189", - "x-request-time": "0.150" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173432Z:8c4cc843-914e-46be-b627-144081995e50", + "x-request-time": "0.100" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2b63a6e0-23d8-4099-802c-7447849f3e2a/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/e6cd90ac-dad6-40fb-9b5c-495726930ab0/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -651,13 +672,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/transform_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/transform_src" }, "systemData": { - "createdAt": "2022-09-20T04:01:14.9730046\u002B00:00", + "createdAt": "2022-09-23T16:19:46.5127562\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:06:07.8556721\u002B00:00", + "lastModifiedAt": "2022-09-23T17:34:32.5517623\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -682,7 +703,7 @@ "isArchived": false, "componentSpec": { "command": "python transform.py --clean_data ${{inputs.clean_data}} --transformed_data ${{outputs.transformed_data}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2b63a6e0-23d8-4099-802c-7447849f3e2a/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/e6cd90ac-dad6-40fb-9b5c-495726930ab0/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cuda11-gpu/versions/3", "name": "azureml_anonymous", "tags": {}, @@ -709,24 +730,24 @@ "Cache-Control": "no-cache", "Content-Length": "1922", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:06:09 GMT", + "Date": "Fri, 23 Sep 2022 17:34:33 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-4e384506b5750fa75410209dbdc9e97c-a57d3690b10e4122-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-470a398a87d146b268a218fd13d91f72-d5e55f6545e54e7a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "33cf3a9c-cedd-4c0a-97e9-3a0e005661a7", - "x-ms-ratelimit-remaining-subscription-writes": "1175", + "x-ms-correlation-request-id": "bae36793-f3c6-47b2-9c9a-91104a7f8629", + "x-ms-ratelimit-remaining-subscription-writes": "1196", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020610Z:33cf3a9c-cedd-4c0a-97e9-3a0e005661a7", - "x-request-time": "0.349" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173433Z:bae36793-f3c6-47b2-9c9a-91104a7f8629", + "x-request-time": "0.289" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1ce7f673-e2a1-4bda-b182-fad8c25c3bbb", - "name": "1ce7f673-e2a1-4bda-b182-fad8c25c3bbb", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/6ad6859c-a4b0-4afc-8c2d-990d8df9e073", + "name": "6ad6859c-a4b0-4afc-8c2d-990d8df9e073", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -736,7 +757,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "1ce7f673-e2a1-4bda-b182-fad8c25c3bbb", + "version": "6ad6859c-a4b0-4afc-8c2d-990d8df9e073", "display_name": "TaxiFeatureEngineering", "is_deterministic": "True", "type": "command", @@ -751,7 +772,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2b63a6e0-23d8-4099-802c-7447849f3e2a/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/e6cd90ac-dad6-40fb-9b5c-495726930ab0/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cuda11-gpu/versions/3", "resources": { "instance_count": "1" @@ -761,10 +782,10 @@ } }, "systemData": { - "createdAt": "2022-09-20T04:01:16.5721028\u002B00:00", + "createdAt": "2022-09-23T16:19:47.8266026\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-20T04:01:16.8165787\u002B00:00", + "lastModifiedAt": "2022-09-23T16:19:47.9937343\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -785,24 +806,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:06:11 GMT", + "Date": "Fri, 23 Sep 2022 17:34:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-3f5559d4d767c7209a0cf7c85bdcad97-ee2b34afa76d0c68-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-dc3cf602724dd33f3418b21cecf46c7b-7271ea3991665814-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "95cd23fd-42cf-4204-9970-dce5af243520", - "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-correlation-request-id": "349ce22a-621d-47f9-bbe5-1702197a9849", + "x-ms-ratelimit-remaining-subscription-reads": "11996", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020611Z:95cd23fd-42cf-4204-9970-dce5af243520", - "x-request-time": "0.082" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173434Z:349ce22a-621d-47f9-bbe5-1702197a9849", + "x-request-time": "0.089" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -817,17 +838,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -849,21 +870,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:06:12 GMT", + "Date": "Fri, 23 Sep 2022 17:34:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-361e60c33b8fa231e25c03171e8b3a0a-2ebecb31ac3ad878-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-0463fb2912b8315045d27197f0720ed4-92527b4ef5e36ce2-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f0216ae8-228f-4062-885f-32972d6db884", - "x-ms-ratelimit-remaining-subscription-writes": "1189", + "x-ms-correlation-request-id": "ff015a33-e557-48ff-8597-64bd2e477407", + "x-ms-ratelimit-remaining-subscription-writes": "1197", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020612Z:f0216ae8-228f-4062-885f-32972d6db884", - "x-request-time": "0.162" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173434Z:ff015a33-e557-48ff-8597-64bd2e477407", + "x-request-time": "0.087" }, "ResponseBody": { "secretsType": "AccountKey", @@ -871,14 +892,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/train_src/train.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/train_src/train.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:06:14 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:34:36 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -888,9 +909,9 @@ "Content-Length": "2422", "Content-MD5": "LwwtIGRB0XMBLqUtuK9UCg==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 02:06:12 GMT", - "ETag": "\u00220x8DA9ABCC6E9D983\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:01:20 GMT", + "Date": "Fri, 23 Sep 2022 17:34:34 GMT", + "ETag": "\u00220x8DA9D7F70B981B7\u0022", + "Last-Modified": "Fri, 23 Sep 2022 16:19:50 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -899,10 +920,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:01:20 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 16:19:50 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "78c516c6-4d73-4b50-a257-ddd4cfa23b0f", + "x-ms-meta-name": "2a7b4009-c754-4337-8049-e80b7ccae244", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -911,20 +932,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/train_src/train.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/train_src/train.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:06:14 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:34:37 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 02:06:13 GMT", + "Date": "Fri, 23 Sep 2022 17:34:34 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -937,7 +958,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/78c516c6-4d73-4b50-a257-ddd4cfa23b0f/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2a7b4009-c754-4337-8049-e80b7ccae244/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -955,7 +976,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/train_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/train_src" } }, "StatusCode": 200, @@ -963,27 +984,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:06:14 GMT", + "Date": "Fri, 23 Sep 2022 17:34:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-fc49ba375bdab3d786e8477a74b3ae4e-5017c2c0f414341f-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-35de35090325ebeeac4edaadb5f0d142-2a3f767b0bec52a2-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8d707d53-7301-4ba4-aa2c-29a7958853c8", - "x-ms-ratelimit-remaining-subscription-writes": "1174", + "x-ms-correlation-request-id": "3cfaa787-3ffc-46c5-a884-c46dfdac9825", + "x-ms-ratelimit-remaining-subscription-writes": "1195", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020614Z:8d707d53-7301-4ba4-aa2c-29a7958853c8", - "x-request-time": "0.075" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173436Z:3cfaa787-3ffc-46c5-a884-c46dfdac9825", + "x-request-time": "0.069" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/78c516c6-4d73-4b50-a257-ddd4cfa23b0f/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2a7b4009-c754-4337-8049-e80b7ccae244/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -995,13 +1016,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/train_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/train_src" }, "systemData": { - "createdAt": "2022-09-20T04:01:21.7698177\u002B00:00", + "createdAt": "2022-09-23T16:19:50.9933712\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:06:14.5868679\u002B00:00", + "lastModifiedAt": "2022-09-23T17:34:35.9873023\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -1026,7 +1047,7 @@ "isArchived": false, "componentSpec": { "command": "python train.py --training_data ${{inputs.training_data}} --test_data ${{outputs.test_data}} --model_output ${{outputs.model_output}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/78c516c6-4d73-4b50-a257-ddd4cfa23b0f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2a7b4009-c754-4337-8049-e80b7ccae244/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cuda11-gpu/versions/3", "name": "azureml_anonymous", "tags": {}, @@ -1056,24 +1077,24 @@ "Cache-Control": "no-cache", "Content-Length": "2019", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:06:15 GMT", + "Date": "Fri, 23 Sep 2022 17:34:36 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-24ae0ed7205a3e0e48efb9d3bb54f281-f36af1394502fd74-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-987aee9ca034218ed307bec84ba112d8-48f7733020074866-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0587ec30-181f-42fb-a6d3-5c77cc081487", - "x-ms-ratelimit-remaining-subscription-writes": "1173", + "x-ms-correlation-request-id": "ea2f131f-fa12-4671-87f7-74495f47092c", + "x-ms-ratelimit-remaining-subscription-writes": "1194", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020615Z:0587ec30-181f-42fb-a6d3-5c77cc081487", - "x-request-time": "0.346" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173437Z:ea2f131f-fa12-4671-87f7-74495f47092c", + "x-request-time": "0.357" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1f684b65-cba9-4c59-b252-091f60a61b45", - "name": "1f684b65-cba9-4c59-b252-091f60a61b45", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/13d86874-d9a9-4dcd-9ba0-5533c3c52c2f", + "name": "13d86874-d9a9-4dcd-9ba0-5533c3c52c2f", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1083,7 +1104,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "1f684b65-cba9-4c59-b252-091f60a61b45", + "version": "13d86874-d9a9-4dcd-9ba0-5533c3c52c2f", "display_name": "TrainLinearRegressionModel", "is_deterministic": "True", "type": "command", @@ -1101,7 +1122,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/78c516c6-4d73-4b50-a257-ddd4cfa23b0f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2a7b4009-c754-4337-8049-e80b7ccae244/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cuda11-gpu/versions/3", "resources": { "instance_count": "1" @@ -1111,10 +1132,10 @@ } }, "systemData": { - "createdAt": "2022-09-20T04:01:23.4237084\u002B00:00", + "createdAt": "2022-09-23T16:19:52.0056273\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-20T04:01:23.6412205\u002B00:00", + "lastModifiedAt": "2022-09-23T16:19:52.2224507\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -1135,24 +1156,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:06:16 GMT", + "Date": "Fri, 23 Sep 2022 17:34:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-3b0b521eaebaea1facafcc40dfc11c95-76b8c4d7d9d50f23-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-9d928bc1c1f6b067f3204e4dd0fd977b-074cdf725ee676f0-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5994a65e-ea50-42c9-9384-cd0ba3650dfb", - "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-correlation-request-id": "14834d78-f066-4802-b8d8-9365f8d079e3", + "x-ms-ratelimit-remaining-subscription-reads": "11995", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020616Z:5994a65e-ea50-42c9-9384-cd0ba3650dfb", - "x-request-time": "0.076" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173437Z:14834d78-f066-4802-b8d8-9365f8d079e3", + "x-request-time": "0.080" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -1167,17 +1188,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -1199,21 +1220,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:06:18 GMT", + "Date": "Fri, 23 Sep 2022 17:34:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-31cfc57d79c04be6def256fc285a0e44-62ec6d11e052b29e-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-03c2538628efeb2ebba1029dfeceb198-8dcffca7cdd058d8-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "56d6a4d9-f00a-4591-bb02-9490eace55bf", - "x-ms-ratelimit-remaining-subscription-writes": "1188", + "x-ms-correlation-request-id": "b1e1e51c-ae21-48b3-ae7b-28fbb96ec199", + "x-ms-ratelimit-remaining-subscription-writes": "1196", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020618Z:56d6a4d9-f00a-4591-bb02-9490eace55bf", - "x-request-time": "0.093" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173438Z:b1e1e51c-ae21-48b3-ae7b-28fbb96ec199", + "x-request-time": "0.098" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1221,14 +1242,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/predict_src/predict.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/predict_src/predict.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:06:20 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:34:40 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -1238,9 +1259,9 @@ "Content-Length": "2430", "Content-MD5": "i0ZPoTL2iW5n0MGJfy7GWQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 02:06:19 GMT", - "ETag": "\u00220x8DA9ABCCA9282D1\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:01:26 GMT", + "Date": "Fri, 23 Sep 2022 17:34:37 GMT", + "ETag": "\u00220x8DA9D7F735158B1\u0022", + "Last-Modified": "Fri, 23 Sep 2022 16:19:54 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1249,10 +1270,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:01:26 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 16:19:54 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "840042a4-e45e-4caf-b0e1-4aae83793610", + "x-ms-meta-name": "6f75946a-838a-4ab9-b69d-bc99b6eaa2e5", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -1261,20 +1282,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/predict_src/predict.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/predict_src/predict.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:06:20 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:34:40 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 02:06:19 GMT", + "Date": "Fri, 23 Sep 2022 17:34:37 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1287,7 +1308,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/840042a4-e45e-4caf-b0e1-4aae83793610/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/6f75946a-838a-4ab9-b69d-bc99b6eaa2e5/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -1305,7 +1326,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/predict_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/predict_src" } }, "StatusCode": 200, @@ -1313,27 +1334,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:06:20 GMT", + "Date": "Fri, 23 Sep 2022 17:34:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-0ab6f902096db94811fb0f4401594645-774bde370f83a3d2-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-23daf25eacc215b1d52231e8cbf01e78-2d22393122d8c4ef-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9d225071-d4a0-429f-bc5b-6f3dfd089bdf", - "x-ms-ratelimit-remaining-subscription-writes": "1172", + "x-ms-correlation-request-id": "af5399ad-1d1c-40e6-86d7-da821d253dee", + "x-ms-ratelimit-remaining-subscription-writes": "1193", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020620Z:9d225071-d4a0-429f-bc5b-6f3dfd089bdf", - "x-request-time": "0.089" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173439Z:af5399ad-1d1c-40e6-86d7-da821d253dee", + "x-request-time": "0.080" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/840042a4-e45e-4caf-b0e1-4aae83793610/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/6f75946a-838a-4ab9-b69d-bc99b6eaa2e5/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -1345,13 +1366,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/predict_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/predict_src" }, "systemData": { - "createdAt": "2022-09-20T04:01:27.6127805\u002B00:00", + "createdAt": "2022-09-23T16:19:55.542378\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:06:20.190058\u002B00:00", + "lastModifiedAt": "2022-09-23T17:34:39.4457367\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -1376,7 +1397,7 @@ "isArchived": false, "componentSpec": { "command": "python predict.py --model_input ${{inputs.model_input}} --test_data ${{inputs.test_data}} --predictions ${{outputs.predictions}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/840042a4-e45e-4caf-b0e1-4aae83793610/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/6f75946a-838a-4ab9-b69d-bc99b6eaa2e5/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cuda11-gpu/versions/3", "name": "azureml_anonymous", "tags": {}, @@ -1406,24 +1427,24 @@ "Cache-Control": "no-cache", "Content-Length": "2032", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:06:21 GMT", + "Date": "Fri, 23 Sep 2022 17:34:40 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-c181317d55f016285cbd9f7986c2a8e7-52bd125247ad4bad-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-61bdfe8d50179b47c0369d1ff01394d6-304a72d34ef0afe9-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f4ad6a65-0c56-4d79-8c96-41a65f95ff38", - "x-ms-ratelimit-remaining-subscription-writes": "1171", + "x-ms-correlation-request-id": "9ed765b8-4340-4222-b38f-cc38f61c6864", + "x-ms-ratelimit-remaining-subscription-writes": "1192", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020621Z:f4ad6a65-0c56-4d79-8c96-41a65f95ff38", - "x-request-time": "0.303" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173440Z:9ed765b8-4340-4222-b38f-cc38f61c6864", + "x-request-time": "0.337" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/77ec2b75-afbf-4f71-ba70-63f4b7a180dd", - "name": "77ec2b75-afbf-4f71-ba70-63f4b7a180dd", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f13341dc-e865-4325-bfa3-3990528315a3", + "name": "f13341dc-e865-4325-bfa3-3990528315a3", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1433,7 +1454,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "77ec2b75-afbf-4f71-ba70-63f4b7a180dd", + "version": "f13341dc-e865-4325-bfa3-3990528315a3", "display_name": "PredictTaxiFares", "is_deterministic": "True", "type": "command", @@ -1452,7 +1473,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/840042a4-e45e-4caf-b0e1-4aae83793610/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/6f75946a-838a-4ab9-b69d-bc99b6eaa2e5/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cuda11-gpu/versions/3", "resources": { "instance_count": "1" @@ -1462,10 +1483,10 @@ } }, "systemData": { - "createdAt": "2022-09-20T04:01:29.4656621\u002B00:00", + "createdAt": "2022-09-23T16:19:56.7177242\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-20T04:01:29.6371565\u002B00:00", + "lastModifiedAt": "2022-09-23T16:19:56.9308952\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -1486,24 +1507,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:06:22 GMT", + "Date": "Fri, 23 Sep 2022 17:34:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-96d7ceca4083309e5d50f334139a87c3-577151abb78092b7-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-057014ad7c0f93fcf48133a992864fb8-66f5984f08a71881-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e5ee8286-1f5d-42c6-81cd-0ac225bc1f4f", - "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-correlation-request-id": "b1a2ac74-e517-4c9f-9778-55eae429fdb3", + "x-ms-ratelimit-remaining-subscription-reads": "11994", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020622Z:e5ee8286-1f5d-42c6-81cd-0ac225bc1f4f", - "x-request-time": "0.087" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173441Z:b1a2ac74-e517-4c9f-9778-55eae429fdb3", + "x-request-time": "0.086" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -1518,17 +1539,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -1550,21 +1571,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:06:22 GMT", + "Date": "Fri, 23 Sep 2022 17:34:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-da204c8865cc49656653f0805802a9f4-e7d25b4d701da0e9-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-74be22c4e8e409ac5d9ee2c3fea16751-d99a1660c1a7c081-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "69a32a26-3729-4877-b227-9d37d15c7c2f", - "x-ms-ratelimit-remaining-subscription-writes": "1187", + "x-ms-correlation-request-id": "10cbc64b-eada-4266-9a8d-36579913e843", + "x-ms-ratelimit-remaining-subscription-writes": "1195", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020623Z:69a32a26-3729-4877-b227-9d37d15c7c2f", - "x-request-time": "0.083" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173442Z:10cbc64b-eada-4266-9a8d-36579913e843", + "x-request-time": "0.084" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1572,14 +1593,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/score_src/score.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/score_src/score.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:06:24 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:34:44 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -1589,9 +1610,9 @@ "Content-Length": "2224", "Content-MD5": "6qz6o7uq4IvX5ETlbeIXjw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 02:06:23 GMT", - "ETag": "\u00220x8DA9ABCCE8597C5\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:01:33 GMT", + "Date": "Fri, 23 Sep 2022 17:34:41 GMT", + "ETag": "\u00220x8DA9D7F761A23A0\u0022", + "Last-Modified": "Fri, 23 Sep 2022 16:19:59 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1600,10 +1621,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:01:33 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 16:19:59 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "b092a5da-92bc-4695-8346-e15889288002", + "x-ms-meta-name": "5294bced-8eba-4df2-a541-09d1d9c9bdb5", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -1612,20 +1633,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/score_src/score.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/score_src/score.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:06:25 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:34:44 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 02:06:23 GMT", + "Date": "Fri, 23 Sep 2022 17:34:41 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1638,7 +1659,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/b092a5da-92bc-4695-8346-e15889288002/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5294bced-8eba-4df2-a541-09d1d9c9bdb5/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -1656,7 +1677,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/score_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/score_src" } }, "StatusCode": 200, @@ -1664,27 +1685,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:06:24 GMT", + "Date": "Fri, 23 Sep 2022 17:34:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-f482c4e8b058c61db6800c61386fe470-f1756788e64c2df2-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-14aa8bf9d4928736e37024bc6723c520-ac3d67006255681c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "56f91157-e8f8-4319-ab69-6d6a5bf2d4c8", - "x-ms-ratelimit-remaining-subscription-writes": "1170", + "x-ms-correlation-request-id": "fdcfa6dd-32f5-4567-9f7c-6ae686102575", + "x-ms-ratelimit-remaining-subscription-writes": "1191", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020624Z:56f91157-e8f8-4319-ab69-6d6a5bf2d4c8", - "x-request-time": "0.069" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173443Z:fdcfa6dd-32f5-4567-9f7c-6ae686102575", + "x-request-time": "0.093" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/b092a5da-92bc-4695-8346-e15889288002/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5294bced-8eba-4df2-a541-09d1d9c9bdb5/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -1696,13 +1717,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/score_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/score_src" }, "systemData": { - "createdAt": "2022-09-20T04:01:34.2253465\u002B00:00", + "createdAt": "2022-09-23T16:20:00.045596\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:06:24.5692218\u002B00:00", + "lastModifiedAt": "2022-09-23T17:34:43.2203592\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -1727,7 +1748,7 @@ "isArchived": false, "componentSpec": { "command": "python score.py --predictions ${{inputs.predictions}} --model ${{inputs.model}} --score_report ${{outputs.score_report}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/b092a5da-92bc-4695-8346-e15889288002/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5294bced-8eba-4df2-a541-09d1d9c9bdb5/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cuda11-gpu/versions/3", "name": "azureml_anonymous", "tags": {}, @@ -1757,24 +1778,24 @@ "Cache-Control": "no-cache", "Content-Length": "2015", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:06:26 GMT", + "Date": "Fri, 23 Sep 2022 17:34:44 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-d51ec0a7592945c2e15734a7db64dd93-843e2c172ddf9059-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-f5a9cab0271c29288124772ffc903dac-fea272a867b53821-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0e9ae945-a69b-4515-bd6f-25182a5267e2", - "x-ms-ratelimit-remaining-subscription-writes": "1169", + "x-ms-correlation-request-id": "e7ff0bfb-c3ea-4ca6-aa0a-ea23f786bd4f", + "x-ms-ratelimit-remaining-subscription-writes": "1190", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020626Z:0e9ae945-a69b-4515-bd6f-25182a5267e2", - "x-request-time": "0.312" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173444Z:e7ff0bfb-c3ea-4ca6-aa0a-ea23f786bd4f", + "x-request-time": "0.329" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/df00e325-64d2-490b-8741-14a34e5880ba", - "name": "df00e325-64d2-490b-8741-14a34e5880ba", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/82ee890b-bd0b-4e00-b38a-7669009bec18", + "name": "82ee890b-bd0b-4e00-b38a-7669009bec18", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1784,7 +1805,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "df00e325-64d2-490b-8741-14a34e5880ba", + "version": "82ee890b-bd0b-4e00-b38a-7669009bec18", "display_name": "ScoreModel", "is_deterministic": "True", "type": "command", @@ -1803,7 +1824,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/b092a5da-92bc-4695-8346-e15889288002/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5294bced-8eba-4df2-a541-09d1d9c9bdb5/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cuda11-gpu/versions/3", "resources": { "instance_count": "1" @@ -1813,10 +1834,10 @@ } }, "systemData": { - "createdAt": "2022-09-20T04:01:35.9957678\u002B00:00", + "createdAt": "2022-09-23T16:20:01.0795269\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-20T04:01:36.1696271\u002B00:00", + "lastModifiedAt": "2022-09-23T16:20:01.2494506\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -1837,24 +1858,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:06:26 GMT", + "Date": "Fri, 23 Sep 2022 17:34:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-086dd316b43a1f38dda336091496a2b5-13020cf58d26445e-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-7e144e21675254290eb9df0e463a100a-8ebdd95cd5cbcb21-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e86adf9d-8476-4629-bb8f-c15602952478", - "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-correlation-request-id": "54233f5c-c605-4f3d-9f08-fb1507221765", + "x-ms-ratelimit-remaining-subscription-reads": "11993", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020627Z:e86adf9d-8476-4629-bb8f-c15602952478", - "x-request-time": "0.080" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173445Z:54233f5c-c605-4f3d-9f08-fb1507221765", + "x-request-time": "0.106" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -1869,17 +1890,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -1901,21 +1922,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:06:29 GMT", + "Date": "Fri, 23 Sep 2022 17:34:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-46a4aa24a3fa853d58cb06a619de2407-901c206475faaa3f-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-04baa408433188031486a347725ab8da-db34522df80fd7f0-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "13d3634c-37dd-4c23-b338-6dedb64fa9d2", - "x-ms-ratelimit-remaining-subscription-writes": "1186", + "x-ms-correlation-request-id": "fb4674a7-41fe-42ed-ae1f-bbecee73b8d0", + "x-ms-ratelimit-remaining-subscription-writes": "1194", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020629Z:13d3634c-37dd-4c23-b338-6dedb64fa9d2", - "x-request-time": "0.104" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173445Z:fb4674a7-41fe-42ed-ae1f-bbecee73b8d0", + "x-request-time": "0.089" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1923,14 +1944,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/data/greenTaxiData.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/data/greenTaxiData.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:06:30 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:34:47 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -1940,9 +1961,9 @@ "Content-Length": "830766", "Content-MD5": "Oi4Z1vQHnvcCYff59aHKbg==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 02:06:29 GMT", - "ETag": "\u00220x8DA9ABCD36E5A94\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:01:41 GMT", + "Date": "Fri, 23 Sep 2022 17:34:45 GMT", + "ETag": "\u00220x8DA9D7F7A719246\u0022", + "Last-Modified": "Fri, 23 Sep 2022 16:20:06 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1951,32 +1972,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:01:40 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 16:20:04 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "28e5dd23-b753-422e-801b-0153278ef540", + "x-ms-meta-name": "3c879665-ce4b-4460-9e89-56eaa9ebc599", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "550be7a0-b38f-427d-880f-1e967fe8b119", + "x-ms-meta-version": "189af1de-a68c-44fd-a8ba-8491217bc6bb", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/data/greenTaxiData.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/data/greenTaxiData.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:06:31 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:34:48 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 02:06:30 GMT", + "Date": "Fri, 23 Sep 2022 17:34:45 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1995,7 +2016,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "4942", + "Content-Length": "5032", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -2037,8 +2058,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/02a9007f-e5c9-48fa-bbfc-924075b33168" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/fef442a0-e032-4c3f-88b3-3e429c1ac3ad" }, "transform_job": { "resources": null, @@ -2062,8 +2084,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1ce7f673-e2a1-4bda-b182-fad8c25c3bbb" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/6ad6859c-a4b0-4afc-8c2d-990d8df9e073" }, "train_job": { "resources": null, @@ -2091,8 +2114,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1f684b65-cba9-4c59-b252-091f60a61b45" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/13d86874-d9a9-4dcd-9ba0-5533c3c52c2f" }, "predict_job": { "resources": null, @@ -2120,8 +2144,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/77ec2b75-afbf-4f71-ba70-63f4b7a180dd" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f13341dc-e865-4325-bfa3-3990528315a3" }, "score_job": { "resources": null, @@ -2149,8 +2174,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/df00e325-64d2-490b-8741-14a34e5880ba" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/82ee890b-bd0b-4e00-b38a-7669009bec18" } }, "outputs": { @@ -2188,22 +2214,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "8587", + "Content-Length": "8717", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:06:39 GMT", + "Date": "Fri, 23 Sep 2022 17:34:53 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-1df268e87c533957b696b799e7da78c4-604426e126f328ee-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-886b29ae121f36ddf5c653b5d7880792-fec97dff9d845144-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bdac1882-952a-4eef-8683-d21dc1341f93", - "x-ms-ratelimit-remaining-subscription-writes": "1168", + "x-ms-correlation-request-id": "ec9f6930-5246-480f-9583-46a8b9a53634", + "x-ms-ratelimit-remaining-subscription-writes": "1189", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020640Z:bdac1882-952a-4eef-8683-d21dc1341f93", - "x-request-time": "3.364" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173454Z:ec9f6930-5246-480f-9583-46a8b9a53634", + "x-request-time": "3.411" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -2277,8 +2303,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/02a9007f-e5c9-48fa-bbfc-924075b33168" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/fef442a0-e032-4c3f-88b3-3e429c1ac3ad" }, "transform_job": { "resources": null, @@ -2302,8 +2329,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1ce7f673-e2a1-4bda-b182-fad8c25c3bbb" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/6ad6859c-a4b0-4afc-8c2d-990d8df9e073" }, "train_job": { "resources": null, @@ -2331,8 +2359,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1f684b65-cba9-4c59-b252-091f60a61b45" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/13d86874-d9a9-4dcd-9ba0-5533c3c52c2f" }, "predict_job": { "resources": null, @@ -2360,8 +2389,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/77ec2b75-afbf-4f71-ba70-63f4b7a180dd" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f13341dc-e865-4325-bfa3-3990528315a3" }, "score_job": { "resources": null, @@ -2389,8 +2419,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/df00e325-64d2-490b-8741-14a34e5880ba" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/82ee890b-bd0b-4e00-b38a-7669009bec18" } }, "inputs": { @@ -2442,7 +2473,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T02:06:39.8917094\u002B00:00", + "createdAt": "2022-09-23T17:34:53.5843157\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_dsl_pipeline_with_command_builder_setting_binding_node_and_pipeline_level.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_dsl_pipeline_with_command_builder_setting_binding_node_and_pipeline_level.json index 3f576f98cf83..d67c509a874a 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_dsl_pipeline_with_command_builder_setting_binding_node_and_pipeline_level.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_dsl_pipeline_with_command_builder_setting_binding_node_and_pipeline_level.json @@ -15,11 +15,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:19:56 GMT", + "Date": "Fri, 23 Sep 2022 16:32:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-d55d8bb602ad8c3ff6fb48ca495cc32f-e9a0501e20451b16-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-fae01c05a2e9297f7fdcd7f730f5777e-d327f3c7a5f2174a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -28,11 +28,11 @@ ], "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a3ac127a-dac8-437b-a69e-50659df57ecd", - "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-correlation-request-id": "0bfde5f4-ebb1-4a4d-ab38-e55a76fc745f", + "x-ms-ratelimit-remaining-subscription-reads": "11915", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021957Z:a3ac127a-dac8-437b-a69e-50659df57ecd", - "x-request-time": "0.034" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163228Z:0bfde5f4-ebb1-4a4d-ab38-e55a76fc745f", + "x-request-time": "0.052" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -41,8 +41,8 @@ "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T11:47:20.6013506\u002B00:00", - "modifiedOn": "2022-09-15T11:47:27.309088\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -60,32 +60,19 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 3, + "currentNodeCount": 1, + "targetNodeCount": 4, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 2, - "idleNodeCount": 1, + "runningNodeCount": 1, + "idleNodeCount": 0, "unusableNodeCount": 0, - "leavingNodeCount": 1, + "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-21T02:16:16.32\u002B00:00", - "errors": [ - { - "error": { - "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_404df555289c2a7323442449cde9b6b88007b9829c2f961bd0c3983a09984207_d: There is not enough disk space on the node", - "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - } - ] - } - } - ], + "allocationStateTransitionTime": "2022-09-23T16:31:36.634\u002B00:00", + "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -110,11 +97,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:20:01 GMT", + "Date": "Fri, 23 Sep 2022 16:32:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-2c8a0fba006fa1e725bb2dd9ad300fe3-b216924983ed3824-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-67eb95b5e78ed499cf709df59a880226-98a96740baa0b3e1-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -123,11 +110,11 @@ ], "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e2a0e3d4-059d-43ea-8013-c127bc3e7297", - "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-correlation-request-id": "6dd9a7fb-fdfc-4565-951d-b1afbe4ab9ec", + "x-ms-ratelimit-remaining-subscription-reads": "11914", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T022002Z:e2a0e3d4-059d-43ea-8013-c127bc3e7297", - "x-request-time": "0.115" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163233Z:6dd9a7fb-fdfc-4565-951d-b1afbe4ab9ec", + "x-request-time": "0.347" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -142,17 +129,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -174,21 +161,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:20:02 GMT", + "Date": "Fri, 23 Sep 2022 16:32:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-3b55b32e6dfeab25da2838d9d82a0517-d0704a7e492c337c-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-e471818c8b95aac3048afbb9f7cdf7c5-8a78a3a9f38532cf-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "67ddc8a2-0462-4b22-90ac-0181b010bcbf", - "x-ms-ratelimit-remaining-subscription-writes": "1187", + "x-ms-correlation-request-id": "6fa538b8-d4d3-4500-8337-678706e784bd", + "x-ms-ratelimit-remaining-subscription-writes": "1145", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T022003Z:67ddc8a2-0462-4b22-90ac-0181b010bcbf", - "x-request-time": "0.133" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163234Z:6fa538b8-d4d3-4500-8337-678706e784bd", + "x-request-time": "0.113" }, "ResponseBody": { "secretsType": "AccountKey", @@ -196,14 +183,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:20:04 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:32:36 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -213,9 +200,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 02:20:03 GMT", - "ETag": "\u00220x8DA9ABCB2F66FF1\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:00:47 GMT", + "Date": "Fri, 23 Sep 2022 16:32:34 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -224,10 +211,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:00:47 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ca7591cf-36a6-4425-bb3d-579cd587b206", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -236,20 +223,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:20:05 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:32:36 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 02:20:04 GMT", + "Date": "Fri, 23 Sep 2022 16:32:34 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -262,7 +249,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -280,7 +267,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -288,11 +275,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:20:05 GMT", + "Date": "Fri, 23 Sep 2022 16:32:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-570c14af87a97910dfe21ea2611d7898-b767d9843fc517d4-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-d3325ef31bb2769714a2408573fb792d-b87bd01e89237647-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -301,14 +288,14 @@ ], "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2e1fe8a1-444d-4fae-9f0e-10fbc4e8a4af", - "x-ms-ratelimit-remaining-subscription-writes": "1181", + "x-ms-correlation-request-id": "914f708d-4c3f-4d7a-9cb4-64e8f7bc3e6b", + "x-ms-ratelimit-remaining-subscription-writes": "1083", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T022006Z:2e1fe8a1-444d-4fae-9f0e-10fbc4e8a4af", - "x-request-time": "0.504" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163236Z:914f708d-4c3f-4d7a-9cb4-64e8f7bc3e6b", + "x-request-time": "0.114" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -320,13 +307,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-20T04:00:48.9804975\u002B00:00", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:20:06.2163894\u002B00:00", + "lastModifiedAt": "2022-09-23T16:32:35.9403794\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -351,7 +338,7 @@ "isArchived": false, "componentSpec": { "command": "echo \u0022hello world\u0022", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "distribution": { "type": "pytorch", @@ -394,24 +381,24 @@ "Cache-Control": "no-cache", "Content-Length": "2317", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:20:07 GMT", + "Date": "Fri, 23 Sep 2022 16:32:37 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-58f43cc706b292b335270bd806c49958-d6fe5b5f28f8704d-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-4f1fbae4a373b4443cec1294f5a5d89f-330d3568a6f94c5f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2bc872bc-f3c0-4d44-a894-2256122f3b55", - "x-ms-ratelimit-remaining-subscription-writes": "1180", + "x-ms-correlation-request-id": "5248da5a-c5a2-4c03-b20c-b9fcc06cd692", + "x-ms-ratelimit-remaining-subscription-writes": "1082", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T022008Z:2bc872bc-f3c0-4d44-a894-2256122f3b55", - "x-request-time": "0.849" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163238Z:5248da5a-c5a2-4c03-b20c-b9fcc06cd692", + "x-request-time": "0.550" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/e162652b-ce01-4765-9a7c-eb86a0771a99", - "name": "e162652b-ce01-4765-9a7c-eb86a0771a99", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f06ef957-7dff-424d-83da-4e6beccb409e", + "name": "f06ef957-7dff-424d-83da-4e6beccb409e", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -421,7 +408,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "e162652b-ce01-4765-9a7c-eb86a0771a99", + "version": "f06ef957-7dff-424d-83da-4e6beccb409e", "display_name": "train_with_sample_data", "is_deterministic": "True", "type": "command", @@ -451,7 +438,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -465,10 +452,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T01:55:48.5675515\u002B00:00", + "createdAt": "2022-09-23T16:32:38.3052414\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T01:55:48.7739085\u002B00:00", + "lastModifiedAt": "2022-09-23T16:32:38.3052414\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -489,11 +476,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:20:09 GMT", + "Date": "Fri, 23 Sep 2022 16:32:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-b7c2903c9e6997a767a2a2e4f25103bd-a214e43d6eda5ac1-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-8b5b75c1b3b268f42f7912acc9f855f4-931b4f975999803a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -502,11 +489,11 @@ ], "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "253db83f-31a8-4a54-aac4-01106ecb053f", - "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-correlation-request-id": "2103a70b-c547-4797-ad31-b578b4c93c91", + "x-ms-ratelimit-remaining-subscription-reads": "11913", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T022010Z:253db83f-31a8-4a54-aac4-01106ecb053f", - "x-request-time": "0.086" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163240Z:2103a70b-c547-4797-ad31-b578b4c93c91", + "x-request-time": "0.099" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -521,17 +508,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -553,21 +540,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:20:10 GMT", + "Date": "Fri, 23 Sep 2022 16:32:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-80c13f4670e1320930e9a7074112dc07-a2e2a78b645654a6-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-60e71707ef16a83250b07c912a236580-9eae881a9da3a846-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0de8d0da-5cfb-400d-a5d1-6603abd99c15", - "x-ms-ratelimit-remaining-subscription-writes": "1186", + "x-ms-correlation-request-id": "8512a888-3602-44cb-bf30-3d5dc71941e4", + "x-ms-ratelimit-remaining-subscription-writes": "1144", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T022011Z:0de8d0da-5cfb-400d-a5d1-6603abd99c15", - "x-request-time": "0.079" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163240Z:8512a888-3602-44cb-bf30-3d5dc71941e4", + "x-request-time": "0.085" }, "ResponseBody": { "secretsType": "AccountKey", @@ -575,14 +562,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:20:13 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:32:43 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -592,9 +579,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 02:20:11 GMT", - "ETag": "\u00220x8DA9B7432476CC7\u0022", - "Last-Modified": "Wed, 21 Sep 2022 01:54:18 GMT", + "Date": "Fri, 23 Sep 2022 16:32:40 GMT", + "ETag": "\u00220x8DA9D770C570D84\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:19:46 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -603,32 +590,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 01:54:18 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:19:45 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "9973d8ef-e5fd-4949-aad2-3a6d5d51afea", + "x-ms-meta-name": "8c59cb92-112f-4c04-bda0-1342b610850d", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "69189648-da76-4adf-9b02-269e5c31e745", + "x-ms-meta-version": "c1f97989-616d-4b90-a0d6-bac9ea34bade", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:20:13 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:32:43 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 02:20:12 GMT", + "Date": "Fri, 23 Sep 2022 16:32:41 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -647,7 +634,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "2018", + "Content-Length": "2036", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -720,8 +707,9 @@ "mode": "Upload" } }, + "properties": {}, "_source": "BUILDER", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/e162652b-ce01-4765-9a7c-eb86a0771a99" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f06ef957-7dff-424d-83da-4e6beccb409e" } }, "outputs": { @@ -738,22 +726,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4629", + "Content-Length": "4655", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:20:19 GMT", + "Date": "Fri, 23 Sep 2022 16:32:50 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-e0e09c3cf853df5d60ee029a201d6e1c-72a61188d831b9b8-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-d39a5227cd8b2cf6035ad3ce5d770531-8261faab7ab65fc1-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2729ab59-a385-4bad-9847-eb634e9bd94b", - "x-ms-ratelimit-remaining-subscription-writes": "1179", + "x-ms-correlation-request-id": "a80c5703-9435-4fe5-aca8-e6777b69c7d0", + "x-ms-ratelimit-remaining-subscription-writes": "1081", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T022020Z:2729ab59-a385-4bad-9847-eb634e9bd94b", - "x-request-time": "3.180" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163250Z:a80c5703-9435-4fe5-aca8-e6777b69c7d0", + "x-request-time": "3.198" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -843,8 +831,9 @@ "mode": "Upload" } }, + "properties": {}, "_source": "BUILDER", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/e162652b-ce01-4765-9a7c-eb86a0771a99" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f06ef957-7dff-424d-83da-4e6beccb409e" } }, "inputs": { @@ -881,7 +870,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T02:20:19.8417242\u002B00:00", + "createdAt": "2022-09-23T16:32:50.5340482\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_dsl_pipeline_with_only_setting_binding_node.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_dsl_pipeline_with_only_setting_binding_node.json index 5d8d73983743..c043881c6049 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_dsl_pipeline_with_only_setting_binding_node.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_dsl_pipeline_with_only_setting_binding_node.json @@ -15,11 +15,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:19:17 GMT", + "Date": "Fri, 23 Sep 2022 16:31:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-33e78f214098553ba8b8a05a4413f8e4-825720f7a64fb14d-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-905bbcf1784916fa739cc55736fb4e85-bd561e91a029adb5-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -28,11 +28,11 @@ ], "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a811d9a3-4c3b-4c57-ae73-7c9ddcc85f18", - "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-correlation-request-id": "6a446cfa-142e-4d67-b02b-6410193118a0", + "x-ms-ratelimit-remaining-subscription-reads": "11919", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021917Z:a811d9a3-4c3b-4c57-ae73-7c9ddcc85f18", - "x-request-time": "0.034" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163144Z:6a446cfa-142e-4d67-b02b-6410193118a0", + "x-request-time": "0.079" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -41,8 +41,8 @@ "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T11:47:20.6013506\u002B00:00", - "modifiedOn": "2022-09-15T11:47:27.309088\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -60,32 +60,19 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 3, + "currentNodeCount": 1, + "targetNodeCount": 4, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 2, - "idleNodeCount": 1, + "runningNodeCount": 1, + "idleNodeCount": 0, "unusableNodeCount": 0, - "leavingNodeCount": 1, + "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-21T02:16:16.32\u002B00:00", - "errors": [ - { - "error": { - "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_404df555289c2a7323442449cde9b6b88007b9829c2f961bd0c3983a09984207_d: There is not enough disk space on the node", - "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - } - ] - } - } - ], + "allocationStateTransitionTime": "2022-09-23T16:31:36.634\u002B00:00", + "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -110,11 +97,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:19:20 GMT", + "Date": "Fri, 23 Sep 2022 16:31:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-a628ca2fea8342e1696008f77e2feddb-f64f5eefdaa21c6d-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-e3ce1689bf51cb2234f2b540829c7210-fd7540e46853aa35-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -123,11 +110,11 @@ ], "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9c032622-aa7c-4fc5-8418-3824470dc244", - "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-correlation-request-id": "4f74424f-eab3-41fd-be01-1c3ee74386e2", + "x-ms-ratelimit-remaining-subscription-reads": "11918", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021921Z:9c032622-aa7c-4fc5-8418-3824470dc244", - "x-request-time": "0.082" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163146Z:4f74424f-eab3-41fd-be01-1c3ee74386e2", + "x-request-time": "0.185" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -142,17 +129,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -174,21 +161,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:19:22 GMT", + "Date": "Fri, 23 Sep 2022 16:31:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-4e5cab43921fc9cbb93333b7fea8fc9d-bc1c0b22f9014844-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-48e4f54540fb8eb05171072141572dc3-07ab6b8b217e2c08-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9ef47a3e-4a38-4dbe-8a3c-9d6d7825d1fd", - "x-ms-ratelimit-remaining-subscription-writes": "1189", + "x-ms-correlation-request-id": "b1c8a07c-823f-4f20-8a6e-f37b51f4d53f", + "x-ms-ratelimit-remaining-subscription-writes": "1147", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021922Z:9ef47a3e-4a38-4dbe-8a3c-9d6d7825d1fd", - "x-request-time": "0.089" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163147Z:b1c8a07c-823f-4f20-8a6e-f37b51f4d53f", + "x-request-time": "0.085" }, "ResponseBody": { "secretsType": "AccountKey", @@ -196,14 +183,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:19:25 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:31:49 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -213,9 +200,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 02:19:23 GMT", - "ETag": "\u00220x8DA9B7432476CC7\u0022", - "Last-Modified": "Wed, 21 Sep 2022 01:54:18 GMT", + "Date": "Fri, 23 Sep 2022 16:31:47 GMT", + "ETag": "\u00220x8DA9D770C570D84\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:19:46 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -224,32 +211,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 01:54:18 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:19:45 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "9973d8ef-e5fd-4949-aad2-3a6d5d51afea", + "x-ms-meta-name": "8c59cb92-112f-4c04-bda0-1342b610850d", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "69189648-da76-4adf-9b02-269e5c31e745", + "x-ms-meta-version": "c1f97989-616d-4b90-a0d6-bac9ea34bade", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:19:25 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:31:50 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 02:19:24 GMT", + "Date": "Fri, 23 Sep 2022 16:31:47 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -268,7 +255,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1918", + "Content-Length": "1936", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -337,8 +324,9 @@ "mode": "Upload" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a4e88789-ae4a-4207-ac3d-64d3d97b7d55" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/6620d552-5f23-4635-9649-df79d85d8cdd" } }, "outputs": { @@ -354,22 +342,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4550", + "Content-Length": "4576", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:19:31 GMT", + "Date": "Fri, 23 Sep 2022 16:31:56 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-8f58d760d5ce0d99d10698a4aa7c463d-c824ea1c56ea10ca-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-3a65a32917f1411ab04094f1625cdad7-de55432194144b54-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3b9dd957-3c35-475a-9c8e-021a27199a6d", - "x-ms-ratelimit-remaining-subscription-writes": "1183", + "x-ms-correlation-request-id": "30139292-8804-4519-a3b1-82bc116e6035", + "x-ms-ratelimit-remaining-subscription-writes": "1085", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021932Z:3b9dd957-3c35-475a-9c8e-021a27199a6d", - "x-request-time": "3.038" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163157Z:30139292-8804-4519-a3b1-82bc116e6035", + "x-request-time": "3.315" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -456,8 +444,9 @@ "mode": "Upload" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a4e88789-ae4a-4207-ac3d-64d3d97b7d55" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/6620d552-5f23-4635-9649-df79d85d8cdd" } }, "inputs": { @@ -494,7 +483,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T02:19:32.1052604\u002B00:00", + "createdAt": "2022-09-23T16:31:56.6562633\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_dsl_pipeline_with_only_setting_pipeline_level.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_dsl_pipeline_with_only_setting_pipeline_level.json index ad65aa6e11c8..0cfc14c50206 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_dsl_pipeline_with_only_setting_pipeline_level.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_dsl_pipeline_with_only_setting_pipeline_level.json @@ -15,11 +15,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:18:42 GMT", + "Date": "Fri, 23 Sep 2022 16:31:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-da7e11b45e7fd35c1412c54f712c55d8-a736b7d2f2fd75e5-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-da9d0c7881fbb05aba34239cd3132bde-7c0036c8b63a1cfd-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -28,11 +28,11 @@ ], "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0596adcf-294f-4b99-975b-5d8b88b506f0", - "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-correlation-request-id": "266910e9-22a0-416e-ae7d-563426422344", + "x-ms-ratelimit-remaining-subscription-reads": "11921", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021842Z:0596adcf-294f-4b99-975b-5d8b88b506f0", - "x-request-time": "0.035" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163122Z:266910e9-22a0-416e-ae7d-563426422344", + "x-request-time": "0.037" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -41,8 +41,8 @@ "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T11:47:20.6013506\u002B00:00", - "modifiedOn": "2022-09-15T11:47:27.309088\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -61,31 +61,18 @@ }, "subnet": null, "currentNodeCount": 4, - "targetNodeCount": 3, + "targetNodeCount": 1, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 2, - "idleNodeCount": 1, + "runningNodeCount": 1, + "idleNodeCount": 0, "unusableNodeCount": 0, - "leavingNodeCount": 1, + "leavingNodeCount": 3, "preemptedNodeCount": 0 }, "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-21T02:16:16.32\u002B00:00", - "errors": [ - { - "error": { - "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_404df555289c2a7323442449cde9b6b88007b9829c2f961bd0c3983a09984207_d: There is not enough disk space on the node", - "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - } - ] - } - } - ], + "allocationStateTransitionTime": "2022-09-23T16:26:15.13\u002B00:00", + "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -110,24 +97,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:18:57 GMT", + "Date": "Fri, 23 Sep 2022 16:31:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-4846dff0eca7160ae29954f6f208584b-4764fbd50f00810d-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-c3a3d90c21fc9d2a47c357e3b0483b11-e2646b5340389b96-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8044dba1-4f26-40ae-819d-8f4b0caa7072", - "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-correlation-request-id": "597e1467-45ce-4f85-b9bc-c2a220a91089", + "x-ms-ratelimit-remaining-subscription-reads": "11920", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021858Z:8044dba1-4f26-40ae-819d-8f4b0caa7072", - "x-request-time": "0.091" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163126Z:597e1467-45ce-4f85-b9bc-c2a220a91089", + "x-request-time": "0.087" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -142,17 +129,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -174,21 +161,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:18:59 GMT", + "Date": "Fri, 23 Sep 2022 16:31:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-773c21e4318b73199529bc1a21aadbea-88b71b28244679d0-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-8eff85a15f1b75582b1cbe41fa035ed1-571a15f0f0000e48-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2e56ceda-0df7-456e-9b60-769a2f571143", - "x-ms-ratelimit-remaining-subscription-writes": "1190", + "x-ms-correlation-request-id": "d4b910b8-0d27-42e2-9e15-117577e3fa66", + "x-ms-ratelimit-remaining-subscription-writes": "1148", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021900Z:2e56ceda-0df7-456e-9b60-769a2f571143", - "x-request-time": "0.135" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163126Z:d4b910b8-0d27-42e2-9e15-117577e3fa66", + "x-request-time": "0.131" }, "ResponseBody": { "secretsType": "AccountKey", @@ -196,14 +183,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:19:02 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:31:29 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -213,9 +200,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 02:19:01 GMT", - "ETag": "\u00220x8DA9B7432476CC7\u0022", - "Last-Modified": "Wed, 21 Sep 2022 01:54:18 GMT", + "Date": "Fri, 23 Sep 2022 16:31:26 GMT", + "ETag": "\u00220x8DA9D770C570D84\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:19:46 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -224,32 +211,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 01:54:18 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:19:45 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "9973d8ef-e5fd-4949-aad2-3a6d5d51afea", + "x-ms-meta-name": "8c59cb92-112f-4c04-bda0-1342b610850d", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "69189648-da76-4adf-9b02-269e5c31e745", + "x-ms-meta-version": "c1f97989-616d-4b90-a0d6-bac9ea34bade", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:19:03 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:31:29 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 02:19:02 GMT", + "Date": "Fri, 23 Sep 2022 16:31:27 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -268,7 +255,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1918", + "Content-Length": "1936", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -336,8 +323,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a4e88789-ae4a-4207-ac3d-64d3d97b7d55" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/6620d552-5f23-4635-9649-df79d85d8cdd" } }, "outputs": { @@ -354,22 +342,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4475", + "Content-Length": "4501", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:19:11 GMT", + "Date": "Fri, 23 Sep 2022 16:31:36 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-d0d01f0295db5aa6627b3cd3a9f6eb05-1919e05c0701d99d-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-cf273ca84ed9e676c3a694a8e3842d7f-fbc62d37328db07c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "17757e40-a38e-43e4-bad6-1846cf4a0785", - "x-ms-ratelimit-remaining-subscription-writes": "1184", + "x-ms-correlation-request-id": "fd86d493-2ef6-451e-bfc4-9892a597eb58", + "x-ms-ratelimit-remaining-subscription-writes": "1086", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021912Z:17757e40-a38e-43e4-bad6-1846cf4a0785", - "x-request-time": "3.066" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163136Z:fd86d493-2ef6-451e-bfc4-9892a597eb58", + "x-request-time": "3.179" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -454,8 +442,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a4e88789-ae4a-4207-ac3d-64d3d97b7d55" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/6620d552-5f23-4635-9649-df79d85d8cdd" } }, "inputs": { @@ -492,7 +481,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T02:19:11.8721602\u002B00:00", + "createdAt": "2022-09-23T16:31:36.4905014\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_dsl_pipeline_with_setting_binding_node_and_pipeline_level.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_dsl_pipeline_with_setting_binding_node_and_pipeline_level.json index 142a1bdaa784..c096d782341a 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_dsl_pipeline_with_setting_binding_node_and_pipeline_level.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_dsl_pipeline_with_setting_binding_node_and_pipeline_level.json @@ -15,11 +15,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:19:37 GMT", + "Date": "Fri, 23 Sep 2022 16:32:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-46817bb3f57e41ad7a56d5a6d06a996f-627c4aee512e0d85-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-bef65a1cb474e8e70ac4b0d5ee3f666f-04e9df85d204f97b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -28,11 +28,11 @@ ], "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f7189062-f425-48fe-98ee-939da641ded2", - "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-correlation-request-id": "0eb76f37-f9c5-464a-8977-d6b8a444c4e5", + "x-ms-ratelimit-remaining-subscription-reads": "11917", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021938Z:f7189062-f425-48fe-98ee-939da641ded2", - "x-request-time": "0.082" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163205Z:0eb76f37-f9c5-464a-8977-d6b8a444c4e5", + "x-request-time": "0.056" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -41,8 +41,8 @@ "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T11:47:20.6013506\u002B00:00", - "modifiedOn": "2022-09-15T11:47:27.309088\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -60,32 +60,19 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 3, + "currentNodeCount": 1, + "targetNodeCount": 4, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 2, - "idleNodeCount": 1, + "runningNodeCount": 1, + "idleNodeCount": 0, "unusableNodeCount": 0, - "leavingNodeCount": 1, + "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-21T02:16:16.32\u002B00:00", - "errors": [ - { - "error": { - "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_404df555289c2a7323442449cde9b6b88007b9829c2f961bd0c3983a09984207_d: There is not enough disk space on the node", - "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - } - ] - } - } - ], + "allocationStateTransitionTime": "2022-09-23T16:31:36.634\u002B00:00", + "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -110,11 +97,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:19:40 GMT", + "Date": "Fri, 23 Sep 2022 16:32:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-2415b8256f675347ece6913e15b318a6-7921561786a9d51d-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-6930683cf686c30841d34b67fe78f4b4-7a3ffc15407706a0-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -123,11 +110,11 @@ ], "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a0790b0c-d1d4-4c83-a626-558a953e7a4e", - "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-correlation-request-id": "18c94182-22a4-4dbe-8340-131b96194361", + "x-ms-ratelimit-remaining-subscription-reads": "11916", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021941Z:a0790b0c-d1d4-4c83-a626-558a953e7a4e", - "x-request-time": "0.108" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163209Z:18c94182-22a4-4dbe-8340-131b96194361", + "x-request-time": "0.112" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -142,17 +129,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -174,21 +161,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:19:41 GMT", + "Date": "Fri, 23 Sep 2022 16:32:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-e67d8ac885dad2aa32f09bcb18f2dd68-875a9a147da62b8d-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-015a6f17db6ec02510234b658417d5e0-0b33e6f06cf77e8c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c984591d-c9da-422d-86af-f7f8db05dcd2", - "x-ms-ratelimit-remaining-subscription-writes": "1188", + "x-ms-correlation-request-id": "2be207b9-6f35-4bdb-a7af-c2fa64e8a522", + "x-ms-ratelimit-remaining-subscription-writes": "1146", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021942Z:c984591d-c9da-422d-86af-f7f8db05dcd2", - "x-request-time": "0.114" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163210Z:2be207b9-6f35-4bdb-a7af-c2fa64e8a522", + "x-request-time": "0.231" }, "ResponseBody": { "secretsType": "AccountKey", @@ -196,14 +183,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:19:44 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:32:13 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -213,9 +200,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 02:19:42 GMT", - "ETag": "\u00220x8DA9B7432476CC7\u0022", - "Last-Modified": "Wed, 21 Sep 2022 01:54:18 GMT", + "Date": "Fri, 23 Sep 2022 16:32:11 GMT", + "ETag": "\u00220x8DA9D770C570D84\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:19:46 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -224,32 +211,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 01:54:18 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:19:45 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "9973d8ef-e5fd-4949-aad2-3a6d5d51afea", + "x-ms-meta-name": "8c59cb92-112f-4c04-bda0-1342b610850d", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "69189648-da76-4adf-9b02-269e5c31e745", + "x-ms-meta-version": "c1f97989-616d-4b90-a0d6-bac9ea34bade", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:19:44 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:32:14 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 02:19:43 GMT", + "Date": "Fri, 23 Sep 2022 16:32:11 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -268,7 +255,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1964", + "Content-Length": "1982", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -338,8 +325,9 @@ "mode": "Upload" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a4e88789-ae4a-4207-ac3d-64d3d97b7d55" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/6620d552-5f23-4635-9649-df79d85d8cdd" } }, "outputs": { @@ -356,22 +344,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4545", + "Content-Length": "4571", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:19:51 GMT", + "Date": "Fri, 23 Sep 2022 16:32:20 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-0e1b3891c02b8d18cd7dbc374344f0a5-ca26867545f2c2a5-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-cd2cd7c464df80423bf0d93042e8e132-afbe26a646c3681a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7f0257dc-c9ec-4553-8010-aaebd0a5753f", - "x-ms-ratelimit-remaining-subscription-writes": "1182", + "x-ms-correlation-request-id": "0da1db7e-8b51-4152-b484-b6413c1458cc", + "x-ms-ratelimit-remaining-subscription-writes": "1084", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021951Z:7f0257dc-c9ec-4553-8010-aaebd0a5753f", - "x-request-time": "4.267" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163220Z:0da1db7e-8b51-4152-b484-b6413c1458cc", + "x-request-time": "3.425" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -458,8 +446,9 @@ "mode": "Upload" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a4e88789-ae4a-4207-ac3d-64d3d97b7d55" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/6620d552-5f23-4635-9649-df79d85d8cdd" } }, "inputs": { @@ -496,7 +485,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T02:19:51.1735829\u002B00:00", + "createdAt": "2022-09-23T16:32:20.2560404\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_dsl_pipeline_without_setting_binding_node.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_dsl_pipeline_without_setting_binding_node.json index f4d1905aef25..ec96d997960e 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_dsl_pipeline_without_setting_binding_node.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_dsl_pipeline_without_setting_binding_node.json @@ -15,11 +15,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:18:05 GMT", + "Date": "Fri, 23 Sep 2022 16:30:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-bc1abfef6a6cdd649f83307ffad973de-bc25379730fd1584-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-4b654b8e18ebda372abf82faee77ebcc-bff94ef920312157-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -28,11 +28,11 @@ ], "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "848d93ae-3531-4985-bb99-4c23c19856b9", - "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-correlation-request-id": "493193d2-719f-4a68-9ac5-ff44f1d7cf35", + "x-ms-ratelimit-remaining-subscription-reads": "11924", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021806Z:848d93ae-3531-4985-bb99-4c23c19856b9", - "x-request-time": "0.053" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163054Z:493193d2-719f-4a68-9ac5-ff44f1d7cf35", + "x-request-time": "0.054" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -41,8 +41,8 @@ "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T11:47:20.6013506\u002B00:00", - "modifiedOn": "2022-09-15T11:47:27.309088\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -60,32 +60,19 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 3, - "targetNodeCount": 3, + "currentNodeCount": 4, + "targetNodeCount": 1, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 0, - "idleNodeCount": 3, + "runningNodeCount": 1, + "idleNodeCount": 0, "unusableNodeCount": 0, - "leavingNodeCount": 0, + "leavingNodeCount": 3, "preemptedNodeCount": 0 }, "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-21T02:16:16.32\u002B00:00", - "errors": [ - { - "error": { - "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_404df555289c2a7323442449cde9b6b88007b9829c2f961bd0c3983a09984207_d: There is not enough disk space on the node", - "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - } - ] - } - } - ], + "allocationStateTransitionTime": "2022-09-23T16:26:15.13\u002B00:00", + "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -110,24 +97,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:18:08 GMT", + "Date": "Fri, 23 Sep 2022 16:30:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-4704e550e953ef93b3ad14eed914329e-f028aa3f96eb6d72-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-68ae817a375727b9dc435f0febb46824-cedd95d84731fd6a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cc85e037-98c3-4a6d-af52-9c31b43c049c", - "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-correlation-request-id": "03672d1e-2135-4049-852f-f4cd56dba7b0", + "x-ms-ratelimit-remaining-subscription-reads": "11923", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021809Z:cc85e037-98c3-4a6d-af52-9c31b43c049c", - "x-request-time": "0.122" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163058Z:03672d1e-2135-4049-852f-f4cd56dba7b0", + "x-request-time": "0.148" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -142,17 +129,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -174,21 +161,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:18:14 GMT", + "Date": "Fri, 23 Sep 2022 16:30:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-7d0e506117dbf891edef6a55bb9e8318-b79fd558e86fba29-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-cd1be7bb6a3cf775948563e0f90bafd3-958dd8600438b1ea-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3e3892e4-e565-4968-ba21-2fe64b112869", - "x-ms-ratelimit-remaining-subscription-writes": "1192", + "x-ms-correlation-request-id": "e4e7cd51-7aae-4b77-ac22-4ff266ade684", + "x-ms-ratelimit-remaining-subscription-writes": "1150", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021814Z:3e3892e4-e565-4968-ba21-2fe64b112869", - "x-request-time": "0.119" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163059Z:e4e7cd51-7aae-4b77-ac22-4ff266ade684", + "x-request-time": "0.087" }, "ResponseBody": { "secretsType": "AccountKey", @@ -196,14 +183,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/train_src/train.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/train_src/train.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:18:17 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:31:01 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -213,9 +200,9 @@ "Content-Length": "1502", "Content-MD5": "zAix1RSwqgjraik/VOQjSg==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 02:18:15 GMT", - "ETag": "\u00220x8DA9B7429C1BE53\u0022", - "Last-Modified": "Wed, 21 Sep 2022 01:54:04 GMT", + "Date": "Fri, 23 Sep 2022 16:30:59 GMT", + "ETag": "\u00220x8DA9D7B70E8EC67\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:51:12 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -224,10 +211,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 01:54:04 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:51:12 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "dd9127ad-5731-4aa6-acee-490d388462bb", + "x-ms-meta-name": "46ff4a79-0255-4087-bf9f-6b8d3ea80d65", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -236,20 +223,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/train_src/train.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/train_src/train.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:18:18 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:31:02 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 02:18:16 GMT", + "Date": "Fri, 23 Sep 2022 16:31:00 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -262,7 +249,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/dd9127ad-5731-4aa6-acee-490d388462bb/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/46ff4a79-0255-4087-bf9f-6b8d3ea80d65/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -280,7 +267,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/train_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/train_src" } }, "StatusCode": 200, @@ -288,27 +275,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:18:17 GMT", + "Date": "Fri, 23 Sep 2022 16:31:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-9abda0d2a2a7dad1fc73d595c6b5d019-d2b107b6100ae04e-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-405ca9c07d229687fbaea119c48777b3-fa54140a814509fd-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d416f666-bc0d-4b3a-8603-944f03ba945a", - "x-ms-ratelimit-remaining-subscription-writes": "1187", + "x-ms-correlation-request-id": "8d47d74d-1dbc-40cd-80c7-ac4c63ec020a", + "x-ms-ratelimit-remaining-subscription-writes": "1089", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021817Z:d416f666-bc0d-4b3a-8603-944f03ba945a", - "x-request-time": "0.066" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163101Z:8d47d74d-1dbc-40cd-80c7-ac4c63ec020a", + "x-request-time": "0.086" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/dd9127ad-5731-4aa6-acee-490d388462bb/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/46ff4a79-0255-4087-bf9f-6b8d3ea80d65/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -320,13 +307,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/train_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/train_src" }, "systemData": { - "createdAt": "2022-09-21T01:54:08.6870922\u002B00:00", + "createdAt": "2022-09-23T15:51:13.8769644\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:18:17.6290981\u002B00:00", + "lastModifiedAt": "2022-09-23T16:31:01.3682164\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -352,7 +339,7 @@ "isArchived": false, "componentSpec": { "command": "python train.py --training_data ${{inputs.training_data}} $[[--max_epochs ${{inputs.max_epochs}}]] --learning_rate ${{inputs.learning_rate}} --learning_rate_schedule ${{inputs.learning_rate_schedule}} --model_output ${{outputs.model_output}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/dd9127ad-5731-4aa6-acee-490d388462bb/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/46ff4a79-0255-4087-bf9f-6b8d3ea80d65/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "name": "azureml_anonymous", "description": "A dummy training component", @@ -393,24 +380,24 @@ "Cache-Control": "no-cache", "Content-Length": "2454", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:18:19 GMT", + "Date": "Fri, 23 Sep 2022 16:31:02 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-cec208ea6ceb5f51a7a8a7fe2d394eac-57365a4485926abc-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-21c947134b050e44c8d4bbae63165a26-b5b6fe5349313eed-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6aae7307-2ed0-407f-b024-423051dc7407", - "x-ms-ratelimit-remaining-subscription-writes": "1186", + "x-ms-correlation-request-id": "38f28489-dc4e-4444-8b93-e4498fe09d6d", + "x-ms-ratelimit-remaining-subscription-writes": "1088", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021819Z:6aae7307-2ed0-407f-b024-423051dc7407", - "x-request-time": "0.436" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163103Z:38f28489-dc4e-4444-8b93-e4498fe09d6d", + "x-request-time": "0.588" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a4e88789-ae4a-4207-ac3d-64d3d97b7d55", - "name": "a4e88789-ae4a-4207-ac3d-64d3d97b7d55", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/6620d552-5f23-4635-9649-df79d85d8cdd", + "name": "6620d552-5f23-4635-9649-df79d85d8cdd", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -420,7 +407,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "a4e88789-ae4a-4207-ac3d-64d3d97b7d55", + "version": "6620d552-5f23-4635-9649-df79d85d8cdd", "display_name": "Train Model", "is_deterministic": "True", "type": "command", @@ -450,7 +437,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/dd9127ad-5731-4aa6-acee-490d388462bb/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/46ff4a79-0255-4087-bf9f-6b8d3ea80d65/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -460,10 +447,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T01:54:13.0642675\u002B00:00", + "createdAt": "2022-09-23T16:31:03.1950152\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T01:54:13.2556751\u002B00:00", + "lastModifiedAt": "2022-09-23T16:31:03.1950152\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -484,24 +471,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:18:20 GMT", + "Date": "Fri, 23 Sep 2022 16:31:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-fb2884f6ad2815cc4091d77a3405ce73-352ed3ca7ac39ba2-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-579918c9192ed1e6522c5b0faf9010eb-e8bb32e345a08e20-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e85cb401-b767-4d6c-9f98-10bf9f90852b", - "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-correlation-request-id": "b12b7b6c-9b3c-4352-ae4f-839351f02900", + "x-ms-ratelimit-remaining-subscription-reads": "11922", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021820Z:e85cb401-b767-4d6c-9f98-10bf9f90852b", - "x-request-time": "0.100" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163104Z:b12b7b6c-9b3c-4352-ae4f-839351f02900", + "x-request-time": "0.084" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -516,17 +503,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -548,20 +535,20 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:18:21 GMT", + "Date": "Fri, 23 Sep 2022 16:31:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-78ad739d125da246fbbeeac40c1c1f63-0309ebe9c9b1bc23-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-5a57e310c2ec072de2289505d3fd1f79-1523d1a7c14915da-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "62c8bccd-a355-4547-b240-612996eff994", - "x-ms-ratelimit-remaining-subscription-writes": "1191", + "x-ms-correlation-request-id": "70c8610a-01bf-4746-a8ec-1552cb62b864", + "x-ms-ratelimit-remaining-subscription-writes": "1149", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021821Z:62c8bccd-a355-4547-b240-612996eff994", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163105Z:70c8610a-01bf-4746-a8ec-1552cb62b864", "x-request-time": "0.084" }, "ResponseBody": { @@ -570,14 +557,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:18:23 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:31:08 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -587,9 +574,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 02:18:21 GMT", - "ETag": "\u00220x8DA9B7432476CC7\u0022", - "Last-Modified": "Wed, 21 Sep 2022 01:54:18 GMT", + "Date": "Fri, 23 Sep 2022 16:31:05 GMT", + "ETag": "\u00220x8DA9D770C570D84\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:19:46 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -598,32 +585,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 01:54:18 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:19:45 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "9973d8ef-e5fd-4949-aad2-3a6d5d51afea", + "x-ms-meta-name": "8c59cb92-112f-4c04-bda0-1342b610850d", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "69189648-da76-4adf-9b02-269e5c31e745", + "x-ms-meta-version": "c1f97989-616d-4b90-a0d6-bac9ea34bade", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:18:23 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:31:08 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 02:18:21 GMT", + "Date": "Fri, 23 Sep 2022 16:31:06 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -642,7 +629,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1875", + "Content-Length": "1893", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -709,8 +696,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a4e88789-ae4a-4207-ac3d-64d3d97b7d55" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/6620d552-5f23-4635-9649-df79d85d8cdd" } }, "outputs": { @@ -726,22 +714,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4483", + "Content-Length": "4509", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:18:32 GMT", + "Date": "Fri, 23 Sep 2022 16:31:15 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-5ba991807d65c70837e2578568ce127d-1d647e759220f38c-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-53ff8a0d9f6e2b6bb89f328b689c3334-a9d1e67ef6a90b64-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a36fb9c6-435b-406b-b666-d51a4f037a3f", - "x-ms-ratelimit-remaining-subscription-writes": "1185", + "x-ms-correlation-request-id": "44bedada-f152-4309-b0e7-36a6d992083f", + "x-ms-ratelimit-remaining-subscription-writes": "1087", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021832Z:a36fb9c6-435b-406b-b666-d51a4f037a3f", - "x-request-time": "2.915" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163115Z:44bedada-f152-4309-b0e7-36a6d992083f", + "x-request-time": "3.511" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -826,8 +814,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a4e88789-ae4a-4207-ac3d-64d3d97b7d55" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/6620d552-5f23-4635-9649-df79d85d8cdd" } }, "inputs": { @@ -864,7 +853,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T02:18:32.0849715\u002B00:00", + "createdAt": "2022-09-23T16:31:14.7983868\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_get_child_job.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_get_child_job.json index 73791a1ab7a6..414a2c1a391d 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_get_child_job.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_get_child_job.json @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:17:00 GMT", + "Date": "Fri, 23 Sep 2022 16:29:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-c0ea752412249297608a56d9d85b89ff-d5b2efa48675844d-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-f64733895a21ba1185aa430e4b70351e-6bb88d43ad344fa5-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "29926fed-099c-47bb-a7fb-c8fd509414d9", - "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-correlation-request-id": "63f12b96-1cf4-4ab9-9ff7-fb94dbef04ce", + "x-ms-ratelimit-remaining-subscription-reads": "11935", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021700Z:29926fed-099c-47bb-a7fb-c8fd509414d9", - "x-request-time": "0.037" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162953Z:63f12b96-1cf4-4ab9-9ff7-fb94dbef04ce", + "x-request-time": "0.036" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -41,8 +41,8 @@ "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T11:47:20.6013506\u002B00:00", - "modifiedOn": "2022-09-15T11:47:27.309088\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -60,32 +60,19 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 3, - "targetNodeCount": 3, + "currentNodeCount": 4, + "targetNodeCount": 1, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 0, - "idleNodeCount": 3, + "runningNodeCount": 1, + "idleNodeCount": 0, "unusableNodeCount": 0, - "leavingNodeCount": 0, + "leavingNodeCount": 3, "preemptedNodeCount": 0 }, "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-21T02:16:16.32\u002B00:00", - "errors": [ - { - "error": { - "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_404df555289c2a7323442449cde9b6b88007b9829c2f961bd0c3983a09984207_d: There is not enough disk space on the node", - "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - } - ] - } - } - ], + "allocationStateTransitionTime": "2022-09-23T16:26:15.13\u002B00:00", + "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -110,24 +97,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:17:04 GMT", + "Date": "Fri, 23 Sep 2022 16:29:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-d1882969004072863b2c9541162f0eb4-b10f1dc28b903119-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-9e27ebcaac7d0a86c94f014cf67e7052-d133223af2b92267-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "99c617b1-b71a-45c7-9719-0c4bcff43cbc", - "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-correlation-request-id": "147d742f-72cc-4723-9bfa-ea47704c23f6", + "x-ms-ratelimit-remaining-subscription-reads": "11934", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021705Z:99c617b1-b71a-45c7-9719-0c4bcff43cbc", - "x-request-time": "0.106" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162958Z:147d742f-72cc-4723-9bfa-ea47704c23f6", + "x-request-time": "0.084" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -142,17 +129,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -174,21 +161,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:17:06 GMT", + "Date": "Fri, 23 Sep 2022 16:29:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-be70f198a9392a7e8027712651aaab0f-d5db5e9c441fb25e-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-12104cf8a8fb594b6d75bc288f0fbff6-fa4690de583cd7cb-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f4a00920-f885-4ba9-9e15-a6b9bc158e2b", - "x-ms-ratelimit-remaining-subscription-writes": "1194", + "x-ms-correlation-request-id": "7b919594-0629-4c13-b21b-eca0fe62984c", + "x-ms-ratelimit-remaining-subscription-writes": "1152", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021706Z:f4a00920-f885-4ba9-9e15-a6b9bc158e2b", - "x-request-time": "0.103" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162959Z:7b919594-0629-4c13-b21b-eca0fe62984c", + "x-request-time": "0.198" }, "ResponseBody": { "secretsType": "AccountKey", @@ -196,14 +183,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:17:08 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:30:02 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -213,9 +200,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 02:17:07 GMT", - "ETag": "\u00220x8DA9ABCB2F66FF1\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:00:47 GMT", + "Date": "Fri, 23 Sep 2022 16:30:00 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -224,10 +211,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:00:47 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ca7591cf-36a6-4425-bb3d-579cd587b206", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -236,20 +223,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:17:09 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:30:03 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 02:17:07 GMT", + "Date": "Fri, 23 Sep 2022 16:30:01 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -262,7 +249,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -280,7 +267,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -288,27 +275,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:17:08 GMT", + "Date": "Fri, 23 Sep 2022 16:30:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-67ded3431ae68d2a40501769e6f1c985-d59ebceb15a11639-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-b43aed7b78775f03b19fa173778c0024-8a6898cc723cacbb-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "713e2211-6351-46f6-8c40-2c59fc2a6795", - "x-ms-ratelimit-remaining-subscription-writes": "1192", + "x-ms-correlation-request-id": "00015ac6-e67f-4a98-ba5f-4bcdae646ba3", + "x-ms-ratelimit-remaining-subscription-writes": "1094", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021708Z:713e2211-6351-46f6-8c40-2c59fc2a6795", - "x-request-time": "0.103" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163002Z:00015ac6-e67f-4a98-ba5f-4bcdae646ba3", + "x-request-time": "0.139" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -320,13 +307,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-20T04:00:48.9804975\u002B00:00", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:17:08.8297161\u002B00:00", + "lastModifiedAt": "2022-09-23T16:30:02.1602241\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -355,7 +342,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo $[[${{inputs.component_in_number}}]] \u0026 echo ${{inputs.component_in_path}} \u0026 echo ${{outputs.component_out_path}} \u003E ${{outputs.component_out_path}}/component_in_number", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "description": "This is the basic command component", @@ -394,24 +381,24 @@ "Cache-Control": "no-cache", "Content-Length": "2416", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:17:10 GMT", + "Date": "Fri, 23 Sep 2022 16:30:03 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-03519546b878d66f5441e7ce7e38c964-88d31749abe9dbd6-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-43aa92263d886e99ab9aa46deaa20089-294e18599ef98652-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ab5875df-74f7-45fb-8da3-a11f6510ac2f", - "x-ms-ratelimit-remaining-subscription-writes": "1191", + "x-ms-correlation-request-id": "bbff609c-bf3c-4c51-9162-7347e2f3cca5", + "x-ms-ratelimit-remaining-subscription-writes": "1093", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021710Z:ab5875df-74f7-45fb-8da3-a11f6510ac2f", - "x-request-time": "0.303" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163003Z:bbff609c-bf3c-4c51-9162-7347e2f3cca5", + "x-request-time": "0.381" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32", - "name": "2a153b3f-78e1-419b-8273-bfc76c28df32", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191", + "name": "bf151e23-da4f-4101-bf39-8bf62d31a191", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -424,7 +411,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "2a153b3f-78e1-419b-8273-bfc76c28df32", + "version": "bf151e23-da4f-4101-bf39-8bf62d31a191", "display_name": "CommandComponentBasic", "is_deterministic": "True", "type": "command", @@ -451,7 +438,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -461,10 +448,10 @@ } }, "systemData": { - "createdAt": "2022-09-20T04:04:55.6745883\u002B00:00", + "createdAt": "2022-09-23T16:11:01.2843263\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-20T04:04:55.8538952\u002B00:00", + "lastModifiedAt": "2022-09-23T16:11:01.4598118\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -485,24 +472,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:17:11 GMT", + "Date": "Fri, 23 Sep 2022 16:30:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-eb6cd1b85aacbfd8ad38188309ec09b8-f8e8d506f8ec1d36-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-372180b35bdd13f59d9d5f5e8b83bd98-75064c4c9e1fbd6a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e36cf8ef-2cbb-430e-83e9-d82ba8e8b816", - "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-correlation-request-id": "72ac8609-a8c7-4e5b-bd59-36e3df260d07", + "x-ms-ratelimit-remaining-subscription-reads": "11933", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021711Z:e36cf8ef-2cbb-430e-83e9-d82ba8e8b816", - "x-request-time": "0.112" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163005Z:72ac8609-a8c7-4e5b-bd59-36e3df260d07", + "x-request-time": "0.082" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -517,17 +504,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -549,21 +536,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:17:12 GMT", + "Date": "Fri, 23 Sep 2022 16:30:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-0f734be19513a36ef36b9e0633e6186f-2d58fc4b201f13a5-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-00de7c54d0a13538d866f6e6b719184f-93f93354ee635e81-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c4795cb9-2c74-4af5-802f-87b7956d2434", - "x-ms-ratelimit-remaining-subscription-writes": "1193", + "x-ms-correlation-request-id": "0c089817-2822-4bbb-9491-ae987fef3edd", + "x-ms-ratelimit-remaining-subscription-writes": "1151", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021712Z:c4795cb9-2c74-4af5-802f-87b7956d2434", - "x-request-time": "0.094" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163005Z:0c089817-2822-4bbb-9491-ae987fef3edd", + "x-request-time": "0.091" }, "ResponseBody": { "secretsType": "AccountKey", @@ -571,14 +558,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:17:14 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:30:07 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -588,9 +575,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 02:17:12 GMT", - "ETag": "\u00220x8DA9ABCB2F66FF1\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:00:47 GMT", + "Date": "Fri, 23 Sep 2022 16:30:05 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -599,10 +586,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:00:47 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ca7591cf-36a6-4425-bb3d-579cd587b206", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -611,20 +598,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:17:14 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:30:08 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 02:17:13 GMT", + "Date": "Fri, 23 Sep 2022 16:30:06 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -637,7 +624,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -655,7 +642,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -663,27 +650,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:17:14 GMT", + "Date": "Fri, 23 Sep 2022 16:30:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-d78f97205a1eae7211d4ccf8a6e68b50-269020ca84f58b14-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-22699743e546fe2281b074752f5d945f-144934aa548018d4-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "87009f6a-69fe-4147-87cc-ac73ff9faa35", - "x-ms-ratelimit-remaining-subscription-writes": "1190", + "x-ms-correlation-request-id": "4567eb83-6a2a-4bc5-a052-28af60f42988", + "x-ms-ratelimit-remaining-subscription-writes": "1092", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021714Z:87009f6a-69fe-4147-87cc-ac73ff9faa35", - "x-request-time": "0.087" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163007Z:4567eb83-6a2a-4bc5-a052-28af60f42988", + "x-request-time": "0.070" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -695,13 +682,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-20T04:00:48.9804975\u002B00:00", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:17:14.6545951\u002B00:00", + "lastModifiedAt": "2022-09-23T16:30:07.1755078\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -730,7 +717,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo $[[${{inputs.component_in_number}}]] \u0026 echo ${{inputs.component_in_path}} \u0026 echo ${{outputs.component_out_path}} \u003E ${{outputs.component_out_path}}/component_in_number", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "description": "This is the basic command component", @@ -769,24 +756,24 @@ "Cache-Control": "no-cache", "Content-Length": "2416", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:17:15 GMT", + "Date": "Fri, 23 Sep 2022 16:30:07 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-aff3f8bf1ac0078358396745565d41be-a174292f32f6a34d-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-2a47bdb762f64a626165bb9a1dd68115-4a11748967ee2785-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "12895eb2-435b-4ae8-8834-de2ecde88175", - "x-ms-ratelimit-remaining-subscription-writes": "1189", + "x-ms-correlation-request-id": "8d0c6310-462c-48f2-91e1-d24ab02e9972", + "x-ms-ratelimit-remaining-subscription-writes": "1091", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021716Z:12895eb2-435b-4ae8-8834-de2ecde88175", - "x-request-time": "0.395" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163008Z:8d0c6310-462c-48f2-91e1-d24ab02e9972", + "x-request-time": "0.334" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32", - "name": "2a153b3f-78e1-419b-8273-bfc76c28df32", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191", + "name": "bf151e23-da4f-4101-bf39-8bf62d31a191", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -799,7 +786,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "2a153b3f-78e1-419b-8273-bfc76c28df32", + "version": "bf151e23-da4f-4101-bf39-8bf62d31a191", "display_name": "CommandComponentBasic", "is_deterministic": "True", "type": "command", @@ -826,7 +813,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -836,17 +823,17 @@ } }, "systemData": { - "createdAt": "2022-09-20T04:04:55.6745883\u002B00:00", + "createdAt": "2022-09-23T16:11:01.2843263\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-20T04:04:55.8538952\u002B00:00", + "lastModifiedAt": "2022-09-23T16:11:01.4598118\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2/mfeOperationResults/jc:63e57e0c-1296-4327-a01d-537c6e3ee06d:000000000000000000000?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2/mfeOperationResults/jc:e950f876-7257-4cf3-99a5-ff66812ac44c:000000000000000000000?api-version=2022-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", @@ -859,19 +846,19 @@ "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Wed, 21 Sep 2022 02:17:25 GMT", + "Date": "Fri, 23 Sep 2022 16:30:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-96b8c4201faef759dd00d2dd3046cded-96353b9f7473008f-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-e5bd609ad07be8e0124b781260e48179-d4ffb8eaa170a42e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0cd8c54d-ceb3-4b16-81ea-23e2055bc2e8", - "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-correlation-request-id": "f0590811-946d-432c-a09f-59f56ca9b396", + "x-ms-ratelimit-remaining-subscription-reads": "11998", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021726Z:0cd8c54d-ceb3-4b16-81ea-23e2055bc2e8", - "x-request-time": "0.043" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163016Z:f0590811-946d-432c-a09f-59f56ca9b396", + "x-request-time": "0.048" }, "ResponseBody": null }, @@ -882,7 +869,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "2133", + "Content-Length": "2173", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -895,7 +882,7 @@ "tag": "tagvalue" }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", - "displayName": "test_392270713566", + "displayName": "test_492736772468", "experimentName": "dsl_pipeline_e2e", "isArchived": false, "jobType": "Pipeline", @@ -914,12 +901,12 @@ } }, "jobs": { - "test_54473877207": { + "test_667938376566": { "resources": null, "distribution": null, "limits": null, "environment_variables": {}, - "name": "test_54473877207", + "name": "test_667938376566", "type": "command", "display_name": null, "tags": {}, @@ -935,15 +922,16 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191" }, - "test_54473877207_1": { + "test_667938376566_1": { "resources": null, "distribution": null, "limits": null, "environment_variables": {}, - "name": "test_54473877207_1", + "name": "test_667938376566_1", "type": "command", "display_name": null, "tags": {}, @@ -959,8 +947,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191" } }, "outputs": {}, @@ -973,22 +962,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4613", + "Content-Length": "4669", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:17:27 GMT", + "Date": "Fri, 23 Sep 2022 16:30:17 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-b0c08453e046b899b1b5070f5f75af26-18212a9680e29a07-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-9aade2875ccde4eb459ed51ded97ba72-822789f9a2d84cbe-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1f7b72bb-b83b-4c20-8b11-656eefaaa2a6", - "x-ms-ratelimit-remaining-subscription-writes": "1188", + "x-ms-correlation-request-id": "8482c850-e775-4bc9-aa5e-b00d42bb20f1", + "x-ms-ratelimit-remaining-subscription-writes": "1090", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021727Z:1f7b72bb-b83b-4c20-8b11-656eefaaa2a6", - "x-request-time": "3.043" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163017Z:8482c850-e775-4bc9-aa5e-b00d42bb20f1", + "x-request-time": "3.280" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -1012,7 +1001,7 @@ "azureml.defaultDataStoreName": "workspaceblobstore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_392270713566", + "displayName": "test_492736772468", "status": "Preparing", "experimentName": "dsl_pipeline_e2e", "services": { @@ -1043,12 +1032,12 @@ "_source": "DSL" }, "jobs": { - "test_54473877207": { + "test_667938376566": { "resources": null, "distribution": null, "limits": null, "environment_variables": {}, - "name": "test_54473877207", + "name": "test_667938376566", "type": "command", "display_name": null, "tags": {}, @@ -1064,15 +1053,16 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191" }, - "test_54473877207_1": { + "test_667938376566_1": { "resources": null, "distribution": null, "limits": null, "environment_variables": {}, - "name": "test_54473877207_1", + "name": "test_667938376566_1", "type": "command", "display_name": null, "tags": {}, @@ -1088,8 +1078,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191" } }, "inputs": { @@ -1114,7 +1105,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T02:17:27.3322952\u002B00:00", + "createdAt": "2022-09-23T16:30:17.0867279\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } @@ -1135,24 +1126,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:17:29 GMT", + "Date": "Fri, 23 Sep 2022 16:30:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-6f1f0a329e3473c73e56557fdb7c38d3-11f5c977793bf875-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-f728a981e8ce660e491287ed5dbe6eb2-1f6030a073a87e73-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7156c581-63b6-4f19-af49-e589b71dfb43", - "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-correlation-request-id": "07237943-86d5-4596-acf8-70b7ad91cfab", + "x-ms-ratelimit-remaining-subscription-reads": "11932", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021730Z:7156c581-63b6-4f19-af49-e589b71dfb43", - "x-request-time": "0.056" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163020Z:07237943-86d5-4596-acf8-70b7ad91cfab", + "x-request-time": "0.073" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -1176,7 +1167,7 @@ "azureml.defaultDataStoreName": "workspaceblobstore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_392270713566", + "displayName": "test_492736772468", "status": "Completed", "experimentName": "dsl_pipeline_e2e", "services": { @@ -1207,12 +1198,12 @@ "_source": "DSL" }, "jobs": { - "test_54473877207": { + "test_667938376566": { "resources": null, "distribution": null, "limits": null, "environment_variables": {}, - "name": "test_54473877207", + "name": "test_667938376566", "type": "command", "display_name": null, "tags": {}, @@ -1228,15 +1219,16 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191" }, - "test_54473877207_1": { + "test_667938376566_1": { "resources": null, "distribution": null, "limits": null, "environment_variables": {}, - "name": "test_54473877207_1", + "name": "test_667938376566_1", "type": "command", "display_name": null, "tags": {}, @@ -1252,8 +1244,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191" } }, "inputs": { @@ -1278,7 +1271,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T02:17:27.3322952\u002B00:00", + "createdAt": "2022-09-23T16:30:17.0867279\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } @@ -1299,24 +1292,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:17:36 GMT", + "Date": "Fri, 23 Sep 2022 16:30:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-14e9d9e8fb843652b30fa6b96f6ac69d-ef6df60748537f00-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-c325b1a9afaad8eb75023bb25f669335-c70d4e40908220c4-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e5cf682d-a38d-40ad-829a-6f447d0abfd6", - "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-correlation-request-id": "fdff9c2e-84b3-4fbd-988d-ae63efaad785", + "x-ms-ratelimit-remaining-subscription-reads": "11931", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021736Z:e5cf682d-a38d-40ad-829a-6f447d0abfd6", - "x-request-time": "0.076" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163024Z:fdff9c2e-84b3-4fbd-988d-ae63efaad785", + "x-request-time": "0.081" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -1340,7 +1333,7 @@ "azureml.defaultDataStoreName": "workspaceblobstore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_392270713566", + "displayName": "test_492736772468", "status": "Completed", "experimentName": "dsl_pipeline_e2e", "services": { @@ -1371,12 +1364,12 @@ "_source": "DSL" }, "jobs": { - "test_54473877207": { + "test_667938376566": { "resources": null, "distribution": null, "limits": null, "environment_variables": {}, - "name": "test_54473877207", + "name": "test_667938376566", "type": "command", "display_name": null, "tags": {}, @@ -1392,15 +1385,16 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191" }, - "test_54473877207_1": { + "test_667938376566_1": { "resources": null, "distribution": null, "limits": null, "environment_variables": {}, - "name": "test_54473877207_1", + "name": "test_667938376566_1", "type": "command", "display_name": null, "tags": {}, @@ -1416,8 +1410,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191" } }, "inputs": { @@ -1442,7 +1437,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T02:17:27.3322952\u002B00:00", + "createdAt": "2022-09-23T16:30:17.0867279\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } @@ -1463,24 +1458,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:17:40 GMT", + "Date": "Fri, 23 Sep 2022 16:30:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-306dc44b5cc6cc9cf4fe1f0686a36318-f0ae2092bf2845c5-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-a8476a780df66b3eb0acdb32d4609c05-3ed012d083758159-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c97ec272-f794-4bbd-9f01-ac9294645c64", - "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-correlation-request-id": "b61feb5c-1535-4d4e-a89f-777f488f3b79", + "x-ms-ratelimit-remaining-subscription-reads": "11930", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021740Z:c97ec272-f794-4bbd-9f01-ac9294645c64", - "x-request-time": "0.038" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163029Z:b61feb5c-1535-4d4e-a89f-777f488f3b79", + "x-request-time": "0.041" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -1504,7 +1499,7 @@ "azureml.defaultDataStoreName": "workspaceblobstore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_392270713566", + "displayName": "test_492736772468", "status": "Completed", "experimentName": "dsl_pipeline_e2e", "services": { @@ -1535,12 +1530,12 @@ "_source": "DSL" }, "jobs": { - "test_54473877207": { + "test_667938376566": { "resources": null, "distribution": null, "limits": null, "environment_variables": {}, - "name": "test_54473877207", + "name": "test_667938376566", "type": "command", "display_name": null, "tags": {}, @@ -1556,15 +1551,16 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191" }, - "test_54473877207_1": { + "test_667938376566_1": { "resources": null, "distribution": null, "limits": null, "environment_variables": {}, - "name": "test_54473877207_1", + "name": "test_667938376566_1", "type": "command", "display_name": null, "tags": {}, @@ -1580,8 +1576,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191" } }, "inputs": { @@ -1606,7 +1603,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T02:17:27.3322952\u002B00:00", + "createdAt": "2022-09-23T16:30:17.0867279\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } @@ -1627,24 +1624,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:17:46 GMT", + "Date": "Fri, 23 Sep 2022 16:30:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-cd9b58d92617c6b286e6ac5cd73545dc-5424d2dc3e69d533-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-84a5c5c88bb3241f017371ce099ed3e7-1c5c3d13601a6216-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b25f9d07-e9e6-4bb7-a32d-9281fb0b11ac", - "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-correlation-request-id": "7cd7d479-8eea-4c7b-99e5-c9d8acecabdb", + "x-ms-ratelimit-remaining-subscription-reads": "11929", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021746Z:b25f9d07-e9e6-4bb7-a32d-9281fb0b11ac", - "x-request-time": "0.018" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163036Z:7cd7d479-8eea-4c7b-99e5-c9d8acecabdb", + "x-request-time": "0.015" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000", @@ -1656,24 +1653,24 @@ "properties": { "friendlyName": "00000", "description": "", - "storageAccount": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/sa3uz44b2f7uc5u", - "keyVault": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/kvtesttrecfjnmvhnmc", - "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/ai3uz44b2f7uc5u", + "storageAccount": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/sav6dhrxexwlv7g", + "keyVault": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/kvtestp5bxvua5jdb3o", + "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/aiv6dhrxexwlv7g", "hbiWorkspace": false, "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", "imageBuildCompute": null, "provisioningState": "Succeeded", "v1LegacyMode": false, "softDeleteEnabled": false, - "containerRegistry": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.ContainerRegistry/registries/cr3uz44b2f7uc5u", + "containerRegistry": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.ContainerRegistry/registries/crv6dhrxexwlv7g", "notebookInfo": { - "resourceId": "d990a81c1c4d458e832b41b9f6fb1f56", - "fqdn": "ml-sdkvnextcli-eastus2-63e57e0c-1296-4327-a01d-537c6e3ee06d.eastus2.notebooks.azure.net", + "resourceId": "dca3c7096cbf4e1bb56e8160950cd259", + "fqdn": "ml-sdkvnextcli-eastus2-e950f876-7257-4cf3-99a5-ff66812ac44c.eastus2.notebooks.azure.net", "isPrivateLinkEnabled": false, "notebookPreparationError": null }, "storageHnsEnabled": false, - "workspaceId": "63e57e0c-1296-4327-a01d-537c6e3ee06d", + "workspaceId": "e950f876-7257-4cf3-99a5-ff66812ac44c", "linkedModelInventoryArmId": null, "privateLinkCount": 0, "publicNetworkAccess": "Enabled", @@ -1684,7 +1681,7 @@ }, "identity": { "type": "SystemAssigned", - "principalId": "391ac246-df21-495e-bd7f-c4b0f78f1828", + "principalId": "caf4fc3d-ad1c-4328-98a9-2c61e9256b3d", "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47" }, "sku": { @@ -1692,10 +1689,10 @@ "tier": "Basic" }, "systemData": { - "createdAt": "2022-09-15T11:46:54.2808239Z", + "createdAt": "2022-09-22T03:07:16.8262302Z", "createdBy": "zhengfeiwang@microsoft.com", "createdByType": "User", - "lastModifiedAt": "2022-09-15T11:46:54.2808239Z", + "lastModifiedAt": "2022-09-22T03:11:11.4686795Z", "lastModifiedBy": "zhengfeiwang@microsoft.com", "lastModifiedByType": "User" } @@ -1720,19 +1717,19 @@ "Connection": "keep-alive", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:17:49 GMT", + "Date": "Fri, 23 Sep 2022 16:30:39 GMT", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-9594a74f478347a490733ec4c1a10f15-0f992c7a9efad108-00\u0022", + "Server-Timing": "traceparent;desc=\u002200-fda8b26d386adbbf2442fffe3c026e3c-cba3cc396fd11e29-00\u0022", "Strict-Transport-Security": "max-age=15724800; includeSubDomains; preload", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": [ "nosniff", "nosniff" ], "x-ms-response-type": "standard", - "x-request-time": "0.005" + "x-request-time": "0.008" }, "ResponseBody": { "api": "https://eastus2.api.azureml.ms", @@ -1762,22 +1759,22 @@ "Connection": "keep-alive", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:17:52 GMT", + "Date": "Fri, 23 Sep 2022 16:30:42 GMT", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", "Strict-Transport-Security": "max-age=15724800; includeSubDomains; preload", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", "x-ms-response-type": "standard", - "x-request-time": "0.088" + "x-request-time": "0.075" }, "ResponseBody": { "value": [ { - "runNumber": 1663726648, + "runNumber": 1663950618, "rootRunId": "000000000000000000000", - "createdUtc": "2022-09-21T02:17:28.4573611\u002B00:00", + "createdUtc": "2022-09-23T16:30:18.6160545\u002B00:00", "createdBy": { "userObjectId": "dccfa7b6-87c6-4f1e-af43-555f876e37a7", "userPuId": "10032001B4DCFEFF", @@ -1795,12 +1792,12 @@ "warnings": null, "revision": 2, "statusRevision": 0, - "runUuid": "fdeeefbe-78de-4e07-8573-64ed49586aba", - "parentRunUuid": "4e74c910-e912-43a5-af35-f4092bf2ec4e", - "rootRunUuid": "4e74c910-e912-43a5-af35-f4092bf2ec4e", + "runUuid": "0188dab4-08e6-4ace-bf99-7fee8b391c4a", + "parentRunUuid": "7838ac95-8e6a-4cce-bee6-46678fea018f", + "rootRunUuid": "7838ac95-8e6a-4cce-bee6-46678fea018f", "lastStartTimeUtc": null, "currentComputeTime": null, - "computeDuration": "00:00:00.0542507", + "computeDuration": "00:00:00.0948284", "effectiveStartTimeUtc": null, "lastModifiedBy": { "userObjectId": "dccfa7b6-87c6-4f1e-af43-555f876e37a7", @@ -1812,20 +1809,20 @@ "userName": "Zhengfei Wang", "upn": null }, - "lastModifiedUtc": "2022-09-21T02:17:28.4573611\u002B00:00", - "duration": "00:00:00.0542507", + "lastModifiedUtc": "2022-09-23T16:30:18.6160545\u002B00:00", + "duration": "00:00:00.0948284", "cancelationReason": null, "currentAttemptId": null, - "runId": "a8305d76-b365-49d1-bc3f-4449762f3fac", + "runId": "9339a76e-ed9e-4c61-be0c-caa19aa1e604", "parentRunId": "000000000000000000000", - "experimentId": "de512f09-c395-4849-8755-12ba17ee20c3", + "experimentId": "d62f6bc4-35a4-4107-b921-947041f10f06", "status": "Completed", - "startTimeUtc": "2022-09-21T02:17:28.4573611\u002B00:00", - "endTimeUtc": "2022-09-21T02:17:28.5116118\u002B00:00", + "startTimeUtc": "2022-09-23T16:30:18.6160545\u002B00:00", + "endTimeUtc": "2022-09-23T16:30:18.7108829\u002B00:00", "scheduleId": null, - "displayName": "test_54473877207_1", + "displayName": "test_667938376566_1", "name": "azureml_anonymous", - "dataContainerId": "dcid.df87287e-8aad-40a5-a207-6b84aa385301", + "dataContainerId": "dcid.b0b878a3-6d37-4d81-b730-8d73a2665fa4", "description": null, "hidden": false, "runType": "azureml.StepRun", @@ -1839,16 +1836,16 @@ }, "properties": { "azureml.isreused": "true", - "azureml.reusedrunid": "df87287e-8aad-40a5-a207-6b84aa385301", - "azureml.reusednodeid": "075a8400", - "azureml.reusedpipeline": "bubbly_drop_cd83pcqsh9", - "azureml.reusedpipelinerunid": "bubbly_drop_cd83pcqsh9", + "azureml.reusedrunid": "b0b878a3-6d37-4d81-b730-8d73a2665fa4", + "azureml.reusednodeid": "3320ed03", + "azureml.reusedpipeline": "000000000000000000000", + "azureml.reusedpipelinerunid": "000000000000000000000", "azureml.runsource": "azureml.StepRun", - "azureml.nodeid": "26e6932a", - "ContentSnapshotId": "54b76b2c-1dbd-4c2d-acee-b192c5b03efa", + "azureml.nodeid": "9645680a", + "ContentSnapshotId": "f40668c2-1572-499f-864f-776f01547e68", "StepType": "PythonScriptStep", "ComputeTargetType": "AmlCompute", - "azureml.moduleid": "2a153b3f-78e1-419b-8273-bfc76c28df32", + "azureml.moduleid": "bf151e23-da4f-4101-bf39-8bf62d31a191", "azureml.moduleName": "azureml_anonymous", "azureml.moduleVersion": "000000000000000000000", "azureml.pipeline": "000000000000000000000", @@ -1861,13 +1858,13 @@ }, "parameters": {}, "actionUris": { - "Cancel": "https://eastus2.api.azureml.ms/studioservice/apiv2/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/workspaces/00000/runs/a8305d76-b365-49d1-bc3f-4449762f3fac/Cancel" + "Cancel": "https://eastus2.api.azureml.ms/studioservice/apiv2/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/workspaces/00000/runs/9339a76e-ed9e-4c61-be0c-caa19aa1e604/Cancel" }, "scriptName": null, "target": "cpu-cluster", "uniqueChildRunComputeTargets": [], "tags": { - "azureml.nodeid": "26e6932a", + "azureml.nodeid": "9645680a", "azureml.pipeline": "000000000000000000000", "_aml_system_ComputeTargetStatus": "{\u0022AllocationState\u0022:\u0022steady\u0022,\u0022PreparingNodeCount\u0022:0,\u0022RunningNodeCount\u0022:0,\u0022CurrentNodeCount\u0022:0}" }, @@ -1879,7 +1876,7 @@ "jobSpecification": null, "primaryMetricName": null, "createdFrom": null, - "cancelUri": "https://eastus2.api.azureml.ms/studioservice/apiv2/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/workspaces/00000/runs/a8305d76-b365-49d1-bc3f-4449762f3fac/Cancel", + "cancelUri": "https://eastus2.api.azureml.ms/studioservice/apiv2/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/workspaces/00000/runs/9339a76e-ed9e-4c61-be0c-caa19aa1e604/Cancel", "completeUri": null, "diagnosticsUri": null, "computeRequest": null, @@ -1890,9 +1887,9 @@ "outputs": null }, { - "runNumber": 1663726648, + "runNumber": 1663950618, "rootRunId": "000000000000000000000", - "createdUtc": "2022-09-21T02:17:28.4802833\u002B00:00", + "createdUtc": "2022-09-23T16:30:18.7519341\u002B00:00", "createdBy": { "userObjectId": "dccfa7b6-87c6-4f1e-af43-555f876e37a7", "userPuId": "10032001B4DCFEFF", @@ -1910,12 +1907,12 @@ "warnings": null, "revision": 2, "statusRevision": 0, - "runUuid": "50660144-5d03-4301-869b-d67fcbd50940", - "parentRunUuid": "4e74c910-e912-43a5-af35-f4092bf2ec4e", - "rootRunUuid": "4e74c910-e912-43a5-af35-f4092bf2ec4e", + "runUuid": "77dffd9d-5569-4231-8d11-783730d89412", + "parentRunUuid": "7838ac95-8e6a-4cce-bee6-46678fea018f", + "rootRunUuid": "7838ac95-8e6a-4cce-bee6-46678fea018f", "lastStartTimeUtc": null, "currentComputeTime": null, - "computeDuration": "00:00:00.0520543", + "computeDuration": "00:00:00.0733579", "effectiveStartTimeUtc": null, "lastModifiedBy": { "userObjectId": "dccfa7b6-87c6-4f1e-af43-555f876e37a7", @@ -1927,20 +1924,20 @@ "userName": "Zhengfei Wang", "upn": null }, - "lastModifiedUtc": "2022-09-21T02:17:28.4802833\u002B00:00", - "duration": "00:00:00.0520543", + "lastModifiedUtc": "2022-09-23T16:30:18.7519341\u002B00:00", + "duration": "00:00:00.0733579", "cancelationReason": null, "currentAttemptId": null, - "runId": "39ea3832-108c-4adb-84b7-22f31e23519b", + "runId": "babab771-32ef-49dc-81da-78668859168c", "parentRunId": "000000000000000000000", - "experimentId": "de512f09-c395-4849-8755-12ba17ee20c3", + "experimentId": "d62f6bc4-35a4-4107-b921-947041f10f06", "status": "Completed", - "startTimeUtc": "2022-09-21T02:17:28.4802833\u002B00:00", - "endTimeUtc": "2022-09-21T02:17:28.5323376\u002B00:00", + "startTimeUtc": "2022-09-23T16:30:18.7519341\u002B00:00", + "endTimeUtc": "2022-09-23T16:30:18.825292\u002B00:00", "scheduleId": null, - "displayName": "test_54473877207", + "displayName": "test_667938376566", "name": "azureml_anonymous", - "dataContainerId": "dcid.d30871d2-2474-4b95-8929-6f9465deaae6", + "dataContainerId": "dcid.e009a266-b77f-4c86-a257-8f3ebcbc6176", "description": null, "hidden": false, "runType": "azureml.StepRun", @@ -1954,16 +1951,16 @@ }, "properties": { "azureml.isreused": "true", - "azureml.reusedrunid": "d30871d2-2474-4b95-8929-6f9465deaae6", - "azureml.reusednodeid": "63342776", - "azureml.reusedpipeline": "good_whale_v46599xqt9", - "azureml.reusedpipelinerunid": "good_whale_v46599xqt9", + "azureml.reusedrunid": "e009a266-b77f-4c86-a257-8f3ebcbc6176", + "azureml.reusednodeid": "7071af89", + "azureml.reusedpipeline": "000000000000000000000", + "azureml.reusedpipelinerunid": "000000000000000000000", "azureml.runsource": "azureml.StepRun", - "azureml.nodeid": "1ca4a846", - "ContentSnapshotId": "54b76b2c-1dbd-4c2d-acee-b192c5b03efa", + "azureml.nodeid": "9e25a038", + "ContentSnapshotId": "f40668c2-1572-499f-864f-776f01547e68", "StepType": "PythonScriptStep", "ComputeTargetType": "AmlCompute", - "azureml.moduleid": "2a153b3f-78e1-419b-8273-bfc76c28df32", + "azureml.moduleid": "bf151e23-da4f-4101-bf39-8bf62d31a191", "azureml.moduleName": "azureml_anonymous", "azureml.moduleVersion": "000000000000000000000", "azureml.pipeline": "000000000000000000000", @@ -1976,15 +1973,15 @@ }, "parameters": {}, "actionUris": { - "Cancel": "https://eastus2.api.azureml.ms/studioservice/apiv2/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/workspaces/00000/runs/39ea3832-108c-4adb-84b7-22f31e23519b/Cancel" + "Cancel": "https://eastus2.api.azureml.ms/studioservice/apiv2/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/workspaces/00000/runs/babab771-32ef-49dc-81da-78668859168c/Cancel" }, "scriptName": null, "target": "cpu-cluster", "uniqueChildRunComputeTargets": [], "tags": { - "azureml.nodeid": "1ca4a846", + "azureml.nodeid": "9e25a038", "azureml.pipeline": "000000000000000000000", - "_aml_system_ComputeTargetStatus": "{\u0022AllocationState\u0022:\u0022resizing\u0022,\u0022PreparingNodeCount\u0022:0,\u0022RunningNodeCount\u0022:0,\u0022CurrentNodeCount\u0022:0}" + "_aml_system_ComputeTargetStatus": "{\u0022AllocationState\u0022:\u0022steady\u0022,\u0022PreparingNodeCount\u0022:0,\u0022RunningNodeCount\u0022:0,\u0022CurrentNodeCount\u0022:0}" }, "settings": {}, "services": {}, @@ -1994,7 +1991,7 @@ "jobSpecification": null, "primaryMetricName": null, "createdFrom": null, - "cancelUri": "https://eastus2.api.azureml.ms/studioservice/apiv2/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/workspaces/00000/runs/39ea3832-108c-4adb-84b7-22f31e23519b/Cancel", + "cancelUri": "https://eastus2.api.azureml.ms/studioservice/apiv2/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/workspaces/00000/runs/babab771-32ef-49dc-81da-78668859168c/Cancel", "completeUri": null, "diagnosticsUri": null, "computeRequest": null, @@ -2008,7 +2005,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/a8305d76-b365-49d1-bc3f-4449762f3fac?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/9339a76e-ed9e-4c61-be0c-caa19aa1e604?api-version=2022-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", @@ -2022,38 +2019,38 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:17:52 GMT", + "Date": "Fri, 23 Sep 2022 16:30:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-fd86ea6c880105ee6fd2b9de6948249e-6e63acadef7347d5-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-92caaaaee6daa490a3e7aa243e1dc19a-1a9952886ae4cd3e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "57311b5b-0daa-4c0c-a183-d94c09915824", - "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-correlation-request-id": "97763f33-29c7-4457-b68f-e40d30783e70", + "x-ms-ratelimit-remaining-subscription-reads": "11928", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021753Z:57311b5b-0daa-4c0c-a183-d94c09915824", - "x-request-time": "0.040" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163044Z:97763f33-29c7-4457-b68f-e40d30783e70", + "x-request-time": "0.050" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/a8305d76-b365-49d1-bc3f-4449762f3fac", - "name": "a8305d76-b365-49d1-bc3f-4449762f3fac", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/9339a76e-ed9e-4c61-be0c-caa19aa1e604", + "name": "9339a76e-ed9e-4c61-be0c-caa19aa1e604", "type": "Microsoft.MachineLearningServices/workspaces/jobs", "systemData": { - "createdAt": "2022-09-21T02:17:28.4573611\u002B00:00", + "createdAt": "2022-09-23T16:30:18.6160545\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } } }, { - "RequestUri": "https://eastus2.api.azureml.ms/history/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/runs/a8305d76-b365-49d1-bc3f-4449762f3fac", + "RequestUri": "https://eastus2.api.azureml.ms/history/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/runs/9339a76e-ed9e-4c61-be0c-caa19aa1e604", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", @@ -2067,20 +2064,20 @@ "Connection": "keep-alive", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:17:54 GMT", + "Date": "Fri, 23 Sep 2022 16:30:44 GMT", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", "Strict-Transport-Security": "max-age=15724800; includeSubDomains; preload", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", "x-ms-response-type": "standard", - "x-request-time": "0.056" + "x-request-time": "0.017" }, "ResponseBody": { - "runNumber": 1663726648, + "runNumber": 1663950618, "rootRunId": "000000000000000000000", - "createdUtc": "2022-09-21T02:17:28.4573611\u002B00:00", + "createdUtc": "2022-09-23T16:30:18.6160545\u002B00:00", "createdBy": { "userObjectId": "dccfa7b6-87c6-4f1e-af43-555f876e37a7", "userPuId": "10032001B4DCFEFF", @@ -2098,12 +2095,12 @@ "warnings": null, "revision": 2, "statusRevision": 0, - "runUuid": "fdeeefbe-78de-4e07-8573-64ed49586aba", - "parentRunUuid": "4e74c910-e912-43a5-af35-f4092bf2ec4e", - "rootRunUuid": "4e74c910-e912-43a5-af35-f4092bf2ec4e", + "runUuid": "0188dab4-08e6-4ace-bf99-7fee8b391c4a", + "parentRunUuid": "7838ac95-8e6a-4cce-bee6-46678fea018f", + "rootRunUuid": "7838ac95-8e6a-4cce-bee6-46678fea018f", "lastStartTimeUtc": null, "currentComputeTime": null, - "computeDuration": "00:00:00.0542507", + "computeDuration": "00:00:00.0948284", "effectiveStartTimeUtc": null, "lastModifiedBy": { "userObjectId": "dccfa7b6-87c6-4f1e-af43-555f876e37a7", @@ -2115,20 +2112,20 @@ "userName": "Zhengfei Wang", "upn": null }, - "lastModifiedUtc": "2022-09-21T02:17:28.4573611\u002B00:00", - "duration": "00:00:00.0542507", + "lastModifiedUtc": "2022-09-23T16:30:18.6160545\u002B00:00", + "duration": "00:00:00.0948284", "cancelationReason": null, "currentAttemptId": null, - "runId": "a8305d76-b365-49d1-bc3f-4449762f3fac", + "runId": "9339a76e-ed9e-4c61-be0c-caa19aa1e604", "parentRunId": "000000000000000000000", - "experimentId": "de512f09-c395-4849-8755-12ba17ee20c3", + "experimentId": "d62f6bc4-35a4-4107-b921-947041f10f06", "status": "Completed", - "startTimeUtc": "2022-09-21T02:17:28.4573611\u002B00:00", - "endTimeUtc": "2022-09-21T02:17:28.5116118\u002B00:00", + "startTimeUtc": "2022-09-23T16:30:18.6160545\u002B00:00", + "endTimeUtc": "2022-09-23T16:30:18.7108829\u002B00:00", "scheduleId": null, - "displayName": "test_54473877207_1", + "displayName": "test_667938376566_1", "name": "azureml_anonymous", - "dataContainerId": "dcid.df87287e-8aad-40a5-a207-6b84aa385301", + "dataContainerId": "dcid.b0b878a3-6d37-4d81-b730-8d73a2665fa4", "description": null, "hidden": false, "runType": "azureml.StepRun", @@ -2142,16 +2139,16 @@ }, "properties": { "azureml.isreused": "true", - "azureml.reusedrunid": "df87287e-8aad-40a5-a207-6b84aa385301", - "azureml.reusednodeid": "075a8400", - "azureml.reusedpipeline": "bubbly_drop_cd83pcqsh9", - "azureml.reusedpipelinerunid": "bubbly_drop_cd83pcqsh9", + "azureml.reusedrunid": "b0b878a3-6d37-4d81-b730-8d73a2665fa4", + "azureml.reusednodeid": "3320ed03", + "azureml.reusedpipeline": "000000000000000000000", + "azureml.reusedpipelinerunid": "000000000000000000000", "azureml.runsource": "azureml.StepRun", - "azureml.nodeid": "26e6932a", - "ContentSnapshotId": "54b76b2c-1dbd-4c2d-acee-b192c5b03efa", + "azureml.nodeid": "9645680a", + "ContentSnapshotId": "f40668c2-1572-499f-864f-776f01547e68", "StepType": "PythonScriptStep", "ComputeTargetType": "AmlCompute", - "azureml.moduleid": "2a153b3f-78e1-419b-8273-bfc76c28df32", + "azureml.moduleid": "bf151e23-da4f-4101-bf39-8bf62d31a191", "azureml.moduleName": "azureml_anonymous", "azureml.moduleVersion": "000000000000000000000", "azureml.pipeline": "000000000000000000000", @@ -2164,13 +2161,13 @@ }, "parameters": {}, "actionUris": { - "Cancel": "https://eastus2.api.azureml.ms/studioservice/apiv2/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/workspaces/00000/runs/a8305d76-b365-49d1-bc3f-4449762f3fac/Cancel" + "Cancel": "https://eastus2.api.azureml.ms/studioservice/apiv2/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/workspaces/00000/runs/9339a76e-ed9e-4c61-be0c-caa19aa1e604/Cancel" }, "scriptName": null, "target": "cpu-cluster", "uniqueChildRunComputeTargets": [], "tags": { - "azureml.nodeid": "26e6932a", + "azureml.nodeid": "9645680a", "azureml.pipeline": "000000000000000000000", "_aml_system_ComputeTargetStatus": "{\u0022AllocationState\u0022:\u0022steady\u0022,\u0022PreparingNodeCount\u0022:0,\u0022RunningNodeCount\u0022:0,\u0022CurrentNodeCount\u0022:0}" }, @@ -2182,7 +2179,7 @@ "jobSpecification": null, "primaryMetricName": null, "createdFrom": null, - "cancelUri": "https://eastus2.api.azureml.ms/studioservice/apiv2/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/workspaces/00000/runs/a8305d76-b365-49d1-bc3f-4449762f3fac/Cancel", + "cancelUri": "https://eastus2.api.azureml.ms/studioservice/apiv2/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/workspaces/00000/runs/9339a76e-ed9e-4c61-be0c-caa19aa1e604/Cancel", "completeUri": null, "diagnosticsUri": null, "computeRequest": null, @@ -2194,7 +2191,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/a8305d76-b365-49d1-bc3f-4449762f3fac?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/9339a76e-ed9e-4c61-be0c-caa19aa1e604?api-version=2022-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", @@ -2208,38 +2205,38 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:17:54 GMT", + "Date": "Fri, 23 Sep 2022 16:30:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-4d05229a6b7f87e09ad73a26bbaafb9a-0ac52a0cf62bf600-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-192ad089924b1880470b44618af64279-7e509e0827cd23ed-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4aa910c3-ff39-446e-af9c-ac9ab03b8041", - "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-correlation-request-id": "501aee2d-5419-429c-84de-e5980e3bf270", + "x-ms-ratelimit-remaining-subscription-reads": "11927", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021755Z:4aa910c3-ff39-446e-af9c-ac9ab03b8041", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163045Z:501aee2d-5419-429c-84de-e5980e3bf270", "x-request-time": "0.066" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/a8305d76-b365-49d1-bc3f-4449762f3fac", - "name": "a8305d76-b365-49d1-bc3f-4449762f3fac", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/9339a76e-ed9e-4c61-be0c-caa19aa1e604", + "name": "9339a76e-ed9e-4c61-be0c-caa19aa1e604", "type": "Microsoft.MachineLearningServices/workspaces/jobs", "systemData": { - "createdAt": "2022-09-21T02:17:28.4573611\u002B00:00", + "createdAt": "2022-09-23T16:30:18.6160545\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } } }, { - "RequestUri": "https://eastus2.api.azureml.ms/history/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/runs/a8305d76-b365-49d1-bc3f-4449762f3fac", + "RequestUri": "https://eastus2.api.azureml.ms/history/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/runs/9339a76e-ed9e-4c61-be0c-caa19aa1e604", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", @@ -2253,20 +2250,20 @@ "Connection": "keep-alive", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:17:55 GMT", + "Date": "Fri, 23 Sep 2022 16:30:45 GMT", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", "Strict-Transport-Security": "max-age=15724800; includeSubDomains; preload", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", "x-ms-response-type": "standard", - "x-request-time": "0.017" + "x-request-time": "0.021" }, "ResponseBody": { - "runNumber": 1663726648, + "runNumber": 1663950618, "rootRunId": "000000000000000000000", - "createdUtc": "2022-09-21T02:17:28.4573611\u002B00:00", + "createdUtc": "2022-09-23T16:30:18.6160545\u002B00:00", "createdBy": { "userObjectId": "dccfa7b6-87c6-4f1e-af43-555f876e37a7", "userPuId": "10032001B4DCFEFF", @@ -2284,12 +2281,12 @@ "warnings": null, "revision": 2, "statusRevision": 0, - "runUuid": "fdeeefbe-78de-4e07-8573-64ed49586aba", - "parentRunUuid": "4e74c910-e912-43a5-af35-f4092bf2ec4e", - "rootRunUuid": "4e74c910-e912-43a5-af35-f4092bf2ec4e", + "runUuid": "0188dab4-08e6-4ace-bf99-7fee8b391c4a", + "parentRunUuid": "7838ac95-8e6a-4cce-bee6-46678fea018f", + "rootRunUuid": "7838ac95-8e6a-4cce-bee6-46678fea018f", "lastStartTimeUtc": null, "currentComputeTime": null, - "computeDuration": "00:00:00.0542507", + "computeDuration": "00:00:00.0948284", "effectiveStartTimeUtc": null, "lastModifiedBy": { "userObjectId": "dccfa7b6-87c6-4f1e-af43-555f876e37a7", @@ -2301,20 +2298,20 @@ "userName": "Zhengfei Wang", "upn": null }, - "lastModifiedUtc": "2022-09-21T02:17:28.4573611\u002B00:00", - "duration": "00:00:00.0542507", + "lastModifiedUtc": "2022-09-23T16:30:18.6160545\u002B00:00", + "duration": "00:00:00.0948284", "cancelationReason": null, "currentAttemptId": null, - "runId": "a8305d76-b365-49d1-bc3f-4449762f3fac", + "runId": "9339a76e-ed9e-4c61-be0c-caa19aa1e604", "parentRunId": "000000000000000000000", - "experimentId": "de512f09-c395-4849-8755-12ba17ee20c3", + "experimentId": "d62f6bc4-35a4-4107-b921-947041f10f06", "status": "Completed", - "startTimeUtc": "2022-09-21T02:17:28.4573611\u002B00:00", - "endTimeUtc": "2022-09-21T02:17:28.5116118\u002B00:00", + "startTimeUtc": "2022-09-23T16:30:18.6160545\u002B00:00", + "endTimeUtc": "2022-09-23T16:30:18.7108829\u002B00:00", "scheduleId": null, - "displayName": "test_54473877207_1", + "displayName": "test_667938376566_1", "name": "azureml_anonymous", - "dataContainerId": "dcid.df87287e-8aad-40a5-a207-6b84aa385301", + "dataContainerId": "dcid.b0b878a3-6d37-4d81-b730-8d73a2665fa4", "description": null, "hidden": false, "runType": "azureml.StepRun", @@ -2328,16 +2325,16 @@ }, "properties": { "azureml.isreused": "true", - "azureml.reusedrunid": "df87287e-8aad-40a5-a207-6b84aa385301", - "azureml.reusednodeid": "075a8400", - "azureml.reusedpipeline": "bubbly_drop_cd83pcqsh9", - "azureml.reusedpipelinerunid": "bubbly_drop_cd83pcqsh9", + "azureml.reusedrunid": "b0b878a3-6d37-4d81-b730-8d73a2665fa4", + "azureml.reusednodeid": "3320ed03", + "azureml.reusedpipeline": "000000000000000000000", + "azureml.reusedpipelinerunid": "000000000000000000000", "azureml.runsource": "azureml.StepRun", - "azureml.nodeid": "26e6932a", - "ContentSnapshotId": "54b76b2c-1dbd-4c2d-acee-b192c5b03efa", + "azureml.nodeid": "9645680a", + "ContentSnapshotId": "f40668c2-1572-499f-864f-776f01547e68", "StepType": "PythonScriptStep", "ComputeTargetType": "AmlCompute", - "azureml.moduleid": "2a153b3f-78e1-419b-8273-bfc76c28df32", + "azureml.moduleid": "bf151e23-da4f-4101-bf39-8bf62d31a191", "azureml.moduleName": "azureml_anonymous", "azureml.moduleVersion": "000000000000000000000", "azureml.pipeline": "000000000000000000000", @@ -2350,13 +2347,13 @@ }, "parameters": {}, "actionUris": { - "Cancel": "https://eastus2.api.azureml.ms/studioservice/apiv2/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/workspaces/00000/runs/a8305d76-b365-49d1-bc3f-4449762f3fac/Cancel" + "Cancel": "https://eastus2.api.azureml.ms/studioservice/apiv2/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/workspaces/00000/runs/9339a76e-ed9e-4c61-be0c-caa19aa1e604/Cancel" }, "scriptName": null, "target": "cpu-cluster", "uniqueChildRunComputeTargets": [], "tags": { - "azureml.nodeid": "26e6932a", + "azureml.nodeid": "9645680a", "azureml.pipeline": "000000000000000000000", "_aml_system_ComputeTargetStatus": "{\u0022AllocationState\u0022:\u0022steady\u0022,\u0022PreparingNodeCount\u0022:0,\u0022RunningNodeCount\u0022:0,\u0022CurrentNodeCount\u0022:0}" }, @@ -2368,7 +2365,7 @@ "jobSpecification": null, "primaryMetricName": null, "createdFrom": null, - "cancelUri": "https://eastus2.api.azureml.ms/studioservice/apiv2/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/workspaces/00000/runs/a8305d76-b365-49d1-bc3f-4449762f3fac/Cancel", + "cancelUri": "https://eastus2.api.azureml.ms/studioservice/apiv2/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/workspaces/00000/runs/9339a76e-ed9e-4c61-be0c-caa19aa1e604/Cancel", "completeUri": null, "diagnosticsUri": null, "computeRequest": null, @@ -2380,7 +2377,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/39ea3832-108c-4adb-84b7-22f31e23519b?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/babab771-32ef-49dc-81da-78668859168c?api-version=2022-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", @@ -2394,38 +2391,38 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:17:55 GMT", + "Date": "Fri, 23 Sep 2022 16:30:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-ae93b64cd8227817761721d84d567a89-7797721702456684-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-4f74b688c8e8c81b8de24d1b7441c131-2130da4d4ce669fd-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6ed51ed4-0e64-4100-bac5-2d7ce96e072d", - "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-correlation-request-id": "a43aabdf-d619-4919-981f-07c20468195b", + "x-ms-ratelimit-remaining-subscription-reads": "11926", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021756Z:6ed51ed4-0e64-4100-bac5-2d7ce96e072d", - "x-request-time": "0.054" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163046Z:a43aabdf-d619-4919-981f-07c20468195b", + "x-request-time": "0.066" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/39ea3832-108c-4adb-84b7-22f31e23519b", - "name": "39ea3832-108c-4adb-84b7-22f31e23519b", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/babab771-32ef-49dc-81da-78668859168c", + "name": "babab771-32ef-49dc-81da-78668859168c", "type": "Microsoft.MachineLearningServices/workspaces/jobs", "systemData": { - "createdAt": "2022-09-21T02:17:28.4802833\u002B00:00", + "createdAt": "2022-09-23T16:30:18.7519341\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } } }, { - "RequestUri": "https://eastus2.api.azureml.ms/history/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/runs/39ea3832-108c-4adb-84b7-22f31e23519b", + "RequestUri": "https://eastus2.api.azureml.ms/history/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/runs/babab771-32ef-49dc-81da-78668859168c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", @@ -2439,20 +2436,20 @@ "Connection": "keep-alive", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:17:56 GMT", + "Date": "Fri, 23 Sep 2022 16:30:46 GMT", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", "Strict-Transport-Security": "max-age=15724800; includeSubDomains; preload", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", "x-ms-response-type": "standard", - "x-request-time": "0.022" + "x-request-time": "0.021" }, "ResponseBody": { - "runNumber": 1663726648, + "runNumber": 1663950618, "rootRunId": "000000000000000000000", - "createdUtc": "2022-09-21T02:17:28.4802833\u002B00:00", + "createdUtc": "2022-09-23T16:30:18.7519341\u002B00:00", "createdBy": { "userObjectId": "dccfa7b6-87c6-4f1e-af43-555f876e37a7", "userPuId": "10032001B4DCFEFF", @@ -2470,12 +2467,12 @@ "warnings": null, "revision": 2, "statusRevision": 0, - "runUuid": "50660144-5d03-4301-869b-d67fcbd50940", - "parentRunUuid": "4e74c910-e912-43a5-af35-f4092bf2ec4e", - "rootRunUuid": "4e74c910-e912-43a5-af35-f4092bf2ec4e", + "runUuid": "77dffd9d-5569-4231-8d11-783730d89412", + "parentRunUuid": "7838ac95-8e6a-4cce-bee6-46678fea018f", + "rootRunUuid": "7838ac95-8e6a-4cce-bee6-46678fea018f", "lastStartTimeUtc": null, "currentComputeTime": null, - "computeDuration": "00:00:00.0520543", + "computeDuration": "00:00:00.0733579", "effectiveStartTimeUtc": null, "lastModifiedBy": { "userObjectId": "dccfa7b6-87c6-4f1e-af43-555f876e37a7", @@ -2487,20 +2484,20 @@ "userName": "Zhengfei Wang", "upn": null }, - "lastModifiedUtc": "2022-09-21T02:17:28.4802833\u002B00:00", - "duration": "00:00:00.0520543", + "lastModifiedUtc": "2022-09-23T16:30:18.7519341\u002B00:00", + "duration": "00:00:00.0733579", "cancelationReason": null, "currentAttemptId": null, - "runId": "39ea3832-108c-4adb-84b7-22f31e23519b", + "runId": "babab771-32ef-49dc-81da-78668859168c", "parentRunId": "000000000000000000000", - "experimentId": "de512f09-c395-4849-8755-12ba17ee20c3", + "experimentId": "d62f6bc4-35a4-4107-b921-947041f10f06", "status": "Completed", - "startTimeUtc": "2022-09-21T02:17:28.4802833\u002B00:00", - "endTimeUtc": "2022-09-21T02:17:28.5323376\u002B00:00", + "startTimeUtc": "2022-09-23T16:30:18.7519341\u002B00:00", + "endTimeUtc": "2022-09-23T16:30:18.825292\u002B00:00", "scheduleId": null, - "displayName": "test_54473877207", + "displayName": "test_667938376566", "name": "azureml_anonymous", - "dataContainerId": "dcid.d30871d2-2474-4b95-8929-6f9465deaae6", + "dataContainerId": "dcid.e009a266-b77f-4c86-a257-8f3ebcbc6176", "description": null, "hidden": false, "runType": "azureml.StepRun", @@ -2514,16 +2511,16 @@ }, "properties": { "azureml.isreused": "true", - "azureml.reusedrunid": "d30871d2-2474-4b95-8929-6f9465deaae6", - "azureml.reusednodeid": "63342776", - "azureml.reusedpipeline": "good_whale_v46599xqt9", - "azureml.reusedpipelinerunid": "good_whale_v46599xqt9", + "azureml.reusedrunid": "e009a266-b77f-4c86-a257-8f3ebcbc6176", + "azureml.reusednodeid": "7071af89", + "azureml.reusedpipeline": "000000000000000000000", + "azureml.reusedpipelinerunid": "000000000000000000000", "azureml.runsource": "azureml.StepRun", - "azureml.nodeid": "1ca4a846", - "ContentSnapshotId": "54b76b2c-1dbd-4c2d-acee-b192c5b03efa", + "azureml.nodeid": "9e25a038", + "ContentSnapshotId": "f40668c2-1572-499f-864f-776f01547e68", "StepType": "PythonScriptStep", "ComputeTargetType": "AmlCompute", - "azureml.moduleid": "2a153b3f-78e1-419b-8273-bfc76c28df32", + "azureml.moduleid": "bf151e23-da4f-4101-bf39-8bf62d31a191", "azureml.moduleName": "azureml_anonymous", "azureml.moduleVersion": "000000000000000000000", "azureml.pipeline": "000000000000000000000", @@ -2536,15 +2533,15 @@ }, "parameters": {}, "actionUris": { - "Cancel": "https://eastus2.api.azureml.ms/studioservice/apiv2/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/workspaces/00000/runs/39ea3832-108c-4adb-84b7-22f31e23519b/Cancel" + "Cancel": "https://eastus2.api.azureml.ms/studioservice/apiv2/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/workspaces/00000/runs/babab771-32ef-49dc-81da-78668859168c/Cancel" }, "scriptName": null, "target": "cpu-cluster", "uniqueChildRunComputeTargets": [], "tags": { - "azureml.nodeid": "1ca4a846", + "azureml.nodeid": "9e25a038", "azureml.pipeline": "000000000000000000000", - "_aml_system_ComputeTargetStatus": "{\u0022AllocationState\u0022:\u0022resizing\u0022,\u0022PreparingNodeCount\u0022:0,\u0022RunningNodeCount\u0022:0,\u0022CurrentNodeCount\u0022:0}" + "_aml_system_ComputeTargetStatus": "{\u0022AllocationState\u0022:\u0022steady\u0022,\u0022PreparingNodeCount\u0022:0,\u0022RunningNodeCount\u0022:0,\u0022CurrentNodeCount\u0022:0}" }, "settings": {}, "services": {}, @@ -2554,7 +2551,7 @@ "jobSpecification": null, "primaryMetricName": null, "createdFrom": null, - "cancelUri": "https://eastus2.api.azureml.ms/studioservice/apiv2/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/workspaces/00000/runs/39ea3832-108c-4adb-84b7-22f31e23519b/Cancel", + "cancelUri": "https://eastus2.api.azureml.ms/studioservice/apiv2/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/workspaces/00000/runs/babab771-32ef-49dc-81da-78668859168c/Cancel", "completeUri": null, "diagnosticsUri": null, "computeRequest": null, @@ -2566,7 +2563,7 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/39ea3832-108c-4adb-84b7-22f31e23519b?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/babab771-32ef-49dc-81da-78668859168c?api-version=2022-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", @@ -2580,38 +2577,38 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:17:57 GMT", + "Date": "Fri, 23 Sep 2022 16:30:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-8ba1de6d2b879567ce1ae635f8e5a8a1-1c541efd148ab088-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-28073e52c14009adb403f6d706b7918c-dd19c30e4399d97a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "66869c49-9cdd-4b72-81ff-e7a752d51c50", - "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-correlation-request-id": "67f199d5-551a-4431-8302-cc2407e08bcc", + "x-ms-ratelimit-remaining-subscription-reads": "11925", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021757Z:66869c49-9cdd-4b72-81ff-e7a752d51c50", - "x-request-time": "0.073" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163047Z:67f199d5-551a-4431-8302-cc2407e08bcc", + "x-request-time": "0.046" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/39ea3832-108c-4adb-84b7-22f31e23519b", - "name": "39ea3832-108c-4adb-84b7-22f31e23519b", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/babab771-32ef-49dc-81da-78668859168c", + "name": "babab771-32ef-49dc-81da-78668859168c", "type": "Microsoft.MachineLearningServices/workspaces/jobs", "systemData": { - "createdAt": "2022-09-21T02:17:28.4802833\u002B00:00", + "createdAt": "2022-09-23T16:30:18.7519341\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } } }, { - "RequestUri": "https://eastus2.api.azureml.ms/history/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/runs/39ea3832-108c-4adb-84b7-22f31e23519b", + "RequestUri": "https://eastus2.api.azureml.ms/history/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/runs/babab771-32ef-49dc-81da-78668859168c", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", @@ -2625,20 +2622,20 @@ "Connection": "keep-alive", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:17:58 GMT", + "Date": "Fri, 23 Sep 2022 16:30:47 GMT", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", "Strict-Transport-Security": "max-age=15724800; includeSubDomains; preload", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", "x-ms-response-type": "standard", - "x-request-time": "0.028" + "x-request-time": "0.016" }, "ResponseBody": { - "runNumber": 1663726648, + "runNumber": 1663950618, "rootRunId": "000000000000000000000", - "createdUtc": "2022-09-21T02:17:28.4802833\u002B00:00", + "createdUtc": "2022-09-23T16:30:18.7519341\u002B00:00", "createdBy": { "userObjectId": "dccfa7b6-87c6-4f1e-af43-555f876e37a7", "userPuId": "10032001B4DCFEFF", @@ -2656,12 +2653,12 @@ "warnings": null, "revision": 2, "statusRevision": 0, - "runUuid": "50660144-5d03-4301-869b-d67fcbd50940", - "parentRunUuid": "4e74c910-e912-43a5-af35-f4092bf2ec4e", - "rootRunUuid": "4e74c910-e912-43a5-af35-f4092bf2ec4e", + "runUuid": "77dffd9d-5569-4231-8d11-783730d89412", + "parentRunUuid": "7838ac95-8e6a-4cce-bee6-46678fea018f", + "rootRunUuid": "7838ac95-8e6a-4cce-bee6-46678fea018f", "lastStartTimeUtc": null, "currentComputeTime": null, - "computeDuration": "00:00:00.0520543", + "computeDuration": "00:00:00.0733579", "effectiveStartTimeUtc": null, "lastModifiedBy": { "userObjectId": "dccfa7b6-87c6-4f1e-af43-555f876e37a7", @@ -2673,20 +2670,20 @@ "userName": "Zhengfei Wang", "upn": null }, - "lastModifiedUtc": "2022-09-21T02:17:28.4802833\u002B00:00", - "duration": "00:00:00.0520543", + "lastModifiedUtc": "2022-09-23T16:30:18.7519341\u002B00:00", + "duration": "00:00:00.0733579", "cancelationReason": null, "currentAttemptId": null, - "runId": "39ea3832-108c-4adb-84b7-22f31e23519b", + "runId": "babab771-32ef-49dc-81da-78668859168c", "parentRunId": "000000000000000000000", - "experimentId": "de512f09-c395-4849-8755-12ba17ee20c3", + "experimentId": "d62f6bc4-35a4-4107-b921-947041f10f06", "status": "Completed", - "startTimeUtc": "2022-09-21T02:17:28.4802833\u002B00:00", - "endTimeUtc": "2022-09-21T02:17:28.5323376\u002B00:00", + "startTimeUtc": "2022-09-23T16:30:18.7519341\u002B00:00", + "endTimeUtc": "2022-09-23T16:30:18.825292\u002B00:00", "scheduleId": null, - "displayName": "test_54473877207", + "displayName": "test_667938376566", "name": "azureml_anonymous", - "dataContainerId": "dcid.d30871d2-2474-4b95-8929-6f9465deaae6", + "dataContainerId": "dcid.e009a266-b77f-4c86-a257-8f3ebcbc6176", "description": null, "hidden": false, "runType": "azureml.StepRun", @@ -2700,16 +2697,16 @@ }, "properties": { "azureml.isreused": "true", - "azureml.reusedrunid": "d30871d2-2474-4b95-8929-6f9465deaae6", - "azureml.reusednodeid": "63342776", - "azureml.reusedpipeline": "good_whale_v46599xqt9", - "azureml.reusedpipelinerunid": "good_whale_v46599xqt9", + "azureml.reusedrunid": "e009a266-b77f-4c86-a257-8f3ebcbc6176", + "azureml.reusednodeid": "7071af89", + "azureml.reusedpipeline": "000000000000000000000", + "azureml.reusedpipelinerunid": "000000000000000000000", "azureml.runsource": "azureml.StepRun", - "azureml.nodeid": "1ca4a846", - "ContentSnapshotId": "54b76b2c-1dbd-4c2d-acee-b192c5b03efa", + "azureml.nodeid": "9e25a038", + "ContentSnapshotId": "f40668c2-1572-499f-864f-776f01547e68", "StepType": "PythonScriptStep", "ComputeTargetType": "AmlCompute", - "azureml.moduleid": "2a153b3f-78e1-419b-8273-bfc76c28df32", + "azureml.moduleid": "bf151e23-da4f-4101-bf39-8bf62d31a191", "azureml.moduleName": "azureml_anonymous", "azureml.moduleVersion": "000000000000000000000", "azureml.pipeline": "000000000000000000000", @@ -2722,15 +2719,15 @@ }, "parameters": {}, "actionUris": { - "Cancel": "https://eastus2.api.azureml.ms/studioservice/apiv2/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/workspaces/00000/runs/39ea3832-108c-4adb-84b7-22f31e23519b/Cancel" + "Cancel": "https://eastus2.api.azureml.ms/studioservice/apiv2/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/workspaces/00000/runs/babab771-32ef-49dc-81da-78668859168c/Cancel" }, "scriptName": null, "target": "cpu-cluster", "uniqueChildRunComputeTargets": [], "tags": { - "azureml.nodeid": "1ca4a846", + "azureml.nodeid": "9e25a038", "azureml.pipeline": "000000000000000000000", - "_aml_system_ComputeTargetStatus": "{\u0022AllocationState\u0022:\u0022resizing\u0022,\u0022PreparingNodeCount\u0022:0,\u0022RunningNodeCount\u0022:0,\u0022CurrentNodeCount\u0022:0}" + "_aml_system_ComputeTargetStatus": "{\u0022AllocationState\u0022:\u0022steady\u0022,\u0022PreparingNodeCount\u0022:0,\u0022RunningNodeCount\u0022:0,\u0022CurrentNodeCount\u0022:0}" }, "settings": {}, "services": {}, @@ -2740,7 +2737,7 @@ "jobSpecification": null, "primaryMetricName": null, "createdFrom": null, - "cancelUri": "https://eastus2.api.azureml.ms/studioservice/apiv2/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/workspaces/00000/runs/39ea3832-108c-4adb-84b7-22f31e23519b/Cancel", + "cancelUri": "https://eastus2.api.azureml.ms/studioservice/apiv2/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/workspaces/00000/runs/babab771-32ef-49dc-81da-78668859168c/Cancel", "completeUri": null, "diagnosticsUri": null, "computeRequest": null, @@ -2753,7 +2750,7 @@ } ], "Variables": { - "component_name": "test_54473877207", - "pipeline_name": "test_392270713566" + "component_name": "test_667938376566", + "pipeline_name": "test_492736772468" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_multi_parallel_components_with_file_input_pipeline_output.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_multi_parallel_components_with_file_input_pipeline_output.json index ef7c1ec24fc6..86d132dde62f 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_multi_parallel_components_with_file_input_pipeline_output.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_multi_parallel_components_with_file_input_pipeline_output.json @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:16:17 GMT", + "Date": "Fri, 23 Sep 2022 16:29:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-2a626f043491a3ea1500a8ddb522ae81-40640d6be7563a3b-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-3d41314c24857e8bef1060d391058c2f-6e15e01ada17552c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2bf24238-7df9-4dc8-87ec-ade6ae2e68a7", - "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-correlation-request-id": "d0e14d33-f232-4bce-a4f8-0d1fa4d833cc", + "x-ms-ratelimit-remaining-subscription-reads": "11939", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021617Z:2bf24238-7df9-4dc8-87ec-ade6ae2e68a7", - "x-request-time": "0.099" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162916Z:d0e14d33-f232-4bce-a4f8-0d1fa4d833cc", + "x-request-time": "0.097" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -47,17 +47,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -79,21 +79,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:16:19 GMT", + "Date": "Fri, 23 Sep 2022 16:29:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-212b0dbe3c035290b7bc80ba47daaa1c-3d4f53ff4478cfe9-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-f0805cc83523e561fbf79420c4ff4195-d532587319a73db0-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4cf5e00a-e0a1-426c-a2ba-32cdf037653d", - "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-correlation-request-id": "912ecd4b-e60a-4442-91fa-e64c2c91d146", + "x-ms-ratelimit-remaining-subscription-writes": "1157", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021619Z:4cf5e00a-e0a1-426c-a2ba-32cdf037653d", - "x-request-time": "0.082" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162917Z:912ecd4b-e60a-4442-91fa-e64c2c91d146", + "x-request-time": "0.101" }, "ResponseBody": { "secretsType": "AccountKey", @@ -101,14 +101,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src/convert_data.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src/convert_data.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:16:21 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:29:20 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -118,9 +118,9 @@ "Content-Length": "969", "Content-MD5": "DhunCanKGufSVuPKEYN51w==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 02:16:19 GMT", - "ETag": "\u00220x8DA9ABDA1AA81F0\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:07:27 GMT", + "Date": "Fri, 23 Sep 2022 16:29:18 GMT", + "ETag": "\u00220x8DA9D77F491F568\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:26:15 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -129,10 +129,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:07:26 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:26:15 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "f4f57fd3-0d13-423d-a406-4d6ccd43be14", + "x-ms-meta-name": "55c9c168-236e-473f-b35e-c3cba03dad49", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -141,20 +141,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/src/convert_data.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/src/convert_data.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:16:21 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:29:21 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 02:16:20 GMT", + "Date": "Fri, 23 Sep 2022 16:29:19 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -167,7 +167,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f4f57fd3-0d13-423d-a406-4d6ccd43be14/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/55c9c168-236e-473f-b35e-c3cba03dad49/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -185,7 +185,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src" } }, "StatusCode": 200, @@ -193,27 +193,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:16:21 GMT", + "Date": "Fri, 23 Sep 2022 16:29:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-453bafffdb2c9c460432e60291b16da8-0f271c899c6ff35e-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-d6433490d57a7736184a7e6e60dcf51a-fe10a5a20b2d351c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6ba3f444-a1c2-4c08-91e3-23473ea5c984", - "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-correlation-request-id": "2091fdc3-b86e-49a8-81a2-144abe8ab386", + "x-ms-ratelimit-remaining-subscription-writes": "1101", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021621Z:6ba3f444-a1c2-4c08-91e3-23473ea5c984", - "x-request-time": "0.102" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162920Z:2091fdc3-b86e-49a8-81a2-144abe8ab386", + "x-request-time": "0.076" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f4f57fd3-0d13-423d-a406-4d6ccd43be14/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/55c9c168-236e-473f-b35e-c3cba03dad49/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -225,13 +225,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src" }, "systemData": { - "createdAt": "2022-09-20T04:07:28.9023268\u002B00:00", + "createdAt": "2022-09-23T15:26:16.5278828\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:16:21.8004616\u002B00:00", + "lastModifiedAt": "2022-09-23T16:29:20.0944472\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -280,7 +280,7 @@ }, "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f4f57fd3-0d13-423d-a406-4d6ccd43be14/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/55c9c168-236e-473f-b35e-c3cba03dad49/versions/1", "entry_script": "score.py", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1" @@ -296,26 +296,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2315", + "Content-Length": "2313", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:16:23 GMT", + "Date": "Fri, 23 Sep 2022 16:29:21 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-bc8a6ebfd0615d0c47a95ffdb473f024-c38fb68a8f3c1302-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-134b50d78930e59f08b8d00e210ae134-231e40613d45d300-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "77579c68-8c10-48a0-b2aa-1b2da084c918", - "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-correlation-request-id": "c34a2d0f-3b04-415a-9c2b-dd5faf0be143", + "x-ms-ratelimit-remaining-subscription-writes": "1100", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021623Z:77579c68-8c10-48a0-b2aa-1b2da084c918", - "x-request-time": "0.363" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162921Z:c34a2d0f-3b04-415a-9c2b-dd5faf0be143", + "x-request-time": "0.492" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ac26d5af-25b8-4649-b2ce-7f585b63f45e", - "name": "ac26d5af-25b8-4649-b2ce-7f585b63f45e", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/60b739ff-1e46-47cd-a815-9aeb86e22e55", + "name": "60b739ff-1e46-47cd-a815-9aeb86e22e55", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -325,7 +325,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "ac26d5af-25b8-4649-b2ce-7f585b63f45e", + "version": "60b739ff-1e46-47cd-a815-9aeb86e22e55", "display_name": "BatchScore", "is_deterministic": "True", "type": "parallel", @@ -343,7 +343,7 @@ } }, "task": { - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f4f57fd3-0d13-423d-a406-4d6ccd43be14/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/55c9c168-236e-473f-b35e-c3cba03dad49/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "entry_script": "score.py", @@ -363,10 +363,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T01:24:46.0744261\u002B00:00", + "createdAt": "2022-09-23T16:27:30.6477673\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T01:24:46.2680151\u002B00:00", + "lastModifiedAt": "2022-09-23T16:27:30.84688\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -387,24 +387,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:16:26 GMT", + "Date": "Fri, 23 Sep 2022 16:29:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-bf03bb35361bc58c55a78ec63b6ea9bf-acea88f93d2b374e-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-98afe852bc3527c7425a43a76ed654bb-06486e5b81a330a9-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bdb4150c-1c05-4b50-9467-bb267c62e350", - "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-correlation-request-id": "891b281c-15f5-4cc9-bfff-bc97ec2a4b7e", + "x-ms-ratelimit-remaining-subscription-reads": "11938", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021626Z:bdb4150c-1c05-4b50-9467-bb267c62e350", - "x-request-time": "0.116" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162923Z:891b281c-15f5-4cc9-bfff-bc97ec2a4b7e", + "x-request-time": "0.097" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -419,17 +419,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -451,21 +451,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:16:27 GMT", + "Date": "Fri, 23 Sep 2022 16:29:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-666e810458cac60789c70cf74c74ab43-a8aebfa2b4443697-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-4f9a6318a66a366ed6461b49563a4589-3f13973da59c8878-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5f01d77e-78ac-4bba-baa9-2002da2437df", - "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-correlation-request-id": "1b33f3bb-5921-48f2-ae29-270e905fe9d0", + "x-ms-ratelimit-remaining-subscription-writes": "1156", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021627Z:5f01d77e-78ac-4bba-baa9-2002da2437df", - "x-request-time": "0.176" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162923Z:1b33f3bb-5921-48f2-ae29-270e905fe9d0", + "x-request-time": "0.124" }, "ResponseBody": { "secretsType": "AccountKey", @@ -473,14 +473,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src/convert_data.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src/convert_data.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:16:29 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:29:26 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -490,9 +490,9 @@ "Content-Length": "969", "Content-MD5": "DhunCanKGufSVuPKEYN51w==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 02:16:28 GMT", - "ETag": "\u00220x8DA9ABDA1AA81F0\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:07:27 GMT", + "Date": "Fri, 23 Sep 2022 16:29:24 GMT", + "ETag": "\u00220x8DA9D77F491F568\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:26:15 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -501,10 +501,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:07:26 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:26:15 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "f4f57fd3-0d13-423d-a406-4d6ccd43be14", + "x-ms-meta-name": "55c9c168-236e-473f-b35e-c3cba03dad49", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -513,20 +513,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/src/convert_data.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/src/convert_data.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:16:30 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:29:26 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 02:16:28 GMT", + "Date": "Fri, 23 Sep 2022 16:29:24 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -539,7 +539,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f4f57fd3-0d13-423d-a406-4d6ccd43be14/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/55c9c168-236e-473f-b35e-c3cba03dad49/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -557,7 +557,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src" } }, "StatusCode": 200, @@ -565,27 +565,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:16:29 GMT", + "Date": "Fri, 23 Sep 2022 16:29:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-be91378115e90cec319988e9436cbae7-7daf50530c0a4002-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-dc1d47ee115ee778b2b0e123571e8ebe-498174eb4d797579-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "daa00f10-921c-466b-90ec-b232c57d14c3", - "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-correlation-request-id": "85e8c42b-f7c3-49b0-a2a8-44fbfa0867b7", + "x-ms-ratelimit-remaining-subscription-writes": "1099", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021629Z:daa00f10-921c-466b-90ec-b232c57d14c3", - "x-request-time": "0.061" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162925Z:85e8c42b-f7c3-49b0-a2a8-44fbfa0867b7", + "x-request-time": "0.092" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f4f57fd3-0d13-423d-a406-4d6ccd43be14/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/55c9c168-236e-473f-b35e-c3cba03dad49/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -597,13 +597,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src" }, "systemData": { - "createdAt": "2022-09-20T04:07:28.9023268\u002B00:00", + "createdAt": "2022-09-23T15:26:16.5278828\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:16:29.5683248\u002B00:00", + "lastModifiedAt": "2022-09-23T16:29:25.3504501\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -628,7 +628,7 @@ "isArchived": false, "componentSpec": { "command": "python convert_data.py --input_data ${{inputs.input_data}} --file_output_data ${{outputs.file_output_data}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f4f57fd3-0d13-423d-a406-4d6ccd43be14/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/55c9c168-236e-473f-b35e-c3cba03dad49/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "name": "azureml_anonymous", "tags": {}, @@ -655,24 +655,24 @@ "Cache-Control": "no-cache", "Content-Length": "1924", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:16:31 GMT", + "Date": "Fri, 23 Sep 2022 16:29:26 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-6b55ccb620f3d8f8843392bfa323df59-461d4cddcd6d4ae8-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-2e067d9adaff9260c658f5f775a7900e-69c92205ed85393b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "73bd531d-d48f-4557-b493-492be8a5ba54", - "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-correlation-request-id": "05a8f861-38ef-4af3-935d-b6d1cce39ee7", + "x-ms-ratelimit-remaining-subscription-writes": "1098", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021631Z:73bd531d-d48f-4557-b493-492be8a5ba54", - "x-request-time": "0.775" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162926Z:05a8f861-38ef-4af3-935d-b6d1cce39ee7", + "x-request-time": "0.645" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/356b86a4-2f31-42a9-8084-4f22ca2524be", - "name": "356b86a4-2f31-42a9-8084-4f22ca2524be", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/dc8f2483-9429-46d6-b1f1-5b9784cdc5d5", + "name": "dc8f2483-9429-46d6-b1f1-5b9784cdc5d5", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -682,7 +682,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "356b86a4-2f31-42a9-8084-4f22ca2524be", + "version": "dc8f2483-9429-46d6-b1f1-5b9784cdc5d5", "display_name": "Convert_To_Mltable_File_Dataset", "is_deterministic": "True", "type": "command", @@ -697,7 +697,7 @@ "type": "mltable" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f4f57fd3-0d13-423d-a406-4d6ccd43be14/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/55c9c168-236e-473f-b35e-c3cba03dad49/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -707,10 +707,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T01:25:59.8352331\u002B00:00", + "createdAt": "2022-09-23T16:29:26.7092326\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T01:26:00.0555965\u002B00:00", + "lastModifiedAt": "2022-09-23T16:29:26.7092326\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -731,24 +731,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:16:35 GMT", + "Date": "Fri, 23 Sep 2022 16:29:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-319830fbd8159f2a1a471376a0673e30-e06a4edabbaa2e45-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-0696418cd92a3f60ad396ac2947f1701-4572615f6c7ddee3-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3ae179a2-8d5e-4c65-bfc0-776a9943a2b1", - "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-correlation-request-id": "8bc516a3-e9ff-432d-a48f-0addaa9438d6", + "x-ms-ratelimit-remaining-subscription-reads": "11937", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021635Z:3ae179a2-8d5e-4c65-bfc0-776a9943a2b1", - "x-request-time": "0.115" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162927Z:8bc516a3-e9ff-432d-a48f-0addaa9438d6", + "x-request-time": "0.085" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -763,17 +763,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -795,21 +795,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:16:36 GMT", + "Date": "Fri, 23 Sep 2022 16:29:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-45505a17fd54519eae96bf6a51e5f856-736281bf3c1abe3c-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-0a3f97770ac1062d9dd176f1d5bc2005-3a2b1b6f5f8368c8-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9c30ce02-c8b6-4796-88f8-81e73f1b430e", - "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-correlation-request-id": "dc771850-e2f4-41c5-a164-ccd6d3c55d96", + "x-ms-ratelimit-remaining-subscription-writes": "1155", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021637Z:9c30ce02-c8b6-4796-88f8-81e73f1b430e", - "x-request-time": "0.089" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162928Z:dc771850-e2f4-41c5-a164-ccd6d3c55d96", + "x-request-time": "0.096" }, "ResponseBody": { "secretsType": "AccountKey", @@ -817,14 +817,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src/convert_data.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src/convert_data.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:16:38 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:29:30 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -834,9 +834,9 @@ "Content-Length": "969", "Content-MD5": "DhunCanKGufSVuPKEYN51w==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 02:16:37 GMT", - "ETag": "\u00220x8DA9ABDA1AA81F0\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:07:27 GMT", + "Date": "Fri, 23 Sep 2022 16:29:28 GMT", + "ETag": "\u00220x8DA9D77F491F568\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:26:15 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -845,10 +845,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:07:26 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:26:15 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "f4f57fd3-0d13-423d-a406-4d6ccd43be14", + "x-ms-meta-name": "55c9c168-236e-473f-b35e-c3cba03dad49", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -857,20 +857,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/src/convert_data.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/src/convert_data.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:16:39 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:29:31 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 02:16:38 GMT", + "Date": "Fri, 23 Sep 2022 16:29:28 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -883,37 +883,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2/mfeOperationResults/jc:63e57e0c-1296-4327-a01d-537c6e3ee06d:000000000000000000000?api-version=2022-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 21 Sep 2022 02:16:39 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-3e652b256426b68eef8b854c96685293-a481943536987caa-01\u0022", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c4146721-8d3f-4269-ae3c-e0743c38afdd", - "x-ms-ratelimit-remaining-subscription-reads": "11928", - "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021639Z:c4146721-8d3f-4269-ae3c-e0743c38afdd", - "x-request-time": "0.057" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f4f57fd3-0d13-423d-a406-4d6ccd43be14/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/55c9c168-236e-473f-b35e-c3cba03dad49/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -931,7 +901,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src" } }, "StatusCode": 200, @@ -939,27 +909,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:16:39 GMT", + "Date": "Fri, 23 Sep 2022 16:29:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-93b785521bb92547a357ec0fcba7bf77-8ee8f30f10996f4c-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-d9cf6e0b84a6b9deeef665b3cbae8d8b-65f7a72fa4068263-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d482567e-e35b-464f-acb4-91b00727a817", - "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-correlation-request-id": "fe13d2e1-07e6-43e2-930e-209cd50e84d5", + "x-ms-ratelimit-remaining-subscription-writes": "1097", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021639Z:d482567e-e35b-464f-acb4-91b00727a817", - "x-request-time": "0.077" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162930Z:fe13d2e1-07e6-43e2-930e-209cd50e84d5", + "x-request-time": "0.093" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f4f57fd3-0d13-423d-a406-4d6ccd43be14/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/55c9c168-236e-473f-b35e-c3cba03dad49/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -971,13 +941,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src" }, "systemData": { - "createdAt": "2022-09-20T04:07:28.9023268\u002B00:00", + "createdAt": "2022-09-23T15:26:16.5278828\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:16:39.549312\u002B00:00", + "lastModifiedAt": "2022-09-23T16:29:29.8961922\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -1026,7 +996,7 @@ }, "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f4f57fd3-0d13-423d-a406-4d6ccd43be14/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/55c9c168-236e-473f-b35e-c3cba03dad49/versions/1", "entry_script": "score.py", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1" @@ -1042,26 +1012,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2315", + "Content-Length": "2313", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:16:41 GMT", + "Date": "Fri, 23 Sep 2022 16:29:30 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-99034120e97fdc99d98cf0b8e40da8ae-dda0af16a384307f-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-90bfc8ffb7ffb6ee42791a4d2adb2463-4e1623090ae5cdfd-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5e585399-9060-40ca-a0de-8c27576ffddf", - "x-ms-ratelimit-remaining-subscription-writes": "1194", + "x-ms-correlation-request-id": "38d0fbe2-a19f-46b2-8131-d50e0981e0e9", + "x-ms-ratelimit-remaining-subscription-writes": "1096", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021641Z:5e585399-9060-40ca-a0de-8c27576ffddf", - "x-request-time": "0.334" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162931Z:38d0fbe2-a19f-46b2-8131-d50e0981e0e9", + "x-request-time": "0.341" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ac26d5af-25b8-4649-b2ce-7f585b63f45e", - "name": "ac26d5af-25b8-4649-b2ce-7f585b63f45e", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/60b739ff-1e46-47cd-a815-9aeb86e22e55", + "name": "60b739ff-1e46-47cd-a815-9aeb86e22e55", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1071,7 +1041,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "ac26d5af-25b8-4649-b2ce-7f585b63f45e", + "version": "60b739ff-1e46-47cd-a815-9aeb86e22e55", "display_name": "BatchScore", "is_deterministic": "True", "type": "parallel", @@ -1089,7 +1059,7 @@ } }, "task": { - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f4f57fd3-0d13-423d-a406-4d6ccd43be14/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/55c9c168-236e-473f-b35e-c3cba03dad49/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "entry_script": "score.py", @@ -1109,10 +1079,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T01:24:46.0744261\u002B00:00", + "createdAt": "2022-09-23T16:27:30.6477673\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T01:24:46.2680151\u002B00:00", + "lastModifiedAt": "2022-09-23T16:27:30.84688\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -1133,24 +1103,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:16:43 GMT", + "Date": "Fri, 23 Sep 2022 16:29:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-9059a9807c68f82288c68c1aabe70142-faaf0c011ebcd7ca-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-82195f3584340b3991c93d09773b6507-1c30ff6647956ae3-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "435b5103-851b-467e-ae30-b4e5ab23d95a", - "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-correlation-request-id": "899ef017-f3d2-4b0b-97fa-141a46a3ddb2", + "x-ms-ratelimit-remaining-subscription-reads": "11936", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021643Z:435b5103-851b-467e-ae30-b4e5ab23d95a", - "x-request-time": "0.086" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162932Z:899ef017-f3d2-4b0b-97fa-141a46a3ddb2", + "x-request-time": "0.097" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -1165,17 +1135,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -1197,21 +1167,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:16:43 GMT", + "Date": "Fri, 23 Sep 2022 16:29:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-453cf0b5040ee3850460714f9ec967f8-321e3608697560b3-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-a479a0d456c62508c462d07320f9ad30-2e8e8bb534ef9bf8-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "eb87ac62-5a7f-46aa-9ee6-c40ef25fd53a", - "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-correlation-request-id": "eead01c7-0e77-40d0-9358-f5d6c86d1e59", + "x-ms-ratelimit-remaining-subscription-writes": "1154", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021644Z:eb87ac62-5a7f-46aa-9ee6-c40ef25fd53a", - "x-request-time": "0.085" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162933Z:eead01c7-0e77-40d0-9358-f5d6c86d1e59", + "x-request-time": "0.099" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1219,14 +1189,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/mnist-data/0.png", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/mnist-data/0.png", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:16:45 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:29:35 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -1236,9 +1206,9 @@ "Content-Length": "223", "Content-MD5": "yLW2CQQeldeN1S7hH1/5Nw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 02:16:44 GMT", - "ETag": "\u00220x8DA9ABDA6C28B2F\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:07:36 GMT", + "Date": "Fri, 23 Sep 2022 16:29:33 GMT", + "ETag": "\u00220x8DA9D77C1560DE2\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:24:49 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1247,32 +1217,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:07:35 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:24:48 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "80cdbe1e-c1b1-4361-9b1d-288a0ac2d4ef", + "x-ms-meta-name": "e6954628-b564-4b7e-bf0e-472284fbfa3f", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "89452cd1-aed0-478a-aecb-1b9d3d38c892", + "x-ms-meta-version": "c9aa34c9-8122-4239-abd0-25287b724051", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/mnist-data/0.png", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/mnist-data/0.png", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:16:46 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:29:35 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 02:16:44 GMT", + "Date": "Fri, 23 Sep 2022 16:29:33 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1284,6 +1254,36 @@ }, "ResponseBody": null }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2/mfeOperationResults/jc:e950f876-7257-4cf3-99a5-ff66812ac44c:000000000000000000000?api-version=2022-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Fri, 23 Sep 2022 16:29:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-6a4c64b86ea4deff0330ddd843e89bb1-aace8f4f2ab729a7-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-aml-cluster": "vienna-eastus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "34822776-380d-4fd7-b651-3a02a42c30b1", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162941Z:34822776-380d-4fd7-b651-3a02a42c30b1", + "x-request-time": "0.023" + }, + "ResponseBody": null + }, { "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "RequestMethod": "PUT", @@ -1291,7 +1291,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "4157", + "Content-Length": "4211", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -1323,7 +1323,7 @@ "max_concurrency_per_instance": 1, "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f4f57fd3-0d13-423d-a406-4d6ccd43be14/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/55c9c168-236e-473f-b35e-c3cba03dad49/versions/1", "entry_script": "score.py", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1" @@ -1340,8 +1340,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ac26d5af-25b8-4649-b2ce-7f585b63f45e", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/60b739ff-1e46-47cd-a815-9aeb86e22e55", "retry_settings": null, "logging_level": null, "mini_batch_size": 1 @@ -1367,8 +1368,9 @@ "job_output_type": "mltable" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/356b86a4-2f31-42a9-8084-4f22ca2524be" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/dc8f2483-9429-46d6-b1f1-5b9784cdc5d5" }, "batch_inference_node2": { "type": "parallel", @@ -1382,7 +1384,7 @@ "max_concurrency_per_instance": 1, "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f4f57fd3-0d13-423d-a406-4d6ccd43be14/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/55c9c168-236e-473f-b35e-c3cba03dad49/versions/1", "entry_script": "score.py", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1" @@ -1405,8 +1407,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ac26d5af-25b8-4649-b2ce-7f585b63f45e", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/60b739ff-1e46-47cd-a815-9aeb86e22e55", "retry_settings": null, "logging_level": null, "mini_batch_size": 1 @@ -1427,22 +1430,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "7017", + "Content-Length": "7096", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:16:52 GMT", + "Date": "Fri, 23 Sep 2022 16:29:42 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-51f3bf56335bc865a6b585e74015f841-b771b6b9c5b14eb6-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-494ed1f66b140d546e554fb71c9e1a60-e7e5c7591463cc43-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "98ef0732-01db-44a1-95f9-9ba5b6d160de", - "x-ms-ratelimit-remaining-subscription-writes": "1193", + "x-ms-correlation-request-id": "2d21f842-b5c3-48a7-8f09-00db794b2f01", + "x-ms-ratelimit-remaining-subscription-writes": "1095", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021652Z:98ef0732-01db-44a1-95f9-9ba5b6d160de", - "x-request-time": "2.761" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162942Z:2d21f842-b5c3-48a7-8f09-00db794b2f01", + "x-request-time": "3.334" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -1506,7 +1509,7 @@ "max_concurrency_per_instance": 1, "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f4f57fd3-0d13-423d-a406-4d6ccd43be14/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/55c9c168-236e-473f-b35e-c3cba03dad49/versions/1", "entry_script": "score.py", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1" @@ -1523,8 +1526,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ac26d5af-25b8-4649-b2ce-7f585b63f45e", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/60b739ff-1e46-47cd-a815-9aeb86e22e55", "retry_settings": null, "logging_level": null, "mini_batch_size": 1 @@ -1550,8 +1554,9 @@ "job_output_type": "mltable" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/356b86a4-2f31-42a9-8084-4f22ca2524be" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/dc8f2483-9429-46d6-b1f1-5b9784cdc5d5" }, "batch_inference_node2": { "type": "parallel", @@ -1565,7 +1570,7 @@ "max_concurrency_per_instance": 1, "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f4f57fd3-0d13-423d-a406-4d6ccd43be14/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/55c9c168-236e-473f-b35e-c3cba03dad49/versions/1", "entry_script": "score.py", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1" @@ -1588,8 +1593,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ac26d5af-25b8-4649-b2ce-7f585b63f45e", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/60b739ff-1e46-47cd-a815-9aeb86e22e55", "retry_settings": null, "logging_level": null, "mini_batch_size": 1 @@ -1614,7 +1620,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T02:16:51.920212\u002B00:00", + "createdAt": "2022-09-23T16:29:42.0935303\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } @@ -1636,20 +1642,20 @@ "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:16:55 GMT", + "Date": "Fri, 23 Sep 2022 16:29:45 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2/mfeOperationResults/jc:63e57e0c-1296-4327-a01d-537c6e3ee06d:000000000000000000000?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2/mfeOperationResults/jc:e950f876-7257-4cf3-99a5-ff66812ac44c:000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", "x-ms-async-operation-timeout": "PT1H", - "x-ms-correlation-request-id": "255533df-d4d0-4754-af7c-5d1098986014", - "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-correlation-request-id": "6497349a-ab3d-4e7e-b072-b706b77fed3c", + "x-ms-ratelimit-remaining-subscription-writes": "1153", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021655Z:255533df-d4d0-4754-af7c-5d1098986014", - "x-request-time": "0.470" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162945Z:6497349a-ab3d-4e7e-b072-b706b77fed3c", + "x-request-time": "0.489" }, "ResponseBody": "null" } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_node_property_setting_validation.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_node_property_setting_validation.json index 74dea10891cd..bd25ce6ffa92 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_node_property_setting_validation.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_node_property_setting_validation.json @@ -15,11 +15,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:12:53 GMT", + "Date": "Fri, 23 Sep 2022 16:25:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-276be252f4e3118b6385500300df684a-ecced370a7ccb3cc-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-0d66c5ca7f87d925018092047b136cca-fd130e523f08103a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -28,11 +28,11 @@ ], "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "60bd7aa4-41c9-4ae3-9ecd-06a9258d5e03", - "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-correlation-request-id": "27e78d53-4089-41e4-94f8-316e2ea0aecf", + "x-ms-ratelimit-remaining-subscription-reads": "11952", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021253Z:60bd7aa4-41c9-4ae3-9ecd-06a9258d5e03", - "x-request-time": "0.033" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162520Z:27e78d53-4089-41e4-94f8-316e2ea0aecf", + "x-request-time": "0.058" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -41,8 +41,8 @@ "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T11:47:20.6013506\u002B00:00", - "modifiedOn": "2022-09-15T11:47:27.309088\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -71,7 +71,7 @@ "preemptedNodeCount": 0 }, "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-21T02:12:16.379\u002B00:00", + "allocationStateTransitionTime": "2022-09-23T16:23:36.455\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -97,24 +97,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:12:56 GMT", + "Date": "Fri, 23 Sep 2022 16:25:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-31133d809dbc4316c5a9e8a2df949a37-45eeeab67ad8c35c-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-085bbb5cb44772552aef806cab808368-7f3c9bf7106af55d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c9997d75-aef1-4bd9-9912-83a0a64c9d9c", - "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-correlation-request-id": "f10a76f5-649b-42bd-a3b5-0d1508d6394b", + "x-ms-ratelimit-remaining-subscription-reads": "11951", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021256Z:c9997d75-aef1-4bd9-9912-83a0a64c9d9c", - "x-request-time": "0.087" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162529Z:f10a76f5-649b-42bd-a3b5-0d1508d6394b", + "x-request-time": "0.091" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -129,17 +129,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -161,21 +161,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:12:57 GMT", + "Date": "Fri, 23 Sep 2022 16:25:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-60f36902a0a8455da66f233f035045dc-779a72b109efc3aa-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-89ae885f9c5934334afaaa9e4fd6e392-cebecb0aaa7bc40f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6bfbebf8-d559-4c73-a9d1-a00fa18aaa25", - "x-ms-ratelimit-remaining-subscription-writes": "1167", + "x-ms-correlation-request-id": "da828ab7-9671-469f-8665-8d9a43aae686", + "x-ms-ratelimit-remaining-subscription-writes": "1169", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021257Z:6bfbebf8-d559-4c73-a9d1-a00fa18aaa25", - "x-request-time": "0.111" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162532Z:da828ab7-9671-469f-8665-8d9a43aae686", + "x-request-time": "0.093" }, "ResponseBody": { "secretsType": "AccountKey", @@ -183,14 +183,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:12:59 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:25:34 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -200,9 +200,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 02:12:58 GMT", - "ETag": "\u00220x8DA9ABCB2F66FF1\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:00:47 GMT", + "Date": "Fri, 23 Sep 2022 16:25:33 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -211,10 +211,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:00:47 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ca7591cf-36a6-4425-bb3d-579cd587b206", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -223,20 +223,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:13:00 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:25:36 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 02:12:58 GMT", + "Date": "Fri, 23 Sep 2022 16:25:33 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -249,7 +249,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -267,7 +267,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -275,27 +275,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:12:59 GMT", + "Date": "Fri, 23 Sep 2022 16:25:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-45d8861f01a2d6b201cec3a072a4e8e1-04c41192973f7cf4-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-b0cc4a5b2e33a2953425ffb46ee2dd16-ff0134a6bb1693be-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "33b5ec1c-6515-4248-9d7d-e76a50eb9df6", - "x-ms-ratelimit-remaining-subscription-writes": "1111", + "x-ms-correlation-request-id": "607834b6-41c7-4b78-9625-0d877d25efa1", + "x-ms-ratelimit-remaining-subscription-writes": "1116", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021259Z:33b5ec1c-6515-4248-9d7d-e76a50eb9df6", - "x-request-time": "0.108" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162535Z:607834b6-41c7-4b78-9625-0d877d25efa1", + "x-request-time": "0.073" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -307,13 +307,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-20T04:00:48.9804975\u002B00:00", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:12:59.7670704\u002B00:00", + "lastModifiedAt": "2022-09-23T16:25:35.1957627\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -342,7 +342,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo $[[${{inputs.component_in_number}}]] \u0026 echo ${{inputs.component_in_path}} \u0026 echo ${{outputs.component_out_path}} \u003E ${{outputs.component_out_path}}/component_in_number", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "description": "This is the basic command component", @@ -381,24 +381,24 @@ "Cache-Control": "no-cache", "Content-Length": "2416", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:13:01 GMT", + "Date": "Fri, 23 Sep 2022 16:25:36 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-356c538733d560e71677eda3a02b9602-b42ba15f366aac52-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-d6711982fa20b86d47918d7a35b00afd-b7e81613f98f7584-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ec2ed3f0-2404-4811-94c7-944b6c733623", - "x-ms-ratelimit-remaining-subscription-writes": "1110", + "x-ms-correlation-request-id": "9773f140-89f2-475a-8ae8-82a5224beaee", + "x-ms-ratelimit-remaining-subscription-writes": "1115", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021301Z:ec2ed3f0-2404-4811-94c7-944b6c733623", - "x-request-time": "0.389" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162537Z:9773f140-89f2-475a-8ae8-82a5224beaee", + "x-request-time": "0.296" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32", - "name": "2a153b3f-78e1-419b-8273-bfc76c28df32", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191", + "name": "bf151e23-da4f-4101-bf39-8bf62d31a191", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -411,7 +411,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "2a153b3f-78e1-419b-8273-bfc76c28df32", + "version": "bf151e23-da4f-4101-bf39-8bf62d31a191", "display_name": "CommandComponentBasic", "is_deterministic": "True", "type": "command", @@ -438,7 +438,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -448,10 +448,10 @@ } }, "systemData": { - "createdAt": "2022-09-20T04:04:55.6745883\u002B00:00", + "createdAt": "2022-09-23T16:11:01.2843263\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-20T04:04:55.8538952\u002B00:00", + "lastModifiedAt": "2022-09-23T16:11:01.4598118\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -464,7 +464,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1264", + "Content-Length": "1282", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -508,11 +508,12 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", "jeff_special_option": { "foo": "bar" }, - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191" } }, "outputs": {}, @@ -524,22 +525,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3434", + "Content-Length": "3460", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:13:10 GMT", + "Date": "Fri, 23 Sep 2022 16:25:47 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-ee06c95d106ff9479dbe59af5f028b82-5061fe7570bfc399-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-efaefc81a1340bd0f9238d50a2435d1c-bc7ec7c68e6a76fc-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a4d16cd7-4924-42df-b84c-3bcbf826b77b", - "x-ms-ratelimit-remaining-subscription-writes": "1109", + "x-ms-correlation-request-id": "1c72302c-9c3c-4d9b-a437-493f616aea19", + "x-ms-ratelimit-remaining-subscription-writes": "1114", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021310Z:a4d16cd7-4924-42df-b84c-3bcbf826b77b", - "x-request-time": "3.196" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162548Z:1c72302c-9c3c-4d9b-a437-493f616aea19", + "x-request-time": "3.063" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -610,11 +611,12 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", "jeff_special_option": { "foo": "bar" }, - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191" } }, "inputs": { @@ -634,7 +636,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T02:13:10.1537187\u002B00:00", + "createdAt": "2022-09-23T16:25:47.7591103\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_parallel_components_with_file_input.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_parallel_components_with_file_input.json index f6dd18fce0ab..2262d31e5892 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_parallel_components_with_file_input.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_parallel_components_with_file_input.json @@ -15,11 +15,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:14:37 GMT", + "Date": "Fri, 23 Sep 2022 18:28:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-2a3cba7e52892820406d55942b8527d0-6292a6fc8929e3b1-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-95218c0ace074d893263b2779a6e528a-fdd38b9379a02bce-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -28,11 +28,11 @@ ], "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1e3a0bc8-db73-4bd8-8afc-77171519203e", - "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-correlation-request-id": "4f5aec90-ba1f-4305-98c0-d75a943c7af6", + "x-ms-ratelimit-remaining-subscription-reads": "11999", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021437Z:1e3a0bc8-db73-4bd8-8afc-77171519203e", - "x-request-time": "0.071" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T182841Z:4f5aec90-ba1f-4305-98c0-d75a943c7af6", + "x-request-time": "0.136" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -47,17 +47,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -79,21 +79,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:14:38 GMT", + "Date": "Fri, 23 Sep 2022 18:28:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-8cfbd3842eaaed6333eb845aba4b4880-2d227b1617dad268-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-086c153a850e52503195837318db38e4-fc4d9a24eaf23355-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4af71e8f-ed21-4778-88e3-29175d0b2b41", - "x-ms-ratelimit-remaining-subscription-writes": "1160", + "x-ms-correlation-request-id": "ef11be0e-dacf-489c-8838-2b5207a2d7a7", + "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021439Z:4af71e8f-ed21-4778-88e3-29175d0b2b41", - "x-request-time": "0.115" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T182842Z:ef11be0e-dacf-489c-8838-2b5207a2d7a7", + "x-request-time": "0.173" }, "ResponseBody": { "secretsType": "AccountKey", @@ -101,14 +101,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src/convert_data.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src/convert_data.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:14:42 GMT", + "x-ms-date": "Fri, 23 Sep 2022 18:28:44 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -118,9 +118,9 @@ "Content-Length": "969", "Content-MD5": "DhunCanKGufSVuPKEYN51w==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 02:14:40 GMT", - "ETag": "\u00220x8DA9ABDA1AA81F0\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:07:27 GMT", + "Date": "Fri, 23 Sep 2022 18:28:42 GMT", + "ETag": "\u00220x8DA9D77F491F568\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:26:15 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -129,10 +129,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:07:26 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:26:15 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "f4f57fd3-0d13-423d-a406-4d6ccd43be14", + "x-ms-meta-name": "55c9c168-236e-473f-b35e-c3cba03dad49", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -141,20 +141,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/src/convert_data.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/src/convert_data.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:14:42 GMT", + "x-ms-date": "Fri, 23 Sep 2022 18:28:45 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 02:14:41 GMT", + "Date": "Fri, 23 Sep 2022 18:28:43 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -167,7 +167,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f4f57fd3-0d13-423d-a406-4d6ccd43be14/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/55c9c168-236e-473f-b35e-c3cba03dad49/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -185,7 +185,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src" } }, "StatusCode": 200, @@ -193,11 +193,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:14:43 GMT", + "Date": "Fri, 23 Sep 2022 18:28:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-21187a462de729466f906fbfa1b04762-c83dff90a41b11cb-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-fc4c265c51cf8d6bb43d9e003a17eb9e-e5f1331de7eb457c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -206,14 +206,14 @@ ], "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "30bc4cfb-ff1b-4d06-b751-5c6835a12e2e", - "x-ms-ratelimit-remaining-subscription-writes": "1098", + "x-ms-correlation-request-id": "cd9db3ff-9304-47dd-a35d-4decc07338bb", + "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021443Z:30bc4cfb-ff1b-4d06-b751-5c6835a12e2e", - "x-request-time": "0.727" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T182845Z:cd9db3ff-9304-47dd-a35d-4decc07338bb", + "x-request-time": "0.431" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f4f57fd3-0d13-423d-a406-4d6ccd43be14/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/55c9c168-236e-473f-b35e-c3cba03dad49/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -225,13 +225,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src" }, "systemData": { - "createdAt": "2022-09-20T04:07:28.9023268\u002B00:00", + "createdAt": "2022-09-23T15:26:16.5278828\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:14:43.488238\u002B00:00", + "lastModifiedAt": "2022-09-23T18:28:45.7080488\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -280,7 +280,7 @@ }, "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f4f57fd3-0d13-423d-a406-4d6ccd43be14/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/55c9c168-236e-473f-b35e-c3cba03dad49/versions/1", "entry_script": "score.py", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1" @@ -296,26 +296,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2315", + "Content-Length": "2313", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:14:46 GMT", + "Date": "Fri, 23 Sep 2022 18:28:46 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-c6dfa6bcbbb354becac050578f9f3ff1-d42019828279d88c-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-f124a718a57ae32d8c14dd3013db1547-94eaa9a9a50b1815-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0294490c-1b1d-480a-a48c-4aed31f48cf5", - "x-ms-ratelimit-remaining-subscription-writes": "1097", + "x-ms-correlation-request-id": "0db58067-9d2b-4ff7-acf4-9ca81c51775d", + "x-ms-ratelimit-remaining-subscription-writes": "1198", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021447Z:0294490c-1b1d-480a-a48c-4aed31f48cf5", - "x-request-time": "0.760" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T182847Z:0db58067-9d2b-4ff7-acf4-9ca81c51775d", + "x-request-time": "0.435" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ac26d5af-25b8-4649-b2ce-7f585b63f45e", - "name": "ac26d5af-25b8-4649-b2ce-7f585b63f45e", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/60b739ff-1e46-47cd-a815-9aeb86e22e55", + "name": "60b739ff-1e46-47cd-a815-9aeb86e22e55", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -325,7 +325,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "ac26d5af-25b8-4649-b2ce-7f585b63f45e", + "version": "60b739ff-1e46-47cd-a815-9aeb86e22e55", "display_name": "BatchScore", "is_deterministic": "True", "type": "parallel", @@ -343,7 +343,7 @@ } }, "task": { - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f4f57fd3-0d13-423d-a406-4d6ccd43be14/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/55c9c168-236e-473f-b35e-c3cba03dad49/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "entry_script": "score.py", @@ -363,10 +363,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T01:24:46.0744261\u002B00:00", + "createdAt": "2022-09-23T16:27:30.6477673\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T01:24:46.2680151\u002B00:00", + "lastModifiedAt": "2022-09-23T16:27:30.84688\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -387,11 +387,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:14:49 GMT", + "Date": "Fri, 23 Sep 2022 18:28:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-ecf1fa64f86244613dd8225f5322bc2f-6d7e610beefeb584-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-1026ef88e74221afb7ceb0f4b1386ea9-7a5ab37be9943bbc-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -400,11 +400,11 @@ ], "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "45735577-97a4-4781-a06a-a72a14b956b0", - "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-correlation-request-id": "3283c337-1f8c-4f67-a943-15a19f6036cc", + "x-ms-ratelimit-remaining-subscription-reads": "11998", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021450Z:45735577-97a4-4781-a06a-a72a14b956b0", - "x-request-time": "0.092" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T182847Z:3283c337-1f8c-4f67-a943-15a19f6036cc", + "x-request-time": "0.086" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -419,17 +419,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -451,21 +451,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:14:50 GMT", + "Date": "Fri, 23 Sep 2022 18:28:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-5bb61d4d28943a312e2bbac7ef7672a4-8704b89488edc643-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-950818c03da0444e118cd5cb52abb47a-768b5d41217bbe21-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1b370d86-0c7b-4e4a-aa53-0574c1cd348d", - "x-ms-ratelimit-remaining-subscription-writes": "1159", + "x-ms-correlation-request-id": "184a0180-e989-4790-a736-9c0dbe618d63", + "x-ms-ratelimit-remaining-subscription-writes": "1198", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021451Z:1b370d86-0c7b-4e4a-aa53-0574c1cd348d", - "x-request-time": "0.086" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T182848Z:184a0180-e989-4790-a736-9c0dbe618d63", + "x-request-time": "0.093" }, "ResponseBody": { "secretsType": "AccountKey", @@ -473,14 +473,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/mnist-data/0.png", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/mnist-data/0.png", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:14:53 GMT", + "x-ms-date": "Fri, 23 Sep 2022 18:28:50 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -490,9 +490,9 @@ "Content-Length": "223", "Content-MD5": "yLW2CQQeldeN1S7hH1/5Nw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 02:14:52 GMT", - "ETag": "\u00220x8DA9ABDA6C28B2F\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:07:36 GMT", + "Date": "Fri, 23 Sep 2022 18:28:47 GMT", + "ETag": "\u00220x8DA9D77C1560DE2\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:24:49 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -501,32 +501,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:07:35 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:24:48 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "80cdbe1e-c1b1-4361-9b1d-288a0ac2d4ef", + "x-ms-meta-name": "e6954628-b564-4b7e-bf0e-472284fbfa3f", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "89452cd1-aed0-478a-aecb-1b9d3d38c892", + "x-ms-meta-version": "c9aa34c9-8122-4239-abd0-25287b724051", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/mnist-data/0.png", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/mnist-data/0.png", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:14:54 GMT", + "x-ms-date": "Fri, 23 Sep 2022 18:28:51 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 02:14:52 GMT", + "Date": "Fri, 23 Sep 2022 18:28:48 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -538,36 +538,6 @@ }, "ResponseBody": null }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2/mfeOperationResults/jc:63e57e0c-1296-4327-a01d-537c6e3ee06d:000000000000000000000?api-version=2022-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Wed, 21 Sep 2022 02:15:01 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-9fba2a30cafadb0af5dee562a79f5abc-9850dca07e78bb24-01\u0022", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-02", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b4b773e6-628b-4890-81c8-b8d89ecbe871", - "x-ms-ratelimit-remaining-subscription-reads": "11934", - "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021502Z:b4b773e6-628b-4890-81c8-b8d89ecbe871", - "x-request-time": "0.027" - }, - "ResponseBody": null - }, { "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "RequestMethod": "PUT", @@ -575,7 +545,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1945", + "Content-Length": "1963", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -607,7 +577,7 @@ "max_concurrency_per_instance": 1, "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f4f57fd3-0d13-423d-a406-4d6ccd43be14/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/55c9c168-236e-473f-b35e-c3cba03dad49/versions/1", "entry_script": "score.py", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1" @@ -624,8 +594,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ac26d5af-25b8-4649-b2ce-7f585b63f45e", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/60b739ff-1e46-47cd-a815-9aeb86e22e55", "retry_settings": null, "logging_level": null, "mini_batch_size": 5 @@ -641,22 +612,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4122", + "Content-Length": "4148", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:15:05 GMT", + "Date": "Fri, 23 Sep 2022 18:28:56 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-e3fe13450c825c2af2446ad33a4dd56f-45015a30cf511de4-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-1a91a723c6ac4f9b5c28f2673c7a9283-95dadba3ca4d8937-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0fa2cfa4-ce2a-4799-9a92-76fd07c76ac4", - "x-ms-ratelimit-remaining-subscription-writes": "1096", + "x-ms-correlation-request-id": "f7cc452c-fa62-43cb-a755-94caa48e7bd9", + "x-ms-ratelimit-remaining-subscription-writes": "1197", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021506Z:0fa2cfa4-ce2a-4799-9a92-76fd07c76ac4", - "x-request-time": "3.435" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T182857Z:f7cc452c-fa62-43cb-a755-94caa48e7bd9", + "x-request-time": "2.919" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -720,7 +691,7 @@ "max_concurrency_per_instance": 1, "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f4f57fd3-0d13-423d-a406-4d6ccd43be14/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/55c9c168-236e-473f-b35e-c3cba03dad49/versions/1", "entry_script": "score.py", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1" @@ -737,8 +708,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ac26d5af-25b8-4649-b2ce-7f585b63f45e", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/60b739ff-1e46-47cd-a815-9aeb86e22e55", "retry_settings": null, "logging_level": null, "mini_batch_size": 5 @@ -756,7 +728,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T02:15:06.0904108\u002B00:00", + "createdAt": "2022-09-23T18:28:56.7990253\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } @@ -778,22 +750,52 @@ "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:15:09 GMT", + "Date": "Fri, 23 Sep 2022 18:29:00 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2/mfeOperationResults/jc:63e57e0c-1296-4327-a01d-537c6e3ee06d:000000000000000000000?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2/mfeOperationResults/jc:e950f876-7257-4cf3-99a5-ff66812ac44c:000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", "x-ms-async-operation-timeout": "PT1H", - "x-ms-correlation-request-id": "eba119f8-1e9b-45d3-900e-88ec89a6a103", - "x-ms-ratelimit-remaining-subscription-writes": "1158", + "x-ms-correlation-request-id": "c2d8ad34-b926-4f24-a186-00f4bd8c7d26", + "x-ms-ratelimit-remaining-subscription-writes": "1197", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021510Z:eba119f8-1e9b-45d3-900e-88ec89a6a103", - "x-request-time": "0.349" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T182900Z:c2d8ad34-b926-4f24-a186-00f4bd8c7d26", + "x-request-time": "0.423" }, "ResponseBody": "null" + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2/mfeOperationResults/jc:e950f876-7257-4cf3-99a5-ff66812ac44c:000000000000000000000?api-version=2022-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Fri, 23 Sep 2022 18:29:31 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-82fa639bc5495d469ba8e8e10c0df3ea-060a7581752620e2-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-aml-cluster": "vienna-eastus2-02", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "ba9d295b-c40a-44bb-b40d-42c723c04dd9", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T182931Z:ba9d295b-c40a-44bb-b40d-42c723c04dd9", + "x-request-time": "0.027" + }, + "ResponseBody": null } ], "Variables": {} diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_parallel_components_with_tabular_input.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_parallel_components_with_tabular_input.json index fa5251de7073..83ebfbdd8957 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_parallel_components_with_tabular_input.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_parallel_components_with_tabular_input.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 16:20:25 GMT", + "Date": "Fri, 23 Sep 2022 18:26:27 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-eea0400cf0a57e1c5378b419ab223717-ae7dc3f9c1c686f5-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-4064b16993243bfbf03fe29f4882e202-8a66405a9d2805b6-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9fb7e9f5-5607-4aaa-a9af-2de85cfcb636", + "x-ms-correlation-request-id": "cf8f0f07-2470-445c-81fa-45ec9f4dbdd5", "x-ms-ratelimit-remaining-subscription-reads": "11999", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T162025Z:9fb7e9f5-5607-4aaa-a9af-2de85cfcb636", - "x-request-time": "0.328" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T182628Z:cf8f0f07-2470-445c-81fa-45ec9f4dbdd5", + "x-request-time": "0.842" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -47,17 +47,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sawcdivl5vo3cem", - "containerName": "azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-19T00:10:19.4497254\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-19T00:10:20.0957203\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -71,7 +71,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -79,21 +79,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 16:20:25 GMT", + "Date": "Fri, 23 Sep 2022 18:26:28 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-e5f14e8181e1198b6879ac0bff30e1f2-eb65cc0c117bee3b-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-61a1e0d27d0859ebf5d52b077db3fd83-16b3561283bb0a2e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "10e3bc01-20ba-4cc6-a1f0-ad8536ec9216", + "x-ms-correlation-request-id": "24e74add-03ca-4b81-bd93-1eae6a1797a8", "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T162026Z:10e3bc01-20ba-4cc6-a1f0-ad8536ec9216", - "x-request-time": "0.096" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T182629Z:24e74add-03ca-4b81-bd93-1eae6a1797a8", + "x-request-time": "0.272" }, "ResponseBody": { "secretsType": "AccountKey", @@ -101,15 +101,15 @@ } }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000/src/tabular_run_with_model.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src/tabular_run_with_model.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 23 Sep 2022 16:20:26 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 18:26:31 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -118,9 +118,9 @@ "Content-Length": "1102", "Content-MD5": "jO1FYErTQcHautv7oG0/KQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 23 Sep 2022 16:20:25 GMT", - "ETag": "\u00220x8DA99D38B12E7DF\u0022", - "Last-Modified": "Mon, 19 Sep 2022 00:11:47 GMT", + "Date": "Fri, 23 Sep 2022 18:26:30 GMT", + "ETag": "\u00220x8DA9D805F140855\u0022", + "Last-Modified": "Fri, 23 Sep 2022 16:26:30 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -129,32 +129,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Mon, 19 Sep 2022 00:11:47 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 16:26:29 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "4b24318f-680a-482a-9e10-3c2bb1e3b92b", + "x-ms-meta-name": "47ddf675-0155-4289-96eb-c37908b696c0", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/az-ml-artifacts/00000000000000000000000000000000/src/tabular_run_with_model.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/src/tabular_run_with_model.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 23 Sep 2022 16:20:26 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 18:26:33 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 23 Sep 2022 16:20:25 GMT", + "Date": "Fri, 23 Sep 2022 18:26:30 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -162,12 +162,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/4b24318f-680a-482a-9e10-3c2bb1e3b92b/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/47ddf675-0155-4289-96eb-c37908b696c0/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -175,7 +175,7 @@ "Connection": "keep-alive", "Content-Length": "292", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -185,7 +185,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src" } }, "StatusCode": 200, @@ -193,27 +193,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 16:20:26 GMT", + "Date": "Fri, 23 Sep 2022 18:26:32 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-35a6a007675abe611313c1bf1606ae9a-45b27eca6046babc-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-d9d7c833c4278dcde2c9702c41cea5d3-49369f473b69858e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3ced32b9-5ef7-4bcb-b74b-2d8efdae385b", + "x-ms-correlation-request-id": "b8283fab-53ff-44db-9b0a-73182b4d99b6", "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T162027Z:3ced32b9-5ef7-4bcb-b74b-2d8efdae385b", - "x-request-time": "0.194" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T182633Z:b8283fab-53ff-44db-9b0a-73182b4d99b6", + "x-request-time": "0.631" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/4b24318f-680a-482a-9e10-3c2bb1e3b92b/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/47ddf675-0155-4289-96eb-c37908b696c0/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -225,14 +225,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src" }, "systemData": { - "createdAt": "2022-09-19T00:11:48.3026858\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-23T16:20:27.1659201\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:26:31.1781796\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T18:26:33.0211811\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -246,7 +246,7 @@ "Connection": "keep-alive", "Content-Length": "416", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -258,24 +258,24 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Build-ID": "wb9b", + "Build-ID": "cha", "Cache-Control": "no-cache", - "Content-Length": "1419", + "Content-Length": "1359", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 16:20:27 GMT", + "Date": "Fri, 23 Sep 2022 18:26:45 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/CliV2AnonymousEnvironment/versions/6fe7be4cbb153a3107ff961211b4a9af?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-e7f5c1c42cdd2176784d7556236131f7-b9cc1f5c8d377306-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-85fbf5362ee35fdbe426fe00e5b34ea0-a509bcf64117a5da-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d47e451d-74dd-4039-a2d8-917b0a40b776", + "x-ms-correlation-request-id": "e6bb7d2d-cb61-4398-ab56-9d1106e65339", "x-ms-ratelimit-remaining-subscription-writes": "1198", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T162028Z:d47e451d-74dd-4039-a2d8-917b0a40b776", - "x-request-time": "0.804" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T182646Z:e6bb7d2d-cb61-4398-ab56-9d1106e65339", + "x-request-time": "12.037" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/CliV2AnonymousEnvironment/versions/6fe7be4cbb153a3107ff961211b4a9af", @@ -293,12 +293,12 @@ "osType": "Linux" }, "systemData": { - "createdAt": "2022-09-19T00:11:27.4585901\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-19T00:11:27.4585901\u002B00:00", - "lastModifiedBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "lastModifiedByType": "Application" + "createdAt": "2022-09-23T15:25:10.3353821\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T15:25:10.3353821\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", + "lastModifiedByType": "User" } } }, @@ -311,7 +311,7 @@ "Connection": "keep-alive", "Content-Length": "1542", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -347,7 +347,7 @@ "logging_level": "DEBUG", "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/4b24318f-680a-482a-9e10-3c2bb1e3b92b/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/47ddf675-0155-4289-96eb-c37908b696c0/versions/1", "entry_script": "tabular_run_with_model.py", "program_arguments": "--model ${{inputs.score_model}}", "append_row_to": "${{outputs.job_out_path}}", @@ -368,26 +368,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2597", + "Content-Length": "2536", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 16:20:29 GMT", + "Date": "Fri, 23 Sep 2022 18:26:47 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-fbccce25485eb41fde1fab418fa9b299-0d8a2275fa6e0bda-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-0c13fcc199c6adf3f103b0fa443d3ab3-517b48130316c010-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "37ca231c-fd16-47d7-96b1-93c4d4cc50a6", + "x-ms-correlation-request-id": "ff9ae41e-5e36-48d6-bb90-09b4f798d763", "x-ms-ratelimit-remaining-subscription-writes": "1197", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T162030Z:37ca231c-fd16-47d7-96b1-93c4d4cc50a6", - "x-request-time": "0.568" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T182647Z:ff9ae41e-5e36-48d6-bb90-09b4f798d763", + "x-request-time": "0.830" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/fe5d97c0-516b-45c1-b7f2-2cb6081b3b82", - "name": "fe5d97c0-516b-45c1-b7f2-2cb6081b3b82", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/234be6de-944e-4498-bdf4-e89058b5f16c", + "name": "234be6de-944e-4498-bdf4-e89058b5f16c", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -397,7 +397,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "fe5d97c0-516b-45c1-b7f2-2cb6081b3b82", + "version": "234be6de-944e-4498-bdf4-e89058b5f16c", "display_name": "BatchScore", "is_deterministic": "True", "type": "parallel", @@ -420,7 +420,7 @@ } }, "task": { - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/4b24318f-680a-482a-9e10-3c2bb1e3b92b/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/47ddf675-0155-4289-96eb-c37908b696c0/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/CliV2AnonymousEnvironment/versions/6fe7be4cbb153a3107ff961211b4a9af", "program_arguments": "--model ${{inputs.score_model}}", "entry_script": "tabular_run_with_model.py", @@ -441,12 +441,12 @@ } }, "systemData": { - "createdAt": "2022-09-19T00:11:49.3081037\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-19T00:11:49.5194602\u002B00:00", - "lastModifiedBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "lastModifiedByType": "Application" + "createdAt": "2022-09-23T16:26:48.5666167\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T16:26:48.762222\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", + "lastModifiedByType": "User" } } }, @@ -457,7 +457,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -465,24 +465,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 16:20:30 GMT", + "Date": "Fri, 23 Sep 2022 18:26:47 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-2e8996ed63bb06d383eaaf09d1706cf4-f6c9a5bbe7388391-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-c0aefea8bc7153d6663a4dce8c84c178-0722d177cc4a3578-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "46a9ce5f-29e7-455b-9be2-42970683ef93", + "x-ms-correlation-request-id": "45ce1a78-28ac-4568-88ad-3b024a61e288", "x-ms-ratelimit-remaining-subscription-reads": "11998", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T162030Z:46a9ce5f-29e7-455b-9be2-42970683ef93", - "x-request-time": "0.134" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T182648Z:45ce1a78-28ac-4568-88ad-3b024a61e288", + "x-request-time": "0.150" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -497,17 +497,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sawcdivl5vo3cem", - "containerName": "azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-19T00:10:19.4497254\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-19T00:10:20.0957203\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -521,7 +521,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -529,21 +529,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 16:20:31 GMT", + "Date": "Fri, 23 Sep 2022 18:26:48 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-d93d968893d0f1fa54850a85cbf0bb02-a1a9149d3be7046c-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-d8f14ce2c22c888048efb4aea3d8845e-7ff3b40be4fc7739-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f659b6f8-5f58-4d8c-ba22-2dc91f66ea3c", + "x-ms-correlation-request-id": "056ef602-2428-49de-9480-3f2e4adcf009", "x-ms-ratelimit-remaining-subscription-writes": "1198", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T162031Z:f659b6f8-5f58-4d8c-ba22-2dc91f66ea3c", - "x-request-time": "0.113" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T182649Z:056ef602-2428-49de-9480-3f2e4adcf009", + "x-request-time": "0.083" }, "ResponseBody": { "secretsType": "AccountKey", @@ -551,15 +551,15 @@ } }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000/neural-iris-mltable/MLTable", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/neural-iris-mltable/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 23 Sep 2022 16:20:31 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 18:26:51 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -568,9 +568,9 @@ "Content-Length": "152", "Content-MD5": "LPwZTVvE9cmq2xCV9B8RmQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 23 Sep 2022 16:20:31 GMT", - "ETag": "\u00220x8DA99D38CB6221C\u0022", - "Last-Modified": "Mon, 19 Sep 2022 00:11:50 GMT", + "Date": "Fri, 23 Sep 2022 18:26:49 GMT", + "ETag": "\u00220x8DA9D77E4BE9973\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:25:49 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -579,32 +579,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Mon, 19 Sep 2022 00:11:50 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:25:48 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "f6b4e382-0c26-4c34-8437-4dff47c5d4b2", + "x-ms-meta-name": "75be94a1-b11f-438f-9809-e66170c6a572", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "905def58-469c-499e-b793-05edfb8003c9", + "x-ms-meta-version": "b56612a1-59bf-45b4-bfb9-4924980b2134", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/az-ml-artifacts/00000000000000000000000000000000/neural-iris-mltable/MLTable", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/neural-iris-mltable/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 23 Sep 2022 16:20:31 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 18:26:51 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 23 Sep 2022 16:20:31 GMT", + "Date": "Fri, 23 Sep 2022 18:26:49 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -612,7 +612,7 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, @@ -623,7 +623,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -631,24 +631,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 16:20:31 GMT", + "Date": "Fri, 23 Sep 2022 18:26:50 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-39bcfefd6df5fd629a5c695ca4fa0a0b-4f69d2c4dcbafd31-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-557b6e7dd789c532bb7788faeb924ab4-db9c19456a265181-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b136c9fd-4562-4cad-9794-85d57f4eb56d", + "x-ms-correlation-request-id": "dcb0b207-ccaf-4d3e-a51c-524840ca6c99", "x-ms-ratelimit-remaining-subscription-reads": "11997", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T162031Z:b136c9fd-4562-4cad-9794-85d57f4eb56d", - "x-request-time": "0.090" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T182651Z:dcb0b207-ccaf-4d3e-a51c-524840ca6c99", + "x-request-time": "0.076" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -663,17 +663,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sawcdivl5vo3cem", - "containerName": "azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-19T00:10:19.4497254\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-19T00:10:20.0957203\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -687,7 +687,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -695,21 +695,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 16:20:31 GMT", + "Date": "Fri, 23 Sep 2022 18:26:51 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-d11c9516f0f3aa5cd1ab96598518fb48-16fd3ecdd2ee9012-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-9dea6d4424b980951bb85861f7d01c3e-434dd8a33fa253da-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a11ef07a-b736-4ed7-ab1d-c3162baaf4e1", + "x-ms-correlation-request-id": "dea56438-55f7-47bd-85d0-4a971583b3f4", "x-ms-ratelimit-remaining-subscription-writes": "1197", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T162032Z:a11ef07a-b736-4ed7-ab1d-c3162baaf4e1", - "x-request-time": "0.101" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T182651Z:dea56438-55f7-47bd-85d0-4a971583b3f4", + "x-request-time": "0.116" }, "ResponseBody": { "secretsType": "AccountKey", @@ -717,15 +717,15 @@ } }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000/model/iris_model/MLmodel", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/model/iris_model/MLmodel", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 23 Sep 2022 16:20:32 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 18:26:53 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -734,9 +734,9 @@ "Content-Length": "298", "Content-MD5": "HaKpUL6X1WimkPVJF2lHiQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 23 Sep 2022 16:20:31 GMT", - "ETag": "\u00220x8DA99D38D215789\u0022", - "Last-Modified": "Mon, 19 Sep 2022 00:11:51 GMT", + "Date": "Fri, 23 Sep 2022 18:26:51 GMT", + "ETag": "\u00220x8DA9D77E7998A3A\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:25:53 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -745,32 +745,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Mon, 19 Sep 2022 00:11:50 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:25:51 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "6060f082-eb49-494b-acc4-f8c135a577a2", + "x-ms-meta-name": "93451d41-ddd5-434e-8621-4b31b7832976", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "16fddd68-1e26-45f9-9f17-661e5872d125", + "x-ms-meta-version": "0b753b4b-b589-4d13-b3b5-853904c877b4", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/az-ml-artifacts/00000000000000000000000000000000/model/iris_model/MLmodel", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/model/iris_model/MLmodel", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 23 Sep 2022 16:20:32 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 18:26:54 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 23 Sep 2022 16:20:31 GMT", + "Date": "Fri, 23 Sep 2022 18:26:51 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -778,7 +778,7 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, @@ -789,9 +789,9 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "2243", + "Content-Length": "2261", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -823,7 +823,7 @@ "max_concurrency_per_instance": 2, "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/4b24318f-680a-482a-9e10-3c2bb1e3b92b/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/47ddf675-0155-4289-96eb-c37908b696c0/versions/1", "entry_script": "tabular_run_with_model.py", "program_arguments": "--model ${{inputs.score_model}}", "append_row_to": "${{outputs.job_out_path}}", @@ -845,8 +845,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/fe5d97c0-516b-45c1-b7f2-2cb6081b3b82", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/234be6de-944e-4498-bdf4-e89058b5f16c", "retry_settings": null, "logging_level": null, "mini_batch_size": 5 @@ -862,22 +863,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4518", + "Content-Length": "4539", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 16:20:39 GMT", + "Date": "Fri, 23 Sep 2022 18:27:00 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-3de3ac7f630757034a73cb14bccf3caf-71baa3424b9c7171-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-cf9ab838991a01905155bb59fb38ee1a-3a92e1029379098d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "82539b4a-3922-476a-b4f4-49fb659945e5", + "x-ms-correlation-request-id": "89ccc371-19a9-4339-ba6d-35c7df2fa915", "x-ms-ratelimit-remaining-subscription-writes": "1196", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T162039Z:82539b4a-3922-476a-b4f4-49fb659945e5", - "x-request-time": "3.221" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T182701Z:89ccc371-19a9-4339-ba6d-35c7df2fa915", + "x-request-time": "3.504" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -905,7 +906,7 @@ "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null @@ -938,7 +939,7 @@ "max_concurrency_per_instance": 2, "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/4b24318f-680a-482a-9e10-3c2bb1e3b92b/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/47ddf675-0155-4289-96eb-c37908b696c0/versions/1", "entry_script": "tabular_run_with_model.py", "program_arguments": "--model ${{inputs.score_model}}", "append_row_to": "${{outputs.job_out_path}}", @@ -960,8 +961,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/fe5d97c0-516b-45c1-b7f2-2cb6081b3b82", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/234be6de-944e-4498-bdf4-e89058b5f16c", "retry_settings": null, "logging_level": null, "mini_batch_size": 5 @@ -985,8 +987,8 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-23T16:20:39.0218356\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T18:27:00.5444947\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } @@ -999,7 +1001,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 202, @@ -1007,50 +1009,50 @@ "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 16:20:40 GMT", + "Date": "Fri, 23 Sep 2022 18:27:03 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/mfeOperationResults/jc:e17a3673-0df1-4734-b827-58bdbe7ad5bc:000000000000000000000?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2/mfeOperationResults/jc:e950f876-7257-4cf3-99a5-ff66812ac44c:000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", "x-ms-async-operation-timeout": "PT1H", - "x-ms-correlation-request-id": "6c8fa22d-5638-4efb-b565-cb2543c690bd", + "x-ms-correlation-request-id": "cb035e2a-a8c9-4496-a11f-1f0a3a861ffa", "x-ms-ratelimit-remaining-subscription-writes": "1196", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T162041Z:6c8fa22d-5638-4efb-b565-cb2543c690bd", - "x-request-time": "0.490" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T182703Z:cb035e2a-a8c9-4496-a11f-1f0a3a861ffa", + "x-request-time": "0.501" }, "ResponseBody": "null" }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/mfeOperationResults/jc:e17a3673-0df1-4734-b827-58bdbe7ad5bc:000000000000000000000?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2/mfeOperationResults/jc:e950f876-7257-4cf3-99a5-ff66812ac44c:000000000000000000000?api-version=2022-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 23 Sep 2022 16:21:10 GMT", + "Date": "Fri, 23 Sep 2022 18:27:35 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-1cda23228ecd1cc9d519f855c3b3fa13-f29ba5e1f454551d-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-f03051b46feadb68eb4a799b0b526733-fae36dc045c7b9d8-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d00e58ef-70f6-4501-9686-678db39f86e5", + "x-ms-correlation-request-id": "50bdbe5a-6e4c-47c4-8500-1d8bab13bca5", "x-ms-ratelimit-remaining-subscription-reads": "11996", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T162111Z:d00e58ef-70f6-4501-9686-678db39f86e5", - "x-request-time": "0.028" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T182735Z:50bdbe5a-6e4c-47c4-8500-1d8bab13bca5", + "x-request-time": "0.033" }, "ResponseBody": null } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_parallel_job.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_parallel_job.json index 314b27797a4f..37e544090e62 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_parallel_job.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_parallel_job.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 15:39:31 GMT", + "Date": "Fri, 23 Sep 2022 16:28:45 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-462f899a3a3d08e914578fb55138755b-1314b76f4406e889-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-5025d78c61715c5351f9779aadf986ef-2ffb6a7997f71fde-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "db52e951-db6b-4770-a9f3-4f2fa18a7e0c", - "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-correlation-request-id": "59b4ce61-def7-43bb-b805-cb0bda35f66b", + "x-ms-ratelimit-remaining-subscription-reads": "11941", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T153931Z:db52e951-db6b-4770-a9f3-4f2fa18a7e0c", - "x-request-time": "0.130" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162845Z:59b4ce61-def7-43bb-b805-cb0bda35f66b", + "x-request-time": "0.134" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -47,17 +47,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sawcdivl5vo3cem", - "containerName": "azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-19T00:10:19.4497254\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-19T00:10:20.0957203\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -71,7 +71,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -79,21 +79,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 15:39:31 GMT", + "Date": "Fri, 23 Sep 2022 16:28:46 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-de55a23624d7a46f10eb3a6f66f83e68-48e805af9a65464e-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-1e2e15ee6a58fbf10b7d0b46e624e241-5ea4bff69d7fbab6-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "42ccf228-e29d-45fc-b70f-d8b27dfaf499", - "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-correlation-request-id": "0ec091de-0bf4-461a-920b-a4b123df0270", + "x-ms-ratelimit-remaining-subscription-writes": "1160", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T153931Z:42ccf228-e29d-45fc-b70f-d8b27dfaf499", - "x-request-time": "0.134" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162846Z:0ec091de-0bf4-461a-920b-a4b123df0270", + "x-request-time": "0.097" }, "ResponseBody": { "secretsType": "AccountKey", @@ -101,15 +101,15 @@ } }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000/src/convert_data.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src/convert_data.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 23 Sep 2022 15:39:31 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:28:48 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -118,9 +118,9 @@ "Content-Length": "969", "Content-MD5": "DhunCanKGufSVuPKEYN51w==", "Content-Type": "application/octet-stream", - "Date": "Fri, 23 Sep 2022 15:39:31 GMT", - "ETag": "\u00220x8DA99D385F49C3B\u0022", - "Last-Modified": "Mon, 19 Sep 2022 00:11:39 GMT", + "Date": "Fri, 23 Sep 2022 16:28:46 GMT", + "ETag": "\u00220x8DA9D77F491F568\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:26:15 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -129,32 +129,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Mon, 19 Sep 2022 00:11:38 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:26:15 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "8ace4b76-b18c-4592-8882-0a6403775f7a", + "x-ms-meta-name": "55c9c168-236e-473f-b35e-c3cba03dad49", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/az-ml-artifacts/00000000000000000000000000000000/src/convert_data.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/src/convert_data.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 23 Sep 2022 15:39:32 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:28:48 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 23 Sep 2022 15:39:31 GMT", + "Date": "Fri, 23 Sep 2022 16:28:46 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -162,12 +162,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/8ace4b76-b18c-4592-8882-0a6403775f7a/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/55c9c168-236e-473f-b35e-c3cba03dad49/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -175,7 +175,7 @@ "Connection": "keep-alive", "Content-Length": "292", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -185,7 +185,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src" } }, "StatusCode": 200, @@ -193,27 +193,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 15:39:33 GMT", + "Date": "Fri, 23 Sep 2022 16:28:48 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-953e25f7501fd5a538e96bf2c5c49093-0add1a6851f0cf2c-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-9a495bdd5772015a42c9c29b689498b3-a4ae17ef17267edc-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e95dcdaf-9a79-4674-ac2d-37901d2bb55d", - "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-correlation-request-id": "6b268a49-ecca-4e14-8e9c-dad12b2a1d56", + "x-ms-ratelimit-remaining-subscription-writes": "1104", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T153933Z:e95dcdaf-9a79-4674-ac2d-37901d2bb55d", - "x-request-time": "0.077" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162848Z:6b268a49-ecca-4e14-8e9c-dad12b2a1d56", + "x-request-time": "0.104" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/8ace4b76-b18c-4592-8882-0a6403775f7a/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/55c9c168-236e-473f-b35e-c3cba03dad49/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -225,14 +225,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src" }, "systemData": { - "createdAt": "2022-09-19T00:11:39.7317219\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-23T15:39:33.4352757\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:26:16.5278828\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T16:28:48.1501661\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -246,7 +246,7 @@ "Connection": "keep-alive", "Content-Length": "1190", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -278,7 +278,7 @@ "logging_level": "DEBUG", "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/8ace4b76-b18c-4592-8882-0a6403775f7a/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/55c9c168-236e-473f-b35e-c3cba03dad49/versions/1", "entry_script": "score.py", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5" @@ -295,26 +295,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2268", + "Content-Length": "2208", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 15:39:33 GMT", + "Date": "Fri, 23 Sep 2022 16:28:49 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-c86537f51c215b9dae6ebefdfb2bb73c-ffc46fbcdc5823dd-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-ad94a23d838d703818bf043534ca9e95-dcfd5fdb726456a9-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0fa069aa-1018-44a3-95bd-0723a4003b06", - "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-correlation-request-id": "93e86274-3d2b-4796-a2c5-389c3e41c379", + "x-ms-ratelimit-remaining-subscription-writes": "1103", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T153934Z:0fa069aa-1018-44a3-95bd-0723a4003b06", - "x-request-time": "0.440" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162849Z:93e86274-3d2b-4796-a2c5-389c3e41c379", + "x-request-time": "0.670" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/c2e8fed6-a5e8-4923-8113-6b84c3d6451e", - "name": "c2e8fed6-a5e8-4923-8113-6b84c3d6451e", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/9aa6cd09-78eb-41ea-9765-67a482850691", + "name": "9aa6cd09-78eb-41ea-9765-67a482850691", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -324,7 +324,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "c2e8fed6-a5e8-4923-8113-6b84c3d6451e", + "version": "9aa6cd09-78eb-41ea-9765-67a482850691", "display_name": "parallel_node", "is_deterministic": "True", "type": "parallel", @@ -340,7 +340,7 @@ } }, "task": { - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/8ace4b76-b18c-4592-8882-0a6403775f7a/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/55c9c168-236e-473f-b35e-c3cba03dad49/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "entry_script": "score.py", @@ -360,12 +360,12 @@ } }, "systemData": { - "createdAt": "2022-09-19T00:11:48.1861197\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-19T00:11:48.4054216\u002B00:00", - "lastModifiedBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "lastModifiedByType": "Application" + "createdAt": "2022-09-23T16:28:49.5254662\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T16:28:49.5254662\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", + "lastModifiedByType": "User" } } }, @@ -376,7 +376,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -384,24 +384,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 15:39:34 GMT", + "Date": "Fri, 23 Sep 2022 16:28:52 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-c7a06a2e6918793ec2df365feb5ecfcd-524e7ef5858b798d-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-88c8696a7a95a2fa73fab0b07c651fb0-a7fcb34a9ea26874-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fc34203c-f2e4-492a-a174-8ac9bf074710", - "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-correlation-request-id": "ea5b08c8-d766-4251-b80a-10c3ac9de397", + "x-ms-ratelimit-remaining-subscription-reads": "11940", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T153934Z:fc34203c-f2e4-492a-a174-8ac9bf074710", - "x-request-time": "0.105" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162852Z:ea5b08c8-d766-4251-b80a-10c3ac9de397", + "x-request-time": "0.084" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -416,17 +416,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sawcdivl5vo3cem", - "containerName": "azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-19T00:10:19.4497254\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-19T00:10:20.0957203\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -440,7 +440,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -448,21 +448,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 15:39:34 GMT", + "Date": "Fri, 23 Sep 2022 16:28:52 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-9d5a8f2e6d2243c644d9e6abfc9734a0-c0b901c59c492f20-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-d74624de7e0358290f328af337a8f35a-d7bc5561624fdd5b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ce0b6318-3771-4f68-8dbe-2d87346c3005", - "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-correlation-request-id": "3ad3b0d9-34ef-4c3d-866f-6368411140d3", + "x-ms-ratelimit-remaining-subscription-writes": "1159", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T153934Z:ce0b6318-3771-4f68-8dbe-2d87346c3005", - "x-request-time": "0.129" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162853Z:3ad3b0d9-34ef-4c3d-866f-6368411140d3", + "x-request-time": "0.088" }, "ResponseBody": { "secretsType": "AccountKey", @@ -470,15 +470,15 @@ } }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000/mnist-data/0.png", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/mnist-data/0.png", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 23 Sep 2022 15:39:34 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:28:55 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -487,9 +487,9 @@ "Content-Length": "223", "Content-MD5": "yLW2CQQeldeN1S7hH1/5Nw==", "Content-Type": "application/octet-stream", - "Date": "Fri, 23 Sep 2022 15:39:34 GMT", - "ETag": "\u00220x8DA99D37BB852FF\u0022", - "Last-Modified": "Mon, 19 Sep 2022 00:11:21 GMT", + "Date": "Fri, 23 Sep 2022 16:28:53 GMT", + "ETag": "\u00220x8DA9D77C1560DE2\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:24:49 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -498,32 +498,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Mon, 19 Sep 2022 00:11:21 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:24:48 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "mltable_mnist_model", + "x-ms-meta-name": "e6954628-b564-4b7e-bf0e-472284fbfa3f", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "2", + "x-ms-meta-version": "c9aa34c9-8122-4239-abd0-25287b724051", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/az-ml-artifacts/00000000000000000000000000000000/mnist-data/0.png", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/mnist-data/0.png", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 23 Sep 2022 15:39:34 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:28:56 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 23 Sep 2022 15:39:34 GMT", + "Date": "Fri, 23 Sep 2022 16:28:54 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -531,7 +531,7 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, @@ -542,9 +542,9 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "2152", + "Content-Length": "2170", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -554,7 +554,7 @@ "owner": "sdkteam", "tag": "tagvalue" }, - "displayName": "test_609683711286", + "displayName": "test_218046715500", "experimentName": "parallel_in_pipeline", "isArchived": false, "jobType": "Pipeline", @@ -578,7 +578,7 @@ "max_concurrency_per_instance": 1, "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/8ace4b76-b18c-4592-8882-0a6403775f7a/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/55c9c168-236e-473f-b35e-c3cba03dad49/versions/1", "entry_script": "score.py", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5" @@ -600,8 +600,9 @@ "type": "literal" } }, + "properties": {}, "_source": "CLASS", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/c2e8fed6-a5e8-4923-8113-6b84c3d6451e", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/9aa6cd09-78eb-41ea-9765-67a482850691", "retry_settings": null, "logging_level": null, "mini_batch_size": 5 @@ -621,22 +622,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4498", + "Content-Length": "4520", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 15:39:40 GMT", + "Date": "Fri, 23 Sep 2022 16:29:04 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-559ea20b10f597bfb823baa8993294a0-b0d2167e1fdf9484-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-0f46cef4dfb59086f95b4fafbb3e9f1e-d7bb04e64b311d10-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3cd880ea-573f-4d1e-bee2-016936298072", - "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-correlation-request-id": "5e2c49a0-f22e-443f-991c-f433106c2525", + "x-ms-ratelimit-remaining-subscription-writes": "1102", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T153940Z:3cd880ea-573f-4d1e-bee2-016936298072", - "x-request-time": "3.056" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162904Z:5e2c49a0-f22e-443f-991c-f433106c2525", + "x-request-time": "3.731" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -660,14 +661,14 @@ "azureml.defaultDataStoreName": "workspaceblobstore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_609683711286", + "displayName": "test_218046715500", "status": "Preparing", "experimentName": "parallel_in_pipeline", "services": { "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null @@ -703,7 +704,7 @@ "max_concurrency_per_instance": 1, "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/8ace4b76-b18c-4592-8882-0a6403775f7a/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/55c9c168-236e-473f-b35e-c3cba03dad49/versions/1", "entry_script": "score.py", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5" @@ -725,8 +726,9 @@ "type": "literal" } }, + "properties": {}, "_source": "CLASS", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/c2e8fed6-a5e8-4923-8113-6b84c3d6451e", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/9aa6cd09-78eb-41ea-9765-67a482850691", "retry_settings": null, "logging_level": null, "mini_batch_size": 5 @@ -751,8 +753,8 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-23T15:39:40.479466\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T16:29:04.2147426\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } @@ -765,87 +767,33 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, - "StatusCode": 400, + "StatusCode": 202, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1232", + "Content-Length": "4", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 15:39:58 GMT", + "Date": "Fri, 23 Sep 2022 16:29:07 GMT", "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2/mfeOperationResults/jc:e950f876-7257-4cf3-99a5-ff66812ac44c:000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "517a9b6a-0c76-4c6a-b8e5-55baa841cda3", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-response-type": "error", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T153958Z:517a9b6a-0c76-4c6a-b8e5-55baa841cda3", - "x-request-time": "15.531" + "x-ms-async-operation-timeout": "PT1H", + "x-ms-correlation-request-id": "3f0ca707-8616-4381-ac1c-2e12cf905432", + "x-ms-ratelimit-remaining-subscription-writes": "1158", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162908Z:3f0ca707-8616-4381-ac1c-2e12cf905432", + "x-request-time": "0.510" }, - "ResponseBody": { - "error": { - "code": "UserError", - "message": "The pipeline run 000000000000000000000 is in terminal status, it can\u0027t be canceled.", - "details": [], - "additionalInfo": [ - { - "type": "ComponentName", - "info": { - "value": "managementfrontend" - } - }, - { - "type": "Correlation", - "info": { - "value": { - "operation": "6ea7a92ae6d9664f333bf54c038f715d", - "request": "184795b5614e7b03" - } - } - }, - { - "type": "Environment", - "info": { - "value": "eastus2euap" - } - }, - { - "type": "Location", - "info": { - "value": "eastus2euap" - } - }, - { - "type": "Time", - "info": { - "value": "2022-09-23T15:39:58.6172894\u002B00:00" - } - }, - { - "type": "InnerError", - "info": { - "value": { - "code": "BadArgument", - "innerError": { - "code": "ArgumentInvalid", - "innerError": { - "code": "CancelPipelineRunInTerminalStatus", - "innerError": null - } - } - } - } - } - ] - } - } + "ResponseBody": "null" } ], "Variables": { - "pipeline_name": "test_609683711286" + "pipeline_name": "test_218046715500" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_parallel_run_function.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_parallel_run_function.json index 3fd9cac4a3c1..047a037a4cd7 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_parallel_run_function.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_parallel_run_function.json @@ -13,22 +13,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1067", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:30:53 GMT", + "Date": "Fri, 23 Sep 2022 16:27:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-f3bffd3b2be9e5d926e2c2a44e42f2fb-dbc7dc0f9deb10ea-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-9ae7a9ea22b4791ba8e114b6cfe660d0-003e683f2d7f220d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f86af57a-fec2-4f1b-8672-67087f16ae53", - "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-correlation-request-id": "2e8f7152-adc4-4d05-97f4-a0d70dcc2560", + "x-ms-ratelimit-remaining-subscription-reads": "11944", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T083053Z:f86af57a-fec2-4f1b-8672-67087f16ae53", - "x-request-time": "0.090" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162751Z:2e8f7152-adc4-4d05-97f4-a0d70dcc2560", + "x-request-time": "0.131" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -43,17 +47,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -73,21 +77,23 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "61", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:30:54 GMT", + "Date": "Fri, 23 Sep 2022 16:27:52 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-3364ec673ed6887ca5872bc87c65ea89-2bb21e174aed95fd-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-daaf243ec1e3e120ddac92cb20b820b4-289b987cfd137ddb-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8e375e30-495f-4b7b-96ac-0738547b8c54", - "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-correlation-request-id": "57803fd0-54c6-40ff-8d38-0d0f949098f8", + "x-ms-ratelimit-remaining-subscription-writes": "1162", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T083054Z:8e375e30-495f-4b7b-96ac-0738547b8c54", - "x-request-time": "0.087" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162752Z:57803fd0-54c6-40ff-8d38-0d0f949098f8", + "x-request-time": "0.162" }, "ResponseBody": { "secretsType": "AccountKey", @@ -95,14 +101,44 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src/convert_data.py", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2/mfeOperationResults/jc:e950f876-7257-4cf3-99a5-ff66812ac44c:000000000000000000000?api-version=2022-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Fri, 23 Sep 2022 16:28:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-a9bd11d0b11c2d810e65dc6d5b66fa66-52e6e713aedc27e5-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-aml-cluster": "vienna-eastus2-02", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "338fb742-89c4-413d-8a1e-97856e217508", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162816Z:338fb742-89c4-413d-8a1e-97856e217508", + "x-request-time": "0.024" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src/convert_data.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:30:55 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:28:23 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -112,9 +148,9 @@ "Content-Length": "969", "Content-MD5": "DhunCanKGufSVuPKEYN51w==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 08:30:55 GMT", - "ETag": "\u00220x8DA9ABDA1AA81F0\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:07:27 GMT", + "Date": "Fri, 23 Sep 2022 16:28:22 GMT", + "ETag": "\u00220x8DA9D77F491F568\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:26:15 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -123,10 +159,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:07:26 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:26:15 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "f4f57fd3-0d13-423d-a406-4d6ccd43be14", + "x-ms-meta-name": "55c9c168-236e-473f-b35e-c3cba03dad49", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -135,20 +171,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/src/convert_data.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/src/convert_data.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:30:58 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:28:24 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 08:30:56 GMT", + "Date": "Fri, 23 Sep 2022 16:28:22 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -161,7 +197,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f4f57fd3-0d13-423d-a406-4d6ccd43be14/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/55c9c168-236e-473f-b35e-c3cba03dad49/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -179,31 +215,35 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "822", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:30:58 GMT", + "Date": "Fri, 23 Sep 2022 16:28:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-d4b200f6d1c5fd79d31c158f2f97f4a6-5523fda6a3bd3fb0-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-a0766eddfa465711a1ab829d625693c1-a7f7d0d0739b0737-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1d7449f5-5700-432e-b9f1-3791913280ee", - "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-correlation-request-id": "7bd9b775-1b7c-4b87-9a3e-38a50c8b55ab", + "x-ms-ratelimit-remaining-subscription-writes": "1107", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T083059Z:1d7449f5-5700-432e-b9f1-3791913280ee", - "x-request-time": "0.656" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162823Z:7bd9b775-1b7c-4b87-9a3e-38a50c8b55ab", + "x-request-time": "0.138" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f4f57fd3-0d13-423d-a406-4d6ccd43be14/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/55c9c168-236e-473f-b35e-c3cba03dad49/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -215,13 +255,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src" }, "systemData": { - "createdAt": "2022-09-20T04:07:28.9023268\u002B00:00", + "createdAt": "2022-09-23T15:26:16.5278828\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T08:30:58.9390145\u002B00:00", + "lastModifiedAt": "2022-09-23T16:28:23.4991096\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -274,7 +314,7 @@ "logging_level": "DEBUG", "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f4f57fd3-0d13-423d-a406-4d6ccd43be14/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/55c9c168-236e-473f-b35e-c3cba03dad49/versions/1", "entry_script": "score.py", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5" @@ -291,26 +331,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2313", + "Content-Length": "2315", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:31:01 GMT", + "Date": "Fri, 23 Sep 2022 16:28:24 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-0ac6eb080986654a87179c1de231cc80-a5ac28350c691e33-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-72aee828f4e2b9c47775a333d22a8343-3c93e734b53d10cf-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a13e614a-df41-4d8c-992d-6188e4ba2019", - "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-correlation-request-id": "1dda191f-2839-47a2-96d5-f1b3ca169f94", + "x-ms-ratelimit-remaining-subscription-writes": "1106", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T083101Z:a13e614a-df41-4d8c-992d-6188e4ba2019", - "x-request-time": "1.006" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162825Z:1dda191f-2839-47a2-96d5-f1b3ca169f94", + "x-request-time": "0.645" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/10fa037b-980d-47e5-916c-d24b94b16a2c", - "name": "10fa037b-980d-47e5-916c-d24b94b16a2c", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2ef2b889-fa37-4dac-9036-d3c7d4df5484", + "name": "2ef2b889-fa37-4dac-9036-d3c7d4df5484", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -320,7 +360,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "10fa037b-980d-47e5-916c-d24b94b16a2c", + "version": "2ef2b889-fa37-4dac-9036-d3c7d4df5484", "display_name": "my-evaluate-job", "is_deterministic": "True", "type": "parallel", @@ -340,7 +380,7 @@ } }, "task": { - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f4f57fd3-0d13-423d-a406-4d6ccd43be14/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/55c9c168-236e-473f-b35e-c3cba03dad49/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "entry_script": "score.py", @@ -360,10 +400,10 @@ } }, "systemData": { - "createdAt": "2022-09-20T04:07:31.2187479\u002B00:00", + "createdAt": "2022-09-23T16:28:25.1832661\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-20T04:07:31.40499\u002B00:00", + "lastModifiedAt": "2022-09-23T16:28:25.1832661\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -382,22 +422,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1067", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:31:02 GMT", + "Date": "Fri, 23 Sep 2022 16:28:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-4616c210aeb5b0ffd6e1b3648fa98d22-13f1b7dcf6fabe5b-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-bb3de49c2528e4d4372767dd54c9daea-b79a852feaca5d19-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e817e501-cbaf-4b81-813e-625d3a2bb56a", - "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-correlation-request-id": "a385a709-bc4e-4805-a1cf-a1edadcc0b0f", + "x-ms-ratelimit-remaining-subscription-reads": "11942", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T083102Z:e817e501-cbaf-4b81-813e-625d3a2bb56a", - "x-request-time": "0.123" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162826Z:a385a709-bc4e-4805-a1cf-a1edadcc0b0f", + "x-request-time": "0.203" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -412,17 +456,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -442,21 +486,23 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "61", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:31:03 GMT", + "Date": "Fri, 23 Sep 2022 16:28:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-099a8e1a2405a9833542cd08f8d93113-5b4f94242e25b43e-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-ae8080b6329b6d46a233d9c7ad629334-b0a9d0e975a0dd65-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5e35e1aa-c7d2-4a99-a7c7-c29af3df13f2", - "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-correlation-request-id": "47ba73e5-5b42-4cad-89fe-8bd4dc32882e", + "x-ms-ratelimit-remaining-subscription-writes": "1161", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T083103Z:5e35e1aa-c7d2-4a99-a7c7-c29af3df13f2", - "x-request-time": "0.131" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162827Z:47ba73e5-5b42-4cad-89fe-8bd4dc32882e", + "x-request-time": "0.096" }, "ResponseBody": { "secretsType": "AccountKey", @@ -464,14 +510,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/mnist-data/0.png", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/mnist-data/0.png", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:31:04 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:28:29 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -481,9 +527,9 @@ "Content-Length": "223", "Content-MD5": "yLW2CQQeldeN1S7hH1/5Nw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 08:31:02 GMT", - "ETag": "\u00220x8DA9ABDA6C28B2F\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:07:36 GMT", + "Date": "Fri, 23 Sep 2022 16:28:27 GMT", + "ETag": "\u00220x8DA9D77C1560DE2\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:24:49 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -492,32 +538,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:07:35 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:24:48 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "80cdbe1e-c1b1-4361-9b1d-288a0ac2d4ef", + "x-ms-meta-name": "e6954628-b564-4b7e-bf0e-472284fbfa3f", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "89452cd1-aed0-478a-aecb-1b9d3d38c892", + "x-ms-meta-version": "c9aa34c9-8122-4239-abd0-25287b724051", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/mnist-data/0.png", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/mnist-data/0.png", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:31:05 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:28:30 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 08:31:03 GMT", + "Date": "Fri, 23 Sep 2022 16:28:27 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -536,7 +582,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1801", + "Content-Length": "1819", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -590,8 +636,9 @@ "type": "literal" } }, + "properties": {}, "_source": "BUILDER", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/10fa037b-980d-47e5-916c-d24b94b16a2c", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2ef2b889-fa37-4dac-9036-d3c7d4df5484", "retry_settings": null, "logging_level": "DEBUG", "mini_batch_size": 5 @@ -611,22 +658,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4146", + "Content-Length": "4172", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:31:11 GMT", + "Date": "Fri, 23 Sep 2022 16:28:37 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-491a445d84e9d7a00a3e11b3c713e838-a4cff132526d3c5f-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-2234bef97a68b5cd7f7b593b488f51af-9ab49dd47992ff09-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c1d9e73a-cfd6-4566-a5de-2dccbe6adeac", - "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-correlation-request-id": "9d780639-292f-4aff-a22b-4af773c746b3", + "x-ms-ratelimit-remaining-subscription-writes": "1105", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T083111Z:c1d9e73a-cfd6-4566-a5de-2dccbe6adeac", - "x-request-time": "3.288" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162837Z:9d780639-292f-4aff-a22b-4af773c746b3", + "x-request-time": "3.997" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -712,8 +759,9 @@ "type": "literal" } }, + "properties": {}, "_source": "BUILDER", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/10fa037b-980d-47e5-916c-d24b94b16a2c", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2ef2b889-fa37-4dac-9036-d3c7d4df5484", "retry_settings": null, "logging_level": "DEBUG", "mini_batch_size": 5 @@ -738,7 +786,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T08:31:11.3943722\u002B00:00", + "createdAt": "2022-09-23T16:28:37.3949395\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_pipeline_force_rerun.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_pipeline_force_rerun.json index 74d34db17c21..d3f89e1cdaaa 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_pipeline_force_rerun.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_pipeline_force_rerun.json @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:13:16 GMT", + "Date": "Fri, 23 Sep 2022 16:55:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-8826282f532d094b24e512d7bd6a65d9-95fc2be8425c799c-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-f3dbde245b1cbd50a1af18f1bd0d7941-da46b220574316d3-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "06ca7334-2609-46ac-9345-bf84f9c28803", - "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-correlation-request-id": "6d260443-4f27-4fa4-bfb0-6c47f2e033a0", + "x-ms-ratelimit-remaining-subscription-reads": "11997", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021317Z:06ca7334-2609-46ac-9345-bf84f9c28803", - "x-request-time": "0.042" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165547Z:6d260443-4f27-4fa4-bfb0-6c47f2e033a0", + "x-request-time": "0.035" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -41,8 +41,8 @@ "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T11:47:20.6013506\u002B00:00", - "modifiedOn": "2022-09-15T11:47:27.309088\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -60,19 +60,36 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 3, + "currentNodeCount": 2, "targetNodeCount": 4, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 3, + "runningNodeCount": 2, "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-21T02:12:16.379\u002B00:00", - "errors": null, + "allocationStateTransitionTime": "2022-09-23T16:51:23.209\u002B00:00", + "errors": [ + { + "error": { + "code": "DiskFull", + "message": "ComputeNode.Id=tvmps_3102441860b6ea65577040418e70a62a25fa8fa733adc48f9a86848fedb9bd75_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_378d2855719fc4834c48c9ad0afc2435c1f5cb14eae738055d3aab865d18c9b6_d: There is not enough disk space on the node", + "details": [ + { + "code": "Message", + "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." + }, + { + "code": "Message", + "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." + } + ] + } + } + ], "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -97,24 +114,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:13:20 GMT", + "Date": "Fri, 23 Sep 2022 16:55:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-6d9ed4a957ecbe8948806727a8e3a3f6-1a5d364352105183-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-0f8bccc4a44c0ca88ef46f55dbc4d170-9ae0ee8abb19ef80-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0db40c68-ce69-4188-ab9d-b9b4cfb407b5", - "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-correlation-request-id": "eb338d32-ba7f-4b2e-b3c8-2409ede2bc29", + "x-ms-ratelimit-remaining-subscription-reads": "11996", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021321Z:0db40c68-ce69-4188-ab9d-b9b4cfb407b5", - "x-request-time": "0.077" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165549Z:eb338d32-ba7f-4b2e-b3c8-2409ede2bc29", + "x-request-time": "0.086" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -129,17 +146,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -161,21 +178,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:13:21 GMT", + "Date": "Fri, 23 Sep 2022 16:55:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-151d74a0582d0a7be80de7f24c139215-9372d8fd37072645-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-c656961cb5a884bffbbcff9386eeee84-a582e01ccb72e1b7-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f35a67f8-b1d4-4f1b-8f31-7dabaa33ae00", - "x-ms-ratelimit-remaining-subscription-writes": "1166", + "x-ms-correlation-request-id": "5a336fdf-b758-4e21-8c2e-cd337f3a81d8", + "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021322Z:f35a67f8-b1d4-4f1b-8f31-7dabaa33ae00", - "x-request-time": "0.081" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165550Z:5a336fdf-b758-4e21-8c2e-cd337f3a81d8", + "x-request-time": "0.230" }, "ResponseBody": { "secretsType": "AccountKey", @@ -183,14 +200,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:13:24 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:55:52 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -200,9 +217,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 02:13:23 GMT", - "ETag": "\u00220x8DA9ABCB2F66FF1\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:00:47 GMT", + "Date": "Fri, 23 Sep 2022 16:55:51 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -211,10 +228,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:00:47 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ca7591cf-36a6-4425-bb3d-579cd587b206", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -223,20 +240,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:13:24 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:55:54 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 02:13:23 GMT", + "Date": "Fri, 23 Sep 2022 16:55:51 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -249,7 +266,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -267,7 +284,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -275,27 +292,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:13:24 GMT", + "Date": "Fri, 23 Sep 2022 16:55:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-2e3d6aed314b33094db2538de01b4a76-85eb10dd597fb435-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-f606a21a87547e401445d4f1911f6d4b-a2b27a36857afd3e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ef35a598-e8c1-4016-af56-9f5bc52e608e", - "x-ms-ratelimit-remaining-subscription-writes": "1108", + "x-ms-correlation-request-id": "45e370fd-187a-440a-8ce0-3517a0190c89", + "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021324Z:ef35a598-e8c1-4016-af56-9f5bc52e608e", - "x-request-time": "0.104" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165553Z:45e370fd-187a-440a-8ce0-3517a0190c89", + "x-request-time": "0.143" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -307,13 +324,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-20T04:00:48.9804975\u002B00:00", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:13:24.4191501\u002B00:00", + "lastModifiedAt": "2022-09-23T16:55:53.5159593\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -342,7 +359,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo $[[${{inputs.component_in_number}}]] \u0026 echo ${{inputs.component_in_path}} \u0026 echo ${{outputs.component_out_path}} \u003E ${{outputs.component_out_path}}/component_in_number", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "description": "This is the basic command component", @@ -381,24 +398,24 @@ "Cache-Control": "no-cache", "Content-Length": "2416", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:13:25 GMT", + "Date": "Fri, 23 Sep 2022 16:55:54 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-c02759aa32d3ba8c4fef8c6bfb9740e3-492f26de84919bc8-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-cb87ae624e65cc92a55c6f77838754ba-d0320c179a200b69-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b8acf9b6-e27a-4517-bd5c-c1fc37b039e1", - "x-ms-ratelimit-remaining-subscription-writes": "1107", + "x-ms-correlation-request-id": "eb1788c6-5098-4081-8289-1706bf206015", + "x-ms-ratelimit-remaining-subscription-writes": "1198", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021326Z:b8acf9b6-e27a-4517-bd5c-c1fc37b039e1", - "x-request-time": "0.335" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165554Z:eb1788c6-5098-4081-8289-1706bf206015", + "x-request-time": "0.408" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32", - "name": "2a153b3f-78e1-419b-8273-bfc76c28df32", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191", + "name": "bf151e23-da4f-4101-bf39-8bf62d31a191", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -411,7 +428,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "2a153b3f-78e1-419b-8273-bfc76c28df32", + "version": "bf151e23-da4f-4101-bf39-8bf62d31a191", "display_name": "CommandComponentBasic", "is_deterministic": "True", "type": "command", @@ -438,7 +455,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -448,10 +465,10 @@ } }, "systemData": { - "createdAt": "2022-09-20T04:04:55.6745883\u002B00:00", + "createdAt": "2022-09-23T16:11:01.2843263\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-20T04:04:55.8538952\u002B00:00", + "lastModifiedAt": "2022-09-23T16:11:01.4598118\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -472,24 +489,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:13:26 GMT", + "Date": "Fri, 23 Sep 2022 16:55:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-09d78daafa27aaf5622f4627eddf70c3-f92a619c50ba44b0-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-65c449aaad9750c245206b9a272164f1-b5ea27572f6fd7cd-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1cf9551c-f14f-47f3-afa4-4a77e624cb29", - "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-correlation-request-id": "e5cce18c-0abf-42a8-b879-c1dee3374aa6", + "x-ms-ratelimit-remaining-subscription-reads": "11995", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021327Z:1cf9551c-f14f-47f3-afa4-4a77e624cb29", - "x-request-time": "0.080" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165555Z:e5cce18c-0abf-42a8-b879-c1dee3374aa6", + "x-request-time": "0.074" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -504,17 +521,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -536,21 +553,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:13:27 GMT", + "Date": "Fri, 23 Sep 2022 16:55:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-3d88a2cc09141f9ab1c84099af645ea0-e4dff854f414dd18-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-a61e32fd30426d5436a34c6366fcff84-047314b88f863b2e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "68b5f804-321c-4737-9777-5bdfd49c498d", - "x-ms-ratelimit-remaining-subscription-writes": "1165", + "x-ms-correlation-request-id": "b4ebbf95-73dd-428f-90b3-b5ca5fbe4bad", + "x-ms-ratelimit-remaining-subscription-writes": "1198", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021327Z:68b5f804-321c-4737-9777-5bdfd49c498d", - "x-request-time": "0.093" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165555Z:b4ebbf95-73dd-428f-90b3-b5ca5fbe4bad", + "x-request-time": "0.114" }, "ResponseBody": { "secretsType": "AccountKey", @@ -558,14 +575,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:13:29 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:55:58 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -575,9 +592,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 02:13:28 GMT", - "ETag": "\u00220x8DA9ABCB2F66FF1\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:00:47 GMT", + "Date": "Fri, 23 Sep 2022 16:55:55 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -586,10 +603,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:00:47 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ca7591cf-36a6-4425-bb3d-579cd587b206", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -598,20 +615,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:13:30 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:55:58 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 02:13:28 GMT", + "Date": "Fri, 23 Sep 2022 16:55:55 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -624,7 +641,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -642,7 +659,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -650,27 +667,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:13:29 GMT", + "Date": "Fri, 23 Sep 2022 16:55:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-6c19fa7143a8a2268eee980d07bb5df0-e2f0460496f317b2-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-480672fc5b1e708fb1cf97bb911959f6-40ccb48cacf5cb6e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9903ac83-9659-453a-ad5a-c6adfa82ac3b", - "x-ms-ratelimit-remaining-subscription-writes": "1106", + "x-ms-correlation-request-id": "0048783f-f85a-4f94-96d5-1cc7cad68648", + "x-ms-ratelimit-remaining-subscription-writes": "1197", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021329Z:9903ac83-9659-453a-ad5a-c6adfa82ac3b", - "x-request-time": "0.083" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165557Z:0048783f-f85a-4f94-96d5-1cc7cad68648", + "x-request-time": "0.138" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -682,13 +699,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-20T04:00:48.9804975\u002B00:00", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:13:29.5342028\u002B00:00", + "lastModifiedAt": "2022-09-23T16:55:57.1584378\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -717,7 +734,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo $[[${{inputs.component_in_number}}]] \u0026 echo ${{inputs.component_in_path}} \u0026 echo ${{outputs.component_out_path}} \u003E ${{outputs.component_out_path}}/component_in_number", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "description": "This is the basic command component", @@ -756,24 +773,24 @@ "Cache-Control": "no-cache", "Content-Length": "2416", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:13:30 GMT", + "Date": "Fri, 23 Sep 2022 16:55:58 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-58bd6bcdce8023df8688780ff9707399-f456b412d417d4c5-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-6afcf6bf5a320207d533444030cf7823-f231f16719b25ff1-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e682b3ca-7a36-40f0-bce4-0b57f2d86524", - "x-ms-ratelimit-remaining-subscription-writes": "1105", + "x-ms-correlation-request-id": "5663c8f1-ff5d-4e0d-ae81-ec4fb293e9be", + "x-ms-ratelimit-remaining-subscription-writes": "1196", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021331Z:e682b3ca-7a36-40f0-bce4-0b57f2d86524", - "x-request-time": "0.303" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165558Z:5663c8f1-ff5d-4e0d-ae81-ec4fb293e9be", + "x-request-time": "0.356" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32", - "name": "2a153b3f-78e1-419b-8273-bfc76c28df32", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191", + "name": "bf151e23-da4f-4101-bf39-8bf62d31a191", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -786,7 +803,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "2a153b3f-78e1-419b-8273-bfc76c28df32", + "version": "bf151e23-da4f-4101-bf39-8bf62d31a191", "display_name": "CommandComponentBasic", "is_deterministic": "True", "type": "command", @@ -813,7 +830,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -823,10 +840,10 @@ } }, "systemData": { - "createdAt": "2022-09-20T04:04:55.6745883\u002B00:00", + "createdAt": "2022-09-23T16:11:01.2843263\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-20T04:04:55.8538952\u002B00:00", + "lastModifiedAt": "2022-09-23T16:11:01.4598118\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -839,7 +856,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "2137", + "Content-Length": "2172", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -852,7 +869,7 @@ "tag": "tagvalue" }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", - "displayName": "test_994616327595", + "displayName": "test_75218639958", "experimentName": "dsl_pipeline_e2e", "isArchived": false, "jobType": "Pipeline", @@ -871,12 +888,12 @@ } }, "jobs": { - "test_552447387236": { + "test_225813972870": { "resources": null, "distribution": null, "limits": null, "environment_variables": {}, - "name": "test_552447387236", + "name": "test_225813972870", "type": "command", "display_name": null, "tags": {}, @@ -892,15 +909,16 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191" }, - "test_552447387236_1": { + "test_225813972870_1": { "resources": null, "distribution": null, "limits": null, "environment_variables": {}, - "name": "test_552447387236_1", + "name": "test_225813972870_1", "type": "command", "display_name": null, "tags": {}, @@ -916,8 +934,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191" } }, "outputs": {}, @@ -930,22 +949,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4617", + "Content-Length": "4667", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:13:37 GMT", + "Date": "Fri, 23 Sep 2022 16:56:06 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-54b235f3d1bbee70195a1d7b33d37006-6af9058d0f2a2093-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-65233ac6436ef5000f8acaf3c03055b1-d9c9abcb328bdc83-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3850fc7f-43ec-413c-9331-fbe5dd0a02e8", - "x-ms-ratelimit-remaining-subscription-writes": "1104", + "x-ms-correlation-request-id": "b9fcb5a0-05f9-44f6-8e48-db7dc0e81f75", + "x-ms-ratelimit-remaining-subscription-writes": "1195", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021338Z:3850fc7f-43ec-413c-9331-fbe5dd0a02e8", - "x-request-time": "2.959" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165606Z:b9fcb5a0-05f9-44f6-8e48-db7dc0e81f75", + "x-request-time": "3.161" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -969,7 +988,7 @@ "azureml.defaultDataStoreName": "workspaceblobstore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_994616327595", + "displayName": "test_75218639958", "status": "Preparing", "experimentName": "dsl_pipeline_e2e", "services": { @@ -1000,12 +1019,12 @@ "_source": "DSL" }, "jobs": { - "test_552447387236": { + "test_225813972870": { "resources": null, "distribution": null, "limits": null, "environment_variables": {}, - "name": "test_552447387236", + "name": "test_225813972870", "type": "command", "display_name": null, "tags": {}, @@ -1021,15 +1040,16 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191" }, - "test_552447387236_1": { + "test_225813972870_1": { "resources": null, "distribution": null, "limits": null, "environment_variables": {}, - "name": "test_552447387236_1", + "name": "test_225813972870_1", "type": "command", "display_name": null, "tags": {}, @@ -1045,8 +1065,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191" } }, "inputs": { @@ -1071,7 +1092,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T02:13:37.7637254\u002B00:00", + "createdAt": "2022-09-23T16:56:05.972255\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } @@ -1092,24 +1113,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:13:40 GMT", + "Date": "Fri, 23 Sep 2022 16:56:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-9f18c4add66bdd45a1586d845e74d5b7-a426ae035606a176-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-3f40c969ca1e4a479baf0ae2716c93b2-bf5cd70d941f0714-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "90aca69d-788d-441c-8125-0d5a6f26a8d0", - "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-correlation-request-id": "f7b05e01-6095-4c8e-8d82-f8c8620d3756", + "x-ms-ratelimit-remaining-subscription-reads": "11994", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021341Z:90aca69d-788d-441c-8125-0d5a6f26a8d0", - "x-request-time": "0.038" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165609Z:f7b05e01-6095-4c8e-8d82-f8c8620d3756", + "x-request-time": "0.035" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -1118,8 +1139,8 @@ "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T11:47:20.6013506\u002B00:00", - "modifiedOn": "2022-09-15T11:47:27.309088\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -1137,19 +1158,36 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 3, + "currentNodeCount": 2, "targetNodeCount": 4, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 3, + "runningNodeCount": 2, "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-21T02:12:16.379\u002B00:00", - "errors": null, + "allocationStateTransitionTime": "2022-09-23T16:51:23.209\u002B00:00", + "errors": [ + { + "error": { + "code": "DiskFull", + "message": "ComputeNode.Id=tvmps_3102441860b6ea65577040418e70a62a25fa8fa733adc48f9a86848fedb9bd75_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_378d2855719fc4834c48c9ad0afc2435c1f5cb14eae738055d3aab865d18c9b6_d: There is not enough disk space on the node", + "details": [ + { + "code": "Message", + "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." + }, + { + "code": "Message", + "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." + } + ] + } + } + ], "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -1166,7 +1204,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "2158", + "Content-Length": "2193", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -1179,7 +1217,7 @@ "tag": "tagvalue" }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", - "displayName": "test_994616327595", + "displayName": "test_75218639958", "experimentName": "dsl_pipeline_e2e", "isArchived": false, "jobType": "Pipeline", @@ -1219,8 +1257,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191" }, "azureml_anonymous_1": { "resources": null, @@ -1243,8 +1282,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191" } }, "outputs": {}, @@ -1258,22 +1298,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4682", + "Content-Length": "4733", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:13:45 GMT", + "Date": "Fri, 23 Sep 2022 16:56:14 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-f51914a066f0d6c80fd3bfad1dd15cb2-65cd10dc42c751a9-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-8b61eded577ed7b6c5979e5c2b0b6781-4964458b828264d3-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "74287cbc-2a06-4a2f-8d0d-7607e32b9e15", - "x-ms-ratelimit-remaining-subscription-writes": "1103", + "x-ms-correlation-request-id": "88f1f24e-0529-434b-bc29-c149cfad54da", + "x-ms-ratelimit-remaining-subscription-writes": "1194", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021346Z:74287cbc-2a06-4a2f-8d0d-7607e32b9e15", - "x-request-time": "3.170" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165615Z:88f1f24e-0529-434b-bc29-c149cfad54da", + "x-request-time": "3.247" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -1298,7 +1338,7 @@ "azureml.defaultDataStoreName": "workspaceblobstore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_994616327595", + "displayName": "test_75218639958", "status": "Preparing", "experimentName": "dsl_pipeline_e2e", "services": { @@ -1351,8 +1391,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191" }, "azureml_anonymous_1": { "resources": null, @@ -1375,8 +1416,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191" } }, "inputs": { @@ -1401,7 +1443,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T02:13:46.1240225\u002B00:00", + "createdAt": "2022-09-23T16:56:14.7704021\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } @@ -1409,7 +1451,7 @@ } ], "Variables": { - "component_name": "test_552447387236", - "pipeline_name": "test_994616327595" + "component_name": "test_225813972870", + "pipeline_name": "test_75218639958" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_pipeline_job_create_with_resolve_reuse.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_pipeline_job_create_with_resolve_reuse.json index 0378215dbf5f..0422350edc6d 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_pipeline_job_create_with_resolve_reuse.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_pipeline_job_create_with_resolve_reuse.json @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:04:32 GMT", + "Date": "Fri, 23 Sep 2022 16:18:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-eb96ba037e6f6193e2ff848856ddf1d8-925b152e27741bf7-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-3a0ea5dbcaebbd1f5912257e2996cb13-7d8b877bcb52d769-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c636bac8-4b62-4043-aa1f-8f4f28a4d24e", + "x-ms-correlation-request-id": "1f51e1e3-d3ef-4c9b-a71a-33d872987e80", "x-ms-ratelimit-remaining-subscription-reads": "11996", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020432Z:c636bac8-4b62-4043-aa1f-8f4f28a4d24e", - "x-request-time": "0.035" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161810Z:1f51e1e3-d3ef-4c9b-a71a-33d872987e80", + "x-request-time": "0.047" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -41,8 +41,8 @@ "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T11:47:20.6013506\u002B00:00", - "modifiedOn": "2022-09-15T11:47:27.309088\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -71,7 +71,7 @@ "preemptedNodeCount": 0 }, "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-21T02:03:08.787\u002B00:00", + "allocationStateTransitionTime": "2022-09-23T16:00:46.691\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -97,24 +97,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:04:34 GMT", + "Date": "Fri, 23 Sep 2022 16:18:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-00d897bf88f4e8902d96c9e0b90e1018-979155acb4c45162-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-a888743ffed69e581330723a6c9b0152-c2d4a3de079f39d4-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "59c955d8-65b1-45b5-b0e3-20e26cde7039", + "x-ms-correlation-request-id": "defe2fd2-901d-4f48-9370-2e8a69e9a789", "x-ms-ratelimit-remaining-subscription-reads": "11995", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020434Z:59c955d8-65b1-45b5-b0e3-20e26cde7039", - "x-request-time": "0.074" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161815Z:defe2fd2-901d-4f48-9370-2e8a69e9a789", + "x-request-time": "0.079" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -129,17 +129,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -161,21 +161,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:04:35 GMT", + "Date": "Fri, 23 Sep 2022 16:18:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-ab81932de37ed1044081d4f7494a4f90-d08af1c2bf81b7a9-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-38be539ec6f9c58f9142a674ac4c6a3d-3ea6cbb5f6eb705a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "86102c7e-a58f-421c-a6d9-7d61db069481", + "x-ms-correlation-request-id": "bcca46d3-2cd9-4ad6-ba76-50e47743b991", "x-ms-ratelimit-remaining-subscription-writes": "1197", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020435Z:86102c7e-a58f-421c-a6d9-7d61db069481", - "x-request-time": "0.085" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161815Z:bcca46d3-2cd9-4ad6-ba76-50e47743b991", + "x-request-time": "0.092" }, "ResponseBody": { "secretsType": "AccountKey", @@ -183,14 +183,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:04:37 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:18:17 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -200,9 +200,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 02:04:36 GMT", - "ETag": "\u00220x8DA9ABCB2F66FF1\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:00:47 GMT", + "Date": "Fri, 23 Sep 2022 16:18:15 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -211,10 +211,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:00:47 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ca7591cf-36a6-4425-bb3d-579cd587b206", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -223,20 +223,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:04:37 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:18:18 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 02:04:36 GMT", + "Date": "Fri, 23 Sep 2022 16:18:15 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -249,7 +249,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -267,7 +267,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -275,27 +275,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:04:37 GMT", + "Date": "Fri, 23 Sep 2022 16:18:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-d90108726c2fdd27dbfa60aa500846da-bba57d77f23af06f-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-a5df3dfb44f295f8857c2fd9a36f0064-fb824d83b46eff9d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a6a26204-fd3b-4e63-a598-2f19b38e8437", + "x-ms-correlation-request-id": "4f23e1f9-6374-49a9-a9e6-5a643e7426c7", "x-ms-ratelimit-remaining-subscription-writes": "1194", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020437Z:a6a26204-fd3b-4e63-a598-2f19b38e8437", - "x-request-time": "0.064" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161817Z:4f23e1f9-6374-49a9-a9e6-5a643e7426c7", + "x-request-time": "0.431" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -307,13 +307,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-20T04:00:48.9804975\u002B00:00", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:04:37.7621693\u002B00:00", + "lastModifiedAt": "2022-09-23T16:18:17.4345332\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -342,7 +342,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo $[[${{inputs.component_in_number}}]] \u0026 echo ${{inputs.component_in_path}} \u0026 echo ${{outputs.component_out_path}} \u003E ${{outputs.component_out_path}}/component_in_number", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "description": "This is the basic command component", @@ -381,24 +381,24 @@ "Cache-Control": "no-cache", "Content-Length": "2416", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:04:38 GMT", + "Date": "Fri, 23 Sep 2022 16:18:18 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-f0ca6341e1dfbb1083f0e2078ec5345c-3bda783ecabed2a8-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-7bf80f532627dc5ba54934f05eb9dbc4-d24c870315bb1f23-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c4cb6177-d035-463b-b7c5-388acd45afa8", + "x-ms-correlation-request-id": "a720307d-fbda-4f30-a5b6-fd380b47640a", "x-ms-ratelimit-remaining-subscription-writes": "1193", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020438Z:c4cb6177-d035-463b-b7c5-388acd45afa8", - "x-request-time": "0.299" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161818Z:a720307d-fbda-4f30-a5b6-fd380b47640a", + "x-request-time": "0.726" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32", - "name": "2a153b3f-78e1-419b-8273-bfc76c28df32", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191", + "name": "bf151e23-da4f-4101-bf39-8bf62d31a191", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -411,7 +411,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "2a153b3f-78e1-419b-8273-bfc76c28df32", + "version": "bf151e23-da4f-4101-bf39-8bf62d31a191", "display_name": "CommandComponentBasic", "is_deterministic": "True", "type": "command", @@ -438,7 +438,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -448,10 +448,10 @@ } }, "systemData": { - "createdAt": "2022-09-20T04:04:55.6745883\u002B00:00", + "createdAt": "2022-09-23T16:11:01.2843263\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-20T04:04:55.8538952\u002B00:00", + "lastModifiedAt": "2022-09-23T16:11:01.4598118\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -472,24 +472,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:04:39 GMT", + "Date": "Fri, 23 Sep 2022 16:18:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-53d3f7069b7c7dcf38a81db632e18c6d-d511f5b971f48985-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-e801e859410a031f1e95eb1cb3ddb82f-300356177ac9c139-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a332af1e-7f24-4915-b79d-9c92b1e4e322", + "x-ms-correlation-request-id": "806d5690-f466-4718-9065-3295d5a2c6ac", "x-ms-ratelimit-remaining-subscription-reads": "11994", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020439Z:a332af1e-7f24-4915-b79d-9c92b1e4e322", - "x-request-time": "0.078" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161819Z:806d5690-f466-4718-9065-3295d5a2c6ac", + "x-request-time": "0.091" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -504,17 +504,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -536,21 +536,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:04:40 GMT", + "Date": "Fri, 23 Sep 2022 16:18:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-784f31b2a83db3541d9145616b7f931d-247cb1d16e81ef7d-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-17470b27d3e99abdbb8e6aef5c9abdc9-322d355d9b11a48f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "904d609d-c72b-40a3-8c29-8d346f28f8f1", + "x-ms-correlation-request-id": "ff3fc56c-bd06-4513-bc32-b0cdd7cf0d47", "x-ms-ratelimit-remaining-subscription-writes": "1196", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020440Z:904d609d-c72b-40a3-8c29-8d346f28f8f1", - "x-request-time": "0.095" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161820Z:ff3fc56c-bd06-4513-bc32-b0cdd7cf0d47", + "x-request-time": "0.086" }, "ResponseBody": { "secretsType": "AccountKey", @@ -558,14 +558,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:04:42 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:18:22 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -575,9 +575,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 02:04:40 GMT", - "ETag": "\u00220x8DA9ABCB2F66FF1\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:00:47 GMT", + "Date": "Fri, 23 Sep 2022 16:18:20 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -586,10 +586,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:00:47 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ca7591cf-36a6-4425-bb3d-579cd587b206", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -598,20 +598,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:04:42 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:18:22 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 02:04:41 GMT", + "Date": "Fri, 23 Sep 2022 16:18:20 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -624,7 +624,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -642,7 +642,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -650,27 +650,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:04:41 GMT", + "Date": "Fri, 23 Sep 2022 16:18:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-ed4011c6fed5cca477523c57cc097698-8abb0895cadb54ce-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-29ef62f5bea1908db940ea895452b87c-89f9fbb096bdc3c8-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2e16cca0-4d14-4119-b647-21b554c67e30", + "x-ms-correlation-request-id": "b9e24af4-30c9-4842-80b0-0edb5b6b5b4f", "x-ms-ratelimit-remaining-subscription-writes": "1192", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020442Z:2e16cca0-4d14-4119-b647-21b554c67e30", - "x-request-time": "0.128" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161821Z:b9e24af4-30c9-4842-80b0-0edb5b6b5b4f", + "x-request-time": "0.060" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -682,13 +682,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-20T04:00:48.9804975\u002B00:00", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:04:41.8511801\u002B00:00", + "lastModifiedAt": "2022-09-23T16:18:21.7847796\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -717,7 +717,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo $[[${{inputs.component_in_number}}]] \u0026 echo ${{inputs.component_in_path}} \u0026 echo ${{outputs.component_out_path}} \u003E ${{outputs.component_out_path}}/component_in_number", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "description": "This is the basic command component", @@ -756,24 +756,24 @@ "Cache-Control": "no-cache", "Content-Length": "2416", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:04:43 GMT", + "Date": "Fri, 23 Sep 2022 16:18:21 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-ef6bd2ca4efc9268a25f8038e312ce69-ee9634c3a1f41199-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-a96d9201b89518908957f8b5aea66825-2c611372af1b17c2-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "eac1ad1c-ddf9-4553-93a9-16c3d83010e6", + "x-ms-correlation-request-id": "fc2e5092-e160-4702-87dd-ab28cc38e333", "x-ms-ratelimit-remaining-subscription-writes": "1191", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020443Z:eac1ad1c-ddf9-4553-93a9-16c3d83010e6", - "x-request-time": "0.421" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161822Z:fc2e5092-e160-4702-87dd-ab28cc38e333", + "x-request-time": "0.303" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32", - "name": "2a153b3f-78e1-419b-8273-bfc76c28df32", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191", + "name": "bf151e23-da4f-4101-bf39-8bf62d31a191", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -786,7 +786,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "2a153b3f-78e1-419b-8273-bfc76c28df32", + "version": "bf151e23-da4f-4101-bf39-8bf62d31a191", "display_name": "CommandComponentBasic", "is_deterministic": "True", "type": "command", @@ -813,7 +813,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -823,10 +823,10 @@ } }, "systemData": { - "createdAt": "2022-09-20T04:04:55.6745883\u002B00:00", + "createdAt": "2022-09-23T16:11:01.2843263\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-20T04:04:55.8538952\u002B00:00", + "lastModifiedAt": "2022-09-23T16:11:01.4598118\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -839,7 +839,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "3709", + "Content-Length": "3781", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -852,7 +852,7 @@ "tag": "tagvalue" }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", - "displayName": "test_257366966085", + "displayName": "test_371537068786", "experimentName": "dsl_pipeline_e2e", "isArchived": false, "jobType": "Pipeline", @@ -892,8 +892,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191" }, "microsoftsamples_command_component_basic_1": { "resources": null, @@ -916,8 +917,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191" }, "microsoftsamples_command_component_basic_2": { "resources": null, @@ -940,8 +942,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191" }, "microsoftsamples_command_component_basic_3": { "resources": null, @@ -964,8 +967,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191" } }, "outputs": {}, @@ -978,22 +982,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "6629", + "Content-Length": "6733", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:04:49 GMT", + "Date": "Fri, 23 Sep 2022 16:18:31 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-367598f35e2b3e8b8c2752b1156c56f2-c89f1ab521838d36-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-51443751731491f74431958021d6cd79-ba50f8735568646b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1dadd93d-68e7-45e4-b320-bdcaeb70924b", + "x-ms-correlation-request-id": "4f251271-2c29-4086-988f-e3f824187a4a", "x-ms-ratelimit-remaining-subscription-writes": "1190", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020450Z:1dadd93d-68e7-45e4-b320-bdcaeb70924b", - "x-request-time": "3.257" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T161831Z:4f251271-2c29-4086-988f-e3f824187a4a", + "x-request-time": "3.409" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -1017,7 +1021,7 @@ "azureml.defaultDataStoreName": "workspaceblobstore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_257366966085", + "displayName": "test_371537068786", "status": "Preparing", "experimentName": "dsl_pipeline_e2e", "services": { @@ -1069,8 +1073,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191" }, "microsoftsamples_command_component_basic_1": { "resources": null, @@ -1093,8 +1098,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191" }, "microsoftsamples_command_component_basic_2": { "resources": null, @@ -1117,8 +1123,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191" }, "microsoftsamples_command_component_basic_3": { "resources": null, @@ -1141,8 +1148,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191" } }, "inputs": { @@ -1167,7 +1175,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T02:04:49.6681612\u002B00:00", + "createdAt": "2022-09-23T16:18:30.9949145\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } @@ -1175,6 +1183,6 @@ } ], "Variables": { - "pipeline_name": "test_257366966085" + "pipeline_name": "test_371537068786" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_pipeline_job_help_function.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_pipeline_job_help_function.json index 71c15c284a87..31c3a5ba7c57 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_pipeline_job_help_function.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_pipeline_job_help_function.json @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:12:36 GMT", + "Date": "Fri, 23 Sep 2022 16:24:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-71de02882e3c29126f0c1c9d32754148-46ec6abac365ec81-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-fbab1d4b035cfb5a157836808154f99b-d3bc62cfde6afe03-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7cecd1e9-3817-48dd-ab5b-16f03afbd499", - "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-correlation-request-id": "cdf2c41a-79aa-47f3-b6c9-d01619b75f71", + "x-ms-ratelimit-remaining-subscription-reads": "11953", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021236Z:7cecd1e9-3817-48dd-ab5b-16f03afbd499", - "x-request-time": "0.130" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162456Z:cdf2c41a-79aa-47f3-b6c9-d01619b75f71", + "x-request-time": "0.083" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -47,17 +47,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -79,21 +79,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:12:37 GMT", + "Date": "Fri, 23 Sep 2022 16:24:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-7da2da7b855a31788cab00571f434a8b-a8b6a56c3311a959-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-3fb09d7debbabf4700086c0f33d3295a-f3a60ec9e6261538-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c65696a3-98ed-4574-8677-937d9e8e63d2", - "x-ms-ratelimit-remaining-subscription-writes": "1168", + "x-ms-correlation-request-id": "34ed5384-22a1-46d3-aa73-53b2748a3aa1", + "x-ms-ratelimit-remaining-subscription-writes": "1170", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021237Z:c65696a3-98ed-4574-8677-937d9e8e63d2", - "x-request-time": "0.097" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162457Z:34ed5384-22a1-46d3-aa73-53b2748a3aa1", + "x-request-time": "0.096" }, "ResponseBody": { "secretsType": "AccountKey", @@ -101,14 +101,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:12:38 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:24:59 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -118,9 +118,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 02:12:37 GMT", - "ETag": "\u00220x8DA9ABCB2F66FF1\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:00:47 GMT", + "Date": "Fri, 23 Sep 2022 16:24:57 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -129,10 +129,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:00:47 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ca7591cf-36a6-4425-bb3d-579cd587b206", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -141,20 +141,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:12:39 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:24:59 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 02:12:37 GMT", + "Date": "Fri, 23 Sep 2022 16:24:57 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -167,7 +167,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -185,7 +185,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -193,27 +193,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:12:38 GMT", + "Date": "Fri, 23 Sep 2022 16:24:58 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-88012a1e1e34cdfd493ee9f59731f267-719bc58f957e7d97-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-b0d8471789cbcb32502775facfeabc33-58f67916fb02743f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "682e2e26-06e4-49b6-89c2-3e53ab6457f8", - "x-ms-ratelimit-remaining-subscription-writes": "1114", + "x-ms-correlation-request-id": "9dfbc6c0-b471-4225-aa94-06b9e5d4d9ce", + "x-ms-ratelimit-remaining-subscription-writes": "1119", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021239Z:682e2e26-06e4-49b6-89c2-3e53ab6457f8", - "x-request-time": "0.080" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162458Z:9dfbc6c0-b471-4225-aa94-06b9e5d4d9ce", + "x-request-time": "0.092" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -225,13 +225,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-20T04:00:48.9804975\u002B00:00", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:12:38.913994\u002B00:00", + "lastModifiedAt": "2022-09-23T16:24:58.7102025\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -260,7 +260,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo $[[${{inputs.component_in_number}}]] \u0026 echo ${{inputs.component_in_path}} \u0026 echo ${{outputs.component_out_path}} \u003E ${{outputs.component_out_path}}/component_in_number", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "description": "This is the basic command component", @@ -299,24 +299,24 @@ "Cache-Control": "no-cache", "Content-Length": "2416", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:12:40 GMT", + "Date": "Fri, 23 Sep 2022 16:24:59 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-d9e5553b68e07b0050e7d8764a24cfa4-984ccb65904ac8eb-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-5942c104539572592a9a726316257f24-dea5a02a1864ce8d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f6c35915-adb5-4d71-b121-f92b3e817220", - "x-ms-ratelimit-remaining-subscription-writes": "1113", + "x-ms-correlation-request-id": "20b55cfb-c9e4-41d7-a2d0-f02a73a8691c", + "x-ms-ratelimit-remaining-subscription-writes": "1118", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021240Z:f6c35915-adb5-4d71-b121-f92b3e817220", - "x-request-time": "0.395" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162459Z:20b55cfb-c9e4-41d7-a2d0-f02a73a8691c", + "x-request-time": "0.384" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32", - "name": "2a153b3f-78e1-419b-8273-bfc76c28df32", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191", + "name": "bf151e23-da4f-4101-bf39-8bf62d31a191", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -329,7 +329,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "2a153b3f-78e1-419b-8273-bfc76c28df32", + "version": "bf151e23-da4f-4101-bf39-8bf62d31a191", "display_name": "CommandComponentBasic", "is_deterministic": "True", "type": "command", @@ -356,7 +356,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -366,10 +366,10 @@ } }, "systemData": { - "createdAt": "2022-09-20T04:04:55.6745883\u002B00:00", + "createdAt": "2022-09-23T16:11:01.2843263\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-20T04:04:55.8538952\u002B00:00", + "lastModifiedAt": "2022-09-23T16:11:01.4598118\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -382,7 +382,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1337", + "Content-Length": "1355", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -431,8 +431,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191" } }, "outputs": { @@ -449,22 +450,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3691", + "Content-Length": "3717", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:12:47 GMT", + "Date": "Fri, 23 Sep 2022 16:25:10 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-d3bd6a0bfbb6eb955abfda51d557900c-fd0cfcf0c2fe4587-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-63bd17fa5e277ae643e9d5d5a0ff6a24-a463a35c2b3f9bb7-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f13613fe-5bd9-4f95-b6d4-2d36126bc714", - "x-ms-ratelimit-remaining-subscription-writes": "1112", + "x-ms-correlation-request-id": "1dc99baa-c917-4ff1-9d7b-7af22815a43c", + "x-ms-ratelimit-remaining-subscription-writes": "1117", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021248Z:f13613fe-5bd9-4f95-b6d4-2d36126bc714", - "x-request-time": "3.451" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162510Z:1dc99baa-c917-4ff1-9d7b-7af22815a43c", + "x-request-time": "3.485" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -542,8 +543,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2a153b3f-78e1-419b-8273-bfc76c28df32" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bf151e23-da4f-4101-bf39-8bf62d31a191" } }, "inputs": { @@ -570,7 +572,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T02:12:47.1941994\u002B00:00", + "createdAt": "2022-09-23T16:25:10.2489763\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_pipeline_parameter_with_default_value.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_pipeline_parameter_with_default_value.json index 26feeb7308a8..66e664b0ae46 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_pipeline_parameter_with_default_value.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_pipeline_parameter_with_default_value.json @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:08:12 GMT", + "Date": "Fri, 23 Sep 2022 16:21:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-9fbffe8cd63e6adaf3778ee3a5f0c925-16afcd4d4e5f193b-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-73c64628a4116e82a3db9a9503513927-7a636f504750a399-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3c76ee11-1b50-43f7-a213-509a99786d35", + "x-ms-correlation-request-id": "5f6ca615-d598-4fe7-9bfe-3a826ec1c5e7", "x-ms-ratelimit-remaining-subscription-reads": "11966", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020813Z:3c76ee11-1b50-43f7-a213-509a99786d35", - "x-request-time": "0.098" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162130Z:5f6ca615-d598-4fe7-9bfe-3a826ec1c5e7", + "x-request-time": "0.109" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -47,17 +47,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -79,21 +79,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:08:13 GMT", + "Date": "Fri, 23 Sep 2022 16:21:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-5091587cc2187819c48228ff373b1cb5-7866db3bf28170ba-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-fb946cafb8530e507878161fc6d20549-4d0b3e44bfbd2577-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "daa49ba9-c263-41d2-9e46-c4a8f00e1d56", + "x-ms-correlation-request-id": "c7a404b2-41ac-4813-bcbc-c4e359de8abc", "x-ms-ratelimit-remaining-subscription-writes": "1179", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020814Z:daa49ba9-c263-41d2-9e46-c4a8f00e1d56", - "x-request-time": "0.168" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162131Z:c7a404b2-41ac-4813-bcbc-c4e359de8abc", + "x-request-time": "0.175" }, "ResponseBody": { "secretsType": "AccountKey", @@ -101,14 +101,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:08:16 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:21:33 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -118,9 +118,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 02:08:14 GMT", - "ETag": "\u00220x8DA9ABCB2F66FF1\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:00:47 GMT", + "Date": "Fri, 23 Sep 2022 16:21:31 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -129,10 +129,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:00:47 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ca7591cf-36a6-4425-bb3d-579cd587b206", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -141,20 +141,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:08:16 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:21:34 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 02:08:15 GMT", + "Date": "Fri, 23 Sep 2022 16:21:31 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -167,7 +167,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -185,7 +185,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -193,27 +193,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:08:15 GMT", + "Date": "Fri, 23 Sep 2022 16:21:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-4ec29e6119183d82066f2bda5533cc37-ceb6099b6413d75e-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-252d6cd19b21837f027674cd298e225c-70f1699449469719-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1c1e7ebc-430d-46ae-b37a-26bd9673fff4", + "x-ms-correlation-request-id": "48bb9ec1-04de-4802-89c2-1173a815e90e", "x-ms-ratelimit-remaining-subscription-writes": "1151", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020816Z:1c1e7ebc-430d-46ae-b37a-26bd9673fff4", - "x-request-time": "0.123" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162133Z:48bb9ec1-04de-4802-89c2-1173a815e90e", + "x-request-time": "0.086" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -225,13 +225,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-20T04:00:48.9804975\u002B00:00", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:08:16.1895767\u002B00:00", + "lastModifiedAt": "2022-09-23T16:21:32.9382522\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -260,7 +260,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo ${{inputs.component_in_string}} \u0026 echo ${{inputs.component_in_ranged_integer}} \u0026 echo ${{inputs.component_in_enum}} \u0026 echo ${{inputs.component_in_boolean}} \u0026 echo ${{inputs.component_in_ranged_number}} \u0026", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "description": "This is the basic command component with several input types", @@ -317,24 +317,24 @@ "Cache-Control": "no-cache", "Content-Length": "3086", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:08:16 GMT", + "Date": "Fri, 23 Sep 2022 16:21:33 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-7768a648f99fa12f5ca71c555717d682-64808da37cc0505a-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-b1bfc7007d3e38bddd5d226196bf8488-749f5e79f3203d25-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b69f8d27-10fc-428f-8754-e1f003f2bd65", + "x-ms-correlation-request-id": "b52eaeaf-48fa-4ae7-93ef-75650ed4d061", "x-ms-ratelimit-remaining-subscription-writes": "1150", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020817Z:b69f8d27-10fc-428f-8754-e1f003f2bd65", - "x-request-time": "0.303" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162134Z:b52eaeaf-48fa-4ae7-93ef-75650ed4d061", + "x-request-time": "0.472" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a1ef5b2f-5360-4a66-ac0b-7a355ae6e65b", - "name": "a1ef5b2f-5360-4a66-ac0b-7a355ae6e65b", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/cca78c09-e921-41ea-84a2-2eef90f78c8a", + "name": "cca78c09-e921-41ea-84a2-2eef90f78c8a", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -347,7 +347,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "a1ef5b2f-5360-4a66-ac0b-7a355ae6e65b", + "version": "cca78c09-e921-41ea-84a2-2eef90f78c8a", "display_name": "CommandComponentBasicInputs", "is_deterministic": "True", "type": "command", @@ -395,7 +395,7 @@ "max": "8.0" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -405,10 +405,10 @@ } }, "systemData": { - "createdAt": "2022-09-20T04:02:05.8939989\u002B00:00", + "createdAt": "2022-09-23T16:21:33.9874343\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-20T04:02:06.0443841\u002B00:00", + "lastModifiedAt": "2022-09-23T16:21:33.9874343\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -421,7 +421,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1959", + "Content-Length": "1977", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -490,8 +490,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a1ef5b2f-5360-4a66-ac0b-7a355ae6e65b" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/cca78c09-e921-41ea-84a2-2eef90f78c8a" } }, "outputs": {}, @@ -504,22 +505,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4578", + "Content-Length": "4604", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:08:23 GMT", + "Date": "Fri, 23 Sep 2022 16:21:41 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-bc5dfebd83fc0b24607ec0e5a9df16e8-426bcdde8975e5dd-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-b0959fcca512bc3d906077d9562bac22-f442d39292908728-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3850cce4-f76d-4a56-b0a9-d8201c9951ad", + "x-ms-correlation-request-id": "7cf2a0bb-9ecf-448e-aa49-ed4a2cbdea27", "x-ms-ratelimit-remaining-subscription-writes": "1149", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020824Z:3850cce4-f76d-4a56-b0a9-d8201c9951ad", - "x-request-time": "3.078" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162141Z:7cf2a0bb-9ecf-448e-aa49-ed4a2cbdea27", + "x-request-time": "3.269" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -604,8 +605,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a1ef5b2f-5360-4a66-ac0b-7a355ae6e65b" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/cca78c09-e921-41ea-84a2-2eef90f78c8a" } }, "inputs": { @@ -639,7 +641,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T02:08:23.9607318\u002B00:00", + "createdAt": "2022-09-23T16:21:41.3781793\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_pipeline_with_component_input_name_case.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_pipeline_with_component_input_name_case.json index 02f0edaf1306..3b0295157a62 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_pipeline_with_component_input_name_case.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_pipeline_with_component_input_name_case.json @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:12:03 GMT", + "Date": "Fri, 23 Sep 2022 16:24:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-9cd2a49a2a2f24d7d01405869fa43612-7cba6a150139be79-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-ea0dd3a6f6e9112a0c964eb517177250-768128d60c5e7625-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6f721960-0a0e-47e3-8100-b6d02442765c", - "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-correlation-request-id": "3ab8e8cb-bdcc-4b27-8a64-ce6dbc9ae7cd", + "x-ms-ratelimit-remaining-subscription-reads": "11954", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021204Z:6f721960-0a0e-47e3-8100-b6d02442765c", - "x-request-time": "0.138" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162409Z:3ab8e8cb-bdcc-4b27-8a64-ce6dbc9ae7cd", + "x-request-time": "0.095" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -47,17 +47,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -79,21 +79,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:12:03 GMT", + "Date": "Fri, 23 Sep 2022 16:24:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-526f3242bed75ce849083b8008b23bea-c4a477d405ad5b7f-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-f243b7f3c4dd890d0abefc74f047c592-547b0f5bbe61185b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5aefd300-993f-48b0-9544-d653ffeefe49", - "x-ms-ratelimit-remaining-subscription-writes": "1169", + "x-ms-correlation-request-id": "a3fd9e82-4831-4b77-b585-9fb78d6ff200", + "x-ms-ratelimit-remaining-subscription-writes": "1171", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021204Z:5aefd300-993f-48b0-9544-d653ffeefe49", - "x-request-time": "0.089" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162410Z:a3fd9e82-4831-4b77-b585-9fb78d6ff200", + "x-request-time": "0.107" }, "ResponseBody": { "secretsType": "AccountKey", @@ -101,14 +101,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:12:06 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:24:12 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -118,9 +118,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 02:12:04 GMT", - "ETag": "\u00220x8DA9ABCB2F66FF1\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:00:47 GMT", + "Date": "Fri, 23 Sep 2022 16:24:10 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -129,10 +129,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:00:47 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ca7591cf-36a6-4425-bb3d-579cd587b206", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -141,20 +141,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:12:06 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:24:13 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 02:12:05 GMT", + "Date": "Fri, 23 Sep 2022 16:24:11 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -167,7 +167,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -185,7 +185,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -193,27 +193,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:12:05 GMT", + "Date": "Fri, 23 Sep 2022 16:24:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-4238280c505bb15e215afd0fe6f118dd-0be282739f5b313e-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-7b51b3fd3db7c0911ca98d41edf90bf7-28eb3f2afa7c2492-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "897259f0-cdc5-450a-adf2-e404175d89b2", - "x-ms-ratelimit-remaining-subscription-writes": "1119", + "x-ms-correlation-request-id": "50edc3d9-a96b-4529-9b9f-855418c69263", + "x-ms-ratelimit-remaining-subscription-writes": "1124", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021206Z:897259f0-cdc5-450a-adf2-e404175d89b2", - "x-request-time": "0.093" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162412Z:50edc3d9-a96b-4529-9b9f-855418c69263", + "x-request-time": "0.077" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -225,13 +225,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-20T04:00:48.9804975\u002B00:00", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:12:06.5389315\u002B00:00", + "lastModifiedAt": "2022-09-23T16:24:12.6098289\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -260,7 +260,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo $[[${{inputs.component_In_number}}]] \u0026 echo ${{inputs.component_in_path}} \u0026 echo ${{outputs.component_out_path}} \u003E ${{outputs.component_out_path}}/component_in_number", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "description": "This is the basic command component", @@ -299,24 +299,24 @@ "Cache-Control": "no-cache", "Content-Length": "2416", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:12:07 GMT", + "Date": "Fri, 23 Sep 2022 16:24:13 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-e07c18b1ff6281b30b023ba5dda07000-f7c5472dfa8f7058-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-a642eec9832e9789073a6abd6101d0b4-15f10a36b304a843-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "23ad2f24-2275-4607-9cea-7e66a066c4f5", - "x-ms-ratelimit-remaining-subscription-writes": "1118", + "x-ms-correlation-request-id": "75ef8e4e-5b49-42a5-9317-0cb4465e93bf", + "x-ms-ratelimit-remaining-subscription-writes": "1123", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021207Z:23ad2f24-2275-4607-9cea-7e66a066c4f5", - "x-request-time": "0.342" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162414Z:75ef8e4e-5b49-42a5-9317-0cb4465e93bf", + "x-request-time": "0.716" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2f668a30-7b1c-439b-ad54-5f6e6612f05c", - "name": "2f668a30-7b1c-439b-ad54-5f6e6612f05c", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/84a2b41b-efa4-496f-b06e-4f9c6bb1bdc7", + "name": "84a2b41b-efa4-496f-b06e-4f9c6bb1bdc7", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -329,7 +329,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "2f668a30-7b1c-439b-ad54-5f6e6612f05c", + "version": "84a2b41b-efa4-496f-b06e-4f9c6bb1bdc7", "display_name": "CommandComponentBasic", "is_deterministic": "True", "type": "command", @@ -356,7 +356,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -366,10 +366,10 @@ } }, "systemData": { - "createdAt": "2022-09-20T04:05:34.3410973\u002B00:00", + "createdAt": "2022-09-23T16:24:13.8234667\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-20T04:05:34.6014447\u002B00:00", + "lastModifiedAt": "2022-09-23T16:24:13.8234667\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -382,7 +382,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1337", + "Content-Length": "1355", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -426,8 +426,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2f668a30-7b1c-439b-ad54-5f6e6612f05c" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/84a2b41b-efa4-496f-b06e-4f9c6bb1bdc7" } }, "outputs": {}, @@ -440,22 +441,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3534", + "Content-Length": "3562", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:12:14 GMT", + "Date": "Fri, 23 Sep 2022 16:24:27 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-139e51a959e4f2e8f2a9e469edc374f8-52c526576db54691-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-3b6d0f9314f1534ad1fb2c42d2b169c0-2cc1adbe1f01e678-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "59f32a8c-fe82-4b87-9beb-225bfbe88aa1", - "x-ms-ratelimit-remaining-subscription-writes": "1117", + "x-ms-correlation-request-id": "870d2c20-8603-4a5c-95a3-d03028b481da", + "x-ms-ratelimit-remaining-subscription-writes": "1122", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021214Z:59f32a8c-fe82-4b87-9beb-225bfbe88aa1", - "x-request-time": "3.305" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162428Z:870d2c20-8603-4a5c-95a3-d03028b481da", + "x-request-time": "3.296" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -528,8 +529,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2f668a30-7b1c-439b-ad54-5f6e6612f05c" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/84a2b41b-efa4-496f-b06e-4f9c6bb1bdc7" } }, "inputs": { @@ -549,7 +551,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T02:12:14.31011\u002B00:00", + "createdAt": "2022-09-23T16:24:28.4003283\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } @@ -562,7 +564,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1291", + "Content-Length": "1309", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -606,8 +608,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2f668a30-7b1c-439b-ad54-5f6e6612f05c" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/84a2b41b-efa4-496f-b06e-4f9c6bb1bdc7" } }, "outputs": {}, @@ -620,22 +623,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3490", + "Content-Length": "3516", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:12:23 GMT", + "Date": "Fri, 23 Sep 2022 16:24:38 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-03f5902bbb2d5553aa465cc37eb8f3c5-a6140b111051685f-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-b43b9c9d6463ce3b035874b451fef62e-b8e24f93b3b83367-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "467b109e-28b0-4fc5-b31f-f9059f294b18", - "x-ms-ratelimit-remaining-subscription-writes": "1116", + "x-ms-correlation-request-id": "420ce019-2f22-46f0-8ba1-38484e0d0d16", + "x-ms-ratelimit-remaining-subscription-writes": "1121", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021223Z:467b109e-28b0-4fc5-b31f-f9059f294b18", - "x-request-time": "4.993" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162438Z:420ce019-2f22-46f0-8ba1-38484e0d0d16", + "x-request-time": "3.326" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -708,8 +711,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2f668a30-7b1c-439b-ad54-5f6e6612f05c" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/84a2b41b-efa4-496f-b06e-4f9c6bb1bdc7" } }, "inputs": { @@ -729,7 +733,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T02:12:23.1226813\u002B00:00", + "createdAt": "2022-09-23T16:24:37.9059202\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } @@ -742,7 +746,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1291", + "Content-Length": "1309", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -786,8 +790,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2f668a30-7b1c-439b-ad54-5f6e6612f05c" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/84a2b41b-efa4-496f-b06e-4f9c6bb1bdc7" } }, "outputs": {}, @@ -800,22 +805,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3490", + "Content-Length": "3516", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:12:31 GMT", + "Date": "Fri, 23 Sep 2022 16:24:48 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-4ce434cacfdb624524f1b41541ee35b2-be3f6fd61c57caa0-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-aa2fc55cecac79218d30d5c79a5f4d99-1be558473316cc98-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a7c64771-e746-4e0c-bd3a-f9496ab4f1f9", - "x-ms-ratelimit-remaining-subscription-writes": "1115", + "x-ms-correlation-request-id": "7cfc87be-0f52-4a57-a9ac-0b46af371312", + "x-ms-ratelimit-remaining-subscription-writes": "1120", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021231Z:a7c64771-e746-4e0c-bd3a-f9496ab4f1f9", - "x-request-time": "3.412" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162448Z:7cfc87be-0f52-4a57-a9ac-0b46af371312", + "x-request-time": "3.716" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -888,8 +893,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2f668a30-7b1c-439b-ad54-5f6e6612f05c" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/84a2b41b-efa4-496f-b06e-4f9c6bb1bdc7" } }, "inputs": { @@ -909,7 +915,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T02:12:30.6793661\u002B00:00", + "createdAt": "2022-09-23T16:24:48.5033324\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_pipeline_with_group.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_pipeline_with_group.json index 4c36b4e58db0..cfb039e0afef 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_pipeline_with_group.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_pipeline_with_group.json @@ -15,11 +15,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:20:25 GMT", + "Date": "Fri, 23 Sep 2022 16:33:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-fcd0a00f1b8e557c3e476e384136e213-d157d434d2de702d-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-871b66e6feb8ab7aad661f2b70eb505c-b6ebf9e3100d0f11-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -28,11 +28,11 @@ ], "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "37a29c98-d72b-4e00-a78d-d076cb17bea7", - "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-correlation-request-id": "e8431d3a-e201-423c-ae9e-318dd314180f", + "x-ms-ratelimit-remaining-subscription-reads": "11912", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T022026Z:37a29c98-d72b-4e00-a78d-d076cb17bea7", - "x-request-time": "0.143" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163304Z:e8431d3a-e201-423c-ae9e-318dd314180f", + "x-request-time": "0.127" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -47,17 +47,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -79,21 +79,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:20:26 GMT", + "Date": "Fri, 23 Sep 2022 16:33:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-a5b6ac000e43c7e689fc466720cd3ee8-c31f2f6d0edd54b4-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-225c02b136921cdde7c4dafe2430ce63-bcc4515123a1ae43-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fdb66554-3273-4767-9c5d-c74ca7172293", - "x-ms-ratelimit-remaining-subscription-writes": "1185", + "x-ms-correlation-request-id": "812920f1-d2a4-40dd-8d02-e11706845fd6", + "x-ms-ratelimit-remaining-subscription-writes": "1143", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T022027Z:fdb66554-3273-4767-9c5d-c74ca7172293", - "x-request-time": "0.136" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163305Z:812920f1-d2a4-40dd-8d02-e11706845fd6", + "x-request-time": "0.167" }, "ResponseBody": { "secretsType": "AccountKey", @@ -101,14 +101,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:20:29 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:33:07 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -118,9 +118,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 02:20:27 GMT", - "ETag": "\u00220x8DA9ABCB2F66FF1\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:00:47 GMT", + "Date": "Fri, 23 Sep 2022 16:33:06 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -129,10 +129,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:00:47 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ca7591cf-36a6-4425-bb3d-579cd587b206", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -141,20 +141,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:20:29 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:33:09 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 02:20:27 GMT", + "Date": "Fri, 23 Sep 2022 16:33:06 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -167,7 +167,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -185,7 +185,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -193,11 +193,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:20:28 GMT", + "Date": "Fri, 23 Sep 2022 16:33:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-3c56f178493621883d885f7349ea17c1-86fc59fdb7e91d1b-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-2398673c953740131b2e97c0ee6a3375-2e0d62814e85c69c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -206,14 +206,14 @@ ], "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c0344800-cf73-4f3d-bd85-66d178b6af1a", - "x-ms-ratelimit-remaining-subscription-writes": "1178", + "x-ms-correlation-request-id": "dd290125-0228-4073-8751-8182e9d56ce0", + "x-ms-ratelimit-remaining-subscription-writes": "1080", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T022029Z:c0344800-cf73-4f3d-bd85-66d178b6af1a", - "x-request-time": "0.103" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163307Z:dd290125-0228-4073-8751-8182e9d56ce0", + "x-request-time": "0.068" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -225,13 +225,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-20T04:00:48.9804975\u002B00:00", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:20:29.7019133\u002B00:00", + "lastModifiedAt": "2022-09-23T16:33:07.7719773\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -260,7 +260,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo ${{inputs.component_in_string}} \u0026 echo ${{inputs.component_in_ranged_integer}} \u0026 echo ${{inputs.component_in_enum}} \u0026 echo ${{inputs.component_in_boolean}} \u0026 echo ${{inputs.component_in_ranged_number}} \u0026", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "description": "This is the basic command component with several input types", @@ -317,24 +317,24 @@ "Cache-Control": "no-cache", "Content-Length": "3086", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:20:30 GMT", + "Date": "Fri, 23 Sep 2022 16:33:09 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-82b1b3ab51843fc5e5c0741227c69237-79733127a765369d-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-40c71f81180a16bad1c24c4bf8bf000d-f1925a4378de82ac-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "867ecf6c-2be2-4b03-8d31-3364cb2e22fd", - "x-ms-ratelimit-remaining-subscription-writes": "1177", + "x-ms-correlation-request-id": "87ae73f4-359d-4fe9-a35a-a0b312f03aa4", + "x-ms-ratelimit-remaining-subscription-writes": "1079", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T022031Z:867ecf6c-2be2-4b03-8d31-3364cb2e22fd", - "x-request-time": "0.353" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163309Z:87ae73f4-359d-4fe9-a35a-a0b312f03aa4", + "x-request-time": "0.280" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a1ef5b2f-5360-4a66-ac0b-7a355ae6e65b", - "name": "a1ef5b2f-5360-4a66-ac0b-7a355ae6e65b", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/cca78c09-e921-41ea-84a2-2eef90f78c8a", + "name": "cca78c09-e921-41ea-84a2-2eef90f78c8a", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -347,7 +347,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "a1ef5b2f-5360-4a66-ac0b-7a355ae6e65b", + "version": "cca78c09-e921-41ea-84a2-2eef90f78c8a", "display_name": "CommandComponentBasicInputs", "is_deterministic": "True", "type": "command", @@ -395,7 +395,7 @@ "max": "8.0" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -405,10 +405,10 @@ } }, "systemData": { - "createdAt": "2022-09-20T04:02:05.8939989\u002B00:00", + "createdAt": "2022-09-23T16:21:33.9874343\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-20T04:02:06.0443841\u002B00:00", + "lastModifiedAt": "2022-09-23T16:21:34.1379108\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -421,7 +421,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1808", + "Content-Length": "1826", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -489,8 +489,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a1ef5b2f-5360-4a66-ac0b-7a355ae6e65b" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/cca78c09-e921-41ea-84a2-2eef90f78c8a" } }, "outputs": {}, @@ -503,22 +504,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4406", + "Content-Length": "4432", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:20:41 GMT", + "Date": "Fri, 23 Sep 2022 16:33:20 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-4be8dec207f93a8cad776dd2160f4d93-85486902a84a4c4e-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-f38225bf349908da833336b6fa2e2bbf-3fb3f183228626be-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c92e8b64-281e-49fe-b579-5b9f773ec15c", - "x-ms-ratelimit-remaining-subscription-writes": "1176", + "x-ms-correlation-request-id": "61012f56-e426-45b5-b300-237475d3af94", + "x-ms-ratelimit-remaining-subscription-writes": "1078", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T022041Z:c92e8b64-281e-49fe-b579-5b9f773ec15c", - "x-request-time": "3.158" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163321Z:61012f56-e426-45b5-b300-237475d3af94", + "x-request-time": "3.454" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -603,8 +604,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a1ef5b2f-5360-4a66-ac0b-7a355ae6e65b" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/cca78c09-e921-41ea-84a2-2eef90f78c8a" } }, "inputs": { @@ -638,7 +640,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T02:20:40.6075334\u002B00:00", + "createdAt": "2022-09-23T16:33:20.9859647\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_pipeline_with_none_parameter_has_default_optional_false.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_pipeline_with_none_parameter_has_default_optional_false.json index 1ee660c979c3..bf57c42eb881 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_pipeline_with_none_parameter_has_default_optional_false.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_pipeline_with_none_parameter_has_default_optional_false.json @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:08:47 GMT", + "Date": "Fri, 23 Sep 2022 16:22:02 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-7f63e216dfc1272462174c6a904815b3-a44580a7129baf58-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-e8c6e481d8dcd84d3d82cdd2a8e9e07e-91386f34be8165c6-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0b299cf5-a166-4e1a-a83e-d1c4deef6e62", + "x-ms-correlation-request-id": "feccab25-3bb1-419d-8e36-982f27a5666d", "x-ms-ratelimit-remaining-subscription-reads": "11964", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020847Z:0b299cf5-a166-4e1a-a83e-d1c4deef6e62", - "x-request-time": "0.074" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162203Z:feccab25-3bb1-419d-8e36-982f27a5666d", + "x-request-time": "0.081" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -47,17 +47,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -79,21 +79,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:08:48 GMT", + "Date": "Fri, 23 Sep 2022 16:22:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-9f847a41e1662d66f5e306dd8c8797e3-ba94dc6cf5d3db3f-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-4956c9bd92661643e86fe37197fd6d30-6d7c0a3dfdfcf606-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "06a1d95f-119e-49ae-9adf-413b0eab7c31", + "x-ms-correlation-request-id": "e9412317-9588-46eb-9b18-47bded1890e6", "x-ms-ratelimit-remaining-subscription-writes": "1177", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020848Z:06a1d95f-119e-49ae-9adf-413b0eab7c31", - "x-request-time": "0.079" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162204Z:e9412317-9588-46eb-9b18-47bded1890e6", + "x-request-time": "0.109" }, "ResponseBody": { "secretsType": "AccountKey", @@ -101,14 +101,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:08:50 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:22:06 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -118,9 +118,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 02:08:49 GMT", - "ETag": "\u00220x8DA9ABCB2F66FF1\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:00:47 GMT", + "Date": "Fri, 23 Sep 2022 16:22:03 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -129,10 +129,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:00:47 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ca7591cf-36a6-4425-bb3d-579cd587b206", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -141,20 +141,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:08:50 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:22:06 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 02:08:49 GMT", + "Date": "Fri, 23 Sep 2022 16:22:04 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -167,7 +167,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -185,7 +185,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -193,27 +193,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:08:50 GMT", + "Date": "Fri, 23 Sep 2022 16:22:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-26f7833ec902ba744a8ad5c0fbab0779-d75cd882434d388f-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-1b4211663355a6d6c18c40270ecfdd4a-3ea2bb9701dec1b4-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "95372777-4165-4b2f-9f96-95671bddcf52", + "x-ms-correlation-request-id": "e1e41011-19d9-45da-88ba-99ccca622663", "x-ms-ratelimit-remaining-subscription-writes": "1145", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020850Z:95372777-4165-4b2f-9f96-95671bddcf52", - "x-request-time": "0.069" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162205Z:e1e41011-19d9-45da-88ba-99ccca622663", + "x-request-time": "0.083" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -225,13 +225,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-20T04:00:48.9804975\u002B00:00", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:08:50.7527315\u002B00:00", + "lastModifiedAt": "2022-09-23T16:22:05.4171928\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -260,7 +260,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo required_param ${{inputs.required_param}} \u0026 echo required_param_with_default ${{inputs.required_param_with_default}} \u0026 $[[echo optional_param ${{inputs.optional_param}} \u0026]] $[[echo optional_param_with_default ${{inputs.optional_param_with_default}} \u0026]] echo required_input ${{inputs.required_input}} \u0026 $[[echo optional_input ${{inputs.optional_input}} \u0026]]", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "description": "Component with default and optional parameters", @@ -308,24 +308,24 @@ "Cache-Control": "no-cache", "Content-Length": "2950", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:08:51 GMT", + "Date": "Fri, 23 Sep 2022 16:22:06 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-fa6fa9020d01198e55b0935bc4693d9d-23b8677da5d67b99-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-0a8681ac0dfc9a1e1c43bd6ef6aa8e98-f932adbdf5c6313a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6170c0a3-f81b-401c-aa45-c38fee52c320", + "x-ms-correlation-request-id": "173afd96-03cb-46ae-a91c-95cb1af3e61a", "x-ms-ratelimit-remaining-subscription-writes": "1144", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020852Z:6170c0a3-f81b-401c-aa45-c38fee52c320", - "x-request-time": "0.339" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162206Z:173afd96-03cb-46ae-a91c-95cb1af3e61a", + "x-request-time": "0.330" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/442057b9-8251-4d34-94d9-693f1d52fe49", - "name": "442057b9-8251-4d34-94d9-693f1d52fe49", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/00ea3a38-ff46-4b2f-91a1-8c70a425d2f5", + "name": "00ea3a38-ff46-4b2f-91a1-8c70a425d2f5", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -338,7 +338,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "442057b9-8251-4d34-94d9-693f1d52fe49", + "version": "00ea3a38-ff46-4b2f-91a1-8c70a425d2f5", "display_name": "Component with default and optional parameters", "is_deterministic": "True", "type": "command", @@ -375,7 +375,7 @@ "default": "optional_param_with_default" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -385,10 +385,10 @@ } }, "systemData": { - "createdAt": "2022-09-20T04:02:29.1889657\u002B00:00", + "createdAt": "2022-09-23T16:21:49.5868048\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-20T04:02:29.3736161\u002B00:00", + "lastModifiedAt": "2022-09-23T16:21:49.7502091\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -401,7 +401,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1318", + "Content-Length": "1336", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -445,8 +445,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/442057b9-8251-4d34-94d9-693f1d52fe49" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/00ea3a38-ff46-4b2f-91a1-8c70a425d2f5" } }, "outputs": {}, @@ -459,22 +460,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3515", + "Content-Length": "3541", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:08:59 GMT", + "Date": "Fri, 23 Sep 2022 16:22:13 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-2f9701f77de6dfbaff9a62c41077a074-8b4b2be67099285d-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-ec97b6c636d45170a66b70a2e5d77389-c704c41f2e062777-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bc3730e2-6d17-4979-bcd0-61d66a24d9a7", + "x-ms-correlation-request-id": "3dfd16e8-9071-43e9-b744-a80fc6510246", "x-ms-ratelimit-remaining-subscription-writes": "1143", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020859Z:bc3730e2-6d17-4979-bcd0-61d66a24d9a7", - "x-request-time": "2.926" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162214Z:3dfd16e8-9071-43e9-b744-a80fc6510246", + "x-request-time": "3.161" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -547,8 +548,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/442057b9-8251-4d34-94d9-693f1d52fe49" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/00ea3a38-ff46-4b2f-91a1-8c70a425d2f5" } }, "inputs": { @@ -568,7 +570,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T02:08:58.8982905\u002B00:00", + "createdAt": "2022-09-23T16:22:13.6932364\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } @@ -581,7 +583,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1300", + "Content-Length": "1318", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -625,8 +627,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/442057b9-8251-4d34-94d9-693f1d52fe49" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/00ea3a38-ff46-4b2f-91a1-8c70a425d2f5" } }, "outputs": {}, @@ -639,22 +642,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3496", + "Content-Length": "3523", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:09:07 GMT", + "Date": "Fri, 23 Sep 2022 16:22:20 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-fedd36b9616f5da5516f042a6a650504-c5494755b495186c-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-72e2d8f84f863575fe3831b871ce9946-e45aae285dd4d6ed-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c8252198-2ecc-4c85-939c-b232c846709e", + "x-ms-correlation-request-id": "cf814792-d4ff-445a-85d6-ff59ccd30427", "x-ms-ratelimit-remaining-subscription-writes": "1142", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020907Z:c8252198-2ecc-4c85-939c-b232c846709e", - "x-request-time": "3.341" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162221Z:cf814792-d4ff-445a-85d6-ff59ccd30427", + "x-request-time": "2.929" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -727,8 +730,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/442057b9-8251-4d34-94d9-693f1d52fe49" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/00ea3a38-ff46-4b2f-91a1-8c70a425d2f5" } }, "inputs": { @@ -748,7 +752,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T02:09:07.475248\u002B00:00", + "createdAt": "2022-09-23T16:22:20.8867563\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_pipeline_with_none_parameter_has_default_optional_true.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_pipeline_with_none_parameter_has_default_optional_true.json index 18fc5c614805..eeacc1244ce2 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_pipeline_with_none_parameter_has_default_optional_true.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_pipeline_with_none_parameter_has_default_optional_true.json @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:09:51 GMT", + "Date": "Fri, 23 Sep 2022 16:23:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-7410789da042e041aac3f89cd03b5419-d9a537c01de5c042-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-c27936fad08ea2a20a6d6803029dcda7-80e3fa68c10c8f8b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0e1de601-88c1-456d-aa54-bc766b7b4d43", + "x-ms-correlation-request-id": "570166b8-949a-40c1-8ba0-e1df5db5fd6c", "x-ms-ratelimit-remaining-subscription-reads": "11960", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020952Z:0e1de601-88c1-456d-aa54-bc766b7b4d43", - "x-request-time": "0.074" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162304Z:570166b8-949a-40c1-8ba0-e1df5db5fd6c", + "x-request-time": "0.139" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -47,17 +47,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -79,21 +79,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:09:52 GMT", + "Date": "Fri, 23 Sep 2022 16:23:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-ac6eeca182d476505b299ada3de4fa46-54a38eafd73b4cd1-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-76fd696645abb67789b631f06a0fea8e-ca845b424b86789b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "85cafb4d-3873-4116-826a-3eb817bc72f0", + "x-ms-correlation-request-id": "235b4e73-d72c-4caa-a818-37507395344b", "x-ms-ratelimit-remaining-subscription-writes": "1174", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020953Z:85cafb4d-3873-4116-826a-3eb817bc72f0", - "x-request-time": "0.095" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162305Z:235b4e73-d72c-4caa-a818-37507395344b", + "x-request-time": "0.089" }, "ResponseBody": { "secretsType": "AccountKey", @@ -101,14 +101,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:09:55 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:23:07 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -118,9 +118,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 02:09:53 GMT", - "ETag": "\u00220x8DA9ABCB2F66FF1\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:00:47 GMT", + "Date": "Fri, 23 Sep 2022 16:23:04 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -129,10 +129,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:00:47 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ca7591cf-36a6-4425-bb3d-579cd587b206", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -141,20 +141,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:09:55 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:23:07 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 02:09:54 GMT", + "Date": "Fri, 23 Sep 2022 16:23:05 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -167,7 +167,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -185,7 +185,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -193,27 +193,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:09:54 GMT", + "Date": "Fri, 23 Sep 2022 16:23:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-ef48555d59678ac2855afe6632e681d4-b834f80e536ec670-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-ab3e2400e553a7e0d5a697d04030f020-9f962a6635f1636f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7756061b-830b-4559-82ac-72be646835b7", + "x-ms-correlation-request-id": "fe29d0d9-9291-4bfd-a363-d2d06ad8d360", "x-ms-ratelimit-remaining-subscription-writes": "1134", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020955Z:7756061b-830b-4559-82ac-72be646835b7", - "x-request-time": "0.079" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162306Z:fe29d0d9-9291-4bfd-a363-d2d06ad8d360", + "x-request-time": "0.088" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -225,13 +225,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-20T04:00:48.9804975\u002B00:00", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:09:55.0320227\u002B00:00", + "lastModifiedAt": "2022-09-23T16:23:06.5306452\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -260,7 +260,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo required_param ${{inputs.required_param}} \u0026 echo required_param_with_default ${{inputs.required_param_with_default}} \u0026 $[[echo optional_param ${{inputs.optional_param}} \u0026]] $[[echo optional_param_with_default ${{inputs.optional_param_with_default}} \u0026]] echo required_input ${{inputs.required_input}} \u0026 $[[echo optional_input ${{inputs.optional_input}} \u0026]]", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "description": "Component with default and optional parameters", @@ -308,24 +308,24 @@ "Cache-Control": "no-cache", "Content-Length": "2950", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:09:55 GMT", + "Date": "Fri, 23 Sep 2022 16:23:07 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-73931d77b9ecda041b3647e7ce92a88c-0e1747325caec382-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-f1384b239cae99f84592ee57acf181aa-6d60385e0c43004b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "725131fa-e384-4f13-8f9a-df41361163d2", + "x-ms-correlation-request-id": "ffc9a232-4a83-4d12-bd00-87d7f3e31c21", "x-ms-ratelimit-remaining-subscription-writes": "1133", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020956Z:725131fa-e384-4f13-8f9a-df41361163d2", - "x-request-time": "0.322" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162308Z:ffc9a232-4a83-4d12-bd00-87d7f3e31c21", + "x-request-time": "0.579" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/442057b9-8251-4d34-94d9-693f1d52fe49", - "name": "442057b9-8251-4d34-94d9-693f1d52fe49", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/00ea3a38-ff46-4b2f-91a1-8c70a425d2f5", + "name": "00ea3a38-ff46-4b2f-91a1-8c70a425d2f5", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -338,7 +338,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "442057b9-8251-4d34-94d9-693f1d52fe49", + "version": "00ea3a38-ff46-4b2f-91a1-8c70a425d2f5", "display_name": "Component with default and optional parameters", "is_deterministic": "True", "type": "command", @@ -375,7 +375,7 @@ "default": "optional_param_with_default" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -385,10 +385,10 @@ } }, "systemData": { - "createdAt": "2022-09-20T04:02:29.1889657\u002B00:00", + "createdAt": "2022-09-23T16:21:49.5868048\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-20T04:02:29.3736161\u002B00:00", + "lastModifiedAt": "2022-09-23T16:21:49.7502091\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -401,7 +401,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1708", + "Content-Length": "1726", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -461,8 +461,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/442057b9-8251-4d34-94d9-693f1d52fe49" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/00ea3a38-ff46-4b2f-91a1-8c70a425d2f5" } }, "outputs": {}, @@ -475,22 +476,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4217", + "Content-Length": "4243", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:10:02 GMT", + "Date": "Fri, 23 Sep 2022 16:23:15 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-a56467620632265d4faf195e53944c07-f32818d02b2a6282-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-5d949b1bb746aa7d8147d2e358e12c3f-516ea593e527f522-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6c3f7d72-2b6f-4d33-8dfc-fd8b76b96f83", + "x-ms-correlation-request-id": "6cfd95e9-8863-490e-9859-272564a30407", "x-ms-ratelimit-remaining-subscription-writes": "1132", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021003Z:6c3f7d72-2b6f-4d33-8dfc-fd8b76b96f83", - "x-request-time": "2.845" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162315Z:6cfd95e9-8863-490e-9859-272564a30407", + "x-request-time": "3.119" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -571,8 +572,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/442057b9-8251-4d34-94d9-693f1d52fe49" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/00ea3a38-ff46-4b2f-91a1-8c70a425d2f5" } }, "inputs": { @@ -602,7 +604,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T02:10:02.7536631\u002B00:00", + "createdAt": "2022-09-23T16:23:14.9778878\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } @@ -615,7 +617,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1690", + "Content-Length": "1708", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -675,8 +677,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/442057b9-8251-4d34-94d9-693f1d52fe49" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/00ea3a38-ff46-4b2f-91a1-8c70a425d2f5" } }, "outputs": {}, @@ -689,22 +692,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4199", + "Content-Length": "4225", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:10:11 GMT", + "Date": "Fri, 23 Sep 2022 16:23:23 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-dcf4677585cce0ef4aa46e80d13062f2-b0b8f6215966662f-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-f0ae3f435f5dae65b2f3116e50726060-a1531b6d3282e7b6-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7519fa7c-2f73-467e-ba5a-de5fe174d0a9", + "x-ms-correlation-request-id": "e1b78811-3b0c-435a-98e0-38c289338e4d", "x-ms-ratelimit-remaining-subscription-writes": "1131", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021012Z:7519fa7c-2f73-467e-ba5a-de5fe174d0a9", - "x-request-time": "2.854" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162323Z:e1b78811-3b0c-435a-98e0-38c289338e4d", + "x-request-time": "3.204" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -785,8 +788,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/442057b9-8251-4d34-94d9-693f1d52fe49" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/00ea3a38-ff46-4b2f-91a1-8c70a425d2f5" } }, "inputs": { @@ -816,7 +820,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T02:10:12.1457251\u002B00:00", + "createdAt": "2022-09-23T16:23:22.6939957\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } @@ -829,7 +833,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1487", + "Content-Length": "1505", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -881,8 +885,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/442057b9-8251-4d34-94d9-693f1d52fe49" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/00ea3a38-ff46-4b2f-91a1-8c70a425d2f5" } }, "outputs": {}, @@ -895,22 +900,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3730", + "Content-Length": "3756", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:10:18 GMT", + "Date": "Fri, 23 Sep 2022 16:23:30 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-8705cfdaca0f78867df2ba2c7df528c5-04556961efdc17f7-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-b18607120bb6d2b38b7afe1b989ddd0a-967e681860fc384d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4c25daa8-be76-4d6b-bcb6-4f09aed44fa7", + "x-ms-correlation-request-id": "e79aa15d-97cc-437f-85da-3dd4e7781ebe", "x-ms-ratelimit-remaining-subscription-writes": "1130", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T021019Z:4c25daa8-be76-4d6b-bcb6-4f09aed44fa7", - "x-request-time": "2.931" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162331Z:e79aa15d-97cc-437f-85da-3dd4e7781ebe", + "x-request-time": "2.941" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -995,8 +1000,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/442057b9-8251-4d34-94d9-693f1d52fe49" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/00ea3a38-ff46-4b2f-91a1-8c70a425d2f5" } }, "inputs": { @@ -1010,7 +1016,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T02:10:19.2012994\u002B00:00", + "createdAt": "2022-09-23T16:23:30.6900927\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_pipeline_with_none_parameter_no_default_optional_true.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_pipeline_with_none_parameter_no_default_optional_true.json index a8d085b525e3..60f181393559 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_pipeline_with_none_parameter_no_default_optional_true.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline.pyTestDSLPipelinetest_pipeline_with_none_parameter_no_default_optional_true.json @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:09:12 GMT", + "Date": "Fri, 23 Sep 2022 16:22:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-f14269e68f763547beb55883e7ade2f8-53dd226def6616f9-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-fbb9bfdd731ed42425d42e6954ac6d43-1299f1e557069e97-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9d404004-b720-4b84-829e-58667f88a731", + "x-ms-correlation-request-id": "f9b429ab-3c3a-495a-a4ad-b10844da621b", "x-ms-ratelimit-remaining-subscription-reads": "11963", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020912Z:9d404004-b720-4b84-829e-58667f88a731", - "x-request-time": "0.122" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162226Z:f9b429ab-3c3a-495a-a4ad-b10844da621b", + "x-request-time": "0.078" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -47,17 +47,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -79,21 +79,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:09:13 GMT", + "Date": "Fri, 23 Sep 2022 16:22:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-a607ce3029911fabe9b6283977864218-d360f2aba7b35b71-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-4431df7df8ccabad7863d56f38dfa404-be573dd353eec294-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "85888677-8209-4077-99d5-718b175f66cb", + "x-ms-correlation-request-id": "c28d38cd-179b-4b69-a0d3-2dd8c97edc1c", "x-ms-ratelimit-remaining-subscription-writes": "1176", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020914Z:85888677-8209-4077-99d5-718b175f66cb", - "x-request-time": "0.152" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162227Z:c28d38cd-179b-4b69-a0d3-2dd8c97edc1c", + "x-request-time": "0.111" }, "ResponseBody": { "secretsType": "AccountKey", @@ -101,14 +101,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:09:15 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:22:29 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -118,9 +118,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 02:09:14 GMT", - "ETag": "\u00220x8DA9ABCB2F66FF1\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:00:47 GMT", + "Date": "Fri, 23 Sep 2022 16:22:27 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -129,10 +129,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:00:47 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ca7591cf-36a6-4425-bb3d-579cd587b206", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -141,20 +141,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 02:09:16 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:22:30 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 02:09:15 GMT", + "Date": "Fri, 23 Sep 2022 16:22:27 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -167,7 +167,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -185,7 +185,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -193,27 +193,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:09:16 GMT", + "Date": "Fri, 23 Sep 2022 16:22:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-c5edb7dd90382f831061151a0adfed52-5d76c4389d0fa230-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-474a106cc248a6f672995407abdfdc05-1ea0273bd0293921-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "47791eab-1497-4f78-8990-3a8207c7137a", + "x-ms-correlation-request-id": "9d0dd880-c881-4ca3-b41c-5098d18fd983", "x-ms-ratelimit-remaining-subscription-writes": "1141", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020916Z:47791eab-1497-4f78-8990-3a8207c7137a", - "x-request-time": "0.114" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162229Z:9d0dd880-c881-4ca3-b41c-5098d18fd983", + "x-request-time": "0.073" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -225,13 +225,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-20T04:00:48.9804975\u002B00:00", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:09:16.4369922\u002B00:00", + "lastModifiedAt": "2022-09-23T16:22:29.0158291\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -260,7 +260,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo required_param ${{inputs.required_param}} \u0026 echo required_param_with_default ${{inputs.required_param_with_default}} \u0026 $[[echo optional_param ${{inputs.optional_param}} \u0026]] $[[echo optional_param_with_default ${{inputs.optional_param_with_default}} \u0026]] echo required_input ${{inputs.required_input}} \u0026 $[[echo optional_input ${{inputs.optional_input}} \u0026]]", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "description": "Component with default and optional parameters", @@ -308,24 +308,24 @@ "Cache-Control": "no-cache", "Content-Length": "2950", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:09:17 GMT", + "Date": "Fri, 23 Sep 2022 16:22:30 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-3f93e307d9ada4173a9cda6f15047488-c5789da40180ea2e-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-312d983d7874fb67a58bbcfbd4bb6b47-7bac798dece57511-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f91ccb73-88d8-41f0-ab49-6c0d49d23237", + "x-ms-correlation-request-id": "1487d76e-884b-4d0f-ac55-c8fbffb7286d", "x-ms-ratelimit-remaining-subscription-writes": "1140", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020918Z:f91ccb73-88d8-41f0-ab49-6c0d49d23237", - "x-request-time": "0.379" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162230Z:1487d76e-884b-4d0f-ac55-c8fbffb7286d", + "x-request-time": "0.322" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/442057b9-8251-4d34-94d9-693f1d52fe49", - "name": "442057b9-8251-4d34-94d9-693f1d52fe49", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/00ea3a38-ff46-4b2f-91a1-8c70a425d2f5", + "name": "00ea3a38-ff46-4b2f-91a1-8c70a425d2f5", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -338,7 +338,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "442057b9-8251-4d34-94d9-693f1d52fe49", + "version": "00ea3a38-ff46-4b2f-91a1-8c70a425d2f5", "display_name": "Component with default and optional parameters", "is_deterministic": "True", "type": "command", @@ -375,7 +375,7 @@ "default": "optional_param_with_default" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -385,10 +385,10 @@ } }, "systemData": { - "createdAt": "2022-09-20T04:02:29.1889657\u002B00:00", + "createdAt": "2022-09-23T16:21:49.5868048\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-20T04:02:29.3736161\u002B00:00", + "lastModifiedAt": "2022-09-23T16:21:49.7502091\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -401,7 +401,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1760", + "Content-Length": "1778", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -461,8 +461,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/442057b9-8251-4d34-94d9-693f1d52fe49" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/00ea3a38-ff46-4b2f-91a1-8c70a425d2f5" } }, "outputs": {}, @@ -475,22 +476,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4295", + "Content-Length": "4321", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:09:25 GMT", + "Date": "Fri, 23 Sep 2022 16:22:38 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-79bf2239fa7e43ab21197f63ddf2bfaa-c8b2be906c624cf3-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-3c847bbc6f991208ddb9bcfbd3fd479f-9a21808d622bbeb0-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9cb12f7f-4980-4350-b232-f8597368431e", + "x-ms-correlation-request-id": "5806e57a-fdac-4d53-a942-b4d92654c1d7", "x-ms-ratelimit-remaining-subscription-writes": "1139", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020925Z:9cb12f7f-4980-4350-b232-f8597368431e", - "x-request-time": "2.905" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162238Z:5806e57a-fdac-4d53-a942-b4d92654c1d7", + "x-request-time": "3.549" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -571,8 +572,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/442057b9-8251-4d34-94d9-693f1d52fe49" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/00ea3a38-ff46-4b2f-91a1-8c70a425d2f5" } }, "inputs": { @@ -602,7 +604,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T02:09:25.3124482\u002B00:00", + "createdAt": "2022-09-23T16:22:38.0175272\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } @@ -615,7 +617,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1742", + "Content-Length": "1760", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -675,8 +677,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/442057b9-8251-4d34-94d9-693f1d52fe49" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/00ea3a38-ff46-4b2f-91a1-8c70a425d2f5" } }, "outputs": {}, @@ -689,22 +692,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4276", + "Content-Length": "4303", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 02:09:33 GMT", + "Date": "Fri, 23 Sep 2022 16:22:45 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-c62d315cd5d7ad7baf3f69ecba3fe3c3-58334c43a5d70bc4-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-a6f39d7d173b53d4b20368807fd84ebf-023a1341c63bc0ad-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "71c43427-d249-4172-9f64-a878dd565be6", + "x-ms-correlation-request-id": "6fe4e070-2f3e-41d0-ac2c-b9aa22afa8b7", "x-ms-ratelimit-remaining-subscription-writes": "1138", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T020933Z:71c43427-d249-4172-9f64-a878dd565be6", - "x-request-time": "3.415" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T162245Z:6fe4e070-2f3e-41d0-ac2c-b9aa22afa8b7", + "x-request-time": "3.419" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -785,8 +788,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/442057b9-8251-4d34-94d9-693f1d52fe49" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/00ea3a38-ff46-4b2f-91a1-8c70a425d2f5" } }, "inputs": { @@ -816,7 +820,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T02:09:33.256486\u002B00:00", + "createdAt": "2022-09-23T16:22:45.4538937\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_on_registry.pyTestDSLPipelineOnRegistrytest_pipeline_job_create_with_registered_component_on_registry.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_on_registry.pyTestDSLPipelineOnRegistrytest_pipeline_job_create_with_registered_component_on_registry.json index ab75f0123cc4..df8b444f0b92 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_on_registry.pyTestDSLPipelineOnRegistrytest_pipeline_job_create_with_registered_component_on_registry.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_on_registry.pyTestDSLPipelineOnRegistrytest_pipeline_job_create_with_registered_component_on_registry.json @@ -15,7 +15,7 @@ "Connection": "keep-alive", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 03:19:35 GMT", + "Date": "Fri, 23 Sep 2022 16:33:28 GMT", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", "Strict-Transport-Security": "max-age=15724800; includeSubDomains; preload", "Transfer-Encoding": "chunked", @@ -23,7 +23,7 @@ "x-aml-cluster": "vienna-eastus-01", "X-Content-Type-Options": "nosniff", "x-ms-response-type": "standard", - "x-request-time": "0.244" + "x-request-time": "0.352" }, "ResponseBody": { "registryId": "3b513a6b-f110-4e7f-9ce3-472b5aa28170", @@ -59,19 +59,19 @@ "Connection": "keep-alive", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 03:19:39 GMT", + "Date": "Fri, 23 Sep 2022 16:33:39 GMT", "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", - "Server-Timing": "traceparent;desc=\u002200-d1c51ca80456c1422f7df9c46bc9f748-6f016a8fa47442b5-00\u0022", + "Server-Timing": "traceparent;desc=\u002200-cdc4a8317948f6c167d6287db83209d3-613f756477ec74e2-00\u0022", "Strict-Transport-Security": "max-age=15724800; includeSubDomains; preload", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-test-westus2-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": [ "nosniff", "nosniff" ], "x-ms-response-type": "standard", - "x-request-time": "0.695" + "x-request-time": "0.918" }, "ResponseBody": { "id": "azureml://registries/testFeed/components/sample_command_component_basic/versions/1", @@ -135,11 +135,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 03:19:44 GMT", + "Date": "Fri, 23 Sep 2022 16:33:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-b48b6d18cc9a1edf0d27697f85de369f-9b56f7a758d73348-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-357b66444da24bcbd3a2f13126dea0ae-f5b88b55491f5956-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -148,11 +148,11 @@ ], "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a7fe9000-3c1f-428a-9278-7fdf22fc906c", - "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-correlation-request-id": "5036d05f-48b3-48d4-91c3-07493cb32b8b", + "x-ms-ratelimit-remaining-subscription-reads": "11911", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T031944Z:a7fe9000-3c1f-428a-9278-7fdf22fc906c", - "x-request-time": "0.035" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163344Z:5036d05f-48b3-48d4-91c3-07493cb32b8b", + "x-request-time": "0.041" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -161,8 +161,8 @@ "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T11:47:20.6013506\u002B00:00", - "modifiedOn": "2022-09-15T11:47:27.309088\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -180,32 +180,19 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 2, - "targetNodeCount": 3, + "currentNodeCount": 1, + "targetNodeCount": 4, "nodeStateCounts": { "preparingNodeCount": 0, "runningNodeCount": 1, - "idleNodeCount": 1, + "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-21T03:15:09.363\u002B00:00", - "errors": [ - { - "error": { - "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_f2ed5044e5ef6d4cc6a1165242dbad63c6fe8feb2fac3841f0e0ff7ab92fae75_d: There is not enough disk space on the node", - "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - } - ] - } - } - ], + "allocationStateTransitionTime": "2022-09-23T16:31:36.634\u002B00:00", + "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_automl_job_in_pipeline.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_automl_job_in_pipeline.json index 264a93c08007..8caeb9ffbc87 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_automl_job_in_pipeline.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_automl_job_in_pipeline.json @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:59:06 GMT", + "Date": "Fri, 23 Sep 2022 16:52:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-d81eebb04aa03004781cd9b37143ea7e-db6233809985a5fb-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-d81ad167dbb4d810f5f87e0a85620efc-2ba9228d84520b4a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b6c33bcb-b816-493b-94d1-e1471d555360", - "x-ms-ratelimit-remaining-subscription-reads": "11910", + "x-ms-correlation-request-id": "a3e878e1-a443-4fc2-91a0-f2eee2f1c1ec", + "x-ms-ratelimit-remaining-subscription-reads": "11818", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085906Z:b6c33bcb-b816-493b-94d1-e1471d555360", - "x-request-time": "0.116" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165218Z:a3e878e1-a443-4fc2-91a0-f2eee2f1c1ec", + "x-request-time": "0.086" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -47,17 +47,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -79,21 +79,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:59:08 GMT", + "Date": "Fri, 23 Sep 2022 16:52:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-2ae9159c8a42e8970eb1cbdaf524ed8c-eab7d2275af9fb78-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-0d5384345b05c7da5aacb3505fa5e5b8-5c9478b0d962c5f2-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "644e8fbd-1ab4-43ac-bfc4-a651b44917b8", - "x-ms-ratelimit-remaining-subscription-writes": "1146", + "x-ms-correlation-request-id": "e1ecf640-d42d-47e5-9624-b4f33bc8c71a", + "x-ms-ratelimit-remaining-subscription-writes": "1085", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085909Z:644e8fbd-1ab4-43ac-bfc4-a651b44917b8", - "x-request-time": "0.128" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165220Z:e1ecf640-d42d-47e5-9624-b4f33bc8c71a", + "x-request-time": "0.114" }, "ResponseBody": { "secretsType": "AccountKey", @@ -101,14 +101,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:59:10 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:52:23 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -118,9 +118,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 08:59:09 GMT", - "ETag": "\u00220x8DA9ABCB2F66FF1\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:00:47 GMT", + "Date": "Fri, 23 Sep 2022 16:52:21 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -129,10 +129,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:00:47 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ca7591cf-36a6-4425-bb3d-579cd587b206", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -141,20 +141,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:59:11 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:52:24 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 08:59:09 GMT", + "Date": "Fri, 23 Sep 2022 16:52:21 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -167,7 +167,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -185,7 +185,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -193,27 +193,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:59:11 GMT", + "Date": "Fri, 23 Sep 2022 16:52:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-edb151d371101ec8a75c8de3ea428ca1-c373ed1feffd947f-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-10365cb1aad4a0d191a7bdf7b0a523bf-c590c8e0b8fc0c96-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1760ace2-3b79-4d04-8346-21702ce4c974", - "x-ms-ratelimit-remaining-subscription-writes": "1092", + "x-ms-correlation-request-id": "568d33ba-b5a1-43f9-bd8c-d91e44d30910", + "x-ms-ratelimit-remaining-subscription-writes": "963", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085911Z:1760ace2-3b79-4d04-8346-21702ce4c974", - "x-request-time": "0.113" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165223Z:568d33ba-b5a1-43f9-bd8c-d91e44d30910", + "x-request-time": "0.074" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -225,13 +225,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-20T04:00:48.9804975\u002B00:00", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T08:59:11.4887111\u002B00:00", + "lastModifiedAt": "2022-09-23T16:52:23.1451478\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -256,7 +256,7 @@ "isArchived": false, "componentSpec": { "command": "ls ${{inputs.automl_output}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-Minimal/versions/1", "name": "azureml_anonymous", "tags": {}, @@ -279,24 +279,24 @@ "Cache-Control": "no-cache", "Content-Length": "1708", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:59:13 GMT", + "Date": "Fri, 23 Sep 2022 16:52:24 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-735dc6a1e1f6bca4a60ae2a803afe2d1-df38395731d71b9f-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-95005e19b428c57441b99ac4a7c5679b-9b3be1d52b68a04a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0a024a7d-2e34-4549-b8a9-f71458331b1c", - "x-ms-ratelimit-remaining-subscription-writes": "1091", + "x-ms-correlation-request-id": "f59b0316-c3b2-4ddb-a176-6414af238eed", + "x-ms-ratelimit-remaining-subscription-writes": "962", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085913Z:0a024a7d-2e34-4549-b8a9-f71458331b1c", - "x-request-time": "0.372" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165225Z:f59b0316-c3b2-4ddb-a176-6414af238eed", + "x-request-time": "0.533" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a7a7352e-c319-4eb0-918d-8641357b1d04", - "name": "a7a7352e-c319-4eb0-918d-8641357b1d04", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/8c507b10-d1d1-40ed-ab40-e8428dfe7524", + "name": "8c507b10-d1d1-40ed-ab40-e8428dfe7524", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -306,7 +306,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "a7a7352e-c319-4eb0-918d-8641357b1d04", + "version": "8c507b10-d1d1-40ed-ab40-e8428dfe7524", "display_name": "show_output", "is_deterministic": "True", "type": "command", @@ -316,7 +316,7 @@ "optional": "False" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-Minimal/versions/1", "resources": { "instance_count": "1" @@ -326,10 +326,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T03:04:29.9939482\u002B00:00", + "createdAt": "2022-09-23T16:52:25.3059494\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T03:04:30.1544909\u002B00:00", + "lastModifiedAt": "2022-09-23T16:52:25.3059494\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -350,24 +350,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:59:14 GMT", + "Date": "Fri, 23 Sep 2022 16:52:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-f95c4f909b4e34e01f6e8fe25e8478e8-e468986a25d857ce-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-8212038d7a22c4fdbceccff176110190-3ac2b04ff78a02aa-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "59706a97-88d2-4ee2-8c27-492b4c6a87a3", - "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-correlation-request-id": "40080d11-9380-4c4c-aad1-e680c9b94bf3", + "x-ms-ratelimit-remaining-subscription-reads": "11817", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085914Z:59706a97-88d2-4ee2-8c27-492b4c6a87a3", - "x-request-time": "0.099" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165228Z:40080d11-9380-4c4c-aad1-e680c9b94bf3", + "x-request-time": "0.091" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -382,17 +382,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -414,21 +414,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:59:15 GMT", + "Date": "Fri, 23 Sep 2022 16:52:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-218e2502e56dc5fc2f630a1f37322982-ae59b09ed5dd8b73-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-b2eb3352f04c18737ac380fe4b798413-dc131e9bdc85926f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "776dc9fa-9224-46a4-8dcc-16ead34ee0ab", - "x-ms-ratelimit-remaining-subscription-writes": "1145", + "x-ms-correlation-request-id": "2aff3e51-129b-417e-b7c9-fb43e15e5893", + "x-ms-ratelimit-remaining-subscription-writes": "1084", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085915Z:776dc9fa-9224-46a4-8dcc-16ead34ee0ab", - "x-request-time": "0.084" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165228Z:2aff3e51-129b-417e-b7c9-fb43e15e5893", + "x-request-time": "0.090" }, "ResponseBody": { "secretsType": "AccountKey", @@ -436,14 +436,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/train/MLTable", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/train/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:59:17 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:52:31 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -453,9 +453,9 @@ "Content-Length": "161", "Content-MD5": "h3r6/Xpef\u002BHb9IhiMc/SFQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 08:59:16 GMT", - "ETag": "\u00220x8DA9B7E02851053\u0022", - "Last-Modified": "Wed, 21 Sep 2022 03:04:33 GMT", + "Date": "Fri, 23 Sep 2022 16:52:29 GMT", + "ETag": "\u00220x8DA9D7A95A994CD\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:45:04 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -464,32 +464,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 03:04:33 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:45:04 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "0cfe2dbf-718f-47c4-9fb3-9e0b1d1d8aa4", + "x-ms-meta-name": "bc774afd-57f2-43b9-b726-f8edc4eb3383", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "a2b67d0e-35c9-4647-a4eb-a732f156ee34", + "x-ms-meta-version": "2c87ed00-5ed3-4609-9d91-12cdf0a4dffd", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/train/MLTable", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/train/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:59:17 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:52:32 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 08:59:16 GMT", + "Date": "Fri, 23 Sep 2022 16:52:29 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -516,24 +516,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:59:17 GMT", + "Date": "Fri, 23 Sep 2022 16:52:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-bb3884f649b857767063fc017859a3de-a493d26a9b08e043-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-00a505003060d7426792d513fc1acafc-096f6e44296090a9-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1a4951b3-e639-4685-a131-fd12609991d9", - "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-correlation-request-id": "1e983d38-9970-43df-acc6-05148d41c2bf", + "x-ms-ratelimit-remaining-subscription-reads": "11816", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085918Z:1a4951b3-e639-4685-a131-fd12609991d9", - "x-request-time": "0.112" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165231Z:1e983d38-9970-43df-acc6-05148d41c2bf", + "x-request-time": "0.081" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -548,17 +548,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -580,21 +580,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:59:20 GMT", + "Date": "Fri, 23 Sep 2022 16:52:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-cb49845b21d8fe4c2f57b679a5f8c89f-553f300dcf2c9685-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-92942b55a49e5a675d73c7b53b606820-71200298d29e9fc8-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4efdc38f-507d-4e59-bf77-761296839213", - "x-ms-ratelimit-remaining-subscription-writes": "1144", + "x-ms-correlation-request-id": "4547d666-9b9b-482f-b164-ad42ae215eb0", + "x-ms-ratelimit-remaining-subscription-writes": "1083", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085920Z:4efdc38f-507d-4e59-bf77-761296839213", - "x-request-time": "0.113" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165232Z:4547d666-9b9b-482f-b164-ad42ae215eb0", + "x-request-time": "0.093" }, "ResponseBody": { "secretsType": "AccountKey", @@ -602,14 +602,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/valid/MLTable", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/valid/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:59:22 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:52:34 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -619,9 +619,9 @@ "Content-Length": "161", "Content-MD5": "qA3bLWn7gYC8gSAWfKEZnQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 08:59:20 GMT", - "ETag": "\u00220x8DA9B7E046A5283\u0022", - "Last-Modified": "Wed, 21 Sep 2022 03:04:36 GMT", + "Date": "Fri, 23 Sep 2022 16:52:31 GMT", + "ETag": "\u00220x8DA9D7A97A764F3\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:45:08 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -630,32 +630,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 03:04:36 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:45:07 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "70de9a9c-9b8e-43b2-ab28-1b74f5cb5f67", + "x-ms-meta-name": "13565d14-8846-4698-8c06-507da58d7494", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "cba62776-a06c-48a6-9b96-fd3aa49d31fe", + "x-ms-meta-version": "214c3221-dbc1-4934-baff-790510ec40f4", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/valid/MLTable", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/valid/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:59:22 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:52:35 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 08:59:21 GMT", + "Date": "Fri, 23 Sep 2022 16:52:32 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -682,24 +682,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:59:23 GMT", + "Date": "Fri, 23 Sep 2022 16:52:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-b7df06de17cfea17acd9d136387d2c26-b24604fc2e934efa-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-0b4f2504201521355ef3b650a54f21bb-4efd2df008cbae0f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8eaadd80-bf8c-482e-8c6d-c7904557dfb1", - "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-correlation-request-id": "2132d4d6-ce3d-4ccf-b257-4b6cbe107abb", + "x-ms-ratelimit-remaining-subscription-reads": "11815", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085923Z:8eaadd80-bf8c-482e-8c6d-c7904557dfb1", - "x-request-time": "0.091" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165234Z:2132d4d6-ce3d-4ccf-b257-4b6cbe107abb", + "x-request-time": "0.078" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -714,17 +714,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -746,21 +746,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:59:24 GMT", + "Date": "Fri, 23 Sep 2022 16:52:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-1c8a454e9c1c4d2947d880559f282f11-3fb1b0f00d2247db-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-1605ec866e7d5517ccc1062085003ffa-e3295f757e2993d1-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "723f1656-921f-47e4-811b-5af1bbc889a6", - "x-ms-ratelimit-remaining-subscription-writes": "1143", + "x-ms-correlation-request-id": "cd21e0ee-9a76-43dd-b8be-ac526cdc9cd2", + "x-ms-ratelimit-remaining-subscription-writes": "1082", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085924Z:723f1656-921f-47e4-811b-5af1bbc889a6", - "x-request-time": "0.111" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165235Z:cd21e0ee-9a76-43dd-b8be-ac526cdc9cd2", + "x-request-time": "0.089" }, "ResponseBody": { "secretsType": "AccountKey", @@ -768,14 +768,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/test/MLTable", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/test/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:59:26 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:52:38 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -785,9 +785,9 @@ "Content-Length": "160", "Content-MD5": "\u002Bzzu\u002BdOpxOfZaP9Md/7L5A==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 08:59:24 GMT", - "ETag": "\u00220x8DA9B7E06381875\u0022", - "Last-Modified": "Wed, 21 Sep 2022 03:04:39 GMT", + "Date": "Fri, 23 Sep 2022 16:52:36 GMT", + "ETag": "\u00220x8DA9D7A99C7371F\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:45:11 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -796,32 +796,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 03:04:39 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:45:11 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "a9bc9f62-a615-4f9b-8e9e-28fb46a4ccf8", + "x-ms-meta-name": "f1853404-0933-46af-922a-d159df5aa250", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "71e40048-fc35-4b8d-8781-4eb0422d760d", + "x-ms-meta-version": "d7676597-9bee-4a5f-863c-80a293fc6b86", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/test/MLTable", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/test/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:59:26 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:52:39 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 08:59:25 GMT", + "Date": "Fri, 23 Sep 2022 16:52:36 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -840,7 +840,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "2239", + "Content-Length": "2257", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -915,8 +915,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "BUILDER", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a7a7352e-c319-4eb0-918d-8641357b1d04" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/8c507b10-d1d1-40ed-ab40-e8428dfe7524" } }, "outputs": { @@ -933,22 +934,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4848", + "Content-Length": "4874", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:59:33 GMT", + "Date": "Fri, 23 Sep 2022 16:52:47 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-a10ec4909d1003422e43895bf3688507-6820cb9e28567755-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-e6a8a541ec2b5244c5daffcc30640288-2a874aba294f3eb7-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "14eadf28-1965-4ae3-887d-f14deec0455d", - "x-ms-ratelimit-remaining-subscription-writes": "1090", + "x-ms-correlation-request-id": "9739a7b7-9a4d-405d-aa5e-fc8083698686", + "x-ms-ratelimit-remaining-subscription-writes": "961", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085934Z:14eadf28-1965-4ae3-887d-f14deec0455d", - "x-request-time": "3.337" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165247Z:9739a7b7-9a4d-405d-aa5e-fc8083698686", + "x-request-time": "3.877" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -1047,8 +1048,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "BUILDER", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a7a7352e-c319-4eb0-918d-8641357b1d04" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/8c507b10-d1d1-40ed-ab40-e8428dfe7524" } }, "inputs": { @@ -1082,7 +1084,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T08:59:33.5777797\u002B00:00", + "createdAt": "2022-09-23T16:52:46.5817628\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_basic_component.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_basic_component.json index 2c4dd54f7614..484aae8e7aad 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_basic_component.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_basic_component.json @@ -15,11 +15,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:49:05 GMT", + "Date": "Fri, 23 Sep 2022 16:35:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-fd3e5ac5a843cdbef8ebc6d99401b85b-f2e891c4f23c308b-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-25904eb55a1ac63cdf5fbee75cc82dd1-ff5bd03e8db97c4d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -28,11 +28,11 @@ ], "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "695c0975-a83e-4f0d-8be4-96ac474f62a6", - "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-correlation-request-id": "cf6bc211-381c-43fe-966a-2090d83e3f5d", + "x-ms-ratelimit-remaining-subscription-reads": "11889", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T084906Z:695c0975-a83e-4f0d-8be4-96ac474f62a6", - "x-request-time": "0.090" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163551Z:cf6bc211-381c-43fe-966a-2090d83e3f5d", + "x-request-time": "0.037" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -41,8 +41,8 @@ "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T11:47:20.6013506\u002B00:00", - "modifiedOn": "2022-09-15T11:47:27.309088\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -60,44 +60,19 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 0, + "currentNodeCount": 1, "targetNodeCount": 4, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 0, + "runningNodeCount": 1, "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-21T08:36:35.389\u002B00:00", - "errors": [ - { - "error": { - "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_92fbcd8f75321f6d485a668091b97888e36091744f4980c61f41b4675223dea0_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_c0b012c40824023b5c6231b76a58d1b2e3740b50bda3c31c9581a6b24c5aef5f_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_c737656408b129608bd5c73fa736ea4216046607cd2bd40f61a3e18e3bc82a31_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_d926d2653334081d0c6ac00169793cd4b57455955641cb3b62f1127b332fafe9_d: There is not enough disk space on the node", - "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - }, - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - }, - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - }, - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - } - ] - } - } - ], + "allocationStateTransitionTime": "2022-09-23T16:31:36.634\u002B00:00", + "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -122,11 +97,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:49:07 GMT", + "Date": "Fri, 23 Sep 2022 16:35:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-8c394df7d8941caa7aa251c57fb59bb5-09499bad90cec234-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-49e9193620fea008780ea4cce88d31f1-bff595de316d96cc-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -135,11 +110,11 @@ ], "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c9a46be3-4832-4f90-b9ad-69156d5da621", - "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-correlation-request-id": "84c7c277-c978-4806-b261-da80f1f86313", + "x-ms-ratelimit-remaining-subscription-reads": "11888", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T084908Z:c9a46be3-4832-4f90-b9ad-69156d5da621", - "x-request-time": "0.084" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163557Z:84c7c277-c978-4806-b261-da80f1f86313", + "x-request-time": "0.146" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -154,17 +129,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -186,21 +161,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:49:08 GMT", + "Date": "Fri, 23 Sep 2022 16:35:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-5e5c88aa48318d03942afab6fe6253fa-e109996c04349610-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-c0ffaf3f36040c35cc8c30f843c21e44-183a6ecc8bafa5c3-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8ad12033-792c-4c9b-a777-7a2af27f87a0", - "x-ms-ratelimit-remaining-subscription-writes": "1192", + "x-ms-correlation-request-id": "61a313a2-5084-4221-8906-f0f780c272e1", + "x-ms-ratelimit-remaining-subscription-writes": "1132", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T084909Z:8ad12033-792c-4c9b-a777-7a2af27f87a0", - "x-request-time": "0.082" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163559Z:61a313a2-5084-4221-8906-f0f780c272e1", + "x-request-time": "0.081" }, "ResponseBody": { "secretsType": "AccountKey", @@ -208,14 +183,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src/hello.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src/hello.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:49:10 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:36:01 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -225,9 +200,9 @@ "Content-Length": "29", "Content-MD5": "Su6WKXXx57Itf5DK8YwOyA==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 08:49:09 GMT", - "ETag": "\u00220x8DA9B7C8D862996\u0022", - "Last-Modified": "Wed, 21 Sep 2022 02:54:07 GMT", + "Date": "Fri, 23 Sep 2022 16:35:59 GMT", + "ETag": "\u00220x8DA9D7739E4D733\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:21:02 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -236,10 +211,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 02:54:07 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:21:02 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "2d60fb81-b7eb-47c7-83c9-9da1a6771251", + "x-ms-meta-name": "ac6f84f0-1d4a-4bd2-9f0b-b943ec2b8c8c", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -248,20 +223,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/src/hello.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/src/hello.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:49:11 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:36:02 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 08:49:11 GMT", + "Date": "Fri, 23 Sep 2022 16:35:59 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -274,7 +249,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2d60fb81-b7eb-47c7-83c9-9da1a6771251/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac6f84f0-1d4a-4bd2-9f0b-b943ec2b8c8c/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -292,7 +267,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src" } }, "StatusCode": 200, @@ -300,11 +275,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:49:12 GMT", + "Date": "Fri, 23 Sep 2022 16:36:01 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-85220d0a7c03d10517c8389bd2953586-832b3a92729ea2d6-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-0d8f42cb19a9cab00f139c982f6371bb-39d6d46e98a45a48-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -313,14 +288,14 @@ ], "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6c8d799e-f5cf-49fd-9810-59f0144b6b18", - "x-ms-ratelimit-remaining-subscription-writes": "1191", + "x-ms-correlation-request-id": "24bde393-12af-4920-a803-770d14f6b678", + "x-ms-ratelimit-remaining-subscription-writes": "1063", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T084913Z:6c8d799e-f5cf-49fd-9810-59f0144b6b18", - "x-request-time": "0.076" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163601Z:24bde393-12af-4920-a803-770d14f6b678", + "x-request-time": "0.144" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2d60fb81-b7eb-47c7-83c9-9da1a6771251/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac6f84f0-1d4a-4bd2-9f0b-b943ec2b8c8c/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -332,13 +307,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src" }, "systemData": { - "createdAt": "2022-09-21T02:54:09.0530021\u002B00:00", + "createdAt": "2022-09-23T15:21:03.126663\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T08:49:13.6455259\u002B00:00", + "lastModifiedAt": "2022-09-23T16:36:01.1594095\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -363,7 +338,7 @@ "isArchived": false, "componentSpec": { "command": "python hello.py", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2d60fb81-b7eb-47c7-83c9-9da1a6771251/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac6f84f0-1d4a-4bd2-9f0b-b943ec2b8c8c/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "name": "azureml_anonymous", "tags": {}, @@ -380,26 +355,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1598", + "Content-Length": "1600", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:49:15 GMT", + "Date": "Fri, 23 Sep 2022 16:36:03 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-cf3efc81d1c7922941f896f77baa87ec-d875e15a28666bdb-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-ac5a87820d90c8233d641a09c332ab77-d0e98481938aacb8-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d57b351f-b3ae-48f8-aa86-62c869f1ec83", - "x-ms-ratelimit-remaining-subscription-writes": "1190", + "x-ms-correlation-request-id": "35a379fb-d516-46eb-9983-12cba1e25ca1", + "x-ms-ratelimit-remaining-subscription-writes": "1062", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T084915Z:d57b351f-b3ae-48f8-aa86-62c869f1ec83", - "x-request-time": "0.297" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163603Z:35a379fb-d516-46eb-9983-12cba1e25ca1", + "x-request-time": "0.477" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/53d4c707-621e-4845-a588-52b805e48b4a", - "name": "53d4c707-621e-4845-a588-52b805e48b4a", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2903ce1e-7e81-472b-821d-46ef674cf5da", + "name": "2903ce1e-7e81-472b-821d-46ef674cf5da", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -409,11 +384,11 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "53d4c707-621e-4845-a588-52b805e48b4a", + "version": "2903ce1e-7e81-472b-821d-46ef674cf5da", "display_name": "Hello_Python_World", "is_deterministic": "True", "type": "command", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2d60fb81-b7eb-47c7-83c9-9da1a6771251/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac6f84f0-1d4a-4bd2-9f0b-b943ec2b8c8c/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -423,10 +398,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T02:54:10.2521381\u002B00:00", + "createdAt": "2022-09-23T16:36:03.0930427\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:54:10.45611\u002B00:00", + "lastModifiedAt": "2022-09-23T16:36:03.0930427\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -439,7 +414,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "927", + "Content-Length": "945", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -466,8 +441,9 @@ "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "inputs": {}, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/53d4c707-621e-4845-a588-52b805e48b4a" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2903ce1e-7e81-472b-821d-46ef674cf5da" } }, "outputs": {}, @@ -479,22 +455,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2759", + "Content-Length": "2785", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:49:21 GMT", + "Date": "Fri, 23 Sep 2022 16:36:11 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-463f9868974c5780e9b08e60332af843-a18280739f6103ad-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-456c4652aeb2dbf242bcd1ada72bb7ed-bdedf1ae40e7ed04-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b75c4a72-cd02-4de0-86fa-88386e6b79d2", - "x-ms-ratelimit-remaining-subscription-writes": "1189", + "x-ms-correlation-request-id": "ae20656a-e60b-420e-9317-0957ffb9f318", + "x-ms-ratelimit-remaining-subscription-writes": "1061", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T084921Z:b75c4a72-cd02-4de0-86fa-88386e6b79d2", - "x-request-time": "2.625" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163612Z:ae20656a-e60b-420e-9317-0957ffb9f318", + "x-request-time": "3.364" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -556,8 +532,9 @@ "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "inputs": {}, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/53d4c707-621e-4845-a588-52b805e48b4a" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2903ce1e-7e81-472b-821d-46ef674cf5da" } }, "inputs": {}, @@ -565,7 +542,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T08:49:21.3298437\u002B00:00", + "createdAt": "2022-09-23T16:36:11.4388297\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_basic_pipeline.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_basic_pipeline.json index d1517ac9fc72..d3dae0027b64 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_basic_pipeline.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_basic_pipeline.json @@ -15,11 +15,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:49:46 GMT", + "Date": "Fri, 23 Sep 2022 17:37:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-35f1f8cd770616a9eeb4d7b3507d8371-b0b8b39944ede9ab-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-073dcfc6e4a93cb8451ff6a656f92f4f-f816c9c56d6c619f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -28,11 +28,11 @@ ], "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5555b380-84c5-48e3-b9c9-d40f593a0e19", - "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-correlation-request-id": "3b42d4b7-fb82-4434-9892-7078ed94e895", + "x-ms-ratelimit-remaining-subscription-reads": "11999", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T084946Z:5555b380-84c5-48e3-b9c9-d40f593a0e19", - "x-request-time": "0.036" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173741Z:3b42d4b7-fb82-4434-9892-7078ed94e895", + "x-request-time": "0.034" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -41,8 +41,8 @@ "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T11:47:20.6013506\u002B00:00", - "modifiedOn": "2022-09-15T11:47:27.309088\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -60,23 +60,23 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 0, + "currentNodeCount": 1, "targetNodeCount": 4, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 0, + "runningNodeCount": 1, "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-21T08:36:35.389\u002B00:00", + "allocationState": "Steady", + "allocationStateTransitionTime": "2022-09-23T17:36:35.188\u002B00:00", "errors": [ { "error": { "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_92fbcd8f75321f6d485a668091b97888e36091744f4980c61f41b4675223dea0_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_c0b012c40824023b5c6231b76a58d1b2e3740b50bda3c31c9581a6b24c5aef5f_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_c737656408b129608bd5c73fa736ea4216046607cd2bd40f61a3e18e3bc82a31_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_d926d2653334081d0c6ac00169793cd4b57455955641cb3b62f1127b332fafe9_d: There is not enough disk space on the node", + "message": "ComputeNode.Id=tvmps_363864b505daf64a62c550b3039bf88a46c953293d3b4013e4cf21c28d5e312b_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_ae1eeb6a8f3122c9bccdf09343b2e3cd8217911e792aac6cd3d94797ad4b0ad4_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_c6e688f61710764bba9d4ebb13a6e8b9182eca42a7dc5ec038eda668590ef1b3_d: There is not enough disk space on the node", "details": [ { "code": "Message", @@ -86,10 +86,6 @@ "code": "Message", "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." }, - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - }, { "code": "Message", "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." @@ -122,11 +118,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:49:48 GMT", + "Date": "Fri, 23 Sep 2022 17:37:44 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-9091558dd20534cd73d29d51ce4ceb7f-1d7548172073b6a8-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-de566617c6eef55f1b3755b9cc3ef8fe-0c622bbbb203e1c1-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -135,11 +131,11 @@ ], "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "65678634-d74b-4da7-b1a9-6b93faeb10bd", - "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-correlation-request-id": "6da9c6e7-aad7-4488-9dda-7f442aee9d7b", + "x-ms-ratelimit-remaining-subscription-reads": "11998", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T084948Z:65678634-d74b-4da7-b1a9-6b93faeb10bd", - "x-request-time": "0.071" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173744Z:6da9c6e7-aad7-4488-9dda-7f442aee9d7b", + "x-request-time": "0.123" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -154,17 +150,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -186,21 +182,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:49:49 GMT", + "Date": "Fri, 23 Sep 2022 17:37:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-ed5248ce2638c345f1267901bca37bbe-f7dc00c31665f998-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-9dd75834a324816cfab920ef7e191629-9108ace86dc876d3-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "879a8976-e9c3-4a09-a452-af8100b46cf2", - "x-ms-ratelimit-remaining-subscription-writes": "1190", + "x-ms-correlation-request-id": "b3710dc8-68af-4ec1-be47-15fd818be3ec", + "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T084950Z:879a8976-e9c3-4a09-a452-af8100b46cf2", - "x-request-time": "0.097" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173745Z:b3710dc8-68af-4ec1-be47-15fd818be3ec", + "x-request-time": "0.082" }, "ResponseBody": { "secretsType": "AccountKey", @@ -208,14 +204,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/componentA_src/hello.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/componentA_src/hello.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:49:51 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:37:47 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -225,9 +221,9 @@ "Content-Length": "53", "Content-MD5": "JcVyvV7VC/XN43pN0fqtww==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 08:49:50 GMT", - "ETag": "\u00220x8DA9B7CA427AE8F\u0022", - "Last-Modified": "Wed, 21 Sep 2022 02:54:45 GMT", + "Date": "Fri, 23 Sep 2022 17:37:45 GMT", + "ETag": "\u00220x8DA9D81D3CBD044\u0022", + "Last-Modified": "Fri, 23 Sep 2022 16:36:55 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -236,10 +232,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 02:54:45 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 16:36:55 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "d4c62421-22eb-4d64-acb6-fc15b42bcfe4", + "x-ms-meta-name": "00549dcf-3aee-4658-bb2f-a61227cb8046", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -248,20 +244,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/componentA_src/hello.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/componentA_src/hello.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:49:52 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:37:48 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 08:49:51 GMT", + "Date": "Fri, 23 Sep 2022 17:37:45 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -274,7 +270,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/d4c62421-22eb-4d64-acb6-fc15b42bcfe4/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/00549dcf-3aee-4658-bb2f-a61227cb8046/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -292,7 +288,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/componentA_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/componentA_src" } }, "StatusCode": 200, @@ -300,11 +296,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:49:51 GMT", + "Date": "Fri, 23 Sep 2022 17:37:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-7176900db06f9e42d9073ca0c6cabf6a-436a375f9c0a7dab-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-6808eeb9fbc7ef7c5ff1f51739c97762-074db65e4d0209f7-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -313,14 +309,14 @@ ], "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "05d34955-da47-45bf-b4ab-1adf30246bed", - "x-ms-ratelimit-remaining-subscription-writes": "1185", + "x-ms-correlation-request-id": "9ea7dfa6-ad00-4042-994f-c8639eca5b77", + "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T084952Z:05d34955-da47-45bf-b4ab-1adf30246bed", - "x-request-time": "0.094" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173748Z:9ea7dfa6-ad00-4042-994f-c8639eca5b77", + "x-request-time": "0.137" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/d4c62421-22eb-4d64-acb6-fc15b42bcfe4/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/00549dcf-3aee-4658-bb2f-a61227cb8046/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -332,13 +328,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/componentA_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/componentA_src" }, "systemData": { - "createdAt": "2022-09-21T02:54:46.6703684\u002B00:00", + "createdAt": "2022-09-23T16:36:56.3225996\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T08:49:52.0847597\u002B00:00", + "lastModifiedAt": "2022-09-23T17:37:48.5620271\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -363,7 +359,7 @@ "isArchived": false, "componentSpec": { "command": "python hello.py", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/d4c62421-22eb-4d64-acb6-fc15b42bcfe4/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/00549dcf-3aee-4658-bb2f-a61227cb8046/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "name": "azureml_anonymous", "tags": {}, @@ -380,26 +376,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1592", + "Content-Length": "1591", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:49:53 GMT", + "Date": "Fri, 23 Sep 2022 17:37:49 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-4d4cd7db011d8305c6691409dc1320df-11b624394d83c2dd-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-8914fba9f03594fb95217e82f0aaf9b5-fa4c4e9e7e1fa885-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "76133cf1-7a7d-4b27-bb95-de849ad47882", - "x-ms-ratelimit-remaining-subscription-writes": "1184", + "x-ms-correlation-request-id": "d4113525-ecd1-4581-b2fc-205893537d19", + "x-ms-ratelimit-remaining-subscription-writes": "1198", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T084953Z:76133cf1-7a7d-4b27-bb95-de849ad47882", - "x-request-time": "0.307" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173749Z:d4113525-ecd1-4581-b2fc-205893537d19", + "x-request-time": "0.276" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/c1c9563a-f1be-4a3c-b209-0d1b48cd4c6a", - "name": "c1c9563a-f1be-4a3c-b209-0d1b48cd4c6a", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/0791f735-e766-4699-a1b6-e278c3d9ae4f", + "name": "0791f735-e766-4699-a1b6-e278c3d9ae4f", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -409,11 +405,11 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "c1c9563a-f1be-4a3c-b209-0d1b48cd4c6a", + "version": "0791f735-e766-4699-a1b6-e278c3d9ae4f", "display_name": "componentA", "is_deterministic": "True", "type": "command", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/d4c62421-22eb-4d64-acb6-fc15b42bcfe4/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/00549dcf-3aee-4658-bb2f-a61227cb8046/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -423,10 +419,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T02:54:47.7574464\u002B00:00", + "createdAt": "2022-09-23T16:36:57.9392547\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:54:47.9475438\u002B00:00", + "lastModifiedAt": "2022-09-23T16:36:58.116282\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -447,11 +443,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:49:54 GMT", + "Date": "Fri, 23 Sep 2022 17:37:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-22f3aea4f321989a16722bc6159c3a9d-2411bc2aba7b87dc-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-bbbd5df39cca28c72f8c5b65311c456f-f6f592b308ff4fcc-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -460,11 +456,11 @@ ], "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "74a3051e-6a6c-40f3-986a-c140bb8dde05", - "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-correlation-request-id": "c1536db1-f4d6-4c2a-a3bb-20480fb47a37", + "x-ms-ratelimit-remaining-subscription-reads": "11997", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T084954Z:74a3051e-6a6c-40f3-986a-c140bb8dde05", - "x-request-time": "0.092" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173750Z:c1536db1-f4d6-4c2a-a3bb-20480fb47a37", + "x-request-time": "0.082" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -479,17 +475,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -511,21 +507,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:49:55 GMT", + "Date": "Fri, 23 Sep 2022 17:37:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-d6051130f152073528e1aa0ae2ca226a-5c82d20148214102-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-ec1bde67e5eb3dc899b39fd36c1694df-41e754bceb68bf4d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4d9d5f53-42bc-47ee-a7f8-ce7c5b782540", - "x-ms-ratelimit-remaining-subscription-writes": "1189", + "x-ms-correlation-request-id": "928beefd-7ac1-4394-9b31-a90a37eb4357", + "x-ms-ratelimit-remaining-subscription-writes": "1198", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T084956Z:4d9d5f53-42bc-47ee-a7f8-ce7c5b782540", - "x-request-time": "0.216" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173750Z:928beefd-7ac1-4394-9b31-a90a37eb4357", + "x-request-time": "0.197" }, "ResponseBody": { "secretsType": "AccountKey", @@ -533,14 +529,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/componentB_src/hello.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/componentB_src/hello.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:49:57 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:37:53 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -550,9 +546,9 @@ "Content-Length": "53", "Content-MD5": "luoaNFw6so/d3O4t2zB6qQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 08:49:56 GMT", - "ETag": "\u00220x8DA9B7CA72933FA\u0022", - "Last-Modified": "Wed, 21 Sep 2022 02:54:50 GMT", + "Date": "Fri, 23 Sep 2022 17:37:50 GMT", + "ETag": "\u00220x8DA9D81D7507A19\u0022", + "Last-Modified": "Fri, 23 Sep 2022 16:37:01 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -561,10 +557,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 02:54:50 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 16:37:00 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "48643f84-20dd-4b3c-9e32-d3230ea4957e", + "x-ms-meta-name": "bfcdb9ea-ab0f-47f4-a644-fb9e50fa4643", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -573,20 +569,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/componentB_src/hello.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/componentB_src/hello.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:49:58 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:37:53 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 08:49:56 GMT", + "Date": "Fri, 23 Sep 2022 17:37:50 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -599,7 +595,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/48643f84-20dd-4b3c-9e32-d3230ea4957e/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/bfcdb9ea-ab0f-47f4-a644-fb9e50fa4643/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -617,7 +613,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/componentB_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/componentB_src" } }, "StatusCode": 200, @@ -625,11 +621,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:49:57 GMT", + "Date": "Fri, 23 Sep 2022 17:37:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-e2ff766f39612ad0a0f92bcad90d8c6f-ffd8ea1ad2b61ec6-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-ac4111f2ae06563954291784a5a66c40-7aa7bd8f5ea28420-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -638,14 +634,14 @@ ], "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6d68b261-d490-47e6-91ef-437abec10888", - "x-ms-ratelimit-remaining-subscription-writes": "1183", + "x-ms-correlation-request-id": "6aaa4f24-bd16-4297-9737-5e035076f62a", + "x-ms-ratelimit-remaining-subscription-writes": "1197", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T084957Z:6d68b261-d490-47e6-91ef-437abec10888", - "x-request-time": "0.096" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173752Z:6aaa4f24-bd16-4297-9737-5e035076f62a", + "x-request-time": "0.170" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/48643f84-20dd-4b3c-9e32-d3230ea4957e/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/bfcdb9ea-ab0f-47f4-a644-fb9e50fa4643/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -657,13 +653,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/componentB_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/componentB_src" }, "systemData": { - "createdAt": "2022-09-21T02:54:51.7504795\u002B00:00", + "createdAt": "2022-09-23T16:37:02.1295552\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T08:49:57.7009966\u002B00:00", + "lastModifiedAt": "2022-09-23T17:37:52.2353598\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -688,7 +684,7 @@ "isArchived": false, "componentSpec": { "command": "python hello.py", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/48643f84-20dd-4b3c-9e32-d3230ea4957e/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/bfcdb9ea-ab0f-47f4-a644-fb9e50fa4643/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "name": "azureml_anonymous", "tags": {}, @@ -707,24 +703,24 @@ "Cache-Control": "no-cache", "Content-Length": "1592", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:49:58 GMT", + "Date": "Fri, 23 Sep 2022 17:37:52 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-b1b711d55d88ee628bb83e7c95c65cdd-021bf4615a420c34-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-9980a34a2baaccdb42e157673a4461ab-cc88b32a8260fde4-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7693cbbe-3ef3-4d96-90a7-5d8094b77e6e", - "x-ms-ratelimit-remaining-subscription-writes": "1182", + "x-ms-correlation-request-id": "6e862622-b0ff-468d-a578-8382b06bc946", + "x-ms-ratelimit-remaining-subscription-writes": "1196", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T084959Z:7693cbbe-3ef3-4d96-90a7-5d8094b77e6e", - "x-request-time": "0.281" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173753Z:6e862622-b0ff-468d-a578-8382b06bc946", + "x-request-time": "0.236" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/516de7b7-ab20-4a47-8a92-1f6ce5b805fe", - "name": "516de7b7-ab20-4a47-8a92-1f6ce5b805fe", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/3f60e4ad-0395-4c42-8c88-ec2d28736f6a", + "name": "3f60e4ad-0395-4c42-8c88-ec2d28736f6a", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -734,11 +730,11 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "516de7b7-ab20-4a47-8a92-1f6ce5b805fe", + "version": "3f60e4ad-0395-4c42-8c88-ec2d28736f6a", "display_name": "componentB", "is_deterministic": "True", "type": "command", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/48643f84-20dd-4b3c-9e32-d3230ea4957e/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/bfcdb9ea-ab0f-47f4-a644-fb9e50fa4643/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -748,10 +744,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T02:54:52.9805013\u002B00:00", + "createdAt": "2022-09-23T16:37:04.1859314\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:54:53.1796071\u002B00:00", + "lastModifiedAt": "2022-09-23T16:37:04.3417642\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -772,11 +768,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:49:59 GMT", + "Date": "Fri, 23 Sep 2022 17:37:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-e978e1138463adb94c4f98c20d21b8e7-376d5ab1552463eb-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-7c11511e65a6d9cd6c17750f0fce1d7e-bfcb92fc2cc02fb7-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -785,11 +781,11 @@ ], "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c275de81-7e10-4880-adde-aaa3cbb94ef1", - "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-correlation-request-id": "b2872da4-6f06-47c1-bc85-d78fcf33935f", + "x-ms-ratelimit-remaining-subscription-reads": "11996", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T084959Z:c275de81-7e10-4880-adde-aaa3cbb94ef1", - "x-request-time": "0.075" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173754Z:b2872da4-6f06-47c1-bc85-d78fcf33935f", + "x-request-time": "0.122" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -804,17 +800,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -836,21 +832,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:50:00 GMT", + "Date": "Fri, 23 Sep 2022 17:37:54 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-fcaf4a58801cc50ae50a731d6f37db62-c230936de5334f36-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-0fe64a21a20d21bb0b96fd7a5b393ad3-49081b1fb1788ed8-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "190f33d4-228d-40f9-9493-75011d3cf257", - "x-ms-ratelimit-remaining-subscription-writes": "1188", + "x-ms-correlation-request-id": "593c676a-3a57-4371-8236-4856784a75fb", + "x-ms-ratelimit-remaining-subscription-writes": "1197", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085000Z:190f33d4-228d-40f9-9493-75011d3cf257", - "x-request-time": "0.097" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173754Z:593c676a-3a57-4371-8236-4856784a75fb", + "x-request-time": "0.084" }, "ResponseBody": { "secretsType": "AccountKey", @@ -858,14 +854,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/componentC_src/hello.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/componentC_src/hello.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:50:02 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:37:56 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -875,9 +871,9 @@ "Content-Length": "53", "Content-MD5": "Z/lGktRqBkhugTlnvieIFw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 08:50:00 GMT", - "ETag": "\u00220x8DA9B7CAA3BCDD8\u0022", - "Last-Modified": "Wed, 21 Sep 2022 02:54:56 GMT", + "Date": "Fri, 23 Sep 2022 17:37:54 GMT", + "ETag": "\u00220x8DA9D81DBEC1005\u0022", + "Last-Modified": "Fri, 23 Sep 2022 16:37:09 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -886,10 +882,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 02:54:55 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 16:37:08 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ee921f76-dea0-476f-b889-11cda208178a", + "x-ms-meta-name": "56c4599c-37d0-4686-ad03-5b69197fdeec", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -898,20 +894,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/componentC_src/hello.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/componentC_src/hello.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:50:02 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:37:57 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 08:50:01 GMT", + "Date": "Fri, 23 Sep 2022 17:37:54 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -924,7 +920,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ee921f76-dea0-476f-b889-11cda208178a/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/56c4599c-37d0-4686-ad03-5b69197fdeec/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -942,7 +938,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/componentC_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/componentC_src" } }, "StatusCode": 200, @@ -950,11 +946,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:50:02 GMT", + "Date": "Fri, 23 Sep 2022 17:37:55 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-26c49dd54b1e0dce52b25e88a5d2fd35-247dc0a5ad3642a1-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-70f25d148aac2699a1b61a630ee64f9d-e1dc44de6ade6514-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -963,14 +959,14 @@ ], "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "10c367ec-b621-41c8-a65d-c561342d6bc4", - "x-ms-ratelimit-remaining-subscription-writes": "1181", + "x-ms-correlation-request-id": "9f5c256a-e639-4a31-b5d1-874ca4c4080d", + "x-ms-ratelimit-remaining-subscription-writes": "1195", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085002Z:10c367ec-b621-41c8-a65d-c561342d6bc4", - "x-request-time": "0.102" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173756Z:9f5c256a-e639-4a31-b5d1-874ca4c4080d", + "x-request-time": "0.087" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ee921f76-dea0-476f-b889-11cda208178a/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/56c4599c-37d0-4686-ad03-5b69197fdeec/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -982,13 +978,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/componentC_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/componentC_src" }, "systemData": { - "createdAt": "2022-09-21T02:54:56.8573389\u002B00:00", + "createdAt": "2022-09-23T16:37:10.9854029\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T08:50:02.2463564\u002B00:00", + "lastModifiedAt": "2022-09-23T17:37:56.064618\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -1013,7 +1009,7 @@ "isArchived": false, "componentSpec": { "command": "python hello.py", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ee921f76-dea0-476f-b889-11cda208178a/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/56c4599c-37d0-4686-ad03-5b69197fdeec/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "name": "azureml_anonymous", "tags": {}, @@ -1030,26 +1026,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1592", + "Content-Length": "1591", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:50:04 GMT", + "Date": "Fri, 23 Sep 2022 17:37:56 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-0e1a89622d61fec0e8fc3962440c81c0-9ffd24af436aa7da-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-f7adc27ad808b92af38895f143fa4dbe-219c113db40f95a5-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f472149f-3ef3-4e97-8724-c7507b29c54d", - "x-ms-ratelimit-remaining-subscription-writes": "1180", + "x-ms-correlation-request-id": "a413d043-0543-4157-83fc-5e1776af58f8", + "x-ms-ratelimit-remaining-subscription-writes": "1194", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085004Z:f472149f-3ef3-4e97-8724-c7507b29c54d", - "x-request-time": "0.315" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173756Z:a413d043-0543-4157-83fc-5e1776af58f8", + "x-request-time": "0.242" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/fa605d0c-9fa8-4da4-aaee-88e35a03ef3a", - "name": "fa605d0c-9fa8-4da4-aaee-88e35a03ef3a", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/34380448-39cb-48b3-aa20-e071c930802a", + "name": "34380448-39cb-48b3-aa20-e071c930802a", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1059,11 +1055,11 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "fa605d0c-9fa8-4da4-aaee-88e35a03ef3a", + "version": "34380448-39cb-48b3-aa20-e071c930802a", "display_name": "componentC", "is_deterministic": "True", "type": "command", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ee921f76-dea0-476f-b889-11cda208178a/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/56c4599c-37d0-4686-ad03-5b69197fdeec/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -1073,10 +1069,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T02:54:57.9936308\u002B00:00", + "createdAt": "2022-09-23T16:37:13.888344\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:54:58.1265047\u002B00:00", + "lastModifiedAt": "2022-09-23T16:37:14.0378836\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -1089,7 +1085,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1926", + "Content-Length": "1980", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -1117,8 +1113,9 @@ "computeId": null, "inputs": {}, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/c1c9563a-f1be-4a3c-b209-0d1b48cd4c6a" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/0791f735-e766-4699-a1b6-e278c3d9ae4f" }, "component_b_job": { "resources": null, @@ -1132,8 +1129,9 @@ "computeId": null, "inputs": {}, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/516de7b7-ab20-4a47-8a92-1f6ce5b805fe" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/3f60e4ad-0395-4c42-8c88-ec2d28736f6a" }, "component_c_job": { "resources": null, @@ -1147,8 +1145,9 @@ "computeId": null, "inputs": {}, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/fa605d0c-9fa8-4da4-aaee-88e35a03ef3a" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/34380448-39cb-48b3-aa20-e071c930802a" } }, "outputs": {}, @@ -1160,22 +1159,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4026", + "Content-Length": "4104", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:50:14 GMT", + "Date": "Fri, 23 Sep 2022 17:38:03 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-6704b1702971ec9077d3b8a86bbb2a94-1a363488816e3721-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-350c8b40ced8491c79eda703f7fd1acf-54d1a2f5462dde7e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4334d5e5-b0e6-46a0-acd8-1c398948be31", - "x-ms-ratelimit-remaining-subscription-writes": "1179", + "x-ms-correlation-request-id": "cb64576d-b600-43e0-9985-4635b334b157", + "x-ms-ratelimit-remaining-subscription-writes": "1193", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085015Z:4334d5e5-b0e6-46a0-acd8-1c398948be31", - "x-request-time": "3.597" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173804Z:cb64576d-b600-43e0-9985-4635b334b157", + "x-request-time": "3.173" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -1238,8 +1237,9 @@ "computeId": null, "inputs": {}, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/c1c9563a-f1be-4a3c-b209-0d1b48cd4c6a" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/0791f735-e766-4699-a1b6-e278c3d9ae4f" }, "component_b_job": { "resources": null, @@ -1253,8 +1253,9 @@ "computeId": null, "inputs": {}, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/516de7b7-ab20-4a47-8a92-1f6ce5b805fe" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/3f60e4ad-0395-4c42-8c88-ec2d28736f6a" }, "component_c_job": { "resources": null, @@ -1268,8 +1269,9 @@ "computeId": null, "inputs": {}, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/fa605d0c-9fa8-4da4-aaee-88e35a03ef3a" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/34380448-39cb-48b3-aa20-e071c930802a" } }, "inputs": {}, @@ -1277,7 +1279,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T08:50:14.7728463\u002B00:00", + "createdAt": "2022-09-23T17:38:03.4428344\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_component_with_input_output.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_component_with_input_output.json index aa34fe48b6c7..ec91167d119a 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_component_with_input_output.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_component_with_input_output.json @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:49:26 GMT", + "Date": "Fri, 23 Sep 2022 17:37:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-ccfb746c1a42adf36552c12a7ae79237-bfaf541fb8d3b0d3-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-1fa9e6badd4e9ee248803d10b2482802-28ea16ca9b47ad77-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fbafd394-51ce-480f-8ed5-bf50f5f2cedf", - "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-correlation-request-id": "92599a4c-b7b8-4772-baba-5c2205c6cb34", + "x-ms-ratelimit-remaining-subscription-reads": "11998", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T084926Z:fbafd394-51ce-480f-8ed5-bf50f5f2cedf", - "x-request-time": "0.066" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173707Z:92599a4c-b7b8-4772-baba-5c2205c6cb34", + "x-request-time": "0.046" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -41,8 +41,8 @@ "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T11:47:20.6013506\u002B00:00", - "modifiedOn": "2022-09-15T11:47:27.309088\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -71,12 +71,12 @@ "preemptedNodeCount": 0 }, "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-21T08:36:35.389\u002B00:00", + "allocationStateTransitionTime": "2022-09-23T17:33:36.582\u002B00:00", "errors": [ { "error": { "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_92fbcd8f75321f6d485a668091b97888e36091744f4980c61f41b4675223dea0_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_c0b012c40824023b5c6231b76a58d1b2e3740b50bda3c31c9581a6b24c5aef5f_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_c737656408b129608bd5c73fa736ea4216046607cd2bd40f61a3e18e3bc82a31_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_d926d2653334081d0c6ac00169793cd4b57455955641cb3b62f1127b332fafe9_d: There is not enough disk space on the node", + "message": "ComputeNode.Id=tvmps_363864b505daf64a62c550b3039bf88a46c953293d3b4013e4cf21c28d5e312b_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_ae1eeb6a8f3122c9bccdf09343b2e3cd8217911e792aac6cd3d94797ad4b0ad4_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_c6e688f61710764bba9d4ebb13a6e8b9182eca42a7dc5ec038eda668590ef1b3_d: There is not enough disk space on the node", "details": [ { "code": "Message", @@ -86,10 +86,6 @@ "code": "Message", "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." }, - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - }, { "code": "Message", "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." @@ -122,24 +118,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:49:29 GMT", + "Date": "Fri, 23 Sep 2022 17:37:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-5b6d2fb63b682a8c178a7ed14a42ea6c-7322993417e843e9-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-fa4f92248a71b1349aec056c2ee7233a-e1dc77fb29499133-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "66cec7f0-bfd1-45a9-a4a3-d448da1fae20", - "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-correlation-request-id": "bd56d55a-8873-45a0-a8c4-f0601d789f72", + "x-ms-ratelimit-remaining-subscription-reads": "11997", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T084929Z:66cec7f0-bfd1-45a9-a4a3-d448da1fae20", - "x-request-time": "0.107" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173710Z:bd56d55a-8873-45a0-a8c4-f0601d789f72", + "x-request-time": "0.090" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -154,17 +150,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -186,21 +182,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:49:30 GMT", + "Date": "Fri, 23 Sep 2022 17:37:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-40d8db2781ea3f9fa5603878a5101bfe-e65cb6609c40d4e2-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-bdf26168e896e9c8805512c15038ad52-bc9fcec0a4149e7c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "baabb8d2-8be4-4328-a3cb-f1c5a2cfff21", - "x-ms-ratelimit-remaining-subscription-writes": "1191", + "x-ms-correlation-request-id": "e5a77e5f-3325-45ce-8732-6698d59c3b92", + "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T084930Z:baabb8d2-8be4-4328-a3cb-f1c5a2cfff21", - "x-request-time": "0.086" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173710Z:e5a77e5f-3325-45ce-8732-6698d59c3b92", + "x-request-time": "0.112" }, "ResponseBody": { "secretsType": "AccountKey", @@ -208,14 +204,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src/hello.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src/hello.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:49:31 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:37:12 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -225,9 +221,9 @@ "Content-Length": "1047", "Content-MD5": "7Nw2lUMzv7gyeKW\u002BUjU8nw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 08:49:30 GMT", - "ETag": "\u00220x8DA9B7C98CE13B3\u0022", - "Last-Modified": "Wed, 21 Sep 2022 02:54:26 GMT", + "Date": "Fri, 23 Sep 2022 17:37:11 GMT", + "ETag": "\u00220x8DA9D81C4C24338\u0022", + "Last-Modified": "Fri, 23 Sep 2022 16:36:30 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -236,10 +232,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 02:54:26 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 16:36:30 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "1f1f8eed-eef4-46ab-b1ad-97a827a59cd6", + "x-ms-meta-name": "bb609702-6837-4cd9-9bee-d567644aa06e", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -248,20 +244,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/src/hello.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/src/hello.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:49:32 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:37:14 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 08:49:30 GMT", + "Date": "Fri, 23 Sep 2022 17:37:12 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -274,7 +270,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/1f1f8eed-eef4-46ab-b1ad-97a827a59cd6/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/bb609702-6837-4cd9-9bee-d567644aa06e/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -292,7 +288,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src" } }, "StatusCode": 200, @@ -300,27 +296,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:49:32 GMT", + "Date": "Fri, 23 Sep 2022 17:37:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-7975dae01aee7231fc4cae8decdbae4c-3071b8980d1026fc-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-daa4e4296681330ac10af1f7d9db21e4-1882876064ef2773-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a8f52eb8-bf64-4b26-b2dc-0fd38b75633d", - "x-ms-ratelimit-remaining-subscription-writes": "1188", + "x-ms-correlation-request-id": "b9e0de46-b005-4c2d-81f7-88ba04ff7075", + "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T084933Z:a8f52eb8-bf64-4b26-b2dc-0fd38b75633d", - "x-request-time": "0.105" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173714Z:b9e0de46-b005-4c2d-81f7-88ba04ff7075", + "x-request-time": "0.100" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/1f1f8eed-eef4-46ab-b1ad-97a827a59cd6/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/bb609702-6837-4cd9-9bee-d567644aa06e/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -332,13 +328,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src" }, "systemData": { - "createdAt": "2022-09-21T02:54:27.5553838\u002B00:00", + "createdAt": "2022-09-23T16:36:31.1396116\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T08:49:33.0257775\u002B00:00", + "lastModifiedAt": "2022-09-23T17:37:13.9443637\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -363,7 +359,7 @@ "isArchived": false, "componentSpec": { "command": "python hello.py --input_data ${{inputs.sample_input_data}} --input_string ${{inputs.sample_input_string}} --output_data ${{outputs.sample_output_data}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/1f1f8eed-eef4-46ab-b1ad-97a827a59cd6/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/bb609702-6837-4cd9-9bee-d567644aa06e/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "name": "azureml_anonymous", "tags": {}, @@ -394,24 +390,24 @@ "Cache-Control": "no-cache", "Content-Length": "2120", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:49:34 GMT", + "Date": "Fri, 23 Sep 2022 17:37:14 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-4d62dda4a279d126cc6f7e60b5d9c7e6-06ef2d44c0e66de6-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-8f931a85d41534a51fe3363dbed64573-682a1b5eea0db481-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "37de0f32-8974-4d6a-bb41-bd02fc3a2034", - "x-ms-ratelimit-remaining-subscription-writes": "1187", + "x-ms-correlation-request-id": "053896bf-c6dd-44b5-9595-16919e3e4f7e", + "x-ms-ratelimit-remaining-subscription-writes": "1198", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T084934Z:37de0f32-8974-4d6a-bb41-bd02fc3a2034", - "x-request-time": "0.339" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173714Z:053896bf-c6dd-44b5-9595-16919e3e4f7e", + "x-request-time": "0.311" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2e841c93-67c6-4e03-9fc3-c131af67a0e0", - "name": "2e841c93-67c6-4e03-9fc3-c131af67a0e0", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/96240aec-f151-458c-b8e2-d56b5830f9a2", + "name": "96240aec-f151-458c-b8e2-d56b5830f9a2", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -421,7 +417,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "2e841c93-67c6-4e03-9fc3-c131af67a0e0", + "version": "96240aec-f151-458c-b8e2-d56b5830f9a2", "display_name": "Hello_Python_World", "is_deterministic": "True", "type": "command", @@ -441,7 +437,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/1f1f8eed-eef4-46ab-b1ad-97a827a59cd6/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/bb609702-6837-4cd9-9bee-d567644aa06e/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -451,10 +447,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T02:54:29.0228333\u002B00:00", + "createdAt": "2022-09-23T16:36:33.1633526\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:54:29.1985247\u002B00:00", + "lastModifiedAt": "2022-09-23T16:36:33.3579353\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -467,7 +463,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1565", + "Content-Length": "1583", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -517,8 +513,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2e841c93-67c6-4e03-9fc3-c131af67a0e0" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/96240aec-f151-458c-b8e2-d56b5830f9a2" } }, "outputs": { @@ -535,22 +532,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3855", + "Content-Length": "3881", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:49:42 GMT", + "Date": "Fri, 23 Sep 2022 17:37:21 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-de4172db42081d08b75560cb6a49ec39-e053deb870c72a6c-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-5d34a478ede8e49a8e68ed9bbd762ffb-95ab5e999e9cf143-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0bfec498-8675-48db-b968-255d5e72bd0b", - "x-ms-ratelimit-remaining-subscription-writes": "1186", + "x-ms-correlation-request-id": "15831a49-fe0c-4544-901b-f5e78165d75a", + "x-ms-ratelimit-remaining-subscription-writes": "1197", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T084942Z:0bfec498-8675-48db-b968-255d5e72bd0b", - "x-request-time": "2.675" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173721Z:15831a49-fe0c-4544-901b-f5e78165d75a", + "x-request-time": "3.273" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -626,8 +623,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2e841c93-67c6-4e03-9fc3-c131af67a0e0" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/96240aec-f151-458c-b8e2-d56b5830f9a2" } }, "inputs": { @@ -654,7 +652,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T08:49:41.7967991\u002B00:00", + "createdAt": "2022-09-23T17:37:21.2142937\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_dataset_input.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_dataset_input.json index 68da9f76ae56..90cfe20a2152 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_dataset_input.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_dataset_input.json @@ -10,29 +10,284 @@ "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, + "StatusCode": 404, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1017", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 16:39:32 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-eastus2-02", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "50d0594b-c360-429c-bc7e-f98f993eb3db", + "x-ms-ratelimit-remaining-subscription-reads": "11870", + "x-ms-response-type": "error", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163932Z:50d0594b-c360-429c-bc7e-f98f993eb3db", + "x-request-time": "0.056" + }, + "ResponseBody": { + "error": { + "code": "UserError", + "message": "Data version sampledata1235:2 (dataContainerName:version) not found.", + "details": [], + "additionalInfo": [ + { + "type": "ComponentName", + "info": { + "value": "managementfrontend" + } + }, + { + "type": "Correlation", + "info": { + "value": { + "operation": "57efaa49a02b7508fa78708ce0d6cab4", + "request": "61b9edd44742410e" + } + } + }, + { + "type": "Environment", + "info": { + "value": "eastus2" + } + }, + { + "type": "Location", + "info": { + "value": "eastus2" + } + }, + { + "type": "Time", + "info": { + "value": "2022-09-23T16:39:32.8561939\u002B00:00" + } + }, + { + "type": "InnerError", + "info": { + "value": { + "code": "NotFoundError", + "innerError": null + } + } + } + ] + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:51:57 GMT", + "Date": "Fri, 23 Sep 2022 16:39:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-8bae01af1eb83d7043ba9bfb55c7dd99-e0efc0781f39dd51-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-630213d6085741436d7c4c1a92fb39c6-4a3b3b861fd86a6e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "21eeebd4-edb1-470a-af60-8d6aae742c0e", + "x-ms-ratelimit-remaining-subscription-reads": "11869", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163934Z:21eeebd4-edb1-470a-af60-8d6aae742c0e", + "x-request-time": "0.126" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", + "name": "workspaceblobstore", + "type": "Microsoft.MachineLearningServices/workspaces/datastores", + "properties": { + "description": null, + "tags": null, + "properties": null, + "isDefault": true, + "credentials": { + "credentialsType": "AccountKey" + }, + "datastoreType": "AzureBlob", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", + "endpoint": "core.windows.net", + "protocol": "https", + "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" + }, + "systemData": { + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", + "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", + "createdByType": "Application", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", + "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", + "lastModifiedByType": "Application" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore/listSecrets?api-version=2022-05-01", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "0", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 16:39:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-70315958c4c7beae735b6d38d6812178-77d52352e4277233-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-eastus2-02", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "2fde1cd4-efb5-420b-b0c5-7d1374a8a403", + "x-ms-ratelimit-remaining-subscription-writes": "1120", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163934Z:2fde1cd4-efb5-420b-b0c5-7d1374a8a403", + "x-request-time": "0.090" + }, + "ResponseBody": { + "secretsType": "AccountKey", + "key": "dGhpcyBpcyBmYWtlIGtleQ==" + } + }, + { + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/data/sample.csv", + "RequestMethod": "HEAD", + "RequestHeaders": { + "Accept": "application/xml", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:39:36 GMT", + "x-ms-version": "2021-08-06" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Accept-Ranges": "bytes", + "Content-Length": "508", + "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", + "Content-Type": "application/octet-stream", + "Date": "Fri, 23 Sep 2022 16:39:34 GMT", + "ETag": "\u00220x8DA9D7BE5A046D9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:54:28 GMT", + "Server": [ + "Windows-Azure-Blob/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": "Origin", + "x-ms-access-tier": "Hot", + "x-ms-access-tier-inferred": "true", + "x-ms-blob-type": "BlockBlob", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:54:27 GMT", + "x-ms-lease-state": "available", + "x-ms-lease-status": "unlocked", + "x-ms-meta-name": "a144e40a-1670-4168-a96f-eba38109cc45", + "x-ms-meta-upload_status": "completed", + "x-ms-meta-version": "a2d99187-0868-4b22-add5-a121322288a5", + "x-ms-server-encrypted": "true", + "x-ms-version": "2021-08-06" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/data/sample.csv", + "RequestMethod": "HEAD", + "RequestHeaders": { + "Accept": "application/xml", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:39:37 GMT", + "x-ms-version": "2021-08-06" + }, + "RequestBody": null, + "StatusCode": 404, + "ResponseHeaders": { + "Date": "Fri, 23 Sep 2022 16:39:34 GMT", + "Server": [ + "Windows-Azure-Blob/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Transfer-Encoding": "chunked", + "Vary": "Origin", + "x-ms-error-code": "BlobNotFound", + "x-ms-version": "2021-08-06" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/data/sampledata1235/versions/2?api-version=2022-05-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "258", + "Content-Type": "application/json", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": { + "properties": { + "description": "sample dataset", + "properties": {}, + "tags": {}, + "isAnonymous": false, + "isArchived": false, + "dataType": "uri_folder", + "dataUri": "azureml://datastores/workspaceblobstore/paths/LocalUpload/00000000000000000000000000000000/data" + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "839", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 16:39:35 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/data/sampledata1235/versions/2?api-version=2022-05-01", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-62ff7a04fc7eb052b73dc8d09f7586ce-cd2c72c16e688fb8-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "77f8d12f-0628-4e6d-9572-e5538a11023e", - "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-correlation-request-id": "7e7e352e-4eb9-4861-b2fe-4e0c99f0d38e", + "x-ms-ratelimit-remaining-subscription-writes": "1034", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085157Z:77f8d12f-0628-4e6d-9572-e5538a11023e", - "x-request-time": "0.032" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163936Z:7e7e352e-4eb9-4861-b2fe-4e0c99f0d38e", + "x-request-time": "0.261" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/data/sampledata1235/versions/2", @@ -48,10 +303,10 @@ "dataType": "uri_folder" }, "systemData": { - "createdAt": "2022-09-21T02:56:50.1054405\u002B00:00", + "createdAt": "2022-09-23T16:39:36.0306928\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:56:50.1623539\u002B00:00" + "lastModifiedAt": "2022-09-23T16:39:36.0493592\u002B00:00" } } }, @@ -70,23 +325,23 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:52:01 GMT", + "Date": "Fri, 23 Sep 2022 16:39:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-8b50d2785bca2eb91626465cd8658746-4ff1b726a80413b0-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-a25bdde2b86d65d3cf8cfb3016d2fdb2-7daf79631e2d9858-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ed13c0b7-0615-4efb-ae93-655bdd0ecff0", - "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-correlation-request-id": "e2eaa032-62fc-495f-8339-0d42a20a40cf", + "x-ms-ratelimit-remaining-subscription-reads": "11868", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085201Z:ed13c0b7-0615-4efb-ae93-655bdd0ecff0", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163938Z:e2eaa032-62fc-495f-8339-0d42a20a40cf", "x-request-time": "0.044" }, "ResponseBody": { @@ -96,8 +351,8 @@ "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T11:47:20.6013506\u002B00:00", - "modifiedOn": "2022-09-15T11:47:27.309088\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -115,44 +370,19 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 0, - "targetNodeCount": 2, + "currentNodeCount": 3, + "targetNodeCount": 3, "nodeStateCounts": { "preparingNodeCount": 0, "runningNodeCount": 0, - "idleNodeCount": 0, + "idleNodeCount": 3, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-21T08:50:16.129\u002B00:00", - "errors": [ - { - "error": { - "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_92fbcd8f75321f6d485a668091b97888e36091744f4980c61f41b4675223dea0_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_c0b012c40824023b5c6231b76a58d1b2e3740b50bda3c31c9581a6b24c5aef5f_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_c737656408b129608bd5c73fa736ea4216046607cd2bd40f61a3e18e3bc82a31_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_d926d2653334081d0c6ac00169793cd4b57455955641cb3b62f1127b332fafe9_d: There is not enough disk space on the node", - "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - }, - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - }, - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - }, - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - } - ] - } - } - ], + "allocationStateTransitionTime": "2022-09-23T16:39:36.144\u002B00:00", + "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -177,24 +407,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:52:02 GMT", + "Date": "Fri, 23 Sep 2022 16:39:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-d60037237c8ba7670841fb593b294864-79146d0f92274b32-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-c1444d559ff5bfda0222bf93cae684f8-9c129addf189f3b4-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5761835f-1652-44f7-8b98-88e58c491983", - "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-correlation-request-id": "b37033b9-eff3-45d6-a371-4f52f9a81307", + "x-ms-ratelimit-remaining-subscription-reads": "11867", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085202Z:5761835f-1652-44f7-8b98-88e58c491983", - "x-request-time": "0.030" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163939Z:b37033b9-eff3-45d6-a371-4f52f9a81307", + "x-request-time": "0.058" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -203,8 +433,8 @@ "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T11:47:20.6013506\u002B00:00", - "modifiedOn": "2022-09-15T11:47:27.309088\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -222,44 +452,19 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 0, - "targetNodeCount": 2, + "currentNodeCount": 3, + "targetNodeCount": 3, "nodeStateCounts": { "preparingNodeCount": 0, "runningNodeCount": 0, - "idleNodeCount": 0, + "idleNodeCount": 3, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-21T08:50:16.129\u002B00:00", - "errors": [ - { - "error": { - "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_92fbcd8f75321f6d485a668091b97888e36091744f4980c61f41b4675223dea0_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_c0b012c40824023b5c6231b76a58d1b2e3740b50bda3c31c9581a6b24c5aef5f_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_c737656408b129608bd5c73fa736ea4216046607cd2bd40f61a3e18e3bc82a31_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_d926d2653334081d0c6ac00169793cd4b57455955641cb3b62f1127b332fafe9_d: There is not enough disk space on the node", - "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - }, - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - }, - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - }, - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - } - ] - } - } - ], + "allocationStateTransitionTime": "2022-09-23T16:39:36.144\u002B00:00", + "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -284,24 +489,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:52:04 GMT", + "Date": "Fri, 23 Sep 2022 16:39:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-25096553b939ed63017fc35c90a33d7b-0f874a9361222026-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-c779fa5423308a8ae72f79d63cb0f9fc-fa6d4ab5e4234103-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3e2cea89-1eae-4b69-a470-4e5265172fe8", - "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-correlation-request-id": "34667ad1-91f2-4254-b969-58f18146f796", + "x-ms-ratelimit-remaining-subscription-reads": "11866", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085205Z:3e2cea89-1eae-4b69-a470-4e5265172fe8", - "x-request-time": "0.087" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163939Z:34667ad1-91f2-4254-b969-58f18146f796", + "x-request-time": "0.094" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -316,17 +521,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -348,21 +553,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:52:06 GMT", + "Date": "Fri, 23 Sep 2022 16:39:39 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-e75356ed16186ac7637d8f4e7e0e4eba-72d8f3084bed7206-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-a6e55096aeb2220d3829bfc4e16fc81e-c8035f5f6c25a1ce-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "23daafa4-367a-4483-a18a-e14cfeb0f913", - "x-ms-ratelimit-remaining-subscription-writes": "1180", + "x-ms-correlation-request-id": "b9dfb70b-8cf1-458b-805c-123a45d6d466", + "x-ms-ratelimit-remaining-subscription-writes": "1119", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085206Z:23daafa4-367a-4483-a18a-e14cfeb0f913", - "x-request-time": "0.159" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163940Z:b9dfb70b-8cf1-458b-805c-123a45d6d466", + "x-request-time": "0.145" }, "ResponseBody": { "secretsType": "AccountKey", @@ -370,14 +575,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src/hello.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src/hello.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:52:07 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:39:42 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -387,9 +592,9 @@ "Content-Length": "1047", "Content-MD5": "7Nw2lUMzv7gyeKW\u002BUjU8nw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 08:52:06 GMT", - "ETag": "\u00220x8DA9B7C98CE13B3\u0022", - "Last-Modified": "Wed, 21 Sep 2022 02:54:26 GMT", + "Date": "Fri, 23 Sep 2022 16:39:39 GMT", + "ETag": "\u00220x8DA9D81C4C24338\u0022", + "Last-Modified": "Fri, 23 Sep 2022 16:36:30 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -398,10 +603,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 02:54:26 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 16:36:30 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "1f1f8eed-eef4-46ab-b1ad-97a827a59cd6", + "x-ms-meta-name": "bb609702-6837-4cd9-9bee-d567644aa06e", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -410,20 +615,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/src/hello.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/src/hello.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:52:08 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:39:42 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 08:52:06 GMT", + "Date": "Fri, 23 Sep 2022 16:39:40 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -436,7 +641,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/1f1f8eed-eef4-46ab-b1ad-97a827a59cd6/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/bb609702-6837-4cd9-9bee-d567644aa06e/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -454,7 +659,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src" } }, "StatusCode": 200, @@ -462,27 +667,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:52:07 GMT", + "Date": "Fri, 23 Sep 2022 16:39:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-aeaaae55488bcd1b4bb1c66c42bf0fba-8f96120c165edc04-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-b86eaa6cf13560a8f61f59fd6d7fab04-8eacf9af32d02a8c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3e592906-86d6-4ee5-8582-a19063418966", - "x-ms-ratelimit-remaining-subscription-writes": "1162", + "x-ms-correlation-request-id": "d70d1ff0-79c9-4c0f-a252-94867d107730", + "x-ms-ratelimit-remaining-subscription-writes": "1033", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085207Z:3e592906-86d6-4ee5-8582-a19063418966", - "x-request-time": "0.108" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163941Z:d70d1ff0-79c9-4c0f-a252-94867d107730", + "x-request-time": "0.103" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/1f1f8eed-eef4-46ab-b1ad-97a827a59cd6/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/bb609702-6837-4cd9-9bee-d567644aa06e/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -494,13 +699,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src" }, "systemData": { - "createdAt": "2022-09-21T02:54:27.5553838\u002B00:00", + "createdAt": "2022-09-23T16:36:31.1396116\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T08:52:07.7467619\u002B00:00", + "lastModifiedAt": "2022-09-23T16:39:41.7393395\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -525,7 +730,7 @@ "isArchived": false, "componentSpec": { "command": "python hello.py --input_data ${{inputs.sample_input_data}} --input_string ${{inputs.sample_input_string}} --output_data ${{outputs.sample_output_data}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/1f1f8eed-eef4-46ab-b1ad-97a827a59cd6/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/bb609702-6837-4cd9-9bee-d567644aa06e/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "name": "azureml_anonymous", "tags": {}, @@ -554,26 +759,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2112", + "Content-Length": "2111", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:52:10 GMT", + "Date": "Fri, 23 Sep 2022 16:39:42 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-12629ee9923e814788616b61c6fcbacd-a737d7b91e791aa3-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-da856670335ea932b335f2ef4b43b37b-4ba7bca991feb562-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5a3bcdc3-c0e7-49fd-ba77-3bebd4a994c6", - "x-ms-ratelimit-remaining-subscription-writes": "1161", + "x-ms-correlation-request-id": "fea9e4ff-0eea-457f-82ad-9e22a1d00c5a", + "x-ms-ratelimit-remaining-subscription-writes": "1032", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085210Z:5a3bcdc3-c0e7-49fd-ba77-3bebd4a994c6", - "x-request-time": "0.411" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163942Z:fea9e4ff-0eea-457f-82ad-9e22a1d00c5a", + "x-request-time": "0.297" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/789d34cb-944d-47d0-a235-22f58361bb21", - "name": "789d34cb-944d-47d0-a235-22f58361bb21", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/99d9d350-891a-4930-99f7-e09dd1ae7b20", + "name": "99d9d350-891a-4930-99f7-e09dd1ae7b20", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -583,7 +788,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "789d34cb-944d-47d0-a235-22f58361bb21", + "version": "99d9d350-891a-4930-99f7-e09dd1ae7b20", "display_name": "Hello_Python_World", "is_deterministic": "True", "type": "command", @@ -603,7 +808,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/1f1f8eed-eef4-46ab-b1ad-97a827a59cd6/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/bb609702-6837-4cd9-9bee-d567644aa06e/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -613,10 +818,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T02:55:49.8704391\u002B00:00", + "createdAt": "2022-09-23T16:38:24.952124\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:55:50.1325947\u002B00:00", + "lastModifiedAt": "2022-09-23T16:38:25.2062869\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -629,7 +834,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "2663", + "Content-Length": "2699", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -679,8 +884,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/789d34cb-944d-47d0-a235-22f58361bb21" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/99d9d350-891a-4930-99f7-e09dd1ae7b20" }, "mltable_job": { "resources": null, @@ -704,8 +910,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/789d34cb-944d-47d0-a235-22f58361bb21" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/99d9d350-891a-4930-99f7-e09dd1ae7b20" } }, "outputs": { @@ -722,22 +929,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "5185", + "Content-Length": "5237", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:52:17 GMT", + "Date": "Fri, 23 Sep 2022 16:39:49 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-7de3e63f7d713b435b2b593f9a78fa2e-aff60661de72d0c9-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-4783b3e2a68657d736b5c21920ce853b-51c47f840deb1ea9-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dd4a789f-0488-4493-8422-284e90c4dbb9", - "x-ms-ratelimit-remaining-subscription-writes": "1160", + "x-ms-correlation-request-id": "ddec5b6a-8457-480d-87f7-95cfb084bef4", + "x-ms-ratelimit-remaining-subscription-writes": "1031", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085217Z:dd4a789f-0488-4493-8422-284e90c4dbb9", - "x-request-time": "3.265" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163950Z:ddec5b6a-8457-480d-87f7-95cfb084bef4", + "x-request-time": "3.529" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -813,8 +1020,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/789d34cb-944d-47d0-a235-22f58361bb21" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/99d9d350-891a-4930-99f7-e09dd1ae7b20" }, "mltable_job": { "resources": null, @@ -838,8 +1046,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/789d34cb-944d-47d0-a235-22f58361bb21" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/99d9d350-891a-4930-99f7-e09dd1ae7b20" } }, "inputs": { @@ -866,7 +1075,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T08:52:17.3846983\u002B00:00", + "createdAt": "2022-09-23T16:39:49.8906478\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_datastore_datapath_uri_file.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_datastore_datapath_uri_file.json index 18e2ae8d59db..a49473866a3b 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_datastore_datapath_uri_file.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_datastore_datapath_uri_file.json @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:51:35 GMT", + "Date": "Fri, 23 Sep 2022 17:40:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-b4c8eeaf7e4ac1d2faaf92d348b6f7b6-57b916fc75b4b853-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-704b855c6881b05531f2e44d84b51f07-29a2c1ef2bab9d75-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ad4c002d-32c9-455d-9fe7-299dc2842816", - "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-correlation-request-id": "bd425b7f-87dc-4ba0-8360-38ff431d1e9b", + "x-ms-ratelimit-remaining-subscription-reads": "11996", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085136Z:ad4c002d-32c9-455d-9fe7-299dc2842816", - "x-request-time": "0.033" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T174045Z:bd425b7f-87dc-4ba0-8360-38ff431d1e9b", + "x-request-time": "0.035" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -41,8 +41,8 @@ "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T11:47:20.6013506\u002B00:00", - "modifiedOn": "2022-09-15T11:47:27.309088\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -60,23 +60,23 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 0, - "targetNodeCount": 2, + "currentNodeCount": 1, + "targetNodeCount": 4, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 0, + "runningNodeCount": 1, "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-21T08:50:16.129\u002B00:00", + "allocationState": "Steady", + "allocationStateTransitionTime": "2022-09-23T17:36:35.188\u002B00:00", "errors": [ { "error": { "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_92fbcd8f75321f6d485a668091b97888e36091744f4980c61f41b4675223dea0_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_c0b012c40824023b5c6231b76a58d1b2e3740b50bda3c31c9581a6b24c5aef5f_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_c737656408b129608bd5c73fa736ea4216046607cd2bd40f61a3e18e3bc82a31_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_d926d2653334081d0c6ac00169793cd4b57455955641cb3b62f1127b332fafe9_d: There is not enough disk space on the node", + "message": "ComputeNode.Id=tvmps_363864b505daf64a62c550b3039bf88a46c953293d3b4013e4cf21c28d5e312b_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_ae1eeb6a8f3122c9bccdf09343b2e3cd8217911e792aac6cd3d94797ad4b0ad4_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_c6e688f61710764bba9d4ebb13a6e8b9182eca42a7dc5ec038eda668590ef1b3_d: There is not enough disk space on the node", "details": [ { "code": "Message", @@ -86,10 +86,6 @@ "code": "Message", "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." }, - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - }, { "code": "Message", "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." @@ -122,11 +118,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:51:38 GMT", + "Date": "Fri, 23 Sep 2022 17:40:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-47ea9d246e7bec558cb4d77a4426a2aa-53cf82f93de18931-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-793ebfc22753153ffcf1d914df49cb0f-4bc9d8dc41f62b56-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -135,11 +131,11 @@ ], "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cf100009-ea11-4475-b691-f8b775317d04", - "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-correlation-request-id": "77624e4a-ce80-49bb-88d5-4fedd8223d8d", + "x-ms-ratelimit-remaining-subscription-reads": "11995", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085139Z:cf100009-ea11-4475-b691-f8b775317d04", - "x-request-time": "0.077" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T174048Z:77624e4a-ce80-49bb-88d5-4fedd8223d8d", + "x-request-time": "0.107" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -154,17 +150,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -186,21 +182,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:51:39 GMT", + "Date": "Fri, 23 Sep 2022 17:40:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-9cdbdd71b16f8a579cf6100a8a5570ae-b9c1c17b5d4669e8-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-d94164468cdb8efab61695233565a285-75d5825491193a6e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1d6394dd-f06c-405f-9a63-ca2530cd4f66", - "x-ms-ratelimit-remaining-subscription-writes": "1181", + "x-ms-correlation-request-id": "5ce51e7e-330e-443a-b344-1494c015e17c", + "x-ms-ratelimit-remaining-subscription-writes": "1198", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085140Z:1d6394dd-f06c-405f-9a63-ca2530cd4f66", - "x-request-time": "0.100" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T174049Z:5ce51e7e-330e-443a-b344-1494c015e17c", + "x-request-time": "0.130" }, "ResponseBody": { "secretsType": "AccountKey", @@ -208,14 +204,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src/hello.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src/hello.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:51:41 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:40:51 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -225,9 +221,9 @@ "Content-Length": "1257", "Content-MD5": "HHF60uhwTbG40SR3o9T4UA==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 08:51:40 GMT", - "ETag": "\u00220x8DA9B7CE1CE5521\u0022", - "Last-Modified": "Wed, 21 Sep 2022 02:56:29 GMT", + "Date": "Fri, 23 Sep 2022 17:40:49 GMT", + "ETag": "\u00220x8DA9D8225ABD60B\u0022", + "Last-Modified": "Fri, 23 Sep 2022 16:39:12 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -236,10 +232,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 02:56:28 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 16:39:12 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "eb95f757-70e6-4e61-aab6-108feec9f01d", + "x-ms-meta-name": "a3cbfc6e-e0f8-4043-8a97-efaf32c5c492", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -248,20 +244,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/src/hello.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/src/hello.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:51:42 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:40:52 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 08:51:40 GMT", + "Date": "Fri, 23 Sep 2022 17:40:49 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -274,7 +270,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/eb95f757-70e6-4e61-aab6-108feec9f01d/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/a3cbfc6e-e0f8-4043-8a97-efaf32c5c492/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -292,7 +288,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src" } }, "StatusCode": 200, @@ -300,11 +296,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:51:41 GMT", + "Date": "Fri, 23 Sep 2022 17:40:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-64f3dae208e4d07da405f23e866f587f-4a66df4a3d938e13-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-d40706fb3c2504c098d9a39d43605970-3fb5766c7b310d0f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -313,14 +309,14 @@ ], "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "85fae56d-ce43-4c40-993c-c451a6b005c6", - "x-ms-ratelimit-remaining-subscription-writes": "1165", + "x-ms-correlation-request-id": "e4a7a947-4d38-48a9-9deb-c5efb07e3615", + "x-ms-ratelimit-remaining-subscription-writes": "1196", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085142Z:85fae56d-ce43-4c40-993c-c451a6b005c6", - "x-request-time": "0.085" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T174051Z:e4a7a947-4d38-48a9-9deb-c5efb07e3615", + "x-request-time": "0.127" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/eb95f757-70e6-4e61-aab6-108feec9f01d/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/a3cbfc6e-e0f8-4043-8a97-efaf32c5c492/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -332,13 +328,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src" }, "systemData": { - "createdAt": "2022-09-21T02:56:30.4472661\u002B00:00", + "createdAt": "2022-09-23T16:39:13.7471216\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T08:51:42.632643\u002B00:00", + "lastModifiedAt": "2022-09-23T17:40:51.1920225\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -363,7 +359,7 @@ "isArchived": false, "componentSpec": { "command": "python hello.py --input_data ${{inputs.sample_input_data}} --input_string ${{inputs.sample_input_string}} --output_data ${{outputs.sample_output_data}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/eb95f757-70e6-4e61-aab6-108feec9f01d/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/a3cbfc6e-e0f8-4043-8a97-efaf32c5c492/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "name": "azureml_anonymous", "tags": {}, @@ -394,24 +390,24 @@ "Cache-Control": "no-cache", "Content-Length": "2108", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:51:44 GMT", + "Date": "Fri, 23 Sep 2022 17:40:52 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-f42533991c93c2fd6a0315e5bb4fbc54-58c2a4dd31a5ddc9-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-57d3278431765db11f237d026fe7f812-46f2a40cb4f7bfa6-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2a8e2c47-e824-4522-bd33-b5f757f76639", - "x-ms-ratelimit-remaining-subscription-writes": "1164", + "x-ms-correlation-request-id": "e2a570a7-8c34-40ec-84cd-8283869fac13", + "x-ms-ratelimit-remaining-subscription-writes": "1195", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085145Z:2a8e2c47-e824-4522-bd33-b5f757f76639", - "x-request-time": "0.349" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T174052Z:e2a570a7-8c34-40ec-84cd-8283869fac13", + "x-request-time": "0.817" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/7801545d-c0b6-4154-80d9-362638a2c21e", - "name": "7801545d-c0b6-4154-80d9-362638a2c21e", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/6b7c504d-12be-4dfb-9726-c4525204bf3b", + "name": "6b7c504d-12be-4dfb-9726-c4525204bf3b", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -421,7 +417,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "7801545d-c0b6-4154-80d9-362638a2c21e", + "version": "6b7c504d-12be-4dfb-9726-c4525204bf3b", "display_name": "Hello_Python_World", "is_deterministic": "True", "type": "command", @@ -441,7 +437,7 @@ "type": "uri_file" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/eb95f757-70e6-4e61-aab6-108feec9f01d/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/a3cbfc6e-e0f8-4043-8a97-efaf32c5c492/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -451,10 +447,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T02:56:32.4678877\u002B00:00", + "createdAt": "2022-09-23T16:39:15.2540875\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:56:32.6320955\u002B00:00", + "lastModifiedAt": "2022-09-23T16:39:15.5219901\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -467,7 +463,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1692", + "Content-Length": "1710", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -519,8 +515,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/7801545d-c0b6-4154-80d9-362638a2c21e" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/6b7c504d-12be-4dfb-9726-c4525204bf3b" } }, "outputs": { @@ -537,22 +534,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3989", + "Content-Length": "4015", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:51:53 GMT", + "Date": "Fri, 23 Sep 2022 17:40:59 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-146595fa654b2e94166e55ee9f7011ce-a602dba3f804784c-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-7561204c6f42adc5244f1024a182ac5a-b494fa9038026d29-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3d8cae46-89c5-4387-9e50-969824ef0a0b", - "x-ms-ratelimit-remaining-subscription-writes": "1163", + "x-ms-correlation-request-id": "54f3fd53-3ada-4152-a008-dd72b2954881", + "x-ms-ratelimit-remaining-subscription-writes": "1194", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085153Z:3d8cae46-89c5-4387-9e50-969824ef0a0b", - "x-request-time": "3.007" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T174059Z:54f3fd53-3ada-4152-a008-dd72b2954881", + "x-request-time": "3.225" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -629,8 +626,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/7801545d-c0b6-4154-80d9-362638a2c21e" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/6b7c504d-12be-4dfb-9726-c4525204bf3b" } }, "inputs": { @@ -657,7 +655,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T08:51:52.5639697\u002B00:00", + "createdAt": "2022-09-23T17:40:59.0618564\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_datastore_datapath_uri_folder.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_datastore_datapath_uri_folder.json index 2c3a347f5668..d0cc0c2884fd 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_datastore_datapath_uri_folder.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_datastore_datapath_uri_folder.json @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:51:15 GMT", + "Date": "Fri, 23 Sep 2022 16:38:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-c3e0b86757b65e0d25d25345c1cfc108-75f424aafc3871e5-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-7f2668949ee67df343fae3157ed670ee-6291e93b0dfd910e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c640574d-5e67-4efa-bde4-14463227f190", - "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-correlation-request-id": "416f68ef-c7f9-4d45-a0ea-6ef74e4541cd", + "x-ms-ratelimit-remaining-subscription-reads": "11874", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085115Z:c640574d-5e67-4efa-bde4-14463227f190", - "x-request-time": "0.034" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163843Z:416f68ef-c7f9-4d45-a0ea-6ef74e4541cd", + "x-request-time": "0.085" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -41,8 +41,8 @@ "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T11:47:20.6013506\u002B00:00", - "modifiedOn": "2022-09-15T11:47:27.309088\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -60,44 +60,19 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 0, - "targetNodeCount": 2, + "currentNodeCount": 3, + "targetNodeCount": 4, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 0, - "idleNodeCount": 0, + "runningNodeCount": 2, + "idleNodeCount": 1, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-21T08:50:16.129\u002B00:00", - "errors": [ - { - "error": { - "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_92fbcd8f75321f6d485a668091b97888e36091744f4980c61f41b4675223dea0_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_c0b012c40824023b5c6231b76a58d1b2e3740b50bda3c31c9581a6b24c5aef5f_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_c737656408b129608bd5c73fa736ea4216046607cd2bd40f61a3e18e3bc82a31_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_d926d2653334081d0c6ac00169793cd4b57455955641cb3b62f1127b332fafe9_d: There is not enough disk space on the node", - "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - }, - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - }, - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - }, - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - } - ] - } - } - ], + "allocationStateTransitionTime": "2022-09-23T16:35:40.357\u002B00:00", + "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -122,24 +97,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:51:17 GMT", + "Date": "Fri, 23 Sep 2022 16:38:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-c38587be7b8cf4a413f1a6e288e05b78-8301d8c6bc3badf8-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-041594192886494122ec578f49d3cfb6-265a3fc144cbb34f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7bc3232a-fb1a-43ae-a5cb-9b0e38dd8d67", - "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-correlation-request-id": "07cc084d-a42c-4f19-b259-a61c09c51cc5", + "x-ms-ratelimit-remaining-subscription-reads": "11873", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085118Z:7bc3232a-fb1a-43ae-a5cb-9b0e38dd8d67", - "x-request-time": "0.096" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163846Z:07cc084d-a42c-4f19-b259-a61c09c51cc5", + "x-request-time": "0.091" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -154,17 +129,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -186,21 +161,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:51:18 GMT", + "Date": "Fri, 23 Sep 2022 16:38:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-ccbc2df9762fc52a9bf3b22096babce3-fbbe93501a43d30f-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-ae82da6eda963aac2c2eb73ec2f7e88a-7a95f6ca09effa1c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cd8de463-0c23-409a-b89f-cfcb92dd9e22", - "x-ms-ratelimit-remaining-subscription-writes": "1182", + "x-ms-correlation-request-id": "0b12c09c-0228-4775-942b-504bdc8684fa", + "x-ms-ratelimit-remaining-subscription-writes": "1122", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085119Z:cd8de463-0c23-409a-b89f-cfcb92dd9e22", - "x-request-time": "0.092" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163847Z:0b12c09c-0228-4775-942b-504bdc8684fa", + "x-request-time": "0.099" }, "ResponseBody": { "secretsType": "AccountKey", @@ -208,14 +183,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src/hello.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src/hello.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:51:21 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:38:50 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -225,9 +200,9 @@ "Content-Length": "1047", "Content-MD5": "7Nw2lUMzv7gyeKW\u002BUjU8nw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 08:51:21 GMT", - "ETag": "\u00220x8DA9B7C98CE13B3\u0022", - "Last-Modified": "Wed, 21 Sep 2022 02:54:26 GMT", + "Date": "Fri, 23 Sep 2022 16:38:47 GMT", + "ETag": "\u00220x8DA9D81C4C24338\u0022", + "Last-Modified": "Fri, 23 Sep 2022 16:36:30 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -236,10 +211,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 02:54:26 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 16:36:30 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "1f1f8eed-eef4-46ab-b1ad-97a827a59cd6", + "x-ms-meta-name": "bb609702-6837-4cd9-9bee-d567644aa06e", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -248,20 +223,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/src/hello.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/src/hello.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:51:22 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:38:50 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 08:51:21 GMT", + "Date": "Fri, 23 Sep 2022 16:38:48 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -274,7 +249,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/1f1f8eed-eef4-46ab-b1ad-97a827a59cd6/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/bb609702-6837-4cd9-9bee-d567644aa06e/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -292,7 +267,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src" } }, "StatusCode": 200, @@ -300,27 +275,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:51:21 GMT", + "Date": "Fri, 23 Sep 2022 16:38:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-cd6742ddeafe99f4d7600fadaabe493a-b709230936aaf9bf-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-e53b7e20c980e5adb6b087718ee85b5c-80a8e9dde6ffbba2-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f5aca99e-ca17-4c8c-a57c-82c7a509facc", - "x-ms-ratelimit-remaining-subscription-writes": "1168", + "x-ms-correlation-request-id": "51649506-44f4-47ff-adc5-113c4cd0996e", + "x-ms-ratelimit-remaining-subscription-writes": "1040", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085122Z:f5aca99e-ca17-4c8c-a57c-82c7a509facc", - "x-request-time": "0.072" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163849Z:51649506-44f4-47ff-adc5-113c4cd0996e", + "x-request-time": "0.091" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/1f1f8eed-eef4-46ab-b1ad-97a827a59cd6/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/bb609702-6837-4cd9-9bee-d567644aa06e/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -332,13 +307,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src" }, "systemData": { - "createdAt": "2022-09-21T02:54:27.5553838\u002B00:00", + "createdAt": "2022-09-23T16:36:31.1396116\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T08:51:22.6345081\u002B00:00", + "lastModifiedAt": "2022-09-23T16:38:49.247708\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -363,7 +338,7 @@ "isArchived": false, "componentSpec": { "command": "python hello.py --input_data ${{inputs.sample_input_data}} --input_string ${{inputs.sample_input_string}} --output_data ${{outputs.sample_output_data}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/1f1f8eed-eef4-46ab-b1ad-97a827a59cd6/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/bb609702-6837-4cd9-9bee-d567644aa06e/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "name": "azureml_anonymous", "tags": {}, @@ -392,26 +367,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2112", + "Content-Length": "2111", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:51:23 GMT", + "Date": "Fri, 23 Sep 2022 16:38:50 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-ef96791bee1b885656b9a986a8832251-e0d3462333e2fec0-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-d5a068c358b9385e95711d2cf1350bdc-efa6b865df622009-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8d2f37fd-bd32-49b9-8ac3-f1d74f461c53", - "x-ms-ratelimit-remaining-subscription-writes": "1167", + "x-ms-correlation-request-id": "dec98e35-6b27-4123-a8ef-366121c1236f", + "x-ms-ratelimit-remaining-subscription-writes": "1039", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085124Z:8d2f37fd-bd32-49b9-8ac3-f1d74f461c53", - "x-request-time": "0.374" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163850Z:dec98e35-6b27-4123-a8ef-366121c1236f", + "x-request-time": "0.320" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/789d34cb-944d-47d0-a235-22f58361bb21", - "name": "789d34cb-944d-47d0-a235-22f58361bb21", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/99d9d350-891a-4930-99f7-e09dd1ae7b20", + "name": "99d9d350-891a-4930-99f7-e09dd1ae7b20", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -421,7 +396,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "789d34cb-944d-47d0-a235-22f58361bb21", + "version": "99d9d350-891a-4930-99f7-e09dd1ae7b20", "display_name": "Hello_Python_World", "is_deterministic": "True", "type": "command", @@ -441,7 +416,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/1f1f8eed-eef4-46ab-b1ad-97a827a59cd6/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/bb609702-6837-4cd9-9bee-d567644aa06e/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -451,10 +426,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T02:55:49.8704391\u002B00:00", + "createdAt": "2022-09-23T16:38:24.952124\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:55:50.1325947\u002B00:00", + "lastModifiedAt": "2022-09-23T16:38:25.2062869\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -467,7 +442,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1687", + "Content-Length": "1705", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -519,8 +494,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/789d34cb-944d-47d0-a235-22f58361bb21" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/99d9d350-891a-4930-99f7-e09dd1ae7b20" } }, "outputs": { @@ -537,22 +513,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3984", + "Content-Length": "4010", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:51:30 GMT", + "Date": "Fri, 23 Sep 2022 16:38:59 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-218539a03785207806a2059686b152ab-fb2ee27a4f6f2c39-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-6fe6943dd2f27de207619bec3e3f28bb-1beeafc2b785515b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "46a75627-77a1-4709-8ad9-23775cd6d6a9", - "x-ms-ratelimit-remaining-subscription-writes": "1166", + "x-ms-correlation-request-id": "a909fbac-e474-494a-bdb7-7355ffa9da0e", + "x-ms-ratelimit-remaining-subscription-writes": "1038", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085131Z:46a75627-77a1-4709-8ad9-23775cd6d6a9", - "x-request-time": "3.013" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163900Z:a909fbac-e474-494a-bdb7-7355ffa9da0e", + "x-request-time": "4.390" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -629,8 +605,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/789d34cb-944d-47d0-a235-22f58361bb21" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/99d9d350-891a-4930-99f7-e09dd1ae7b20" } }, "inputs": { @@ -657,7 +634,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T08:51:31.0738113\u002B00:00", + "createdAt": "2022-09-23T16:38:59.9030052\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_e2e_inline_components.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_e2e_inline_components.json index c5dc7dbd3d21..c3a4d3290c3e 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_e2e_inline_components.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_e2e_inline_components.json @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:56:06 GMT", + "Date": "Fri, 23 Sep 2022 16:48:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-9d5d6a1c5ef2bc3e032cec1dad3b3534-9132456681f0d21a-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-0d63f9c8af746681b4941f51e2b5d6fa-b6707fc4f855e61f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "36ae8de2-2493-4648-823e-0c72e8e7ee64", - "x-ms-ratelimit-remaining-subscription-reads": "11934", + "x-ms-correlation-request-id": "ece7fab1-432d-44e0-ab0a-95b4095a1ea9", + "x-ms-ratelimit-remaining-subscription-reads": "11842", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085607Z:36ae8de2-2493-4648-823e-0c72e8e7ee64", - "x-request-time": "0.034" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164816Z:ece7fab1-432d-44e0-ab0a-95b4095a1ea9", + "x-request-time": "0.095" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -41,8 +41,8 @@ "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T11:47:20.6013506\u002B00:00", - "modifiedOn": "2022-09-15T11:47:27.309088\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -60,36 +60,19 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 0, + "currentNodeCount": 2, "targetNodeCount": 4, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 0, + "runningNodeCount": 2, "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-21T08:54:16.356\u002B00:00", - "errors": [ - { - "error": { - "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_92fbcd8f75321f6d485a668091b97888e36091744f4980c61f41b4675223dea0_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_d926d2653334081d0c6ac00169793cd4b57455955641cb3b62f1127b332fafe9_d: There is not enough disk space on the node", - "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - }, - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - } - ] - } - } - ], + "allocationStateTransitionTime": "2022-09-23T16:47:36.504\u002B00:00", + "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -114,24 +97,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:56:09 GMT", + "Date": "Fri, 23 Sep 2022 16:48:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-2b239ce13492e85ae8e5de761330ec1f-55da50b09e6c7972-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-e35f889439dfc137c0b085bf9c3a7bbd-021389700c489596-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cfe86045-d9c7-4ade-b46d-df174780f11b", - "x-ms-ratelimit-remaining-subscription-reads": "11933", + "x-ms-correlation-request-id": "36f42627-433d-4894-b902-c1317f355771", + "x-ms-ratelimit-remaining-subscription-reads": "11841", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085610Z:cfe86045-d9c7-4ade-b46d-df174780f11b", - "x-request-time": "0.106" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164820Z:36f42627-433d-4894-b902-c1317f355771", + "x-request-time": "0.099" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -146,17 +129,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -178,21 +161,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:56:10 GMT", + "Date": "Fri, 23 Sep 2022 16:48:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-23e90708d514d1926e6d88df0543b09c-a26d68ee9b751bee-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-da0ced09d94eacb0fa7a619f9714fc8a-63d403204b5de051-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f8095cb0-7a97-4c32-99e0-e5e704b28129", - "x-ms-ratelimit-remaining-subscription-writes": "1165", + "x-ms-correlation-request-id": "f0672956-f075-43bd-867d-9e41693b3dd9", + "x-ms-ratelimit-remaining-subscription-writes": "1104", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085611Z:f8095cb0-7a97-4c32-99e0-e5e704b28129", - "x-request-time": "0.237" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164820Z:f0672956-f075-43bd-867d-9e41693b3dd9", + "x-request-time": "0.126" }, "ResponseBody": { "secretsType": "AccountKey", @@ -200,14 +183,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/train_src/train.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/train_src/train.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:56:13 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:48:23 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -217,9 +200,9 @@ "Content-Length": "1498", "Content-MD5": "bknQRwZOwpy5fofohDUViQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 08:56:11 GMT", - "ETag": "\u00220x8DA9B7C5B4B6BA9\u0022", - "Last-Modified": "Wed, 21 Sep 2022 02:52:43 GMT", + "Date": "Fri, 23 Sep 2022 16:48:21 GMT", + "ETag": "\u00220x8DA9D816B49B7F0\u0022", + "Last-Modified": "Fri, 23 Sep 2022 16:34:00 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -228,10 +211,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 02:52:43 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 16:33:59 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "39a93360-d9f5-41ff-b737-fc7a18757120", + "x-ms-meta-name": "30e97005-691d-4061-af7f-73e639ca226f", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -240,20 +223,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/train_src/train.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/train_src/train.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:56:13 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:48:23 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 08:56:12 GMT", + "Date": "Fri, 23 Sep 2022 16:48:21 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -266,7 +249,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/39a93360-d9f5-41ff-b737-fc7a18757120/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/30e97005-691d-4061-af7f-73e639ca226f/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -284,7 +267,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/train_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/train_src" } }, "StatusCode": 200, @@ -292,27 +275,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:56:12 GMT", + "Date": "Fri, 23 Sep 2022 16:48:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-700163b1059d27a352898dd853fb4956-1c157e49f3d640b3-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-9da0b13c7ae4014c7e3269fe9e759dfe-54fd6da38b609155-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3a665310-6037-4abd-ab0a-e3eef0d09370", - "x-ms-ratelimit-remaining-subscription-writes": "1122", + "x-ms-correlation-request-id": "0eadfb48-bb97-4e7a-a23d-9939f7d7087d", + "x-ms-ratelimit-remaining-subscription-writes": "993", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085613Z:3a665310-6037-4abd-ab0a-e3eef0d09370", - "x-request-time": "0.085" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164822Z:0eadfb48-bb97-4e7a-a23d-9939f7d7087d", + "x-request-time": "0.125" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/39a93360-d9f5-41ff-b737-fc7a18757120/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/30e97005-691d-4061-af7f-73e639ca226f/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -324,13 +307,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/train_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/train_src" }, "systemData": { - "createdAt": "2022-09-21T02:52:45.7528776\u002B00:00", + "createdAt": "2022-09-23T16:34:01.5388891\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T08:56:13.7797176\u002B00:00", + "lastModifiedAt": "2022-09-23T16:48:22.5343053\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -355,7 +338,7 @@ "isArchived": false, "componentSpec": { "command": "python train.py --training_data ${{inputs.training_data}} --max_epocs ${{inputs.max_epocs}} --learning_rate ${{inputs.learning_rate}} --learning_rate_schedule ${{inputs.learning_rate_schedule}} --model_output ${{outputs.model_output}} ", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/39a93360-d9f5-41ff-b737-fc7a18757120/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/30e97005-691d-4061-af7f-73e639ca226f/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "name": "azureml_anonymous", "tags": {}, @@ -391,26 +374,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2377", + "Content-Length": "2378", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:56:14 GMT", + "Date": "Fri, 23 Sep 2022 16:48:24 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-ddeed89743f5fe5034d912b8d6d4f30e-d1e41cc3997c1254-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-f2c83bd24173e9dbff5b7242fdf18d65-603c3acd6be3d8ad-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "130e1259-68f3-4445-8a3d-603fbc151312", - "x-ms-ratelimit-remaining-subscription-writes": "1121", + "x-ms-correlation-request-id": "d8138a24-f423-4fa0-bf5b-6cb0d5296c84", + "x-ms-ratelimit-remaining-subscription-writes": "992", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085615Z:130e1259-68f3-4445-8a3d-603fbc151312", - "x-request-time": "0.307" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164824Z:d8138a24-f423-4fa0-bf5b-6cb0d5296c84", + "x-request-time": "0.655" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/4f2a9aaf-23e5-4f2a-b641-9840055a9a92", - "name": "4f2a9aaf-23e5-4f2a-b641-9840055a9a92", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2c325049-f805-4128-aada-d123b849a563", + "name": "2c325049-f805-4128-aada-d123b849a563", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -420,7 +403,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "4f2a9aaf-23e5-4f2a-b641-9840055a9a92", + "version": "2c325049-f805-4128-aada-d123b849a563", "display_name": "train_job", "is_deterministic": "True", "type": "command", @@ -449,7 +432,7 @@ "type": "path" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/39a93360-d9f5-41ff-b737-fc7a18757120/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/30e97005-691d-4061-af7f-73e639ca226f/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -459,10 +442,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T03:01:28.9072858\u002B00:00", + "createdAt": "2022-09-23T16:48:24.4861781\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T03:01:29.074356\u002B00:00", + "lastModifiedAt": "2022-09-23T16:48:24.4861781\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -483,24 +466,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:56:17 GMT", + "Date": "Fri, 23 Sep 2022 16:48:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-0a70c0e724383792422e5adf90db1887-28348ba39b7492f0-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-61765c92f78000010f199a753a2d9da1-84c9d932a39bbf9a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2c6467d0-93ab-439e-b0c8-759e409b40f8", - "x-ms-ratelimit-remaining-subscription-reads": "11932", + "x-ms-correlation-request-id": "074a108d-d283-4c41-9191-8fcb2fdae236", + "x-ms-ratelimit-remaining-subscription-reads": "11840", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085617Z:2c6467d0-93ab-439e-b0c8-759e409b40f8", - "x-request-time": "0.113" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164826Z:074a108d-d283-4c41-9191-8fcb2fdae236", + "x-request-time": "0.082" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -515,17 +498,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -547,21 +530,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:56:18 GMT", + "Date": "Fri, 23 Sep 2022 16:48:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-156836e39da852761e66702d6189f8e9-f65b234d8b213e71-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-6e9ae684a13716c32e6192ba39a3e202-0412b6b7d619290a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9a356ede-aa32-4f04-941d-810bdaaec04e", - "x-ms-ratelimit-remaining-subscription-writes": "1164", + "x-ms-correlation-request-id": "b02c027f-c48a-4422-92b9-f6da217dfce5", + "x-ms-ratelimit-remaining-subscription-writes": "1103", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085618Z:9a356ede-aa32-4f04-941d-810bdaaec04e", - "x-request-time": "0.133" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164827Z:b02c027f-c48a-4422-92b9-f6da217dfce5", + "x-request-time": "0.118" }, "ResponseBody": { "secretsType": "AccountKey", @@ -569,14 +552,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/score_src/score.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/score_src/score.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:56:20 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:48:30 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -586,9 +569,9 @@ "Content-Length": "939", "Content-MD5": "Q2DIK4bErnWv1LgcGzUh0A==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 08:56:19 GMT", - "ETag": "\u00220x8DA9B7C60A667D4\u0022", - "Last-Modified": "Wed, 21 Sep 2022 02:52:52 GMT", + "Date": "Fri, 23 Sep 2022 16:48:27 GMT", + "ETag": "\u00220x8DA9D7BC769174F\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:53:37 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -597,10 +580,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 02:52:52 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:53:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "fd9482ba-1783-4eff-ac0e-c65cfd46f793", + "x-ms-meta-name": "6cbd3051-aa7e-4a3e-ae14-045a19583372", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -609,20 +592,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/score_src/score.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/score_src/score.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:56:21 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:48:30 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 08:56:19 GMT", + "Date": "Fri, 23 Sep 2022 16:48:28 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -635,7 +618,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/fd9482ba-1783-4eff-ac0e-c65cfd46f793/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/6cbd3051-aa7e-4a3e-ae14-045a19583372/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -653,7 +636,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/score_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/score_src" } }, "StatusCode": 200, @@ -661,27 +644,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:56:21 GMT", + "Date": "Fri, 23 Sep 2022 16:48:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-c13a4f0edbe1ef95b1905c2e540ca682-9d9b3013a0797e94-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-466df0066c80193ad0e60b8549939f13-cf1a377ada814bd4-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4f47b7bf-3ba3-4552-8c66-7a19aff5caaf", - "x-ms-ratelimit-remaining-subscription-writes": "1120", + "x-ms-correlation-request-id": "192f55d1-91f7-4b2f-81ab-a9a52406c84a", + "x-ms-ratelimit-remaining-subscription-writes": "991", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085621Z:4f47b7bf-3ba3-4552-8c66-7a19aff5caaf", - "x-request-time": "0.086" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164829Z:192f55d1-91f7-4b2f-81ab-a9a52406c84a", + "x-request-time": "0.134" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/fd9482ba-1783-4eff-ac0e-c65cfd46f793/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/6cbd3051-aa7e-4a3e-ae14-045a19583372/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -693,13 +676,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/score_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/score_src" }, "systemData": { - "createdAt": "2022-09-21T02:52:54.5544476\u002B00:00", + "createdAt": "2022-09-23T15:53:39.2456895\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T08:56:21.2400436\u002B00:00", + "lastModifiedAt": "2022-09-23T16:48:29.2762977\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -724,7 +707,7 @@ "isArchived": false, "componentSpec": { "command": "python score.py --model_input ${{inputs.model_input}} --test_data ${{inputs.test_data}} --score_output ${{outputs.score_output}} ", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/fd9482ba-1783-4eff-ac0e-c65cfd46f793/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/6cbd3051-aa7e-4a3e-ae14-045a19583372/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "name": "azureml_anonymous", "tags": {}, @@ -754,24 +737,24 @@ "Cache-Control": "no-cache", "Content-Length": "2002", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:56:22 GMT", + "Date": "Fri, 23 Sep 2022 16:48:31 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-eaf7b19e8b3d22377ad8469abe60b471-0fb1aa0861a07f3b-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-3cc2f88767eb3db8462b7bb8c3041939-5654603d8ac70792-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "42a82a3c-52f8-4626-a7ec-1a9cebdcd28c", - "x-ms-ratelimit-remaining-subscription-writes": "1119", + "x-ms-correlation-request-id": "ffe2ba84-0175-41a0-878b-6efb2cf2e294", + "x-ms-ratelimit-remaining-subscription-writes": "990", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085622Z:42a82a3c-52f8-4626-a7ec-1a9cebdcd28c", - "x-request-time": "0.332" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164831Z:ffe2ba84-0175-41a0-878b-6efb2cf2e294", + "x-request-time": "0.521" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/34cdd76b-7e8a-44f5-9d1b-3e5df7f9ab31", - "name": "34cdd76b-7e8a-44f5-9d1b-3e5df7f9ab31", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/07772945-a531-49d4-affa-20f07a519497", + "name": "07772945-a531-49d4-affa-20f07a519497", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -781,7 +764,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "34cdd76b-7e8a-44f5-9d1b-3e5df7f9ab31", + "version": "07772945-a531-49d4-affa-20f07a519497", "display_name": "score_job", "is_deterministic": "True", "type": "command", @@ -800,7 +783,7 @@ "type": "path" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/fd9482ba-1783-4eff-ac0e-c65cfd46f793/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/6cbd3051-aa7e-4a3e-ae14-045a19583372/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -810,10 +793,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T03:01:35.3115462\u002B00:00", + "createdAt": "2022-09-23T16:48:31.5906479\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T03:01:35.4987852\u002B00:00", + "lastModifiedAt": "2022-09-23T16:48:31.5906479\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -834,24 +817,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:56:23 GMT", + "Date": "Fri, 23 Sep 2022 16:48:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-8ec36fba880bb98365011501e8ac1084-b1536bf4a594b4d5-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-78e98358a69fbd82e789fa17557f85e0-8dc77dd0119363f8-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9b495b51-aaa3-4508-ae72-e9c648780747", - "x-ms-ratelimit-remaining-subscription-reads": "11931", + "x-ms-correlation-request-id": "d293060e-7c5c-4383-8129-2b0b7dc8e15f", + "x-ms-ratelimit-remaining-subscription-reads": "11839", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085624Z:9b495b51-aaa3-4508-ae72-e9c648780747", - "x-request-time": "0.117" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164834Z:d293060e-7c5c-4383-8129-2b0b7dc8e15f", + "x-request-time": "0.083" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -866,17 +849,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -898,21 +881,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:56:24 GMT", + "Date": "Fri, 23 Sep 2022 16:48:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-55087086280eea1ab21bb3c37ef90591-3c9ae1fbb17d0a91-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-194ca0c3b63e98e4a09c8f24292c55e0-fe1d8102c3e6ddd7-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e9d55121-23ed-49d9-a326-186caaf826c6", - "x-ms-ratelimit-remaining-subscription-writes": "1163", + "x-ms-correlation-request-id": "9fb145cc-6706-4241-8a29-11cf8cd5a8fb", + "x-ms-ratelimit-remaining-subscription-writes": "1102", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085625Z:e9d55121-23ed-49d9-a326-186caaf826c6", - "x-request-time": "0.082" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164835Z:9fb145cc-6706-4241-8a29-11cf8cd5a8fb", + "x-request-time": "0.084" }, "ResponseBody": { "secretsType": "AccountKey", @@ -920,14 +903,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/eval_src/eval.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/eval_src/eval.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:56:26 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:48:39 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -937,9 +920,9 @@ "Content-Length": "795", "Content-MD5": "Oc7zuFZ4JNgHBd/WtIjpgw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 08:56:25 GMT", - "ETag": "\u00220x8DA9B7C64A53AFC\u0022", - "Last-Modified": "Wed, 21 Sep 2022 02:52:59 GMT", + "Date": "Fri, 23 Sep 2022 16:48:36 GMT", + "ETag": "\u00220x8DA9D817675B2C5\u0022", + "Last-Modified": "Fri, 23 Sep 2022 16:34:19 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -948,10 +931,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 02:52:58 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 16:34:18 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "dd7e78b2-36e2-40fc-a30b-574bd77f1602", + "x-ms-meta-name": "0346fa2b-5da0-4c96-a641-086553d62c88", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -960,20 +943,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/eval_src/eval.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/eval_src/eval.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:56:26 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:48:39 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 08:56:25 GMT", + "Date": "Fri, 23 Sep 2022 16:48:37 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -986,7 +969,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/dd7e78b2-36e2-40fc-a30b-574bd77f1602/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/0346fa2b-5da0-4c96-a641-086553d62c88/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -1004,7 +987,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/eval_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/eval_src" } }, "StatusCode": 200, @@ -1012,27 +995,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:56:26 GMT", + "Date": "Fri, 23 Sep 2022 16:48:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-7fa1e80b0fea2d9dd7f23a3142a7ed41-aa306639659a8842-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-2438a78eff56c2de7cfe58107fbc0c1d-4af19e5859294c3a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f0eb6c31-f8aa-4481-9d3c-20c2c74a6b71", - "x-ms-ratelimit-remaining-subscription-writes": "1118", + "x-ms-correlation-request-id": "5fac7fbf-2013-4b76-8a6f-8c115a9fa2bc", + "x-ms-ratelimit-remaining-subscription-writes": "989", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085626Z:f0eb6c31-f8aa-4481-9d3c-20c2c74a6b71", - "x-request-time": "0.078" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164838Z:5fac7fbf-2013-4b76-8a6f-8c115a9fa2bc", + "x-request-time": "0.095" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/dd7e78b2-36e2-40fc-a30b-574bd77f1602/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/0346fa2b-5da0-4c96-a641-086553d62c88/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -1044,13 +1027,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/eval_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/eval_src" }, "systemData": { - "createdAt": "2022-09-21T02:53:00.5074503\u002B00:00", + "createdAt": "2022-09-23T16:34:20.0773406\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T08:56:26.800243\u002B00:00", + "lastModifiedAt": "2022-09-23T16:48:38.2243638\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -1075,7 +1058,7 @@ "isArchived": false, "componentSpec": { "command": "python eval.py --scoring_result ${{inputs.scoring_result}} --eval_output ${{outputs.eval_output}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/dd7e78b2-36e2-40fc-a30b-574bd77f1602/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/0346fa2b-5da0-4c96-a641-086553d62c88/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "name": "azureml_anonymous", "tags": {}, @@ -1102,24 +1085,24 @@ "Cache-Control": "no-cache", "Content-Length": "1885", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:56:28 GMT", + "Date": "Fri, 23 Sep 2022 16:48:39 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-a03aa2f9c217ab82dd8562442c3e2e0e-71c49185ea24bf3b-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-e835aaf911a0522a94f75c6cdeb3c6b9-c09c7374dac7b4d4-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "155ecb4a-e303-4136-80b3-e3ad81d4c050", - "x-ms-ratelimit-remaining-subscription-writes": "1117", + "x-ms-correlation-request-id": "061c3767-be51-4d3b-a0e5-68f63c9f6a73", + "x-ms-ratelimit-remaining-subscription-writes": "988", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085628Z:155ecb4a-e303-4136-80b3-e3ad81d4c050", - "x-request-time": "0.318" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164840Z:061c3767-be51-4d3b-a0e5-68f63c9f6a73", + "x-request-time": "0.548" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2bd53456-4356-4843-8c3f-f87ea4c56ed9", - "name": "2bd53456-4356-4843-8c3f-f87ea4c56ed9", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ff662452-c9b8-45e5-a78b-742faf8b058f", + "name": "ff662452-c9b8-45e5-a78b-742faf8b058f", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1129,7 +1112,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "2bd53456-4356-4843-8c3f-f87ea4c56ed9", + "version": "ff662452-c9b8-45e5-a78b-742faf8b058f", "display_name": "evaluate_job", "is_deterministic": "True", "type": "command", @@ -1144,7 +1127,7 @@ "type": "path" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/dd7e78b2-36e2-40fc-a30b-574bd77f1602/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/0346fa2b-5da0-4c96-a641-086553d62c88/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -1154,10 +1137,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T03:01:40.2604692\u002B00:00", + "createdAt": "2022-09-23T16:48:40.1543221\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T03:01:40.4642278\u002B00:00", + "lastModifiedAt": "2022-09-23T16:48:40.1543221\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -1178,24 +1161,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:56:29 GMT", + "Date": "Fri, 23 Sep 2022 16:48:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-48e020cfa3b6e2667c36717d6d0fb864-f723410720f18e6c-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-0d2deeb910f733a2fd76f972373213fc-b80092e6d98119ba-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f5299ea2-3f98-4ce9-9e5e-1cfb87f6fe05", - "x-ms-ratelimit-remaining-subscription-reads": "11930", + "x-ms-correlation-request-id": "2d9f661e-ea93-45db-b76e-df51b7a8a553", + "x-ms-ratelimit-remaining-subscription-reads": "11838", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085629Z:f5299ea2-3f98-4ce9-9e5e-1cfb87f6fe05", - "x-request-time": "0.138" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164842Z:2d9f661e-ea93-45db-b76e-df51b7a8a553", + "x-request-time": "0.085" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -1210,17 +1193,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -1242,21 +1225,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:56:30 GMT", + "Date": "Fri, 23 Sep 2022 16:48:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-06dfbe2729a3a79fc0d1210ee153ebc7-2f90e2fcb58bbd17-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-4f6bafc82bd9223feb005f439983d1c2-ac7f297a92589e34-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d20150fd-026a-4568-ba95-4a36eb1e572f", - "x-ms-ratelimit-remaining-subscription-writes": "1162", + "x-ms-correlation-request-id": "a31a67cc-fdb6-4e47-8b44-0e6bd73da3b5", + "x-ms-ratelimit-remaining-subscription-writes": "1101", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085630Z:d20150fd-026a-4568-ba95-4a36eb1e572f", - "x-request-time": "0.083" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164842Z:a31a67cc-fdb6-4e47-8b44-0e6bd73da3b5", + "x-request-time": "0.088" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1264,14 +1247,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:56:31 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:48:46 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -1281,9 +1264,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 08:56:30 GMT", - "ETag": "\u00220x8DA9B7432476CC7\u0022", - "Last-Modified": "Wed, 21 Sep 2022 01:54:18 GMT", + "Date": "Fri, 23 Sep 2022 16:48:43 GMT", + "ETag": "\u00220x8DA9D770C570D84\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:19:46 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1292,32 +1275,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 01:54:18 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:19:45 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "9973d8ef-e5fd-4949-aad2-3a6d5d51afea", + "x-ms-meta-name": "8c59cb92-112f-4c04-bda0-1342b610850d", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "69189648-da76-4adf-9b02-269e5c31e745", + "x-ms-meta-version": "c1f97989-616d-4b90-a0d6-bac9ea34bade", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:56:32 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:48:46 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 08:56:30 GMT", + "Date": "Fri, 23 Sep 2022 16:48:44 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1344,24 +1327,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:56:32 GMT", + "Date": "Fri, 23 Sep 2022 16:48:45 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-04b874fe44c3679aa4701fdce3d1bcc7-10a16d722cc2b239-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-e1d6492f4f6b0423b751f521bbae31e2-aff43071ea0143f2-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "64ab4d87-1fa6-49af-a420-cda35389112a", - "x-ms-ratelimit-remaining-subscription-reads": "11929", + "x-ms-correlation-request-id": "0f61e7c0-c696-4ddb-a87b-f6a6488f31a1", + "x-ms-ratelimit-remaining-subscription-reads": "11837", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085632Z:64ab4d87-1fa6-49af-a420-cda35389112a", - "x-request-time": "0.090" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164845Z:0f61e7c0-c696-4ddb-a87b-f6a6488f31a1", + "x-request-time": "0.094" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -1376,17 +1359,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -1408,21 +1391,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:56:32 GMT", + "Date": "Fri, 23 Sep 2022 16:48:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-781972d6e43824e0b0002987ada1141f-f1cc71df33d030aa-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-25db08221f70e3e0ef5688e0c3c4f8bd-75d0ee0f4d7d197f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "271dc88c-1269-45fe-a8ce-9b276ce17866", - "x-ms-ratelimit-remaining-subscription-writes": "1161", + "x-ms-correlation-request-id": "84c2f8ea-b28e-4100-a0eb-bf350e05d64d", + "x-ms-ratelimit-remaining-subscription-writes": "1100", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085633Z:271dc88c-1269-45fe-a8ce-9b276ce17866", - "x-request-time": "0.080" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164846Z:84c2f8ea-b28e-4100-a0eb-bf350e05d64d", + "x-request-time": "0.091" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1430,14 +1413,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:56:34 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:48:48 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -1447,9 +1430,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 08:56:33 GMT", - "ETag": "\u00220x8DA9B7432476CC7\u0022", - "Last-Modified": "Wed, 21 Sep 2022 01:54:18 GMT", + "Date": "Fri, 23 Sep 2022 16:48:46 GMT", + "ETag": "\u00220x8DA9D770C570D84\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:19:46 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1458,32 +1441,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 01:54:18 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:19:45 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "9973d8ef-e5fd-4949-aad2-3a6d5d51afea", + "x-ms-meta-name": "8c59cb92-112f-4c04-bda0-1342b610850d", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "69189648-da76-4adf-9b02-269e5c31e745", + "x-ms-meta-version": "c1f97989-616d-4b90-a0d6-bac9ea34bade", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:56:34 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:48:49 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 08:56:33 GMT", + "Date": "Fri, 23 Sep 2022 16:48:46 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1502,7 +1485,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "3809", + "Content-Length": "3863", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -1573,8 +1556,9 @@ "type": "literal" } }, + "properties": {}, "_source": "CLASS", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/4f2a9aaf-23e5-4f2a-b641-9840055a9a92" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2c325049-f805-4128-aada-d123b849a563" }, "score_job": { "resources": null, @@ -1602,8 +1586,9 @@ "type": "literal" } }, + "properties": {}, "_source": "CLASS", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/34cdd76b-7e8a-44f5-9d1b-3e5df7f9ab31" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/07772945-a531-49d4-affa-20f07a519497" }, "evaluate_job": { "resources": null, @@ -1627,8 +1612,9 @@ "type": "literal" } }, + "properties": {}, "_source": "CLASS", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2bd53456-4356-4843-8c3f-f87ea4c56ed9" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ff662452-c9b8-45e5-a78b-742faf8b058f" } }, "outputs": { @@ -1653,22 +1639,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "7187", + "Content-Length": "7265", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:56:41 GMT", + "Date": "Fri, 23 Sep 2022 16:49:00 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-dcac82f97d45a9f7679cb8c4778c42af-cd2f7dba739fd6f5-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-d3500ae2cd87c313a9bb9d9f2cda2960-aaa19c682f03a435-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7e0bade6-e327-4cac-9d17-3dc8c8d3addc", - "x-ms-ratelimit-remaining-subscription-writes": "1116", + "x-ms-correlation-request-id": "9a7dfaf8-cfaf-47e4-aed9-32d0d1103e9a", + "x-ms-ratelimit-remaining-subscription-writes": "987", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085641Z:7e0bade6-e327-4cac-9d17-3dc8c8d3addc", - "x-request-time": "3.895" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164901Z:9a7dfaf8-cfaf-47e4-aed9-32d0d1103e9a", + "x-request-time": "7.908" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -1753,8 +1739,9 @@ "type": "literal" } }, + "properties": {}, "_source": "CLASS", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/4f2a9aaf-23e5-4f2a-b641-9840055a9a92" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2c325049-f805-4128-aada-d123b849a563" }, "score_job": { "resources": null, @@ -1782,8 +1769,9 @@ "type": "literal" } }, + "properties": {}, "_source": "CLASS", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/34cdd76b-7e8a-44f5-9d1b-3e5df7f9ab31" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/07772945-a531-49d4-affa-20f07a519497" }, "evaluate_job": { "resources": null, @@ -1807,8 +1795,9 @@ "type": "literal" } }, + "properties": {}, "_source": "CLASS", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2bd53456-4356-4843-8c3f-f87ea4c56ed9" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ff662452-c9b8-45e5-a78b-742faf8b058f" } }, "inputs": { @@ -1863,7 +1852,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T08:56:40.9630475\u002B00:00", + "createdAt": "2022-09-23T16:49:00.7903418\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_e2e_local_components.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_e2e_local_components.json index eb64d497218b..ad50edc57b24 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_e2e_local_components.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_e2e_local_components.json @@ -15,11 +15,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:47:47 GMT", + "Date": "Fri, 23 Sep 2022 17:36:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-02332a1824dfbabcc6c374e8cc5ad3dc-52787f804eeeca37-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-a2001399fdc79b41bc2b2b537dc56e58-8f1382211fd04fb8-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -28,11 +28,11 @@ ], "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d2adcf32-51b5-4a43-ada9-3dc25a4acab3", - "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-correlation-request-id": "03a77901-0bd3-4920-a467-03397d01ae6e", + "x-ms-ratelimit-remaining-subscription-reads": "11999", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T084748Z:d2adcf32-51b5-4a43-ada9-3dc25a4acab3", - "x-request-time": "0.034" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173617Z:03a77901-0bd3-4920-a467-03397d01ae6e", + "x-request-time": "0.046" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -41,8 +41,8 @@ "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T11:47:20.6013506\u002B00:00", - "modifiedOn": "2022-09-15T11:47:27.309088\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -71,12 +71,12 @@ "preemptedNodeCount": 0 }, "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-21T08:36:35.389\u002B00:00", + "allocationStateTransitionTime": "2022-09-23T17:33:36.582\u002B00:00", "errors": [ { "error": { "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_92fbcd8f75321f6d485a668091b97888e36091744f4980c61f41b4675223dea0_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_c0b012c40824023b5c6231b76a58d1b2e3740b50bda3c31c9581a6b24c5aef5f_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_c737656408b129608bd5c73fa736ea4216046607cd2bd40f61a3e18e3bc82a31_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_d926d2653334081d0c6ac00169793cd4b57455955641cb3b62f1127b332fafe9_d: There is not enough disk space on the node", + "message": "ComputeNode.Id=tvmps_363864b505daf64a62c550b3039bf88a46c953293d3b4013e4cf21c28d5e312b_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_ae1eeb6a8f3122c9bccdf09343b2e3cd8217911e792aac6cd3d94797ad4b0ad4_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_c6e688f61710764bba9d4ebb13a6e8b9182eca42a7dc5ec038eda668590ef1b3_d: There is not enough disk space on the node", "details": [ { "code": "Message", @@ -86,10 +86,6 @@ "code": "Message", "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." }, - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - }, { "code": "Message", "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." @@ -122,11 +118,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:47:48 GMT", + "Date": "Fri, 23 Sep 2022 17:36:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-ee275be562cff3a1a7debaf1f618c98c-dfcd38285b6e6633-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-598d82613f40a923f375d04905174df8-a5a51d1fc8545374-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -135,11 +131,11 @@ ], "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "66f2bfd0-80ae-4758-80e4-cf8e093430ab", - "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-correlation-request-id": "e99130bb-c0eb-4f38-891d-48c617f6f351", + "x-ms-ratelimit-remaining-subscription-reads": "11998", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T084748Z:66f2bfd0-80ae-4758-80e4-cf8e093430ab", - "x-request-time": "0.035" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173618Z:e99130bb-c0eb-4f38-891d-48c617f6f351", + "x-request-time": "0.034" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -148,8 +144,8 @@ "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T11:47:20.6013506\u002B00:00", - "modifiedOn": "2022-09-15T11:47:27.309088\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -178,12 +174,12 @@ "preemptedNodeCount": 0 }, "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-21T08:36:35.389\u002B00:00", + "allocationStateTransitionTime": "2022-09-23T17:33:36.582\u002B00:00", "errors": [ { "error": { "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_92fbcd8f75321f6d485a668091b97888e36091744f4980c61f41b4675223dea0_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_c0b012c40824023b5c6231b76a58d1b2e3740b50bda3c31c9581a6b24c5aef5f_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_c737656408b129608bd5c73fa736ea4216046607cd2bd40f61a3e18e3bc82a31_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_d926d2653334081d0c6ac00169793cd4b57455955641cb3b62f1127b332fafe9_d: There is not enough disk space on the node", + "message": "ComputeNode.Id=tvmps_363864b505daf64a62c550b3039bf88a46c953293d3b4013e4cf21c28d5e312b_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_ae1eeb6a8f3122c9bccdf09343b2e3cd8217911e792aac6cd3d94797ad4b0ad4_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_c6e688f61710764bba9d4ebb13a6e8b9182eca42a7dc5ec038eda668590ef1b3_d: There is not enough disk space on the node", "details": [ { "code": "Message", @@ -193,10 +189,6 @@ "code": "Message", "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." }, - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - }, { "code": "Message", "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." @@ -229,11 +221,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:47:49 GMT", + "Date": "Fri, 23 Sep 2022 17:36:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-149054ff498a2a4d31f3ab78cf4fab5c-c6d6da6cde2876ae-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-9a7683a793058653756f162962a32d26-35c6350592d08c31-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -242,11 +234,11 @@ ], "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b055d476-0f70-4ef3-b2b1-cfb7e384975a", - "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-correlation-request-id": "306fae4d-8c26-4dbb-a69d-97a04dc8108f", + "x-ms-ratelimit-remaining-subscription-reads": "11997", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T084749Z:b055d476-0f70-4ef3-b2b1-cfb7e384975a", - "x-request-time": "0.039" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173618Z:306fae4d-8c26-4dbb-a69d-97a04dc8108f", + "x-request-time": "0.035" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -255,8 +247,8 @@ "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T11:47:20.6013506\u002B00:00", - "modifiedOn": "2022-09-15T11:47:27.309088\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -285,12 +277,12 @@ "preemptedNodeCount": 0 }, "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-21T08:36:35.389\u002B00:00", + "allocationStateTransitionTime": "2022-09-23T17:33:36.582\u002B00:00", "errors": [ { "error": { "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_92fbcd8f75321f6d485a668091b97888e36091744f4980c61f41b4675223dea0_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_c0b012c40824023b5c6231b76a58d1b2e3740b50bda3c31c9581a6b24c5aef5f_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_c737656408b129608bd5c73fa736ea4216046607cd2bd40f61a3e18e3bc82a31_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_d926d2653334081d0c6ac00169793cd4b57455955641cb3b62f1127b332fafe9_d: There is not enough disk space on the node", + "message": "ComputeNode.Id=tvmps_363864b505daf64a62c550b3039bf88a46c953293d3b4013e4cf21c28d5e312b_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_ae1eeb6a8f3122c9bccdf09343b2e3cd8217911e792aac6cd3d94797ad4b0ad4_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_c6e688f61710764bba9d4ebb13a6e8b9182eca42a7dc5ec038eda668590ef1b3_d: There is not enough disk space on the node", "details": [ { "code": "Message", @@ -300,10 +292,6 @@ "code": "Message", "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." }, - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - }, { "code": "Message", "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." @@ -336,11 +324,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:47:51 GMT", + "Date": "Fri, 23 Sep 2022 17:36:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-3bb9d873bf2a645dc4fc94d3393281b8-ee433773c3be6248-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-24a9e424255a65be24b201c99b6388a2-511590a25da3d8fd-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -349,11 +337,11 @@ ], "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "584878ec-a9a4-4493-978e-7b1f596c4aaf", - "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-correlation-request-id": "a97394a8-f490-4c93-bef5-2c844659a8ac", + "x-ms-ratelimit-remaining-subscription-reads": "11996", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T084751Z:584878ec-a9a4-4493-978e-7b1f596c4aaf", - "x-request-time": "0.032" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173619Z:a97394a8-f490-4c93-bef5-2c844659a8ac", + "x-request-time": "0.036" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -362,8 +350,8 @@ "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T11:47:20.6013506\u002B00:00", - "modifiedOn": "2022-09-15T11:47:27.309088\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -392,12 +380,12 @@ "preemptedNodeCount": 0 }, "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-21T08:36:35.389\u002B00:00", + "allocationStateTransitionTime": "2022-09-23T17:33:36.582\u002B00:00", "errors": [ { "error": { "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_92fbcd8f75321f6d485a668091b97888e36091744f4980c61f41b4675223dea0_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_c0b012c40824023b5c6231b76a58d1b2e3740b50bda3c31c9581a6b24c5aef5f_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_c737656408b129608bd5c73fa736ea4216046607cd2bd40f61a3e18e3bc82a31_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_d926d2653334081d0c6ac00169793cd4b57455955641cb3b62f1127b332fafe9_d: There is not enough disk space on the node", + "message": "ComputeNode.Id=tvmps_363864b505daf64a62c550b3039bf88a46c953293d3b4013e4cf21c28d5e312b_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_ae1eeb6a8f3122c9bccdf09343b2e3cd8217911e792aac6cd3d94797ad4b0ad4_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_c6e688f61710764bba9d4ebb13a6e8b9182eca42a7dc5ec038eda668590ef1b3_d: There is not enough disk space on the node", "details": [ { "code": "Message", @@ -407,10 +395,6 @@ "code": "Message", "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." }, - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - }, { "code": "Message", "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." @@ -443,24 +427,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:47:54 GMT", + "Date": "Fri, 23 Sep 2022 17:36:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-1d6f3ec39b7aeb02755a29b1e08a7f34-824f96a160e55aed-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-d65d37726c34dd1f40dadc4f19d933c3-5baea6a144d08252-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0f0b9779-26a5-4edd-b0a0-daf3fc3bd741", - "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-correlation-request-id": "a504305d-d88b-4063-8c08-065d4c679cf9", + "x-ms-ratelimit-remaining-subscription-reads": "11995", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T084754Z:0f0b9779-26a5-4edd-b0a0-daf3fc3bd741", - "x-request-time": "0.091" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173622Z:a504305d-d88b-4063-8c08-065d4c679cf9", + "x-request-time": "0.078" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -475,17 +459,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -507,21 +491,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:47:55 GMT", + "Date": "Fri, 23 Sep 2022 17:36:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-0065329d0df39828daf15bf397d59e11-66e8f452bdfb09ec-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-dbcefe28c8f7a7f4028f8aee40a4da6e-1e9013065866066f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9a8c9242-68c4-4b7b-bb46-44757e20f830", + "x-ms-correlation-request-id": "1fad8dba-399f-4a8d-b2b1-bed915ab8843", "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T084755Z:9a8c9242-68c4-4b7b-bb46-44757e20f830", - "x-request-time": "0.210" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173622Z:1fad8dba-399f-4a8d-b2b1-bed915ab8843", + "x-request-time": "0.095" }, "ResponseBody": { "secretsType": "AccountKey", @@ -529,14 +513,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/train_src/train.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/train_src/train.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:47:57 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:36:25 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -546,9 +530,9 @@ "Content-Length": "1498", "Content-MD5": "bknQRwZOwpy5fofohDUViQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 08:47:56 GMT", - "ETag": "\u00220x8DA9B7C5B4B6BA9\u0022", - "Last-Modified": "Wed, 21 Sep 2022 02:52:43 GMT", + "Date": "Fri, 23 Sep 2022 17:36:23 GMT", + "ETag": "\u00220x8DA9D816B49B7F0\u0022", + "Last-Modified": "Fri, 23 Sep 2022 16:34:00 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -557,10 +541,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 02:52:43 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 16:33:59 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "39a93360-d9f5-41ff-b737-fc7a18757120", + "x-ms-meta-name": "30e97005-691d-4061-af7f-73e639ca226f", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -569,20 +553,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/train_src/train.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/train_src/train.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:47:59 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:36:26 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 08:47:56 GMT", + "Date": "Fri, 23 Sep 2022 17:36:23 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -595,7 +579,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/39a93360-d9f5-41ff-b737-fc7a18757120/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/30e97005-691d-4061-af7f-73e639ca226f/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -613,7 +597,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/train_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/train_src" } }, "StatusCode": 200, @@ -621,27 +605,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:47:58 GMT", + "Date": "Fri, 23 Sep 2022 17:36:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-122a0c10bd20af8d180d4cf8f6b46925-56fabfc31d6331a9-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-981e1be3e4e7a993bf44afaecae1b74a-198160b1c85aaf1c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c7d9c92d-9acc-40e0-a2b7-820010cec538", + "x-ms-correlation-request-id": "2157d30b-acb1-438a-a36d-3b4b997aa8c0", "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T084759Z:c7d9c92d-9acc-40e0-a2b7-820010cec538", - "x-request-time": "0.169" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173625Z:2157d30b-acb1-438a-a36d-3b4b997aa8c0", + "x-request-time": "0.158" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/39a93360-d9f5-41ff-b737-fc7a18757120/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/30e97005-691d-4061-af7f-73e639ca226f/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -653,13 +637,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/train_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/train_src" }, "systemData": { - "createdAt": "2022-09-21T02:52:45.7528776\u002B00:00", + "createdAt": "2022-09-23T16:34:01.5388891\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T08:47:59.1431618\u002B00:00", + "lastModifiedAt": "2022-09-23T17:36:25.825966\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -684,7 +668,7 @@ "isArchived": false, "componentSpec": { "command": "python train.py --training_data ${{inputs.training_data}} --max_epocs ${{inputs.max_epocs}} --learning_rate ${{inputs.learning_rate}} --learning_rate_schedule ${{inputs.learning_rate_schedule}} --model_output ${{outputs.model_output}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/39a93360-d9f5-41ff-b737-fc7a18757120/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/30e97005-691d-4061-af7f-73e639ca226f/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "name": "azureml_anonymous", "tags": {}, @@ -722,24 +706,24 @@ "Cache-Control": "no-cache", "Content-Length": "2385", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:48:01 GMT", + "Date": "Fri, 23 Sep 2022 17:36:26 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-8ae76e7a3a6bf028de1c4ba54311d3d6-41efd5e2aa9dc6b4-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-224bc56f935f8a36ea5274fbed6349d1-1d610a789191cd27-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dc348665-05df-466c-a35a-04444ce62678", + "x-ms-correlation-request-id": "fc4a37db-a990-453e-83b9-e9723fe75ade", "x-ms-ratelimit-remaining-subscription-writes": "1198", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T084801Z:dc348665-05df-466c-a35a-04444ce62678", - "x-request-time": "0.484" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173626Z:fc4a37db-a990-453e-83b9-e9723fe75ade", + "x-request-time": "0.368" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/49c76b7c-479d-44a7-8b02-2d4b6cbf486c", - "name": "49c76b7c-479d-44a7-8b02-2d4b6cbf486c", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/06f01e92-891e-4811-8472-6e28c710b44f", + "name": "06f01e92-891e-4811-8472-6e28c710b44f", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -749,7 +733,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "49c76b7c-479d-44a7-8b02-2d4b6cbf486c", + "version": "06f01e92-891e-4811-8472-6e28c710b44f", "display_name": "Train", "is_deterministic": "True", "type": "command", @@ -778,7 +762,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/39a93360-d9f5-41ff-b737-fc7a18757120/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/30e97005-691d-4061-af7f-73e639ca226f/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -788,10 +772,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T02:52:48.7082762\u002B00:00", + "createdAt": "2022-09-23T16:34:03.9089311\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:52:48.9138636\u002B00:00", + "lastModifiedAt": "2022-09-23T16:34:04.0723268\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -812,24 +796,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:48:02 GMT", + "Date": "Fri, 23 Sep 2022 17:36:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-8ec597cd51461999823d67fd402899fa-8d2d056ab6ef43cf-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-f26fa13b735700e72e9d2140a12e40ce-cafc6d0717feeeb2-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6babfafc-f924-4dd0-bc5b-c9f9b82986b4", - "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-correlation-request-id": "71b1c47a-f260-4791-9693-bf0916ec0fdb", + "x-ms-ratelimit-remaining-subscription-reads": "11994", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T084802Z:6babfafc-f924-4dd0-bc5b-c9f9b82986b4", - "x-request-time": "0.077" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173627Z:71b1c47a-f260-4791-9693-bf0916ec0fdb", + "x-request-time": "0.093" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -844,17 +828,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -876,21 +860,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:48:03 GMT", + "Date": "Fri, 23 Sep 2022 17:36:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-4b3ab20e7ce925477ce0848667bede05-bac21966a559e62c-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-0833e0b371a6ec1400e920162ed3d732-acebdedbebe333ab-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ff093fdf-cd8b-4fb9-abfc-cd4b6f087903", + "x-ms-correlation-request-id": "d610dcc7-9702-42cb-ac8b-871803e2ac2e", "x-ms-ratelimit-remaining-subscription-writes": "1198", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T084803Z:ff093fdf-cd8b-4fb9-abfc-cd4b6f087903", - "x-request-time": "0.135" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173628Z:d610dcc7-9702-42cb-ac8b-871803e2ac2e", + "x-request-time": "0.256" }, "ResponseBody": { "secretsType": "AccountKey", @@ -898,14 +882,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/score_src/score.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/score_src/score.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:48:05 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:36:30 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -915,9 +899,9 @@ "Content-Length": "939", "Content-MD5": "Q2DIK4bErnWv1LgcGzUh0A==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 08:48:03 GMT", - "ETag": "\u00220x8DA9B7C60A667D4\u0022", - "Last-Modified": "Wed, 21 Sep 2022 02:52:52 GMT", + "Date": "Fri, 23 Sep 2022 17:36:28 GMT", + "ETag": "\u00220x8DA9D7BC769174F\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:53:37 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -926,10 +910,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 02:52:52 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:53:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "fd9482ba-1783-4eff-ac0e-c65cfd46f793", + "x-ms-meta-name": "6cbd3051-aa7e-4a3e-ae14-045a19583372", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -938,20 +922,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/score_src/score.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/score_src/score.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:48:05 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:36:31 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 08:48:03 GMT", + "Date": "Fri, 23 Sep 2022 17:36:28 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -964,7 +948,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/fd9482ba-1783-4eff-ac0e-c65cfd46f793/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/6cbd3051-aa7e-4a3e-ae14-045a19583372/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -982,7 +966,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/score_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/score_src" } }, "StatusCode": 200, @@ -990,27 +974,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:48:06 GMT", + "Date": "Fri, 23 Sep 2022 17:36:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-debf06be202cb81cf982a19ebf816e44-a1e2c9cfc531fca5-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-75c148ac999af8d05802d11002e79b63-286b9e6b6435cfe8-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8c4cbc2a-df70-4789-be1a-83fa08232fc9", + "x-ms-correlation-request-id": "ed125a88-bb45-49fe-a09d-8324f2893a56", "x-ms-ratelimit-remaining-subscription-writes": "1197", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T084806Z:8c4cbc2a-df70-4789-be1a-83fa08232fc9", - "x-request-time": "0.070" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173629Z:ed125a88-bb45-49fe-a09d-8324f2893a56", + "x-request-time": "0.128" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/fd9482ba-1783-4eff-ac0e-c65cfd46f793/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/6cbd3051-aa7e-4a3e-ae14-045a19583372/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -1022,13 +1006,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/score_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/score_src" }, "systemData": { - "createdAt": "2022-09-21T02:52:54.5544476\u002B00:00", + "createdAt": "2022-09-23T15:53:39.2456895\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T08:48:06.4643374\u002B00:00", + "lastModifiedAt": "2022-09-23T17:36:29.7915821\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -1053,7 +1037,7 @@ "isArchived": false, "componentSpec": { "command": "python score.py --model_input ${{inputs.model_input}} --test_data ${{inputs.test_data}} --score_output ${{outputs.score_output}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/fd9482ba-1783-4eff-ac0e-c65cfd46f793/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/6cbd3051-aa7e-4a3e-ae14-045a19583372/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "name": "azureml_anonymous", "tags": {}, @@ -1083,24 +1067,24 @@ "Cache-Control": "no-cache", "Content-Length": "2015", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:48:07 GMT", + "Date": "Fri, 23 Sep 2022 17:36:29 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-bd47585e424317aec6fe69eaf2add258-a772d6355a988766-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-f27715ffef727594f37e9022f6da36e6-1ba11ec293a581c0-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "65b6cac3-4032-43e0-995d-d7d438a6d9bd", + "x-ms-correlation-request-id": "0a5f9755-5199-469e-a56d-694ed3cea9c3", "x-ms-ratelimit-remaining-subscription-writes": "1196", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T084808Z:65b6cac3-4032-43e0-995d-d7d438a6d9bd", - "x-request-time": "0.337" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173630Z:0a5f9755-5199-469e-a56d-694ed3cea9c3", + "x-request-time": "0.347" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2421eda1-6de9-400b-971d-19135547e2d6", - "name": "2421eda1-6de9-400b-971d-19135547e2d6", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/24e62614-50d5-4a5e-bf85-644b08b53fb8", + "name": "24e62614-50d5-4a5e-bf85-644b08b53fb8", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1110,7 +1094,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "2421eda1-6de9-400b-971d-19135547e2d6", + "version": "24e62614-50d5-4a5e-bf85-644b08b53fb8", "display_name": "Score", "is_deterministic": "True", "type": "command", @@ -1129,7 +1113,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/fd9482ba-1783-4eff-ac0e-c65cfd46f793/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/6cbd3051-aa7e-4a3e-ae14-045a19583372/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -1139,10 +1123,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T02:52:55.9543996\u002B00:00", + "createdAt": "2022-09-23T16:34:13.6010288\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:52:56.1471973\u002B00:00", + "lastModifiedAt": "2022-09-23T16:34:13.7928527\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -1163,24 +1147,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:48:08 GMT", + "Date": "Fri, 23 Sep 2022 17:36:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-8d7777612419111b645cd3a8489249bf-d9e397ac23a87210-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-cc24c9bdaa65abb57d1866c670594b91-c5a89b903771f83b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "29f19921-a6ba-47ef-8c92-05df4d536d13", - "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-correlation-request-id": "6b202e9d-e199-478d-8d43-befbc58d9c57", + "x-ms-ratelimit-remaining-subscription-reads": "11993", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T084809Z:29f19921-a6ba-47ef-8c92-05df4d536d13", - "x-request-time": "0.095" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173631Z:6b202e9d-e199-478d-8d43-befbc58d9c57", + "x-request-time": "0.082" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -1195,17 +1179,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -1227,21 +1211,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:48:10 GMT", + "Date": "Fri, 23 Sep 2022 17:36:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-f2795a71a33c727f42b3631c556146ba-8166bb8070975fa3-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-528484f0a5f6ae00ea1df8db896b06a7-8053282f68dc9ae4-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9b54b9c7-d51e-4747-87ec-8ec7971ff87b", + "x-ms-correlation-request-id": "d4472fec-5cad-4d48-9d0f-aefb693d3431", "x-ms-ratelimit-remaining-subscription-writes": "1197", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T084811Z:9b54b9c7-d51e-4747-87ec-8ec7971ff87b", - "x-request-time": "0.081" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173632Z:d4472fec-5cad-4d48-9d0f-aefb693d3431", + "x-request-time": "0.107" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1249,14 +1233,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/eval_src/eval.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/eval_src/eval.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:48:12 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:36:34 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -1266,9 +1250,9 @@ "Content-Length": "795", "Content-MD5": "Oc7zuFZ4JNgHBd/WtIjpgw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 08:48:10 GMT", - "ETag": "\u00220x8DA9B7C64A53AFC\u0022", - "Last-Modified": "Wed, 21 Sep 2022 02:52:59 GMT", + "Date": "Fri, 23 Sep 2022 17:36:31 GMT", + "ETag": "\u00220x8DA9D817675B2C5\u0022", + "Last-Modified": "Fri, 23 Sep 2022 16:34:19 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1277,10 +1261,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 02:52:58 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 16:34:18 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "dd7e78b2-36e2-40fc-a30b-574bd77f1602", + "x-ms-meta-name": "0346fa2b-5da0-4c96-a641-086553d62c88", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -1289,20 +1273,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/eval_src/eval.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/eval_src/eval.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:48:13 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:36:34 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 08:48:11 GMT", + "Date": "Fri, 23 Sep 2022 17:36:31 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1315,7 +1299,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/dd7e78b2-36e2-40fc-a30b-574bd77f1602/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/0346fa2b-5da0-4c96-a641-086553d62c88/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -1333,7 +1317,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/eval_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/eval_src" } }, "StatusCode": 200, @@ -1341,27 +1325,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:48:12 GMT", + "Date": "Fri, 23 Sep 2022 17:36:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-a040a8eba7696206a95182b63e9235f3-753adf22b8944b0d-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-f994df066ea820e78ac1904a098c07cb-f5d33d127705b490-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f2c48cfc-c5e0-4a1d-868a-799408cfdaaa", + "x-ms-correlation-request-id": "67f7fb61-41e1-4d9d-af9c-2d2f2a4c20fc", "x-ms-ratelimit-remaining-subscription-writes": "1195", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T084813Z:f2c48cfc-c5e0-4a1d-868a-799408cfdaaa", - "x-request-time": "0.118" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173633Z:67f7fb61-41e1-4d9d-af9c-2d2f2a4c20fc", + "x-request-time": "0.074" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/dd7e78b2-36e2-40fc-a30b-574bd77f1602/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/0346fa2b-5da0-4c96-a641-086553d62c88/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -1373,13 +1357,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/eval_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/eval_src" }, "systemData": { - "createdAt": "2022-09-21T02:53:00.5074503\u002B00:00", + "createdAt": "2022-09-23T16:34:20.0773406\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T08:48:13.243\u002B00:00", + "lastModifiedAt": "2022-09-23T17:36:33.2789443\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -1404,7 +1388,7 @@ "isArchived": false, "componentSpec": { "command": "python eval.py --scoring_result ${{inputs.scoring_result}} --eval_output ${{outputs.eval_output}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/dd7e78b2-36e2-40fc-a30b-574bd77f1602/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/0346fa2b-5da0-4c96-a641-086553d62c88/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "name": "azureml_anonymous", "tags": {}, @@ -1431,24 +1415,24 @@ "Cache-Control": "no-cache", "Content-Length": "1889", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:48:14 GMT", + "Date": "Fri, 23 Sep 2022 17:36:33 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-578358d42edf3c66a6c6d6473fbb5848-c3852ff735121a73-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-c49d4039801ec950f34e39c93c0e3b41-5cf1956cd0925c5e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "121017aa-2316-45bb-bbe4-ed1a3357c1b6", + "x-ms-correlation-request-id": "568ff8d0-305b-484a-b0a6-1322ed84077d", "x-ms-ratelimit-remaining-subscription-writes": "1194", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T084814Z:121017aa-2316-45bb-bbe4-ed1a3357c1b6", - "x-request-time": "0.380" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173634Z:568ff8d0-305b-484a-b0a6-1322ed84077d", + "x-request-time": "0.461" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/e3369713-6f03-4bf6-82ea-f33321025eb5", - "name": "e3369713-6f03-4bf6-82ea-f33321025eb5", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d961f444-e7ea-46a0-aff5-82130d3cd48e", + "name": "d961f444-e7ea-46a0-aff5-82130d3cd48e", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1458,7 +1442,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "e3369713-6f03-4bf6-82ea-f33321025eb5", + "version": "d961f444-e7ea-46a0-aff5-82130d3cd48e", "display_name": "Eval", "is_deterministic": "True", "type": "command", @@ -1473,7 +1457,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/dd7e78b2-36e2-40fc-a30b-574bd77f1602/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/0346fa2b-5da0-4c96-a641-086553d62c88/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -1483,10 +1467,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T02:53:01.6659543\u002B00:00", + "createdAt": "2022-09-23T16:34:21.9829853\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:53:01.8007024\u002B00:00", + "lastModifiedAt": "2022-09-23T16:34:22.1852875\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -1507,24 +1491,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:48:14 GMT", + "Date": "Fri, 23 Sep 2022 17:36:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-aefafbbc937463752195d008c10fb115-68cb48ccebce0954-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-d3eda4fda11001466ef6c3909eb9881a-ab56178e11ffdbe6-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fa26e6c4-91fa-4d52-836e-b01b8c992b56", - "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-correlation-request-id": "85542319-67b2-4e1b-801d-f8f278268eee", + "x-ms-ratelimit-remaining-subscription-reads": "11992", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T084815Z:fa26e6c4-91fa-4d52-836e-b01b8c992b56", - "x-request-time": "0.079" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173635Z:85542319-67b2-4e1b-801d-f8f278268eee", + "x-request-time": "0.084" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -1539,17 +1523,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -1571,21 +1555,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:48:16 GMT", + "Date": "Fri, 23 Sep 2022 17:36:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-84286a428160b965ba8d53f3e209df50-1ee9945ea4f74501-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-daea497407024df22c6b87e11e5e7e50-5af8b0288689e4e7-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0fa8643a-cfa6-4b08-94e6-8d7d09354c9d", + "x-ms-correlation-request-id": "79b11ca6-d8ee-4f85-81ed-515c0df886b5", "x-ms-ratelimit-remaining-subscription-writes": "1196", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T084816Z:0fa8643a-cfa6-4b08-94e6-8d7d09354c9d", - "x-request-time": "0.100" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173635Z:79b11ca6-d8ee-4f85-81ed-515c0df886b5", + "x-request-time": "0.105" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1593,14 +1577,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:48:18 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:36:37 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -1610,9 +1594,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 08:48:15 GMT", - "ETag": "\u00220x8DA9B7432476CC7\u0022", - "Last-Modified": "Wed, 21 Sep 2022 01:54:18 GMT", + "Date": "Fri, 23 Sep 2022 17:36:35 GMT", + "ETag": "\u00220x8DA9D770C570D84\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:19:46 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1621,32 +1605,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 01:54:18 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:19:45 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "9973d8ef-e5fd-4949-aad2-3a6d5d51afea", + "x-ms-meta-name": "8c59cb92-112f-4c04-bda0-1342b610850d", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "69189648-da76-4adf-9b02-269e5c31e745", + "x-ms-meta-version": "c1f97989-616d-4b90-a0d6-bac9ea34bade", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:48:18 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:36:38 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 08:48:16 GMT", + "Date": "Fri, 23 Sep 2022 17:36:35 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1673,24 +1657,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:48:20 GMT", + "Date": "Fri, 23 Sep 2022 17:36:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-145aef4650324247078360834792d7a9-a4a0b59b97983312-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-fe857d2f8a6ed611fa5606d55995d4fc-cf7e08f4c1c5edf1-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bcd15cd0-853d-4782-b2c3-5b67aeb87173", - "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-correlation-request-id": "6d66137c-e3a4-457b-918a-7bba88a2f0e1", + "x-ms-ratelimit-remaining-subscription-reads": "11991", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T084820Z:bcd15cd0-853d-4782-b2c3-5b67aeb87173", - "x-request-time": "0.081" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173636Z:6d66137c-e3a4-457b-918a-7bba88a2f0e1", + "x-request-time": "0.074" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -1705,17 +1689,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -1737,21 +1721,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:48:21 GMT", + "Date": "Fri, 23 Sep 2022 17:36:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-4d0753952866c649b3bfad4cd7c865e8-8894c880616f347a-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-9627198dd5bd5ece3027d9930ac15d8d-1c7009d24c0513eb-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "83eae57a-84a8-4737-95ec-f9ebee936e70", + "x-ms-correlation-request-id": "be548d4a-0719-4013-9047-135a4fc2c2f6", "x-ms-ratelimit-remaining-subscription-writes": "1195", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T084821Z:83eae57a-84a8-4737-95ec-f9ebee936e70", - "x-request-time": "0.082" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173637Z:be548d4a-0719-4013-9047-135a4fc2c2f6", + "x-request-time": "0.102" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1759,14 +1743,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:48:23 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:36:39 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -1776,9 +1760,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 08:48:21 GMT", - "ETag": "\u00220x8DA9B7432476CC7\u0022", - "Last-Modified": "Wed, 21 Sep 2022 01:54:18 GMT", + "Date": "Fri, 23 Sep 2022 17:36:37 GMT", + "ETag": "\u00220x8DA9D770C570D84\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:19:46 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1787,32 +1771,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 01:54:18 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:19:45 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "9973d8ef-e5fd-4949-aad2-3a6d5d51afea", + "x-ms-meta-name": "8c59cb92-112f-4c04-bda0-1342b610850d", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "69189648-da76-4adf-9b02-269e5c31e745", + "x-ms-meta-version": "c1f97989-616d-4b90-a0d6-bac9ea34bade", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:48:24 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:36:39 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 08:48:21 GMT", + "Date": "Fri, 23 Sep 2022 17:36:37 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1831,7 +1815,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "3996", + "Content-Length": "4050", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -1898,8 +1882,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/49c76b7c-479d-44a7-8b02-2d4b6cbf486c" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/06f01e92-891e-4811-8472-6e28c710b44f" }, "score_job": { "resources": null, @@ -1927,8 +1912,9 @@ "job_output_type": "uri_folder" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2421eda1-6de9-400b-971d-19135547e2d6" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/24e62614-50d5-4a5e-bf85-644b08b53fb8" }, "evaluate_job": { "resources": null, @@ -1952,8 +1938,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/e3369713-6f03-4bf6-82ea-f33321025eb5" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d961f444-e7ea-46a0-aff5-82130d3cd48e" } }, "outputs": { @@ -1973,22 +1960,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "7228", + "Content-Length": "7306", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:48:29 GMT", + "Date": "Fri, 23 Sep 2022 17:36:45 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-04f8cee1636a1cae69db6af2ed444763-2490209087c453fd-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-c43552b77698ec55b2a608aa4ccb1bb2-c6d0047ba635a386-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "91c4ab7c-08e4-40a6-ad2c-e9f5e2f472e3", + "x-ms-correlation-request-id": "eb794220-46cf-47d0-a27b-6192b2bf6724", "x-ms-ratelimit-remaining-subscription-writes": "1193", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T084830Z:91c4ab7c-08e4-40a6-ad2c-e9f5e2f472e3", - "x-request-time": "3.219" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173645Z:eb794220-46cf-47d0-a27b-6192b2bf6724", + "x-request-time": "3.306" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -2073,8 +2060,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/49c76b7c-479d-44a7-8b02-2d4b6cbf486c" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/06f01e92-891e-4811-8472-6e28c710b44f" }, "score_job": { "resources": null, @@ -2102,8 +2090,9 @@ "job_output_type": "uri_folder" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2421eda1-6de9-400b-971d-19135547e2d6" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/24e62614-50d5-4a5e-bf85-644b08b53fb8" }, "evaluate_job": { "resources": null, @@ -2127,8 +2116,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/e3369713-6f03-4bf6-82ea-f33321025eb5" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d961f444-e7ea-46a0-aff5-82130d3cd48e" } }, "inputs": { @@ -2171,7 +2161,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T08:48:29.8207256\u002B00:00", + "createdAt": "2022-09-23T17:36:44.8079986\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_e2e_registered_components.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_e2e_registered_components.json index 3135b5eec999..fa1a33a20b53 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_e2e_registered_components.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_e2e_registered_components.json @@ -10,16 +10,988 @@ "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, + "StatusCode": 404, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1057", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 16:34:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-eastus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "51a58bfd-12c2-4ecb-8744-2caa08383e7f", + "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-response-type": "error", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163453Z:51a58bfd-12c2-4ecb-8744-2caa08383e7f", + "x-request-time": "0.099" + }, + "ResponseBody": { + "error": { + "code": "UserError", + "message": "Not found component train.", + "details": [], + "additionalInfo": [ + { + "type": "ComponentName", + "info": { + "value": "managementfrontend" + } + }, + { + "type": "Correlation", + "info": { + "value": { + "operation": "6954f8f0ba1e72db8c67aadd1c577927", + "request": "e909a3c0c9c9f284" + } + } + }, + { + "type": "Environment", + "info": { + "value": "eastus2" + } + }, + { + "type": "Location", + "info": { + "value": "eastus2" + } + }, + { + "type": "Time", + "info": { + "value": "2022-09-23T16:34:53.8288685\u002B00:00" + } + }, + { + "type": "InnerError", + "info": { + "value": { + "code": "NotFound", + "innerError": { + "code": "ComponentNotFound", + "innerError": null + } + } + } + } + ] + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 16:34:57 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-61f8f1c0120100a547c03fbc769df8bb-fa9e3fcf4c0f3115-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-eastus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "7b0384f7-860f-470b-9e02-f9d21ab4f3c9", + "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163458Z:7b0384f7-860f-470b-9e02-f9d21ab4f3c9", + "x-request-time": "0.124" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", + "name": "workspaceblobstore", + "type": "Microsoft.MachineLearningServices/workspaces/datastores", + "properties": { + "description": null, + "tags": null, + "properties": null, + "isDefault": true, + "credentials": { + "credentialsType": "AccountKey" + }, + "datastoreType": "AzureBlob", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", + "endpoint": "core.windows.net", + "protocol": "https", + "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" + }, + "systemData": { + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", + "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", + "createdByType": "Application", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", + "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", + "lastModifiedByType": "Application" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore/listSecrets?api-version=2022-05-01", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "0", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 16:34:58 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-9d51a19c52f008ba98c34f9f3090c4ba-9e79307abcf22d64-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-eastus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "cbf1e86d-0c19-434e-b7a6-bea0b98dba5c", + "x-ms-ratelimit-remaining-subscription-writes": "1137", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163458Z:cbf1e86d-0c19-434e-b7a6-bea0b98dba5c", + "x-request-time": "0.125" + }, + "ResponseBody": { + "secretsType": "AccountKey", + "key": "dGhpcyBpcyBmYWtlIGtleQ==" + } + }, + { + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/train_src/train.py", + "RequestMethod": "HEAD", + "RequestHeaders": { + "Accept": "application/xml", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:35:02 GMT", + "x-ms-version": "2021-08-06" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Accept-Ranges": "bytes", + "Content-Length": "1498", + "Content-MD5": "bknQRwZOwpy5fofohDUViQ==", + "Content-Type": "application/octet-stream", + "Date": "Fri, 23 Sep 2022 16:35:00 GMT", + "ETag": "\u00220x8DA9D816B49B7F0\u0022", + "Last-Modified": "Fri, 23 Sep 2022 16:34:00 GMT", + "Server": [ + "Windows-Azure-Blob/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": "Origin", + "x-ms-access-tier": "Hot", + "x-ms-access-tier-inferred": "true", + "x-ms-blob-type": "BlockBlob", + "x-ms-creation-time": "Fri, 23 Sep 2022 16:33:59 GMT", + "x-ms-lease-state": "available", + "x-ms-lease-status": "unlocked", + "x-ms-meta-name": "30e97005-691d-4061-af7f-73e639ca226f", + "x-ms-meta-upload_status": "completed", + "x-ms-meta-version": "1", + "x-ms-server-encrypted": "true", + "x-ms-version": "2021-08-06" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/train_src/train.py", + "RequestMethod": "HEAD", + "RequestHeaders": { + "Accept": "application/xml", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:35:02 GMT", + "x-ms-version": "2021-08-06" + }, + "RequestBody": null, + "StatusCode": 404, + "ResponseHeaders": { + "Date": "Fri, 23 Sep 2022 16:35:00 GMT", + "Server": [ + "Windows-Azure-Blob/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Transfer-Encoding": "chunked", + "Vary": "Origin", + "x-ms-error-code": "BlobNotFound", + "x-ms-version": "2021-08-06" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/30e97005-691d-4061-af7f-73e639ca226f/versions/1?api-version=2022-05-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "298", + "Content-Type": "application/json", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": { + "properties": { + "properties": { + "hash_sha256": "0000000000000", + "hash_version": "0000000000000" + }, + "isAnonymous": true, + "isArchived": false, + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/train_src" + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 16:35:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-2df60915ca22a17784e991d6208af1c7-e9b42828e9ff2fdc-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-eastus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "8cdf6499-66c6-4c78-92ec-c00eca533fdb", + "x-ms-ratelimit-remaining-subscription-writes": "1070", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163501Z:8cdf6499-66c6-4c78-92ec-c00eca533fdb", + "x-request-time": "0.148" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/30e97005-691d-4061-af7f-73e639ca226f/versions/1", + "name": "1", + "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", + "properties": { + "description": null, + "tags": {}, + "properties": { + "hash_sha256": "0000000000000", + "hash_version": "0000000000000" + }, + "isArchived": false, + "isAnonymous": false, + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/train_src" + }, + "systemData": { + "createdAt": "2022-09-23T16:34:01.5388891\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T16:35:01.6008425\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", + "lastModifiedByType": "User" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/train/versions/31?api-version=2022-05-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "1196", + "Content-Type": "application/json", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": { + "properties": { + "properties": {}, + "tags": {}, + "isAnonymous": false, + "isArchived": false, + "componentSpec": { + "command": "python train.py --training_data ${{inputs.training_data}} --max_epocs ${{inputs.max_epocs}} --learning_rate ${{inputs.learning_rate}} --learning_rate_schedule ${{inputs.learning_rate_schedule}} --model_output ${{outputs.model_output}}", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/30e97005-691d-4061-af7f-73e639ca226f/versions/1", + "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", + "name": "train", + "tags": {}, + "version": "31", + "display_name": "Train", + "is_deterministic": true, + "inputs": { + "training_data": { + "type": "uri_folder" + }, + "max_epocs": { + "type": "integer" + }, + "learning_rate": { + "type": "number", + "default": "0.01" + }, + "learning_rate_schedule": { + "type": "string", + "default": "time-based" + } + }, + "outputs": { + "model_output": { + "type": "uri_folder" + } + }, + "type": "command", + "_source": "YAML.COMPONENT" + } + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "2260", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 16:35:03 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/train/versions/31?api-version=2022-05-01", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-75548a62937905807f5fa3df1f6722c2-5dba7a81aadc87d2-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-aml-cluster": "vienna-eastus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "0a70fd3a-aca9-41b2-9a10-76ae613f8052", + "x-ms-ratelimit-remaining-subscription-writes": "1069", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163504Z:0a70fd3a-aca9-41b2-9a10-76ae613f8052", + "x-request-time": "1.034" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/train/versions/31", + "name": "31", + "type": "Microsoft.MachineLearningServices/workspaces/components/versions", + "properties": { + "description": null, + "tags": {}, + "properties": {}, + "isArchived": false, + "isAnonymous": false, + "componentSpec": { + "name": "train", + "version": "31", + "display_name": "Train", + "is_deterministic": "True", + "type": "command", + "inputs": { + "training_data": { + "type": "uri_folder", + "optional": "False" + }, + "max_epocs": { + "type": "integer", + "optional": "False" + }, + "learning_rate": { + "type": "number", + "optional": "False", + "default": "0.01" + }, + "learning_rate_schedule": { + "type": "string", + "optional": "False", + "default": "time-based" + } + }, + "outputs": { + "model_output": { + "type": "uri_folder" + } + }, + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/30e97005-691d-4061-af7f-73e639ca226f/versions/1", + "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", + "resources": { + "instance_count": "1" + }, + "command": "python train.py --training_data ${{inputs.training_data}} --max_epocs ${{inputs.max_epocs}} --learning_rate ${{inputs.learning_rate}} --learning_rate_schedule ${{inputs.learning_rate_schedule}} --model_output ${{outputs.model_output}}", + "$schema": "https://componentsdk.azureedge.net/jsonschema/CommandComponent.json" + } + }, + "systemData": { + "createdAt": "2022-09-23T16:35:03.6553481\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T16:35:03.8514232\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", + "lastModifiedByType": "User" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/score/versions/31?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, + "StatusCode": 404, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1057", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 16:35:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-eastus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "aeda2351-671d-494d-a28b-ab057df37e03", + "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-response-type": "error", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163506Z:aeda2351-671d-494d-a28b-ab057df37e03", + "x-request-time": "0.121" + }, + "ResponseBody": { + "error": { + "code": "UserError", + "message": "Not found component score.", + "details": [], + "additionalInfo": [ + { + "type": "ComponentName", + "info": { + "value": "managementfrontend" + } + }, + { + "type": "Correlation", + "info": { + "value": { + "operation": "dca04a38ba492c4b9559ec6f9a7ae807", + "request": "5ea801bc77332f32" + } + } + }, + { + "type": "Environment", + "info": { + "value": "eastus2" + } + }, + { + "type": "Location", + "info": { + "value": "eastus2" + } + }, + { + "type": "Time", + "info": { + "value": "2022-09-23T16:35:06.0583021\u002B00:00" + } + }, + { + "type": "InnerError", + "info": { + "value": { + "code": "NotFound", + "innerError": { + "code": "ComponentNotFound", + "innerError": null + } + } + } + } + ] + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 16:35:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-ae5eab5264befe4920865d5ae6affab9-54fd908443a7c532-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-eastus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "dcb34e3f-9e57-4cdc-9560-984ce44fb6df", + "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163507Z:dcb34e3f-9e57-4cdc-9560-984ce44fb6df", + "x-request-time": "0.115" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", + "name": "workspaceblobstore", + "type": "Microsoft.MachineLearningServices/workspaces/datastores", + "properties": { + "description": null, + "tags": null, + "properties": null, + "isDefault": true, + "credentials": { + "credentialsType": "AccountKey" + }, + "datastoreType": "AzureBlob", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", + "endpoint": "core.windows.net", + "protocol": "https", + "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" + }, + "systemData": { + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", + "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", + "createdByType": "Application", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", + "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", + "lastModifiedByType": "Application" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore/listSecrets?api-version=2022-05-01", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "0", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 16:35:07 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-16f86e43eeebc2d48e1565f7298abc7c-7ce7d1f25ccf7337-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-eastus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "33fa2739-2343-4fbc-9dd7-c456fe340502", + "x-ms-ratelimit-remaining-subscription-writes": "1136", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163507Z:33fa2739-2343-4fbc-9dd7-c456fe340502", + "x-request-time": "0.138" + }, + "ResponseBody": { + "secretsType": "AccountKey", + "key": "dGhpcyBpcyBmYWtlIGtleQ==" + } + }, + { + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/score_src/score.py", + "RequestMethod": "HEAD", + "RequestHeaders": { + "Accept": "application/xml", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:35:10 GMT", + "x-ms-version": "2021-08-06" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Accept-Ranges": "bytes", + "Content-Length": "939", + "Content-MD5": "Q2DIK4bErnWv1LgcGzUh0A==", + "Content-Type": "application/octet-stream", + "Date": "Fri, 23 Sep 2022 16:35:07 GMT", + "ETag": "\u00220x8DA9D7BC769174F\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:53:37 GMT", + "Server": [ + "Windows-Azure-Blob/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": "Origin", + "x-ms-access-tier": "Hot", + "x-ms-access-tier-inferred": "true", + "x-ms-blob-type": "BlockBlob", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:53:37 GMT", + "x-ms-lease-state": "available", + "x-ms-lease-status": "unlocked", + "x-ms-meta-name": "6cbd3051-aa7e-4a3e-ae14-045a19583372", + "x-ms-meta-upload_status": "completed", + "x-ms-meta-version": "1", + "x-ms-server-encrypted": "true", + "x-ms-version": "2021-08-06" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/score_src/score.py", + "RequestMethod": "HEAD", + "RequestHeaders": { + "Accept": "application/xml", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:35:10 GMT", + "x-ms-version": "2021-08-06" + }, + "RequestBody": null, + "StatusCode": 404, + "ResponseHeaders": { + "Date": "Fri, 23 Sep 2022 16:35:08 GMT", + "Server": [ + "Windows-Azure-Blob/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Transfer-Encoding": "chunked", + "Vary": "Origin", + "x-ms-error-code": "BlobNotFound", + "x-ms-version": "2021-08-06" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/6cbd3051-aa7e-4a3e-ae14-045a19583372/versions/1?api-version=2022-05-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "298", + "Content-Type": "application/json", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": { + "properties": { + "properties": { + "hash_sha256": "0000000000000", + "hash_version": "0000000000000" + }, + "isAnonymous": true, + "isArchived": false, + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/score_src" + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 16:35:09 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-6bd64668502516162b47af90d9afe1dc-931153ed741c3463-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-eastus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c0ced3de-07b5-4602-9e69-b5cf3698645a", + "x-ms-ratelimit-remaining-subscription-writes": "1068", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163509Z:c0ced3de-07b5-4602-9e69-b5cf3698645a", + "x-request-time": "0.121" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/6cbd3051-aa7e-4a3e-ae14-045a19583372/versions/1", + "name": "1", + "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", + "properties": { + "description": null, + "tags": {}, + "properties": { + "hash_sha256": "0000000000000", + "hash_version": "0000000000000" + }, + "isArchived": false, + "isAnonymous": false, + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/score_src" + }, + "systemData": { + "createdAt": "2022-09-23T15:53:39.2456895\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T16:35:09.3587314\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", + "lastModifiedByType": "User" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/score/versions/31?api-version=2022-05-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "964", + "Content-Type": "application/json", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": { + "properties": { + "properties": {}, + "tags": {}, + "isAnonymous": false, + "isArchived": false, + "componentSpec": { + "command": "python score.py --model_input ${{inputs.model_input}} --test_data ${{inputs.test_data}} --score_output ${{outputs.score_output}}", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/6cbd3051-aa7e-4a3e-ae14-045a19583372/versions/1", + "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", + "name": "score", + "tags": {}, + "version": "31", + "display_name": "Score", + "is_deterministic": true, + "inputs": { + "model_input": { + "type": "uri_folder" + }, + "test_data": { + "type": "uri_folder" + } + }, + "outputs": { + "score_output": { + "type": "uri_folder" + } + }, + "type": "command", + "_source": "YAML.COMPONENT" + } + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1890", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 16:35:11 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/score/versions/31?api-version=2022-05-01", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-3b4a4a74659e4b015e148c9c00ddeaa5-d0e7a5eeb39697f5-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-aml-cluster": "vienna-eastus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "6067aeae-6ba9-4fa4-90ab-2e929cfc6c61", + "x-ms-ratelimit-remaining-subscription-writes": "1067", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163511Z:6067aeae-6ba9-4fa4-90ab-2e929cfc6c61", + "x-request-time": "0.823" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/score/versions/31", + "name": "31", + "type": "Microsoft.MachineLearningServices/workspaces/components/versions", + "properties": { + "description": null, + "tags": {}, + "properties": {}, + "isArchived": false, + "isAnonymous": false, + "componentSpec": { + "name": "score", + "version": "31", + "display_name": "Score", + "is_deterministic": "True", + "type": "command", + "inputs": { + "model_input": { + "type": "uri_folder", + "optional": "False" + }, + "test_data": { + "type": "uri_folder", + "optional": "False" + } + }, + "outputs": { + "score_output": { + "type": "uri_folder" + } + }, + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/6cbd3051-aa7e-4a3e-ae14-045a19583372/versions/1", + "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", + "resources": { + "instance_count": "1" + }, + "command": "python score.py --model_input ${{inputs.model_input}} --test_data ${{inputs.test_data}} --score_output ${{outputs.score_output}}", + "$schema": "https://componentsdk.azureedge.net/jsonschema/CommandComponent.json" + } + }, + "systemData": { + "createdAt": "2022-09-23T16:35:11.0667895\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T16:35:11.2498909\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", + "lastModifiedByType": "User" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/eval/versions/31?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, + "StatusCode": 404, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1056", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 16:35:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-eastus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e5afe4a5-3c7c-4fbc-a3cc-a3743e7dbf23", + "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-response-type": "error", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163512Z:e5afe4a5-3c7c-4fbc-a3cc-a3743e7dbf23", + "x-request-time": "0.135" + }, + "ResponseBody": { + "error": { + "code": "UserError", + "message": "Not found component eval.", + "details": [], + "additionalInfo": [ + { + "type": "ComponentName", + "info": { + "value": "managementfrontend" + } + }, + { + "type": "Correlation", + "info": { + "value": { + "operation": "4f3f9da1449c623078758d1baec6ca98", + "request": "c2cdc30fb7424c0e" + } + } + }, + { + "type": "Environment", + "info": { + "value": "eastus2" + } + }, + { + "type": "Location", + "info": { + "value": "eastus2" + } + }, + { + "type": "Time", + "info": { + "value": "2022-09-23T16:35:12.8510239\u002B00:00" + } + }, + { + "type": "InnerError", + "info": { + "value": { + "code": "NotFound", + "innerError": { + "code": "ComponentNotFound", + "innerError": null + } + } + } + } + ] + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:48:37 GMT", + "Date": "Fri, 23 Sep 2022 16:35:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-b7eb276729fa373029fb945f1b5acd2e-fea9387a20a3ea87-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-2a08804aeaf773ed57bb3a51bb867b0a-f90a9ee27c0c3ace-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -28,79 +1000,49 @@ ], "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9939be29-f7d0-4429-8718-7e1ce17310e9", - "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-correlation-request-id": "fc53d48f-f61d-448a-bcc9-3a2b0adea97f", + "x-ms-ratelimit-remaining-subscription-reads": "11896", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T084837Z:9939be29-f7d0-4429-8718-7e1ce17310e9", - "x-request-time": "0.148" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163514Z:fc53d48f-f61d-448a-bcc9-3a2b0adea97f", + "x-request-time": "0.083" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/train/versions/31", - "name": "31", - "type": "Microsoft.MachineLearningServices/workspaces/components/versions", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", + "name": "workspaceblobstore", + "type": "Microsoft.MachineLearningServices/workspaces/datastores", "properties": { "description": null, - "tags": {}, - "properties": {}, - "isArchived": false, - "isAnonymous": false, - "componentSpec": { - "name": "train", - "version": "31", - "display_name": "Train", - "is_deterministic": "True", - "type": "command", - "inputs": { - "training_data": { - "type": "uri_folder", - "optional": "False" - }, - "max_epocs": { - "type": "integer", - "optional": "False" - }, - "learning_rate": { - "type": "number", - "optional": "False", - "default": "0.01" - }, - "learning_rate_schedule": { - "type": "string", - "optional": "False", - "default": "time-based" - } - }, - "outputs": { - "model_output": { - "type": "uri_folder" - } - }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/39a93360-d9f5-41ff-b737-fc7a18757120/versions/1", - "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", - "resources": { - "instance_count": "1" - }, - "command": "python train.py --training_data ${{inputs.training_data}} --max_epocs ${{inputs.max_epocs}} --learning_rate ${{inputs.learning_rate}} --learning_rate_schedule ${{inputs.learning_rate_schedule}} --model_output ${{outputs.model_output}}", - "$schema": "https://componentsdk.azureedge.net/jsonschema/CommandComponent.json" - } + "tags": null, + "properties": null, + "isDefault": true, + "credentials": { + "credentialsType": "AccountKey" + }, + "datastoreType": "AzureBlob", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", + "endpoint": "core.windows.net", + "protocol": "https", + "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-21T02:53:27.5871672\u002B00:00", - "createdBy": "Zhengfei Wang", - "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:53:27.7673403\u002B00:00", - "lastModifiedBy": "Zhengfei Wang", - "lastModifiedByType": "User" + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", + "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", + "createdByType": "Application", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", + "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", + "lastModifiedByType": "Application" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/score/versions/31?api-version=2022-05-01", - "RequestMethod": "GET", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore/listSecrets?api-version=2022-05-01", + "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", + "Content-Length": "0", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, @@ -109,11 +1051,125 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:48:38 GMT", + "Date": "Fri, 23 Sep 2022 16:35:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-8299138ed742af6cb059dabec5756939-3dffcabd1a6e6113-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-eastus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c11066f8-53ed-405b-8af4-e6a32cec6390", + "x-ms-ratelimit-remaining-subscription-writes": "1135", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163515Z:c11066f8-53ed-405b-8af4-e6a32cec6390", + "x-request-time": "0.155" + }, + "ResponseBody": { + "secretsType": "AccountKey", + "key": "dGhpcyBpcyBmYWtlIGtleQ==" + } + }, + { + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/eval_src/eval.py", + "RequestMethod": "HEAD", + "RequestHeaders": { + "Accept": "application/xml", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:35:17 GMT", + "x-ms-version": "2021-08-06" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Accept-Ranges": "bytes", + "Content-Length": "795", + "Content-MD5": "Oc7zuFZ4JNgHBd/WtIjpgw==", + "Content-Type": "application/octet-stream", + "Date": "Fri, 23 Sep 2022 16:35:15 GMT", + "ETag": "\u00220x8DA9D817675B2C5\u0022", + "Last-Modified": "Fri, 23 Sep 2022 16:34:19 GMT", + "Server": [ + "Windows-Azure-Blob/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": "Origin", + "x-ms-access-tier": "Hot", + "x-ms-access-tier-inferred": "true", + "x-ms-blob-type": "BlockBlob", + "x-ms-creation-time": "Fri, 23 Sep 2022 16:34:18 GMT", + "x-ms-lease-state": "available", + "x-ms-lease-status": "unlocked", + "x-ms-meta-name": "0346fa2b-5da0-4c96-a641-086553d62c88", + "x-ms-meta-upload_status": "completed", + "x-ms-meta-version": "1", + "x-ms-server-encrypted": "true", + "x-ms-version": "2021-08-06" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/eval_src/eval.py", + "RequestMethod": "HEAD", + "RequestHeaders": { + "Accept": "application/xml", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:35:17 GMT", + "x-ms-version": "2021-08-06" + }, + "RequestBody": null, + "StatusCode": 404, + "ResponseHeaders": { + "Date": "Fri, 23 Sep 2022 16:35:15 GMT", + "Server": [ + "Windows-Azure-Blob/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Transfer-Encoding": "chunked", + "Vary": "Origin", + "x-ms-error-code": "BlobNotFound", + "x-ms-version": "2021-08-06" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/0346fa2b-5da0-4c96-a641-086553d62c88/versions/1?api-version=2022-05-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "297", + "Content-Type": "application/json", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": { + "properties": { + "properties": { + "hash_sha256": "0000000000000", + "hash_version": "0000000000000" + }, + "isAnonymous": true, + "isArchived": false, + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/eval_src" + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 16:35:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-bead70d6ea8ec8bd4724563061e289b6-262ef4c3d4cbec67-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-363b1f5de8c2e754a3d4a7ed0e909b10-7f048c90924ae9a8-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -122,57 +1178,32 @@ ], "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fc5bc4a7-0c51-4ade-9d76-61c122d69649", - "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-correlation-request-id": "23cb67f9-dcb0-45cc-9a69-4d4a124f738c", + "x-ms-ratelimit-remaining-subscription-writes": "1066", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T084838Z:fc5bc4a7-0c51-4ade-9d76-61c122d69649", - "x-request-time": "0.124" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163517Z:23cb67f9-dcb0-45cc-9a69-4d4a124f738c", + "x-request-time": "0.236" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/score/versions/31", - "name": "31", - "type": "Microsoft.MachineLearningServices/workspaces/components/versions", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/0346fa2b-5da0-4c96-a641-086553d62c88/versions/1", + "name": "1", + "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { "description": null, "tags": {}, - "properties": {}, + "properties": { + "hash_sha256": "0000000000000", + "hash_version": "0000000000000" + }, "isArchived": false, "isAnonymous": false, - "componentSpec": { - "name": "score", - "version": "31", - "display_name": "Score", - "is_deterministic": "True", - "type": "command", - "inputs": { - "model_input": { - "type": "uri_folder", - "optional": "False" - }, - "test_data": { - "type": "uri_folder", - "optional": "False" - } - }, - "outputs": { - "score_output": { - "type": "uri_folder" - } - }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/fd9482ba-1783-4eff-ac0e-c65cfd46f793/versions/1", - "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", - "resources": { - "instance_count": "1" - }, - "command": "python score.py --model_input ${{inputs.model_input}} --test_data ${{inputs.test_data}} --score_output ${{outputs.score_output}}", - "$schema": "https://componentsdk.azureedge.net/jsonschema/CommandComponent.json" - } + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/eval_src" }, "systemData": { - "createdAt": "2022-09-21T02:53:33.0798256\u002B00:00", + "createdAt": "2022-09-23T16:34:20.0773406\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:53:33.3517805\u002B00:00", + "lastModifiedAt": "2022-09-23T16:35:16.816218\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -180,37 +1211,64 @@ }, { "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/eval/versions/31?api-version=2022-05-01", - "RequestMethod": "GET", + "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", + "Content-Length": "896", + "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, - "RequestBody": null, - "StatusCode": 200, + "RequestBody": { + "properties": { + "properties": {}, + "tags": {}, + "isAnonymous": false, + "isArchived": false, + "componentSpec": { + "command": "python eval.py --scoring_result ${{inputs.scoring_result}} --eval_output ${{outputs.eval_output}}", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/0346fa2b-5da0-4c96-a641-086553d62c88/versions/1", + "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", + "name": "eval", + "tags": {}, + "version": "31", + "display_name": "Eval", + "is_deterministic": true, + "inputs": { + "scoring_result": { + "type": "uri_folder" + } + }, + "outputs": { + "eval_output": { + "type": "uri_folder" + } + }, + "type": "command", + "_source": "YAML.COMPONENT" + } + } + }, + "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "1762", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:48:39 GMT", + "Date": "Fri, 23 Sep 2022 16:35:18 GMT", "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/eval/versions/31?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-1252cf59cd9b20775f51f5858259951c-7a0836afe083330f-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-2240882963686bfb7177bb73c8920314-f415323effbbe73a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "94d20415-1a8e-45f7-bb64-edc18fbe258a", - "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-correlation-request-id": "df77d506-df1b-4513-97d8-a5413a79b091", + "x-ms-ratelimit-remaining-subscription-writes": "1065", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T084839Z:94d20415-1a8e-45f7-bb64-edc18fbe258a", - "x-request-time": "0.105" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163519Z:df77d506-df1b-4513-97d8-a5413a79b091", + "x-request-time": "0.757" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/eval/versions/31", @@ -239,7 +1297,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/dd7e78b2-36e2-40fc-a30b-574bd77f1602/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/0346fa2b-5da0-4c96-a641-086553d62c88/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -249,10 +1307,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T02:53:38.2769905\u002B00:00", + "createdAt": "2022-09-23T16:35:18.8411329\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:53:38.4918943\u002B00:00", + "lastModifiedAt": "2022-09-23T16:35:19.0484719\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -273,11 +1331,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:48:40 GMT", + "Date": "Fri, 23 Sep 2022 16:35:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-dd17a3cc4a5367cce0a87d8b0ad8094a-a2f9d5662c78fd69-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-cd8d74ef8366a3d258ec3dd811fd4477-ec031df4acceaa8b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -286,11 +1344,11 @@ ], "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b9b48dd4-1044-43cd-8b00-ea3cb50c3a4f", - "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-correlation-request-id": "f89ca54c-6354-4158-bb86-557a90055896", + "x-ms-ratelimit-remaining-subscription-reads": "11895", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T084840Z:b9b48dd4-1044-43cd-8b00-ea3cb50c3a4f", - "x-request-time": "0.118" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163520Z:f89ca54c-6354-4158-bb86-557a90055896", + "x-request-time": "0.113" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/train/versions/31", @@ -333,7 +1391,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/39a93360-d9f5-41ff-b737-fc7a18757120/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/30e97005-691d-4061-af7f-73e639ca226f/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -343,10 +1401,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T02:53:27.5871672\u002B00:00", + "createdAt": "2022-09-23T16:35:03.6553481\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:53:27.7673403\u002B00:00", + "lastModifiedAt": "2022-09-23T16:35:03.8514232\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -367,11 +1425,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:48:40 GMT", + "Date": "Fri, 23 Sep 2022 16:35:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-794009d1d68f3fac6fd8efad6334f104-e2dd1d8dda6dbf8f-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-3bb73fca5c3d35e53f3f691e3993f105-cd94a342dfe8b2e9-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -380,11 +1438,11 @@ ], "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d33ad8e8-39b0-47e1-ac33-f1cb472dbeea", - "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-correlation-request-id": "80d99447-cf38-4dc2-8cd5-62e9214f2ef7", + "x-ms-ratelimit-remaining-subscription-reads": "11894", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T084841Z:d33ad8e8-39b0-47e1-ac33-f1cb472dbeea", - "x-request-time": "0.105" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163521Z:80d99447-cf38-4dc2-8cd5-62e9214f2ef7", + "x-request-time": "0.129" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/score/versions/31", @@ -417,7 +1475,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/fd9482ba-1783-4eff-ac0e-c65cfd46f793/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/6cbd3051-aa7e-4a3e-ae14-045a19583372/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -427,10 +1485,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T02:53:33.0798256\u002B00:00", + "createdAt": "2022-09-23T16:35:11.0667895\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:53:33.3517805\u002B00:00", + "lastModifiedAt": "2022-09-23T16:35:11.2498909\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -451,11 +1509,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:48:41 GMT", + "Date": "Fri, 23 Sep 2022 16:35:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-b64df5db5132e2d097c0cae9421eb027-20bf5825af322402-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-011a280e3e50606447e4904c7f28b83c-a1af368cf9d63846-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -464,11 +1522,11 @@ ], "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9166a0c9-7284-4d1f-be06-0ceccca17215", - "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-correlation-request-id": "a8806870-a058-4f9a-82d2-3d1147c8026a", + "x-ms-ratelimit-remaining-subscription-reads": "11893", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T084842Z:9166a0c9-7284-4d1f-be06-0ceccca17215", - "x-request-time": "0.103" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163522Z:a8806870-a058-4f9a-82d2-3d1147c8026a", + "x-request-time": "0.137" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/eval/versions/31", @@ -497,7 +1555,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/dd7e78b2-36e2-40fc-a30b-574bd77f1602/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/0346fa2b-5da0-4c96-a641-086553d62c88/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -507,10 +1565,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T02:53:38.2769905\u002B00:00", + "createdAt": "2022-09-23T16:35:18.8411329\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:53:38.4918943\u002B00:00", + "lastModifiedAt": "2022-09-23T16:35:19.0484719\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -531,11 +1589,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:48:45 GMT", + "Date": "Fri, 23 Sep 2022 16:35:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-ca270544d2f008be5325196aefea0a14-8a2b89249c385b41-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-af4c30281dad2e7f58f221ea3f679acd-d4cd43c4b4a69fb0-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -544,11 +1602,11 @@ ], "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "95011e8e-f93f-4bcb-8cc7-e80b2b90c295", - "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-correlation-request-id": "49762520-f694-449b-ad81-3789953d3ab8", + "x-ms-ratelimit-remaining-subscription-reads": "11892", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T084846Z:95011e8e-f93f-4bcb-8cc7-e80b2b90c295", - "x-request-time": "0.045" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163526Z:49762520-f694-449b-ad81-3789953d3ab8", + "x-request-time": "0.034" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -557,8 +1615,8 @@ "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T11:47:20.6013506\u002B00:00", - "modifiedOn": "2022-09-15T11:47:27.309088\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -576,44 +1634,19 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 0, + "currentNodeCount": 1, "targetNodeCount": 4, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 0, + "runningNodeCount": 1, "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-21T08:36:35.389\u002B00:00", - "errors": [ - { - "error": { - "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_92fbcd8f75321f6d485a668091b97888e36091744f4980c61f41b4675223dea0_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_c0b012c40824023b5c6231b76a58d1b2e3740b50bda3c31c9581a6b24c5aef5f_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_c737656408b129608bd5c73fa736ea4216046607cd2bd40f61a3e18e3bc82a31_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_d926d2653334081d0c6ac00169793cd4b57455955641cb3b62f1127b332fafe9_d: There is not enough disk space on the node", - "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - }, - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - }, - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - }, - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - } - ] - } - } - ], + "allocationStateTransitionTime": "2022-09-23T16:31:36.634\u002B00:00", + "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -638,11 +1671,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:48:46 GMT", + "Date": "Fri, 23 Sep 2022 16:35:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-388cee602f85d89bb8b2a2b7fc2c71b3-6a1c4542cbe10853-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-3368860334239850096922d894a2424e-704e094dd034847c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -651,11 +1684,11 @@ ], "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1eb61d0b-17cb-4028-bc38-9a427c25c70a", - "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-correlation-request-id": "21888676-00df-47cb-b423-c930795e515a", + "x-ms-ratelimit-remaining-subscription-reads": "11891", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T084847Z:1eb61d0b-17cb-4028-bc38-9a427c25c70a", - "x-request-time": "0.069" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163526Z:21888676-00df-47cb-b423-c930795e515a", + "x-request-time": "0.152" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -670,17 +1703,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -702,21 +1735,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:48:47 GMT", + "Date": "Fri, 23 Sep 2022 16:35:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-2debc1460beec41c5479e37894541afe-24283f6cc8ee37fc-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-bf9dc14f10a09cf93779cd6229393e39-9967bbe927ab09d9-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2eaf7bce-53cc-40f3-86e9-d36974b4f0d6", - "x-ms-ratelimit-remaining-subscription-writes": "1194", + "x-ms-correlation-request-id": "de3b7a83-54c0-4220-8e5d-7331033d70f6", + "x-ms-ratelimit-remaining-subscription-writes": "1134", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T084848Z:2eaf7bce-53cc-40f3-86e9-d36974b4f0d6", - "x-request-time": "0.079" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163527Z:de3b7a83-54c0-4220-8e5d-7331033d70f6", + "x-request-time": "0.102" }, "ResponseBody": { "secretsType": "AccountKey", @@ -724,14 +1757,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:48:49 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:35:29 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -741,9 +1774,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 08:48:48 GMT", - "ETag": "\u00220x8DA9B7432476CC7\u0022", - "Last-Modified": "Wed, 21 Sep 2022 01:54:18 GMT", + "Date": "Fri, 23 Sep 2022 16:35:27 GMT", + "ETag": "\u00220x8DA9D770C570D84\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:19:46 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -752,32 +1785,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 01:54:18 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:19:45 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "9973d8ef-e5fd-4949-aad2-3a6d5d51afea", + "x-ms-meta-name": "8c59cb92-112f-4c04-bda0-1342b610850d", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "69189648-da76-4adf-9b02-269e5c31e745", + "x-ms-meta-version": "c1f97989-616d-4b90-a0d6-bac9ea34bade", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:48:50 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:35:29 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 08:48:48 GMT", + "Date": "Fri, 23 Sep 2022 16:35:27 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -804,11 +1837,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:48:49 GMT", + "Date": "Fri, 23 Sep 2022 16:35:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-966c90493fc0fc0f17b873a3b814c03b-ab746f3b69850334-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-84b447e07ed60ed8e27d66d2c205d697-683aba9f813c3b2b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -817,11 +1850,11 @@ ], "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "438fd7e6-6f2a-44cf-82a0-4d93784f01fd", - "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-correlation-request-id": "14124c74-a62c-4a60-bd1d-d36f5f978eb2", + "x-ms-ratelimit-remaining-subscription-reads": "11890", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T084850Z:438fd7e6-6f2a-44cf-82a0-4d93784f01fd", - "x-request-time": "0.082" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163528Z:14124c74-a62c-4a60-bd1d-d36f5f978eb2", + "x-request-time": "0.094" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -836,17 +1869,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -868,21 +1901,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:48:50 GMT", + "Date": "Fri, 23 Sep 2022 16:35:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-4f1ae82366bfb77c55033a2dd1f3c8d7-5a05335c02ee8685-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-4354276cbbc69b7dbcb3756ae38882ee-35ad8cce1db3cffd-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6adffc38-a662-4fab-84b1-0ec52bb3a5ea", - "x-ms-ratelimit-remaining-subscription-writes": "1193", + "x-ms-correlation-request-id": "10ec731f-56ca-4c70-a62f-4ea56ff8c0ea", + "x-ms-ratelimit-remaining-subscription-writes": "1133", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T084850Z:6adffc38-a662-4fab-84b1-0ec52bb3a5ea", - "x-request-time": "0.101" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163529Z:10ec731f-56ca-4c70-a62f-4ea56ff8c0ea", + "x-request-time": "0.100" }, "ResponseBody": { "secretsType": "AccountKey", @@ -890,14 +1923,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:48:52 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:35:31 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -907,9 +1940,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 08:48:52 GMT", - "ETag": "\u00220x8DA9B7432476CC7\u0022", - "Last-Modified": "Wed, 21 Sep 2022 01:54:18 GMT", + "Date": "Fri, 23 Sep 2022 16:35:29 GMT", + "ETag": "\u00220x8DA9D770C570D84\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:19:46 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -918,32 +1951,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 01:54:18 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:19:45 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "9973d8ef-e5fd-4949-aad2-3a6d5d51afea", + "x-ms-meta-name": "8c59cb92-112f-4c04-bda0-1342b610850d", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "69189648-da76-4adf-9b02-269e5c31e745", + "x-ms-meta-version": "c1f97989-616d-4b90-a0d6-bac9ea34bade", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:48:54 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:35:32 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 08:48:52 GMT", + "Date": "Fri, 23 Sep 2022 16:35:29 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -962,7 +1995,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "3816", + "Content-Length": "3870", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -1036,6 +2069,7 @@ "type": "literal" } }, + "properties": {}, "_source": "REMOTE.WORKSPACE.COMPONENT", "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/train/versions/31" }, @@ -1069,6 +2103,7 @@ "mode": "Upload" } }, + "properties": {}, "_source": "REMOTE.WORKSPACE.COMPONENT", "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/score/versions/31" }, @@ -1097,6 +2132,7 @@ "type": "literal" } }, + "properties": {}, "_source": "REMOTE.WORKSPACE.COMPONENT", "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/eval/versions/31" } @@ -1123,22 +2159,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "7295", + "Content-Length": "7374", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:49:00 GMT", + "Date": "Fri, 23 Sep 2022 16:35:41 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-ee5071c3cf3166f022dd56102904af47-d02e0a2e45065218-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-43766f04615d8dbe11e46e043525e4cb-a8cb310152a01e61-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4e07b2d0-0933-4f93-84e9-6d0e80bdce82", - "x-ms-ratelimit-remaining-subscription-writes": "1192", + "x-ms-correlation-request-id": "941926d0-b962-4bc2-b7fb-60a683aa38c5", + "x-ms-ratelimit-remaining-subscription-writes": "1064", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T084901Z:4e07b2d0-0933-4f93-84e9-6d0e80bdce82", - "x-request-time": "3.499" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163542Z:941926d0-b962-4bc2-b7fb-60a683aa38c5", + "x-request-time": "5.210" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -1226,6 +2262,7 @@ "type": "literal" } }, + "properties": {}, "_source": "REMOTE.WORKSPACE.COMPONENT", "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/train/versions/31" }, @@ -1259,6 +2296,7 @@ "mode": "Upload" } }, + "properties": {}, "_source": "REMOTE.WORKSPACE.COMPONENT", "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/score/versions/31" }, @@ -1287,6 +2325,7 @@ "type": "literal" } }, + "properties": {}, "_source": "REMOTE.WORKSPACE.COMPONENT", "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/eval/versions/31" } @@ -1343,7 +2382,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T08:49:00.395612\u002B00:00", + "createdAt": "2022-09-23T16:35:42.1266876\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_env_conda_file.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_env_conda_file.json index 9e2bc7bb8a7a..c78bb0cfbabc 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_env_conda_file.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_env_conda_file.json @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:53:25 GMT", + "Date": "Fri, 23 Sep 2022 17:41:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-2c4b1a2572b151ef6550db62d9c255d8-6eca6ad15c26ea5c-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-b517a88699f109a2b6206f25f57c8339-954219dc03633ec1-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3b8025a6-20ad-414e-a0ed-374dbde01370", - "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-correlation-request-id": "348eb75a-9bb6-4688-b820-c85931cb690c", + "x-ms-ratelimit-remaining-subscription-reads": "11999", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085325Z:3b8025a6-20ad-414e-a0ed-374dbde01370", - "x-request-time": "0.033" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T174157Z:348eb75a-9bb6-4688-b820-c85931cb690c", + "x-request-time": "0.040" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -41,8 +41,8 @@ "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T11:47:20.6013506\u002B00:00", - "modifiedOn": "2022-09-15T11:47:27.309088\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -60,23 +60,23 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 2, - "targetNodeCount": 2, + "currentNodeCount": 1, + "targetNodeCount": 4, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 0, + "runningNodeCount": 1, "idleNodeCount": 0, "unusableNodeCount": 0, - "leavingNodeCount": 2, + "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-21T08:50:16.129\u002B00:00", + "allocationState": "Steady", + "allocationStateTransitionTime": "2022-09-23T17:36:35.188\u002B00:00", "errors": [ { "error": { "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_92fbcd8f75321f6d485a668091b97888e36091744f4980c61f41b4675223dea0_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_c0b012c40824023b5c6231b76a58d1b2e3740b50bda3c31c9581a6b24c5aef5f_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_c737656408b129608bd5c73fa736ea4216046607cd2bd40f61a3e18e3bc82a31_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_d926d2653334081d0c6ac00169793cd4b57455955641cb3b62f1127b332fafe9_d: There is not enough disk space on the node", + "message": "ComputeNode.Id=tvmps_363864b505daf64a62c550b3039bf88a46c953293d3b4013e4cf21c28d5e312b_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_ae1eeb6a8f3122c9bccdf09343b2e3cd8217911e792aac6cd3d94797ad4b0ad4_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_c6e688f61710764bba9d4ebb13a6e8b9182eca42a7dc5ec038eda668590ef1b3_d: There is not enough disk space on the node", "details": [ { "code": "Message", @@ -86,10 +86,6 @@ "code": "Message", "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." }, - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - }, { "code": "Message", "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." @@ -122,24 +118,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:53:27 GMT", + "Date": "Fri, 23 Sep 2022 17:42:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-450cf51f2350fd198cc20c8fb4731157-f792617910038659-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-66ad3a481066255d70ebef40ce2c8125-d9dfd7f63ab2221b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f4a1cbbe-96f0-4a79-9a1e-f3c572f58420", - "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-correlation-request-id": "b24656b9-8e31-4ed0-b1a6-14e53b61649f", + "x-ms-ratelimit-remaining-subscription-reads": "11998", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085328Z:f4a1cbbe-96f0-4a79-9a1e-f3c572f58420", - "x-request-time": "0.096" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T174200Z:b24656b9-8e31-4ed0-b1a6-14e53b61649f", + "x-request-time": "0.113" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -154,17 +150,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -186,20 +182,20 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:53:28 GMT", + "Date": "Fri, 23 Sep 2022 17:42:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-402405d73ec74b7b70199916f861be0f-9b6ffc51c1d18388-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-153508b56da4c3a1cac85ddffa3d6b94-0d19df28f736cf4e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "412a5515-66f6-4d3c-863a-1ccf1e7a802d", - "x-ms-ratelimit-remaining-subscription-writes": "1176", + "x-ms-correlation-request-id": "7944ba1b-9f09-4d43-bd40-988d5a43fde5", + "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085329Z:412a5515-66f6-4d3c-863a-1ccf1e7a802d", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T174201Z:7944ba1b-9f09-4d43-bd40-988d5a43fde5", "x-request-time": "0.082" }, "ResponseBody": { @@ -208,14 +204,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src/hello.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src/hello.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:53:30 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:42:03 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -225,9 +221,9 @@ "Content-Length": "164", "Content-MD5": "JwWnNxaURgTIg9SlJe9A0A==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 08:53:29 GMT", - "ETag": "\u00220x8DA9B7D26265493\u0022", - "Last-Modified": "Wed, 21 Sep 2022 02:58:23 GMT", + "Date": "Fri, 23 Sep 2022 17:42:02 GMT", + "ETag": "\u00220x8DA9D826E18C1DA\u0022", + "Last-Modified": "Fri, 23 Sep 2022 16:41:14 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -236,10 +232,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 02:58:23 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 16:41:13 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "c9b6e7be-0ed6-4471-b073-0edd39e4137d", + "x-ms-meta-name": "5855cc03-1b8a-4a2b-91b1-fd2758224e95", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -248,20 +244,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/src/hello.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/src/hello.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:53:31 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:42:05 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 08:53:29 GMT", + "Date": "Fri, 23 Sep 2022 17:42:03 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -274,7 +270,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/c9b6e7be-0ed6-4471-b073-0edd39e4137d/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5855cc03-1b8a-4a2b-91b1-fd2758224e95/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -292,7 +288,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src" } }, "StatusCode": 200, @@ -300,27 +296,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:53:31 GMT", + "Date": "Fri, 23 Sep 2022 17:42:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-c78e1f2f1644a0be7feb7d20717f6b9d-819962a0edf9ed4a-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-aa421fab0c47f1b1f82245d283581f92-32a82201b991cb21-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0a04ec95-a4af-47c1-92b7-7946af0b97b8", - "x-ms-ratelimit-remaining-subscription-writes": "1149", + "x-ms-correlation-request-id": "93554394-04f4-48d6-a193-07f3c9550007", + "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085332Z:0a04ec95-a4af-47c1-92b7-7946af0b97b8", - "x-request-time": "0.077" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T174205Z:93554394-04f4-48d6-a193-07f3c9550007", + "x-request-time": "0.102" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/c9b6e7be-0ed6-4471-b073-0edd39e4137d/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5855cc03-1b8a-4a2b-91b1-fd2758224e95/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -332,13 +328,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src" }, "systemData": { - "createdAt": "2022-09-21T02:58:25.2023088\u002B00:00", + "createdAt": "2022-09-23T16:41:15.1144074\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T08:53:31.9313933\u002B00:00", + "lastModifiedAt": "2022-09-23T17:42:05.0525604\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -368,20 +364,20 @@ "Cache-Control": "no-cache", "Content-Length": "1138", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:53:32 GMT", + "Date": "Fri, 23 Sep 2022 17:42:06 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/CliV2AnonymousEnvironment/versions/10b3d00605ac2c688c42ded3e8902065?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-6f51bd3da2d638e3f78528ca9a7ecf8a-9a8ed84ec0e8b6eb-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-11e76795caf702254b2b4c1869d3ba28-7f06208570919eca-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "30f6dd2d-a0ba-4d5c-86e1-a6730f6563f1", - "x-ms-ratelimit-remaining-subscription-writes": "1148", + "x-ms-correlation-request-id": "3d1fa314-2442-4faf-ba8c-2813b384c721", + "x-ms-ratelimit-remaining-subscription-writes": "1198", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085333Z:30f6dd2d-a0ba-4d5c-86e1-a6730f6563f1", - "x-request-time": "0.920" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T174206Z:3d1fa314-2442-4faf-ba8c-2813b384c721", + "x-request-time": "0.993" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/CliV2AnonymousEnvironment/versions/10b3d00605ac2c688c42ded3e8902065", @@ -399,10 +395,10 @@ "osType": "Linux" }, "systemData": { - "createdAt": "2022-09-21T02:58:26.3678884\u002B00:00", + "createdAt": "2022-09-23T16:41:16.4287363\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:58:26.3678884\u002B00:00", + "lastModifiedAt": "2022-09-23T16:41:16.4287363\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -427,7 +423,7 @@ "isArchived": false, "componentSpec": { "command": "python hello.py", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/c9b6e7be-0ed6-4471-b073-0edd39e4137d/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5855cc03-1b8a-4a2b-91b1-fd2758224e95/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/CliV2AnonymousEnvironment/versions/10b3d00605ac2c688c42ded3e8902065", "name": "azureml_anonymous", "tags": {}, @@ -444,26 +440,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1615", + "Content-Length": "1614", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:53:34 GMT", + "Date": "Fri, 23 Sep 2022 17:42:06 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-84a73084d53582f35c2e5403f1f1a1b2-163cfe0d4e484f38-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-afabcdfe5628fbcbdddb1e5cac8317c4-99899084ed10ae04-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "89284efa-8680-4b7a-ad8a-db7d5f5e7f0d", - "x-ms-ratelimit-remaining-subscription-writes": "1147", + "x-ms-correlation-request-id": "46ef7257-075a-4ea8-b04b-ea6da445e533", + "x-ms-ratelimit-remaining-subscription-writes": "1197", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085334Z:89284efa-8680-4b7a-ad8a-db7d5f5e7f0d", - "x-request-time": "0.207" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T174207Z:46ef7257-075a-4ea8-b04b-ea6da445e533", + "x-request-time": "0.222" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/422f5998-9673-4d09-aa6d-cb3a8b4918d5", - "name": "422f5998-9673-4d09-aa6d-cb3a8b4918d5", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/13608121-0f74-438d-ad97-b1846f9f36f9", + "name": "13608121-0f74-438d-ad97-b1846f9f36f9", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -473,11 +469,11 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "422f5998-9673-4d09-aa6d-cb3a8b4918d5", + "version": "13608121-0f74-438d-ad97-b1846f9f36f9", "display_name": "Hello_Python_World", "is_deterministic": "True", "type": "command", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/c9b6e7be-0ed6-4471-b073-0edd39e4137d/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5855cc03-1b8a-4a2b-91b1-fd2758224e95/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/CliV2AnonymousEnvironment/versions/10b3d00605ac2c688c42ded3e8902065", "resources": { "instance_count": "1" @@ -487,10 +483,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T02:58:38.3821325\u002B00:00", + "createdAt": "2022-09-23T16:41:28.9943553\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:58:38.6137631\u002B00:00", + "lastModifiedAt": "2022-09-23T16:41:29.149444\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -503,7 +499,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "878", + "Content-Length": "896", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -529,8 +525,9 @@ "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "inputs": {}, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/422f5998-9673-4d09-aa6d-cb3a8b4918d5" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/13608121-0f74-438d-ad97-b1846f9f36f9" } }, "outputs": {}, @@ -542,22 +539,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2731", + "Content-Length": "2756", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:53:41 GMT", + "Date": "Fri, 23 Sep 2022 17:42:13 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-5683ae73a2ada32fc3e2b8acc3f6bbe9-c581ed2de94e15e5-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-34bd884e10cc1494e4c379cd6a2e21a9-96c45eb5a2f2b756-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e96bca7b-a415-4ec9-a07d-e16bc35345a0", - "x-ms-ratelimit-remaining-subscription-writes": "1146", + "x-ms-correlation-request-id": "6ad5fc8f-835d-4c8c-bcfc-8af12fb72eb7", + "x-ms-ratelimit-remaining-subscription-writes": "1196", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085342Z:e96bca7b-a415-4ec9-a07d-e16bc35345a0", - "x-request-time": "3.423" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T174214Z:6ad5fc8f-835d-4c8c-bcfc-8af12fb72eb7", + "x-request-time": "3.231" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -619,8 +616,9 @@ "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "inputs": {}, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/422f5998-9673-4d09-aa6d-cb3a8b4918d5" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/13608121-0f74-438d-ad97-b1846f9f36f9" } }, "inputs": {}, @@ -628,7 +626,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T08:53:41.6866844\u002B00:00", + "createdAt": "2022-09-23T17:42:13.910049\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_env_public_docker_image.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_env_public_docker_image.json index 1a3ec2881a91..cc0ae7e1c458 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_env_public_docker_image.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_env_public_docker_image.json @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:52:42 GMT", + "Date": "Fri, 23 Sep 2022 16:40:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-f405a24507001add28a140f13ce2e540-43f7ef5090e184ef-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-604058aee47fe6e6a0452ad3109a29a3-8be7d33c1c33cf67-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ab7951c3-468c-4fec-a112-f238f2bb5334", - "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-correlation-request-id": "5cf87a71-9f63-46eb-a77c-fa0e6e2d929b", + "x-ms-ratelimit-remaining-subscription-reads": "11863", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085242Z:ab7951c3-468c-4fec-a112-f238f2bb5334", - "x-request-time": "0.035" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164021Z:5cf87a71-9f63-46eb-a77c-fa0e6e2d929b", + "x-request-time": "0.034" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -41,8 +41,8 @@ "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T11:47:20.6013506\u002B00:00", - "modifiedOn": "2022-09-15T11:47:27.309088\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -60,44 +60,19 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 2, - "targetNodeCount": 2, + "currentNodeCount": 3, + "targetNodeCount": 3, "nodeStateCounts": { "preparingNodeCount": 0, "runningNodeCount": 0, - "idleNodeCount": 0, + "idleNodeCount": 3, "unusableNodeCount": 0, - "leavingNodeCount": 2, + "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-21T08:50:16.129\u002B00:00", - "errors": [ - { - "error": { - "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_92fbcd8f75321f6d485a668091b97888e36091744f4980c61f41b4675223dea0_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_c0b012c40824023b5c6231b76a58d1b2e3740b50bda3c31c9581a6b24c5aef5f_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_c737656408b129608bd5c73fa736ea4216046607cd2bd40f61a3e18e3bc82a31_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_d926d2653334081d0c6ac00169793cd4b57455955641cb3b62f1127b332fafe9_d: There is not enough disk space on the node", - "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - }, - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - }, - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - }, - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - } - ] - } - } - ], + "allocationStateTransitionTime": "2022-09-23T16:39:36.144\u002B00:00", + "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -122,24 +97,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:52:44 GMT", + "Date": "Fri, 23 Sep 2022 16:40:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-99b9dcf3e55314c2e913c5e41e20d3f2-69049534514e137e-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-78e4f143a646f651518ede3343fac01f-8654c24c2d844e6f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "666ddea3-517d-46c7-91d8-46013cb045e6", - "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-correlation-request-id": "2f6ade5d-56b2-40db-8d83-95c6af1bde96", + "x-ms-ratelimit-remaining-subscription-reads": "11862", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085244Z:666ddea3-517d-46c7-91d8-46013cb045e6", - "x-request-time": "0.105" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164025Z:2f6ade5d-56b2-40db-8d83-95c6af1bde96", + "x-request-time": "0.085" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -154,17 +129,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -186,21 +161,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:52:45 GMT", + "Date": "Fri, 23 Sep 2022 16:40:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-eae85267aed7b0696d221bbdd9e8f09e-db0ad60f1fab2bc6-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-a5c81643d02656ce6b8c79bc32199e1b-f493b8d4c51a68e0-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9e02f6aa-6319-4342-866e-95a76a89bdf9", - "x-ms-ratelimit-remaining-subscription-writes": "1178", + "x-ms-correlation-request-id": "a01423a2-361c-469c-b192-4fa97a1ab134", + "x-ms-ratelimit-remaining-subscription-writes": "1117", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085245Z:9e02f6aa-6319-4342-866e-95a76a89bdf9", - "x-request-time": "0.091" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164026Z:a01423a2-361c-469c-b192-4fa97a1ab134", + "x-request-time": "0.117" }, "ResponseBody": { "secretsType": "AccountKey", @@ -208,14 +183,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src/hello.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src/hello.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:52:47 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:40:28 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -225,9 +200,9 @@ "Content-Length": "29", "Content-MD5": "Su6WKXXx57Itf5DK8YwOyA==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 08:52:46 GMT", - "ETag": "\u00220x8DA9B7C8D862996\u0022", - "Last-Modified": "Wed, 21 Sep 2022 02:54:07 GMT", + "Date": "Fri, 23 Sep 2022 16:40:26 GMT", + "ETag": "\u00220x8DA9D7739E4D733\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:21:02 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -236,10 +211,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 02:54:07 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:21:02 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "2d60fb81-b7eb-47c7-83c9-9da1a6771251", + "x-ms-meta-name": "ac6f84f0-1d4a-4bd2-9f0b-b943ec2b8c8c", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -248,20 +223,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/src/hello.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/src/hello.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:52:48 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:40:29 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 08:52:46 GMT", + "Date": "Fri, 23 Sep 2022 16:40:26 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -274,7 +249,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2d60fb81-b7eb-47c7-83c9-9da1a6771251/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac6f84f0-1d4a-4bd2-9f0b-b943ec2b8c8c/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -292,7 +267,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src" } }, "StatusCode": 200, @@ -300,27 +275,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:52:47 GMT", + "Date": "Fri, 23 Sep 2022 16:40:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-218f13f82dfa43e7ac1d70fb1019e5f5-94c48a324da9145b-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-5735f422452368d8ed89e43ce28fe298-24e4e7a5abf1d96d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3748c6ba-f49f-4ac9-a872-50db2fc2789a", - "x-ms-ratelimit-remaining-subscription-writes": "1156", + "x-ms-correlation-request-id": "59e6bed6-998c-47dd-9459-8c19e0291d34", + "x-ms-ratelimit-remaining-subscription-writes": "1027", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085248Z:3748c6ba-f49f-4ac9-a872-50db2fc2789a", - "x-request-time": "0.063" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164028Z:59e6bed6-998c-47dd-9459-8c19e0291d34", + "x-request-time": "0.101" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2d60fb81-b7eb-47c7-83c9-9da1a6771251/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac6f84f0-1d4a-4bd2-9f0b-b943ec2b8c8c/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -332,13 +307,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src" }, "systemData": { - "createdAt": "2022-09-21T02:54:09.0530021\u002B00:00", + "createdAt": "2022-09-23T15:21:03.126663\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T08:52:48.1774096\u002B00:00", + "lastModifiedAt": "2022-09-23T16:40:28.2235535\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -365,22 +340,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "870", + "Content-Length": "872", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:52:49 GMT", + "Date": "Fri, 23 Sep 2022 16:40:29 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/CliV2AnonymousEnvironment/versions/68073f1f02f580d44d338545875b59ff?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-1bb67fa47e627e5658f32d9d2a16997f-8830b0cd8692b8c5-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-3da1a70474d777b9161bd422e6f7a9a3-1be6013fd25ca4c6-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "308d8d57-a86e-4fd6-a197-9423bcfb8da2", - "x-ms-ratelimit-remaining-subscription-writes": "1155", + "x-ms-correlation-request-id": "c54b7cc6-bd0d-44f0-99d4-e797d44da398", + "x-ms-ratelimit-remaining-subscription-writes": "1026", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085250Z:308d8d57-a86e-4fd6-a197-9423bcfb8da2", - "x-request-time": "0.428" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164029Z:c54b7cc6-bd0d-44f0-99d4-e797d44da398", + "x-request-time": "0.927" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/CliV2AnonymousEnvironment/versions/68073f1f02f580d44d338545875b59ff", @@ -398,10 +373,10 @@ "osType": "Linux" }, "systemData": { - "createdAt": "2022-09-21T02:57:44.329573\u002B00:00", + "createdAt": "2022-09-23T16:40:29.2502284\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:57:44.329573\u002B00:00", + "lastModifiedAt": "2022-09-23T16:40:29.2502284\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -426,7 +401,7 @@ "isArchived": false, "componentSpec": { "command": "python hello.py", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2d60fb81-b7eb-47c7-83c9-9da1a6771251/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac6f84f0-1d4a-4bd2-9f0b-b943ec2b8c8c/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/CliV2AnonymousEnvironment/versions/68073f1f02f580d44d338545875b59ff", "name": "azureml_anonymous", "tags": {}, @@ -445,24 +420,24 @@ "Cache-Control": "no-cache", "Content-Length": "1615", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:52:50 GMT", + "Date": "Fri, 23 Sep 2022 16:40:30 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-77a1f2bf9fe024ea67a734f26fa35697-e42eae3915e4b48a-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-e2d8d452e9993a52a114a1cb9884d34d-91437dc0d4e1933a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "703aba8c-7e6f-4178-bc2a-c70cd8de75c7", - "x-ms-ratelimit-remaining-subscription-writes": "1154", + "x-ms-correlation-request-id": "c16c6e0e-f40d-46c0-b043-87887a0269e8", + "x-ms-ratelimit-remaining-subscription-writes": "1025", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085251Z:703aba8c-7e6f-4178-bc2a-c70cd8de75c7", - "x-request-time": "0.228" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164031Z:c16c6e0e-f40d-46c0-b043-87887a0269e8", + "x-request-time": "0.459" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/84c3ec7b-a58f-4438-9c01-6950f9f2d1e6", - "name": "84c3ec7b-a58f-4438-9c01-6950f9f2d1e6", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/fbf21cdf-7ff2-4c0b-916e-b44aa032e24d", + "name": "fbf21cdf-7ff2-4c0b-916e-b44aa032e24d", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -472,11 +447,11 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "84c3ec7b-a58f-4438-9c01-6950f9f2d1e6", + "version": "fbf21cdf-7ff2-4c0b-916e-b44aa032e24d", "display_name": "Hello_Python_World", "is_deterministic": "True", "type": "command", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2d60fb81-b7eb-47c7-83c9-9da1a6771251/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac6f84f0-1d4a-4bd2-9f0b-b943ec2b8c8c/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/CliV2AnonymousEnvironment/versions/68073f1f02f580d44d338545875b59ff", "resources": { "instance_count": "1" @@ -486,10 +461,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T02:57:46.5326938\u002B00:00", + "createdAt": "2022-09-23T16:40:31.0845598\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:57:46.6467576\u002B00:00", + "lastModifiedAt": "2022-09-23T16:40:31.0845598\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -502,7 +477,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "887", + "Content-Length": "905", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -528,8 +503,9 @@ "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "inputs": {}, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/84c3ec7b-a58f-4438-9c01-6950f9f2d1e6" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/fbf21cdf-7ff2-4c0b-916e-b44aa032e24d" } }, "outputs": {}, @@ -541,22 +517,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2740", + "Content-Length": "2766", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:52:57 GMT", + "Date": "Fri, 23 Sep 2022 16:40:39 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-eae2308bca6fcc6b5c7ae2e8cf2a0b46-1fbee7cbacb1c172-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-799a1dff8c5cbd0f74e00877043e8df4-f9faba2035572747-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b59d5238-b309-42ee-a6bb-954da4bd2daf", - "x-ms-ratelimit-remaining-subscription-writes": "1153", + "x-ms-correlation-request-id": "248e1000-3aa7-4d57-b406-2649c42341fd", + "x-ms-ratelimit-remaining-subscription-writes": "1024", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085258Z:b59d5238-b309-42ee-a6bb-954da4bd2daf", - "x-request-time": "3.274" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164040Z:248e1000-3aa7-4d57-b406-2649c42341fd", + "x-request-time": "2.840" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -618,8 +594,9 @@ "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "inputs": {}, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/84c3ec7b-a58f-4438-9c01-6950f9f2d1e6" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/fbf21cdf-7ff2-4c0b-916e-b44aa032e24d" } }, "inputs": {}, @@ -627,7 +604,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T08:52:57.8881724\u002B00:00", + "createdAt": "2022-09-23T16:40:39.5508733\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_env_registered.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_env_registered.json index 4ae0416ee42a..4869242a6232 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_env_registered.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_env_registered.json @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:53:02 GMT", + "Date": "Fri, 23 Sep 2022 16:40:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-af8ac3af6dedb5320d32b3d4059813ef-8cdf8e83411726be-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-82f7243a99b9395b92d1bdb1c74bda2c-bd548f95f2e732a5-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a924754e-f729-40af-a4ac-6f9a2208d339", - "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-correlation-request-id": "441402b0-e719-4437-989a-5e16e31296e6", + "x-ms-ratelimit-remaining-subscription-reads": "11861", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085303Z:a924754e-f729-40af-a4ac-6f9a2208d339", - "x-request-time": "0.036" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164046Z:441402b0-e719-4437-989a-5e16e31296e6", + "x-request-time": "0.035" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -41,8 +41,8 @@ "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T11:47:20.6013506\u002B00:00", - "modifiedOn": "2022-09-15T11:47:27.309088\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -60,44 +60,19 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 2, - "targetNodeCount": 2, + "currentNodeCount": 3, + "targetNodeCount": 3, "nodeStateCounts": { "preparingNodeCount": 0, "runningNodeCount": 0, - "idleNodeCount": 0, + "idleNodeCount": 3, "unusableNodeCount": 0, - "leavingNodeCount": 2, + "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-21T08:50:16.129\u002B00:00", - "errors": [ - { - "error": { - "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_92fbcd8f75321f6d485a668091b97888e36091744f4980c61f41b4675223dea0_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_c0b012c40824023b5c6231b76a58d1b2e3740b50bda3c31c9581a6b24c5aef5f_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_c737656408b129608bd5c73fa736ea4216046607cd2bd40f61a3e18e3bc82a31_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_d926d2653334081d0c6ac00169793cd4b57455955641cb3b62f1127b332fafe9_d: There is not enough disk space on the node", - "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - }, - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - }, - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - }, - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - } - ] - } - } - ], + "allocationStateTransitionTime": "2022-09-23T16:39:36.144\u002B00:00", + "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -122,24 +97,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:53:05 GMT", + "Date": "Fri, 23 Sep 2022 16:40:49 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-f6880bd7303232f7a4af0282a7a5843a-70e2b205bc90a186-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-7c7c8e8858a203ab645b118902744e5b-9be9b816a1e7dc35-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f9f6d162-5950-47a3-a197-381c8df9762e", - "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-correlation-request-id": "3290b9eb-c979-43b9-ba07-2801aa507a47", + "x-ms-ratelimit-remaining-subscription-reads": "11860", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085306Z:f9f6d162-5950-47a3-a197-381c8df9762e", - "x-request-time": "0.073" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164050Z:3290b9eb-c979-43b9-ba07-2801aa507a47", + "x-request-time": "0.122" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -154,17 +129,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -186,21 +161,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:53:07 GMT", + "Date": "Fri, 23 Sep 2022 16:40:51 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-34635dac54dfec9092e41da59874a48d-90aed756d37a3576-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-ddbb1a46af3027acf4e05df308dddbcd-833fa21a67040638-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2a3a49d0-5b7c-4e79-8339-21d5c0f8b1d2", - "x-ms-ratelimit-remaining-subscription-writes": "1177", + "x-ms-correlation-request-id": "351e2e06-ea42-46a0-b8d9-067dd41a14ee", + "x-ms-ratelimit-remaining-subscription-writes": "1116", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085308Z:2a3a49d0-5b7c-4e79-8339-21d5c0f8b1d2", - "x-request-time": "0.142" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164051Z:351e2e06-ea42-46a0-b8d9-067dd41a14ee", + "x-request-time": "0.099" }, "ResponseBody": { "secretsType": "AccountKey", @@ -208,14 +183,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src/hello.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src/hello.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:53:09 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:40:55 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -225,9 +200,9 @@ "Content-Length": "29", "Content-MD5": "Su6WKXXx57Itf5DK8YwOyA==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 08:53:08 GMT", - "ETag": "\u00220x8DA9B7C8D862996\u0022", - "Last-Modified": "Wed, 21 Sep 2022 02:54:07 GMT", + "Date": "Fri, 23 Sep 2022 16:40:52 GMT", + "ETag": "\u00220x8DA9D7739E4D733\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:21:02 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -236,10 +211,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 02:54:07 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:21:02 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "2d60fb81-b7eb-47c7-83c9-9da1a6771251", + "x-ms-meta-name": "ac6f84f0-1d4a-4bd2-9f0b-b943ec2b8c8c", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -248,20 +223,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/src/hello.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/src/hello.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:53:10 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:40:55 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 08:53:08 GMT", + "Date": "Fri, 23 Sep 2022 16:40:53 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -274,7 +249,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2d60fb81-b7eb-47c7-83c9-9da1a6771251/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac6f84f0-1d4a-4bd2-9f0b-b943ec2b8c8c/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -292,7 +267,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src" } }, "StatusCode": 200, @@ -300,27 +275,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:53:09 GMT", + "Date": "Fri, 23 Sep 2022 16:40:53 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-f530729351c543174b000ef8bc81aa21-f2513471e90e377a-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-e1ac50382f1f5662b21afa242cf00568-dbf53b6d6f738e84-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fa6ecb74-8210-4a9b-b512-61cc9c250c03", - "x-ms-ratelimit-remaining-subscription-writes": "1152", + "x-ms-correlation-request-id": "455ffa1f-1bb2-4c72-80db-300f6782171c", + "x-ms-ratelimit-remaining-subscription-writes": "1023", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085310Z:fa6ecb74-8210-4a9b-b512-61cc9c250c03", - "x-request-time": "0.493" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164054Z:455ffa1f-1bb2-4c72-80db-300f6782171c", + "x-request-time": "0.106" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2d60fb81-b7eb-47c7-83c9-9da1a6771251/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac6f84f0-1d4a-4bd2-9f0b-b943ec2b8c8c/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -332,13 +307,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src" }, "systemData": { - "createdAt": "2022-09-21T02:54:09.0530021\u002B00:00", + "createdAt": "2022-09-23T15:21:03.126663\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T08:53:10.1199451\u002B00:00", + "lastModifiedAt": "2022-09-23T16:40:54.4571592\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -363,7 +338,7 @@ "isArchived": false, "componentSpec": { "command": "python hello.py", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2d60fb81-b7eb-47c7-83c9-9da1a6771251/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac6f84f0-1d4a-4bd2-9f0b-b943ec2b8c8c/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "name": "azureml_anonymous", "tags": {}, @@ -380,26 +355,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1598", + "Content-Length": "1600", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:53:12 GMT", + "Date": "Fri, 23 Sep 2022 16:40:54 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-c9060adf6a8a8b84737b2f553f6e744c-7d2e6e30d2a33ae6-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-874746503ce35cdb2e930f8f10c8cae7-76295041d8ad0bbf-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d45b91ab-0af8-4b2d-ad30-1a490245f42b", - "x-ms-ratelimit-remaining-subscription-writes": "1151", + "x-ms-correlation-request-id": "9cdcd05c-5abb-46e2-8b1e-e7e58bd5ae00", + "x-ms-ratelimit-remaining-subscription-writes": "1022", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085313Z:d45b91ab-0af8-4b2d-ad30-1a490245f42b", - "x-request-time": "0.664" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164055Z:9cdcd05c-5abb-46e2-8b1e-e7e58bd5ae00", + "x-request-time": "0.299" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/53d4c707-621e-4845-a588-52b805e48b4a", - "name": "53d4c707-621e-4845-a588-52b805e48b4a", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2903ce1e-7e81-472b-821d-46ef674cf5da", + "name": "2903ce1e-7e81-472b-821d-46ef674cf5da", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -409,11 +384,11 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "53d4c707-621e-4845-a588-52b805e48b4a", + "version": "2903ce1e-7e81-472b-821d-46ef674cf5da", "display_name": "Hello_Python_World", "is_deterministic": "True", "type": "command", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2d60fb81-b7eb-47c7-83c9-9da1a6771251/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac6f84f0-1d4a-4bd2-9f0b-b943ec2b8c8c/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -423,10 +398,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T02:54:10.2521381\u002B00:00", + "createdAt": "2022-09-23T16:36:03.0930427\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:54:10.45611\u002B00:00", + "lastModifiedAt": "2022-09-23T16:36:03.2501023\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -439,7 +414,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "878", + "Content-Length": "896", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -465,8 +440,9 @@ "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "inputs": {}, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/53d4c707-621e-4845-a588-52b805e48b4a" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2903ce1e-7e81-472b-821d-46ef674cf5da" } }, "outputs": {}, @@ -478,22 +454,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2731", + "Content-Length": "2757", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:53:19 GMT", + "Date": "Fri, 23 Sep 2022 16:41:02 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-1b21992d8ade49c5c725e7bdfb10e8ac-3fdd27255ee62131-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-c6e77d532eb391ff4f4c8bac5711b441-64c908bca53931df-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1a01379a-8eb2-4e9e-8b5c-aecb421f53a7", - "x-ms-ratelimit-remaining-subscription-writes": "1150", + "x-ms-correlation-request-id": "618f4760-218e-48da-a4b0-7b056796a515", + "x-ms-ratelimit-remaining-subscription-writes": "1021", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085320Z:1a01379a-8eb2-4e9e-8b5c-aecb421f53a7", - "x-request-time": "3.139" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164102Z:618f4760-218e-48da-a4b0-7b056796a515", + "x-request-time": "3.032" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -555,8 +531,9 @@ "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "inputs": {}, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/53d4c707-621e-4845-a588-52b805e48b4a" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2903ce1e-7e81-472b-821d-46ef674cf5da" } }, "inputs": {}, @@ -564,7 +541,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T08:53:20.1318951\u002B00:00", + "createdAt": "2022-09-23T16:41:02.5507013\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_local_data_input.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_local_data_input.json index 2a930c861620..9c4e79509039 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_local_data_input.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_local_data_input.json @@ -15,11 +15,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:50:52 GMT", + "Date": "Fri, 23 Sep 2022 16:38:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-27ec4db99c30c8fe36f81fca7a3b0ec2-00edc09934a4cb2e-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-094e0fcdacd103678dcf0fa01dd7d0eb-d4f153655cbca1f4-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -28,11 +28,11 @@ ], "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "738d5281-4d56-4be7-ae7d-88eec76940d9", - "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-correlation-request-id": "d84a8cee-b6fc-45b7-9226-d274eab507f3", + "x-ms-ratelimit-remaining-subscription-reads": "11877", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085053Z:738d5281-4d56-4be7-ae7d-88eec76940d9", - "x-request-time": "0.067" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163817Z:d84a8cee-b6fc-45b7-9226-d274eab507f3", + "x-request-time": "0.037" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -41,8 +41,8 @@ "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T11:47:20.6013506\u002B00:00", - "modifiedOn": "2022-09-15T11:47:27.309088\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -60,44 +60,19 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 0, - "targetNodeCount": 2, + "currentNodeCount": 3, + "targetNodeCount": 4, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 0, - "idleNodeCount": 0, + "runningNodeCount": 2, + "idleNodeCount": 1, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-21T08:50:16.129\u002B00:00", - "errors": [ - { - "error": { - "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_92fbcd8f75321f6d485a668091b97888e36091744f4980c61f41b4675223dea0_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_c0b012c40824023b5c6231b76a58d1b2e3740b50bda3c31c9581a6b24c5aef5f_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_c737656408b129608bd5c73fa736ea4216046607cd2bd40f61a3e18e3bc82a31_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_d926d2653334081d0c6ac00169793cd4b57455955641cb3b62f1127b332fafe9_d: There is not enough disk space on the node", - "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - }, - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - }, - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - }, - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - } - ] - } - } - ], + "allocationStateTransitionTime": "2022-09-23T16:35:40.357\u002B00:00", + "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -122,24 +97,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:50:55 GMT", + "Date": "Fri, 23 Sep 2022 16:38:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-1e1f7084ed7d922d4e5cafdc4d8f3717-52d74206b63d846e-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-6a7702a2a136c1a9b0bbb1347957df91-91434b05cbbdef8f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "80184d9d-692b-4009-b16f-c3464a04647b", - "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-correlation-request-id": "0df63245-baa7-4079-a0f4-95d764f6e435", + "x-ms-ratelimit-remaining-subscription-reads": "11876", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085055Z:80184d9d-692b-4009-b16f-c3464a04647b", - "x-request-time": "0.081" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163821Z:0df63245-baa7-4079-a0f4-95d764f6e435", + "x-request-time": "0.143" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -154,17 +129,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -186,21 +161,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:50:55 GMT", + "Date": "Fri, 23 Sep 2022 16:38:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-d9831df122670f303bbe565abdcd2014-0f5e046339836859-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-546fb0345be05f4c08dd5c89a4503ce3-ef0b10c44a292558-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "430422bd-d153-4e0d-8ce6-df9d602a4125", - "x-ms-ratelimit-remaining-subscription-writes": "1184", + "x-ms-correlation-request-id": "798cdc9b-ff24-4bb6-ad99-c56b5a3a2f18", + "x-ms-ratelimit-remaining-subscription-writes": "1124", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085056Z:430422bd-d153-4e0d-8ce6-df9d602a4125", - "x-request-time": "0.088" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163821Z:798cdc9b-ff24-4bb6-ad99-c56b5a3a2f18", + "x-request-time": "0.108" }, "ResponseBody": { "secretsType": "AccountKey", @@ -208,14 +183,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src/hello.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src/hello.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:50:58 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:38:24 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -225,9 +200,9 @@ "Content-Length": "1047", "Content-MD5": "7Nw2lUMzv7gyeKW\u002BUjU8nw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 08:50:56 GMT", - "ETag": "\u00220x8DA9B7C98CE13B3\u0022", - "Last-Modified": "Wed, 21 Sep 2022 02:54:26 GMT", + "Date": "Fri, 23 Sep 2022 16:38:21 GMT", + "ETag": "\u00220x8DA9D81C4C24338\u0022", + "Last-Modified": "Fri, 23 Sep 2022 16:36:30 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -236,10 +211,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 02:54:26 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 16:36:30 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "1f1f8eed-eef4-46ab-b1ad-97a827a59cd6", + "x-ms-meta-name": "bb609702-6837-4cd9-9bee-d567644aa06e", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -248,20 +223,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/src/hello.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/src/hello.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:50:58 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:38:24 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 08:50:57 GMT", + "Date": "Fri, 23 Sep 2022 16:38:22 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -274,7 +249,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/1f1f8eed-eef4-46ab-b1ad-97a827a59cd6/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/bb609702-6837-4cd9-9bee-d567644aa06e/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -292,7 +267,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src" } }, "StatusCode": 200, @@ -300,27 +275,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:50:57 GMT", + "Date": "Fri, 23 Sep 2022 16:38:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-725aa18a8074570f3c228810630a9f0c-44fb1f1916896c56-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-ae611004d9d21109864235a031c25588-b7574a007e09ff07-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "442ab9f6-125a-4ef1-b423-d96a2baa445c", - "x-ms-ratelimit-remaining-subscription-writes": "1171", + "x-ms-correlation-request-id": "ec6206c0-d128-456f-923d-acf4114d1adf", + "x-ms-ratelimit-remaining-subscription-writes": "1043", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085058Z:442ab9f6-125a-4ef1-b423-d96a2baa445c", - "x-request-time": "0.071" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163823Z:ec6206c0-d128-456f-923d-acf4114d1adf", + "x-request-time": "0.072" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/1f1f8eed-eef4-46ab-b1ad-97a827a59cd6/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/bb609702-6837-4cd9-9bee-d567644aa06e/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -332,13 +307,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src" }, "systemData": { - "createdAt": "2022-09-21T02:54:27.5553838\u002B00:00", + "createdAt": "2022-09-23T16:36:31.1396116\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T08:50:58.2000646\u002B00:00", + "lastModifiedAt": "2022-09-23T16:38:23.3970796\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -363,7 +338,7 @@ "isArchived": false, "componentSpec": { "command": "python hello.py --input_data ${{inputs.sample_input_data}} --input_string ${{inputs.sample_input_string}} --output_data ${{outputs.sample_output_data}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/1f1f8eed-eef4-46ab-b1ad-97a827a59cd6/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/bb609702-6837-4cd9-9bee-d567644aa06e/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "name": "azureml_anonymous", "tags": {}, @@ -392,26 +367,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2112", + "Content-Length": "2110", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:50:59 GMT", + "Date": "Fri, 23 Sep 2022 16:38:25 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-16333215e509efb5147e8588553b8ce4-f6c92876ee38c5c7-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-a28faeae968aba120d87ddc9e466edf7-c3291ba4194c65d0-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "218bae02-7beb-42a2-90c6-c715c4c51269", - "x-ms-ratelimit-remaining-subscription-writes": "1170", + "x-ms-correlation-request-id": "06106074-9d20-46d9-a80b-9459c3cf25c9", + "x-ms-ratelimit-remaining-subscription-writes": "1042", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085059Z:218bae02-7beb-42a2-90c6-c715c4c51269", - "x-request-time": "0.318" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163825Z:06106074-9d20-46d9-a80b-9459c3cf25c9", + "x-request-time": "0.647" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/789d34cb-944d-47d0-a235-22f58361bb21", - "name": "789d34cb-944d-47d0-a235-22f58361bb21", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/99d9d350-891a-4930-99f7-e09dd1ae7b20", + "name": "99d9d350-891a-4930-99f7-e09dd1ae7b20", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -421,7 +396,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "789d34cb-944d-47d0-a235-22f58361bb21", + "version": "99d9d350-891a-4930-99f7-e09dd1ae7b20", "display_name": "Hello_Python_World", "is_deterministic": "True", "type": "command", @@ -441,7 +416,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/1f1f8eed-eef4-46ab-b1ad-97a827a59cd6/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/bb609702-6837-4cd9-9bee-d567644aa06e/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -451,10 +426,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T02:55:49.8704391\u002B00:00", + "createdAt": "2022-09-23T16:38:24.952124\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:55:50.1325947\u002B00:00", + "lastModifiedAt": "2022-09-23T16:38:24.952124\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -475,24 +450,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:51:00 GMT", + "Date": "Fri, 23 Sep 2022 16:38:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-cb18a8e6396e9cb2a7651a6e0a563edb-46f2bba2b3dcd4ef-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-d2f4a4fe72edf3fd6b6f54b8043d1859-c8bafb1c4a59b788-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7f566376-020f-4d1c-814a-cb22c1e28b5e", - "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-correlation-request-id": "0bcaa811-3c2f-4931-8147-b36c3cb30997", + "x-ms-ratelimit-remaining-subscription-reads": "11875", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085100Z:7f566376-020f-4d1c-814a-cb22c1e28b5e", - "x-request-time": "0.110" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163826Z:0bcaa811-3c2f-4931-8147-b36c3cb30997", + "x-request-time": "0.081" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -507,17 +482,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -539,21 +514,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:51:01 GMT", + "Date": "Fri, 23 Sep 2022 16:38:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-4c6146e24ad6574fa1505ea01857530e-916797b1cbb49273-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-e14747b8c092872e786894162a92d862-03f2447c1cf00400-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0cb197f9-76be-4f1a-a62e-677c666b0275", - "x-ms-ratelimit-remaining-subscription-writes": "1183", + "x-ms-correlation-request-id": "59b74249-d01c-4371-a991-6e16bc7dab8a", + "x-ms-ratelimit-remaining-subscription-writes": "1123", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085101Z:0cb197f9-76be-4f1a-a62e-677c666b0275", - "x-request-time": "0.085" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163827Z:59b74249-d01c-4371-a991-6e16bc7dab8a", + "x-request-time": "0.093" }, "ResponseBody": { "secretsType": "AccountKey", @@ -561,14 +536,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/data/sample.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/data/sample.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:51:03 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:38:29 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -578,9 +553,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 08:51:02 GMT", - "ETag": "\u00220x8DA9B7CCC9971A6\u0022", - "Last-Modified": "Wed, 21 Sep 2022 02:55:53 GMT", + "Date": "Fri, 23 Sep 2022 16:38:27 GMT", + "ETag": "\u00220x8DA9D7BE5A046D9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:54:28 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -589,32 +564,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 02:55:53 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:54:27 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "83696465-85ca-42b1-9f9b-81869113fc56", + "x-ms-meta-name": "a144e40a-1670-4168-a96f-eba38109cc45", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "4864cc21-becf-4c9d-9958-45fa9ed10208", + "x-ms-meta-version": "a2d99187-0868-4b22-add5-a121322288a5", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/data/sample.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/data/sample.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:51:03 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:38:30 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 08:51:02 GMT", + "Date": "Fri, 23 Sep 2022 16:38:27 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -633,7 +608,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1620", + "Content-Length": "1638", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -683,8 +658,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/789d34cb-944d-47d0-a235-22f58361bb21" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/99d9d350-891a-4930-99f7-e09dd1ae7b20" } }, "outputs": { @@ -701,22 +677,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3909", + "Content-Length": "3936", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:51:10 GMT", + "Date": "Fri, 23 Sep 2022 16:38:35 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-471f1cd64417af1d16274b9dde2e7a53-bf4b2299bdfbe33a-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-2dde7e83749ba20eea5597b8df0f7dcd-c4d91090a7912723-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3cf47cab-d243-491d-b8ed-999193bd204e", - "x-ms-ratelimit-remaining-subscription-writes": "1169", + "x-ms-correlation-request-id": "657f7256-0b4f-417e-91b7-32bff7603f3b", + "x-ms-ratelimit-remaining-subscription-writes": "1041", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085111Z:3cf47cab-d243-491d-b8ed-999193bd204e", - "x-request-time": "3.276" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T163836Z:657f7256-0b4f-417e-91b7-32bff7603f3b", + "x-request-time": "3.214" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -792,8 +768,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/789d34cb-944d-47d0-a235-22f58361bb21" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/99d9d350-891a-4930-99f7-e09dd1ae7b20" } }, "inputs": { @@ -820,7 +797,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T08:51:10.732129\u002B00:00", + "createdAt": "2022-09-23T16:38:35.7700636\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_mpi_hello_world.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_mpi_hello_world.json index 03ebcc5ee21b..a9040111ff11 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_mpi_hello_world.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_mpi_hello_world.json @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:54:07 GMT", + "Date": "Fri, 23 Sep 2022 16:42:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-5cba6ba99f18c0ebc3f711a656610c8d-6b865b4702a0a98b-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-3b947a2f566067b573b8ca43594b5a78-bbdb729829918c83-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c6bc699e-6c4f-4c56-9890-741ab1b2024c", - "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-correlation-request-id": "c3596a09-bc3c-4411-8088-33ef5c237d89", + "x-ms-ratelimit-remaining-subscription-reads": "11855", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085407Z:c6bc699e-6c4f-4c56-9890-741ab1b2024c", - "x-request-time": "0.034" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164209Z:c3596a09-bc3c-4411-8088-33ef5c237d89", + "x-request-time": "0.052" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -41,8 +41,8 @@ "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T11:47:20.6013506\u002B00:00", - "modifiedOn": "2022-09-15T11:47:27.309088\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -60,44 +60,19 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 2, - "targetNodeCount": 2, + "currentNodeCount": 4, + "targetNodeCount": 3, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 0, - "idleNodeCount": 0, + "runningNodeCount": 2, + "idleNodeCount": 2, "unusableNodeCount": 0, - "leavingNodeCount": 2, + "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-21T08:50:16.129\u002B00:00", - "errors": [ - { - "error": { - "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_92fbcd8f75321f6d485a668091b97888e36091744f4980c61f41b4675223dea0_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_c0b012c40824023b5c6231b76a58d1b2e3740b50bda3c31c9581a6b24c5aef5f_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_c737656408b129608bd5c73fa736ea4216046607cd2bd40f61a3e18e3bc82a31_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_d926d2653334081d0c6ac00169793cd4b57455955641cb3b62f1127b332fafe9_d: There is not enough disk space on the node", - "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - }, - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - }, - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - }, - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - } - ] - } - } - ], + "allocationStateTransitionTime": "2022-09-23T16:39:36.144\u002B00:00", + "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -122,24 +97,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:54:09 GMT", + "Date": "Fri, 23 Sep 2022 16:42:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-26f4a83e8928d0f1365ac19d947d3edd-6557b774273b814c-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-688e64db4458729c37562bb4d3219769-c8b6d469f9668617-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2c845604-9846-45c2-8319-e0e6c250ba83", - "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-correlation-request-id": "08a25f03-fec7-4e6c-a294-9c228cb835a8", + "x-ms-ratelimit-remaining-subscription-reads": "11854", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085409Z:2c845604-9846-45c2-8319-e0e6c250ba83", - "x-request-time": "0.079" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164211Z:08a25f03-fec7-4e6c-a294-9c228cb835a8", + "x-request-time": "0.078" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -154,17 +129,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -186,21 +161,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:54:10 GMT", + "Date": "Fri, 23 Sep 2022 16:42:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-820253811050f55e4dd5e2646c6e7d86-356b97169849d150-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-d9f63c7677a2f24c79823589996a37b4-a5b92c71f0939f91-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "700a077d-fee4-4f6b-82e4-25100a56b837", - "x-ms-ratelimit-remaining-subscription-writes": "1174", + "x-ms-correlation-request-id": "0b83f1ca-2176-4025-8c1a-152322fbcd10", + "x-ms-ratelimit-remaining-subscription-writes": "1113", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085410Z:700a077d-fee4-4f6b-82e4-25100a56b837", - "x-request-time": "0.160" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164212Z:0b83f1ca-2176-4025-8c1a-152322fbcd10", + "x-request-time": "0.124" }, "ResponseBody": { "secretsType": "AccountKey", @@ -208,14 +183,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:54:12 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:42:15 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -225,9 +200,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 08:54:11 GMT", - "ETag": "\u00220x8DA9ABCB2F66FF1\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:00:47 GMT", + "Date": "Fri, 23 Sep 2022 16:42:12 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -236,10 +211,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:00:47 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ca7591cf-36a6-4425-bb3d-579cd587b206", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -248,20 +223,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:54:12 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:42:15 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 08:54:11 GMT", + "Date": "Fri, 23 Sep 2022 16:42:12 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -274,7 +249,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -292,7 +267,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -300,27 +275,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:54:13 GMT", + "Date": "Fri, 23 Sep 2022 16:42:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-f82cb4a7b31c54c117a965d10d94f20d-4caad2a69c9efbc9-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-f627c350e8e6a1da2e97dc24d433994f-0e6c6c307d66e45d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "be9bc887-8c0d-46d2-bf2d-e57fe0946a75", - "x-ms-ratelimit-remaining-subscription-writes": "1142", + "x-ms-correlation-request-id": "59c0dbe9-8c46-4cfb-a788-8b9e723888d2", + "x-ms-ratelimit-remaining-subscription-writes": "1013", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085413Z:be9bc887-8c0d-46d2-bf2d-e57fe0946a75", - "x-request-time": "0.083" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164214Z:59c0dbe9-8c46-4cfb-a788-8b9e723888d2", + "x-request-time": "0.124" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -332,13 +307,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-20T04:00:48.9804975\u002B00:00", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T08:54:13.7201566\u002B00:00", + "lastModifiedAt": "2022-09-23T16:42:14.8158236\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -365,7 +340,7 @@ "componentSpec": { "compute": "azureml:gpu-cluster", "command": "printenv", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-tensorflow-2.4-ubuntu18.04-py37-cuda11-gpu/versions/15", "resources": { "instance_count": 2 @@ -392,24 +367,24 @@ "Cache-Control": "no-cache", "Content-Length": "1756", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:54:15 GMT", + "Date": "Fri, 23 Sep 2022 16:42:16 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-5b374a1a799fa6da8798f250a0c5ce97-17c941a3133c7152-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-722225156ffeeb42037e5ab368595055-d51b1de6933d0c23-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "99cae27d-2bfe-4991-95c9-709dcf782c06", - "x-ms-ratelimit-remaining-subscription-writes": "1141", + "x-ms-correlation-request-id": "2e8c6958-a1ca-4b17-8f76-b476c9ece0fa", + "x-ms-ratelimit-remaining-subscription-writes": "1012", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085415Z:99cae27d-2bfe-4991-95c9-709dcf782c06", - "x-request-time": "0.662" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164217Z:2e8c6958-a1ca-4b17-8f76-b476c9ece0fa", + "x-request-time": "0.470" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/e8ce8cae-04f6-4a20-bbfa-ebb97eed66d2", - "name": "e8ce8cae-04f6-4a20-bbfa-ebb97eed66d2", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1c41dc6c-64ee-4d08-9b28-2900e9d77c12", + "name": "1c41dc6c-64ee-4d08-9b28-2900e9d77c12", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -419,12 +394,12 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "e8ce8cae-04f6-4a20-bbfa-ebb97eed66d2", + "version": "1c41dc6c-64ee-4d08-9b28-2900e9d77c12", "display_name": "MPI-hello-world", "is_deterministic": "True", "type": "command", "description": "Show the MPI training environment", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-tensorflow-2.4-ubuntu18.04-py37-cuda11-gpu/versions/15", "resources": { "instance_count": "2" @@ -438,10 +413,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T02:59:19.1860644\u002B00:00", + "createdAt": "2022-09-23T16:42:17.2775478\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:59:19.3781204\u002B00:00", + "lastModifiedAt": "2022-09-23T16:42:17.2775478\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -454,7 +429,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "991", + "Content-Length": "1009", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -487,8 +462,9 @@ "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "inputs": {}, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/e8ce8cae-04f6-4a20-bbfa-ebb97eed66d2" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1c41dc6c-64ee-4d08-9b28-2900e9d77c12" } }, "outputs": {}, @@ -500,22 +476,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2883", + "Content-Length": "2909", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:54:22 GMT", + "Date": "Fri, 23 Sep 2022 16:42:33 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-b160029a48938c6ba937c9f3b28425ef-e912a795b75cfa8b-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-a612c70ac4f9ac7fbb1d189409fab155-c322c633f5c134fe-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3469af8e-9481-41af-9c4a-826cde5b6d40", - "x-ms-ratelimit-remaining-subscription-writes": "1140", + "x-ms-correlation-request-id": "a251250e-b776-49d8-9f50-9c9eb2447d79", + "x-ms-ratelimit-remaining-subscription-writes": "1011", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085422Z:3469af8e-9481-41af-9c4a-826cde5b6d40", - "x-request-time": "2.637" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164234Z:a251250e-b776-49d8-9f50-9c9eb2447d79", + "x-request-time": "2.872" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -583,8 +559,9 @@ "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "inputs": {}, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/e8ce8cae-04f6-4a20-bbfa-ebb97eed66d2" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1c41dc6c-64ee-4d08-9b28-2900e9d77c12" } }, "inputs": {}, @@ -592,7 +569,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T08:54:21.6980547\u002B00:00", + "createdAt": "2022-09-23T16:42:34.1328876\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_multi_parallel_components_with_file_input_pipeline_output.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_multi_parallel_components_with_file_input_pipeline_output.json index dace4f6bc2e9..6186fda2f944 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_multi_parallel_components_with_file_input_pipeline_output.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_multi_parallel_components_with_file_input_pipeline_output.json @@ -15,11 +15,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:56:46 GMT", + "Date": "Fri, 23 Sep 2022 16:49:09 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-0bacf857a3307bccaaef43c4fe2b125f-bfb804f6f9d2d3bc-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-84513dbf247f11338f5270f4f49ffbd5-b91d02598da2acc0-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -28,11 +28,11 @@ ], "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ffeae1dc-0847-44a0-a835-7a0f2e326319", - "x-ms-ratelimit-remaining-subscription-reads": "11928", + "x-ms-correlation-request-id": "6bf14117-3242-44aa-8e8e-4d2bd71df23c", + "x-ms-ratelimit-remaining-subscription-reads": "11836", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085646Z:ffeae1dc-0847-44a0-a835-7a0f2e326319", - "x-request-time": "0.034" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164910Z:6bf14117-3242-44aa-8e8e-4d2bd71df23c", + "x-request-time": "0.033" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -41,8 +41,8 @@ "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T11:47:20.6013506\u002B00:00", - "modifiedOn": "2022-09-15T11:47:27.309088\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -60,36 +60,19 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 0, + "currentNodeCount": 2, "targetNodeCount": 4, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 0, + "runningNodeCount": 2, "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-21T08:54:16.356\u002B00:00", - "errors": [ - { - "error": { - "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_92fbcd8f75321f6d485a668091b97888e36091744f4980c61f41b4675223dea0_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_d926d2653334081d0c6ac00169793cd4b57455955641cb3b62f1127b332fafe9_d: There is not enough disk space on the node", - "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - }, - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - } - ] - } - } - ], + "allocationStateTransitionTime": "2022-09-23T16:47:36.504\u002B00:00", + "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -114,11 +97,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:56:47 GMT", + "Date": "Fri, 23 Sep 2022 16:49:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-e8c864a2e8f08f170750c273e5ca8e5f-37cc3acddde1171a-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-9a51f1e8ceb06abf94b74f3c3dc7d9c4-e6ff59d7db63f743-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -127,11 +110,11 @@ ], "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "80e98b79-c837-4ae0-94ab-0fa981642c3e", - "x-ms-ratelimit-remaining-subscription-reads": "11927", + "x-ms-correlation-request-id": "1ccbe715-b2c4-46b7-bcb3-ccb42a429e56", + "x-ms-ratelimit-remaining-subscription-reads": "11835", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085647Z:80e98b79-c837-4ae0-94ab-0fa981642c3e", - "x-request-time": "0.041" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164911Z:1ccbe715-b2c4-46b7-bcb3-ccb42a429e56", + "x-request-time": "0.054" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -140,8 +123,8 @@ "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T11:47:20.6013506\u002B00:00", - "modifiedOn": "2022-09-15T11:47:27.309088\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -159,36 +142,19 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 0, + "currentNodeCount": 2, "targetNodeCount": 4, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 0, + "runningNodeCount": 2, "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-21T08:54:16.356\u002B00:00", - "errors": [ - { - "error": { - "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_92fbcd8f75321f6d485a668091b97888e36091744f4980c61f41b4675223dea0_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_d926d2653334081d0c6ac00169793cd4b57455955641cb3b62f1127b332fafe9_d: There is not enough disk space on the node", - "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - }, - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - } - ] - } - } - ], + "allocationStateTransitionTime": "2022-09-23T16:47:36.504\u002B00:00", + "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -213,11 +179,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:56:48 GMT", + "Date": "Fri, 23 Sep 2022 16:49:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-03f029b02df5da8f5f7a0a189c7bc0e5-de0fe7f141c01a8c-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-9659614af94bbb43d62b99360b32894d-beb803401b1451e4-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -226,11 +192,11 @@ ], "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9e1e564e-9a79-49ac-95de-deac1a47f087", - "x-ms-ratelimit-remaining-subscription-reads": "11926", + "x-ms-correlation-request-id": "44267b69-c63e-4587-803e-2d7da163953f", + "x-ms-ratelimit-remaining-subscription-reads": "11834", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085648Z:9e1e564e-9a79-49ac-95de-deac1a47f087", - "x-request-time": "0.034" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164912Z:44267b69-c63e-4587-803e-2d7da163953f", + "x-request-time": "0.052" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -239,8 +205,8 @@ "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T11:47:20.6013506\u002B00:00", - "modifiedOn": "2022-09-15T11:47:27.309088\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -258,36 +224,19 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 0, + "currentNodeCount": 2, "targetNodeCount": 4, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 0, + "runningNodeCount": 2, "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-21T08:54:16.356\u002B00:00", - "errors": [ - { - "error": { - "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_92fbcd8f75321f6d485a668091b97888e36091744f4980c61f41b4675223dea0_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_d926d2653334081d0c6ac00169793cd4b57455955641cb3b62f1127b332fafe9_d: There is not enough disk space on the node", - "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - }, - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - } - ] - } - } - ], + "allocationStateTransitionTime": "2022-09-23T16:47:36.504\u002B00:00", + "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -312,24 +261,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:56:50 GMT", + "Date": "Fri, 23 Sep 2022 16:49:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-23d62b1a4cf2885a54d44bf7cb43f5aa-2ac00e51c886bb09-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-fdc3ead26dd2ef8d76de8c6b38ab92f4-bfb719a8ee44bf47-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fec88c00-f997-467d-9130-2443250bd99e", - "x-ms-ratelimit-remaining-subscription-reads": "11925", + "x-ms-correlation-request-id": "fc71fe6c-cfda-4bd5-baa0-30fe6c5d98eb", + "x-ms-ratelimit-remaining-subscription-reads": "11833", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085651Z:fec88c00-f997-467d-9130-2443250bd99e", - "x-request-time": "0.082" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164916Z:fc71fe6c-cfda-4bd5-baa0-30fe6c5d98eb", + "x-request-time": "0.072" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -344,17 +293,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -376,21 +325,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:56:53 GMT", + "Date": "Fri, 23 Sep 2022 16:49:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-479273591a1ce160f381e44390de46ab-be7d6b65776f0289-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-ce246ea6c4c88372f752030da48c9f42-065721622805fa03-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "09e8a140-2aa8-4e34-9b17-8d042583f73e", - "x-ms-ratelimit-remaining-subscription-writes": "1160", + "x-ms-correlation-request-id": "cdf8dce9-dc23-4a4c-8c2d-c3b19ac40a7e", + "x-ms-ratelimit-remaining-subscription-writes": "1099", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085653Z:09e8a140-2aa8-4e34-9b17-8d042583f73e", - "x-request-time": "0.144" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164917Z:cdf8dce9-dc23-4a4c-8c2d-c3b19ac40a7e", + "x-request-time": "0.188" }, "ResponseBody": { "secretsType": "AccountKey", @@ -398,14 +347,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src/convert_data.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src/convert_data.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:56:54 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:49:20 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -415,9 +364,9 @@ "Content-Length": "969", "Content-MD5": "DhunCanKGufSVuPKEYN51w==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 08:56:53 GMT", - "ETag": "\u00220x8DA9ABDA1AA81F0\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:07:27 GMT", + "Date": "Fri, 23 Sep 2022 16:49:18 GMT", + "ETag": "\u00220x8DA9D77F491F568\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:26:15 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -426,10 +375,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:07:26 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:26:15 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "f4f57fd3-0d13-423d-a406-4d6ccd43be14", + "x-ms-meta-name": "55c9c168-236e-473f-b35e-c3cba03dad49", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -438,20 +387,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/src/convert_data.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/src/convert_data.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:56:55 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:49:20 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 08:56:53 GMT", + "Date": "Fri, 23 Sep 2022 16:49:18 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -464,7 +413,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f4f57fd3-0d13-423d-a406-4d6ccd43be14/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/55c9c168-236e-473f-b35e-c3cba03dad49/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -482,7 +431,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src" } }, "StatusCode": 200, @@ -490,27 +439,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:56:55 GMT", + "Date": "Fri, 23 Sep 2022 16:49:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-700eaa940a3e343dda26699306f54ee7-eb2f299ff12edc1a-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-55ca0ff7d5c69c58bba87ea400171507-cbc9ecb3696b1647-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c4a61666-f441-4f41-896e-82a91e57995b", - "x-ms-ratelimit-remaining-subscription-writes": "1115", + "x-ms-correlation-request-id": "7ba6a7c6-3bab-4761-816c-c95fa3d220c4", + "x-ms-ratelimit-remaining-subscription-writes": "986", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085656Z:c4a61666-f441-4f41-896e-82a91e57995b", - "x-request-time": "0.117" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164919Z:7ba6a7c6-3bab-4761-816c-c95fa3d220c4", + "x-request-time": "0.207" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f4f57fd3-0d13-423d-a406-4d6ccd43be14/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/55c9c168-236e-473f-b35e-c3cba03dad49/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -522,13 +471,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src" }, "systemData": { - "createdAt": "2022-09-20T04:07:28.9023268\u002B00:00", + "createdAt": "2022-09-23T15:26:16.5278828\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T08:56:55.8729126\u002B00:00", + "lastModifiedAt": "2022-09-23T16:49:19.7552836\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -577,7 +526,7 @@ }, "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f4f57fd3-0d13-423d-a406-4d6ccd43be14/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/55c9c168-236e-473f-b35e-c3cba03dad49/versions/1", "entry_script": "score.py", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1" @@ -593,26 +542,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2315", + "Content-Length": "2313", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:56:57 GMT", + "Date": "Fri, 23 Sep 2022 16:49:20 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-40382a71f10b6591dc187c8ee46dc11c-b7b8ac7f2c50c568-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-c0dd396415e6e3f1568b26d51966217c-c3c709574f4bd2d9-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6c0058e6-118b-435a-b038-6c3c5e248c48", - "x-ms-ratelimit-remaining-subscription-writes": "1114", + "x-ms-correlation-request-id": "c59b5c18-da11-4e18-9ee3-6c4eba223a03", + "x-ms-ratelimit-remaining-subscription-writes": "985", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085657Z:6c0058e6-118b-435a-b038-6c3c5e248c48", - "x-request-time": "0.321" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164921Z:c59b5c18-da11-4e18-9ee3-6c4eba223a03", + "x-request-time": "0.330" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ac26d5af-25b8-4649-b2ce-7f585b63f45e", - "name": "ac26d5af-25b8-4649-b2ce-7f585b63f45e", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/60b739ff-1e46-47cd-a815-9aeb86e22e55", + "name": "60b739ff-1e46-47cd-a815-9aeb86e22e55", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -622,7 +571,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "ac26d5af-25b8-4649-b2ce-7f585b63f45e", + "version": "60b739ff-1e46-47cd-a815-9aeb86e22e55", "display_name": "BatchScore", "is_deterministic": "True", "type": "parallel", @@ -640,7 +589,7 @@ } }, "task": { - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f4f57fd3-0d13-423d-a406-4d6ccd43be14/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/55c9c168-236e-473f-b35e-c3cba03dad49/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "entry_script": "score.py", @@ -660,10 +609,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T01:24:46.0744261\u002B00:00", + "createdAt": "2022-09-23T16:27:30.6477673\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T01:24:46.2680151\u002B00:00", + "lastModifiedAt": "2022-09-23T16:27:30.84688\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -684,24 +633,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:56:58 GMT", + "Date": "Fri, 23 Sep 2022 16:49:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-0bb969b44e7f2fff47330bb50d08cb7b-572f94988b369c1a-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-19f3901ed59276b22d84b6870374cde1-623dc85288e2d1b7-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7c8c23a3-f184-4112-b4be-3d547e52b456", - "x-ms-ratelimit-remaining-subscription-reads": "11924", + "x-ms-correlation-request-id": "1e46c15f-381d-4bca-abef-fbe5642528f8", + "x-ms-ratelimit-remaining-subscription-reads": "11832", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085659Z:7c8c23a3-f184-4112-b4be-3d547e52b456", - "x-request-time": "0.083" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164923Z:1e46c15f-381d-4bca-abef-fbe5642528f8", + "x-request-time": "0.085" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -716,17 +665,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -748,21 +697,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:57:00 GMT", + "Date": "Fri, 23 Sep 2022 16:49:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-d3b299b19b46baf1d96b446b762e5830-8659f4c7c8fcc24b-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-134ca961aaa487e40b55ee2b76a44ce7-a880a2a9efa8b19c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4ceb9725-39e9-4eed-95a9-691c96d342c8", - "x-ms-ratelimit-remaining-subscription-writes": "1159", + "x-ms-correlation-request-id": "b7e3e0a3-c5a5-437d-9669-8261c37d937b", + "x-ms-ratelimit-remaining-subscription-writes": "1098", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085701Z:4ceb9725-39e9-4eed-95a9-691c96d342c8", - "x-request-time": "0.082" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164924Z:b7e3e0a3-c5a5-437d-9669-8261c37d937b", + "x-request-time": "0.100" }, "ResponseBody": { "secretsType": "AccountKey", @@ -770,14 +719,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src/convert_data.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src/convert_data.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:57:02 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:49:27 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -787,9 +736,9 @@ "Content-Length": "969", "Content-MD5": "DhunCanKGufSVuPKEYN51w==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 08:57:01 GMT", - "ETag": "\u00220x8DA9ABDA1AA81F0\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:07:27 GMT", + "Date": "Fri, 23 Sep 2022 16:49:25 GMT", + "ETag": "\u00220x8DA9D77F491F568\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:26:15 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -798,10 +747,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:07:26 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:26:15 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "f4f57fd3-0d13-423d-a406-4d6ccd43be14", + "x-ms-meta-name": "55c9c168-236e-473f-b35e-c3cba03dad49", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -810,20 +759,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/src/convert_data.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/src/convert_data.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:57:03 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:49:27 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 08:57:01 GMT", + "Date": "Fri, 23 Sep 2022 16:49:25 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -836,7 +785,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f4f57fd3-0d13-423d-a406-4d6ccd43be14/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/55c9c168-236e-473f-b35e-c3cba03dad49/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -854,7 +803,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src" } }, "StatusCode": 200, @@ -862,27 +811,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:57:03 GMT", + "Date": "Fri, 23 Sep 2022 16:49:25 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-f4f2121367066077520c1078d6c1ed1c-83651f3aca504dcb-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-ea30ca671245a7be01f891b132d08c9e-82191c300e39b78b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "afb255e4-3b9f-4ab0-bd9a-2293995dba08", - "x-ms-ratelimit-remaining-subscription-writes": "1113", + "x-ms-correlation-request-id": "09f9d95a-0c2e-4646-b44a-dfedd06cc142", + "x-ms-ratelimit-remaining-subscription-writes": "984", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085704Z:afb255e4-3b9f-4ab0-bd9a-2293995dba08", - "x-request-time": "0.069" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164926Z:09f9d95a-0c2e-4646-b44a-dfedd06cc142", + "x-request-time": "0.092" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f4f57fd3-0d13-423d-a406-4d6ccd43be14/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/55c9c168-236e-473f-b35e-c3cba03dad49/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -894,13 +843,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src" }, "systemData": { - "createdAt": "2022-09-20T04:07:28.9023268\u002B00:00", + "createdAt": "2022-09-23T15:26:16.5278828\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T08:57:03.9073841\u002B00:00", + "lastModifiedAt": "2022-09-23T16:49:26.7467425\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -925,7 +874,7 @@ "isArchived": false, "componentSpec": { "command": "python convert_data.py --input_data ${{inputs.input_data}} --file_output_data ${{outputs.file_output_data}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f4f57fd3-0d13-423d-a406-4d6ccd43be14/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/55c9c168-236e-473f-b35e-c3cba03dad49/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "name": "azureml_anonymous", "tags": {}, @@ -952,24 +901,24 @@ "Cache-Control": "no-cache", "Content-Length": "1924", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:57:05 GMT", + "Date": "Fri, 23 Sep 2022 16:49:27 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-d09b1d835d606f87dbc096691f3eb4cc-83f2d6b14c3ec8cd-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-23c200acb95b0f1c964c7f835c217011-da1da82a905e25c0-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e1bdbde8-010c-4cb7-b900-bbf2f7b110e8", - "x-ms-ratelimit-remaining-subscription-writes": "1112", + "x-ms-correlation-request-id": "89921eb6-b2de-4aa7-b0a8-2c0791cfe2b2", + "x-ms-ratelimit-remaining-subscription-writes": "983", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085705Z:e1bdbde8-010c-4cb7-b900-bbf2f7b110e8", - "x-request-time": "0.395" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164928Z:89921eb6-b2de-4aa7-b0a8-2c0791cfe2b2", + "x-request-time": "0.336" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/356b86a4-2f31-42a9-8084-4f22ca2524be", - "name": "356b86a4-2f31-42a9-8084-4f22ca2524be", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/dc8f2483-9429-46d6-b1f1-5b9784cdc5d5", + "name": "dc8f2483-9429-46d6-b1f1-5b9784cdc5d5", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -979,7 +928,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "356b86a4-2f31-42a9-8084-4f22ca2524be", + "version": "dc8f2483-9429-46d6-b1f1-5b9784cdc5d5", "display_name": "Convert_To_Mltable_File_Dataset", "is_deterministic": "True", "type": "command", @@ -994,7 +943,7 @@ "type": "mltable" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f4f57fd3-0d13-423d-a406-4d6ccd43be14/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/55c9c168-236e-473f-b35e-c3cba03dad49/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -1004,10 +953,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T01:25:59.8352331\u002B00:00", + "createdAt": "2022-09-23T16:29:26.7092326\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T01:26:00.0555965\u002B00:00", + "lastModifiedAt": "2022-09-23T16:29:26.8485025\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -1028,24 +977,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:57:06 GMT", + "Date": "Fri, 23 Sep 2022 16:49:29 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-6add9b8a2e07e0936019bc36ae6dfb7e-d9c0477e9963154b-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-11488735960665e86bfab2b4fff2907f-787df7caba38a49b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2794696e-5f34-4a2c-8525-568ee173dc6c", - "x-ms-ratelimit-remaining-subscription-reads": "11923", + "x-ms-correlation-request-id": "1bb94398-9ff8-4c29-ac97-17f57c15366f", + "x-ms-ratelimit-remaining-subscription-reads": "11831", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085706Z:2794696e-5f34-4a2c-8525-568ee173dc6c", - "x-request-time": "0.083" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164930Z:1bb94398-9ff8-4c29-ac97-17f57c15366f", + "x-request-time": "0.085" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -1060,17 +1009,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -1092,21 +1041,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:57:07 GMT", + "Date": "Fri, 23 Sep 2022 16:49:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-098ea0070967db54331324cccee2a502-82f32a1755f24e43-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-ee43d13434fed44bd00515d8251d4a67-a974e651d92ce81a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b38119e4-4ab7-4ac8-b563-dc9ba52579b4", - "x-ms-ratelimit-remaining-subscription-writes": "1158", + "x-ms-correlation-request-id": "7a451ad4-db96-486a-9dfd-550eba07c041", + "x-ms-ratelimit-remaining-subscription-writes": "1097", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085708Z:b38119e4-4ab7-4ac8-b563-dc9ba52579b4", - "x-request-time": "0.126" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164931Z:7a451ad4-db96-486a-9dfd-550eba07c041", + "x-request-time": "0.091" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1114,14 +1063,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src/convert_data.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src/convert_data.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:57:09 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:49:34 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -1131,9 +1080,9 @@ "Content-Length": "969", "Content-MD5": "DhunCanKGufSVuPKEYN51w==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 08:57:08 GMT", - "ETag": "\u00220x8DA9ABDA1AA81F0\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:07:27 GMT", + "Date": "Fri, 23 Sep 2022 16:49:31 GMT", + "ETag": "\u00220x8DA9D77F491F568\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:26:15 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1142,10 +1091,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:07:26 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:26:15 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "f4f57fd3-0d13-423d-a406-4d6ccd43be14", + "x-ms-meta-name": "55c9c168-236e-473f-b35e-c3cba03dad49", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -1154,20 +1103,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/src/convert_data.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/src/convert_data.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:57:10 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:49:34 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 08:57:08 GMT", + "Date": "Fri, 23 Sep 2022 16:49:32 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1180,7 +1129,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f4f57fd3-0d13-423d-a406-4d6ccd43be14/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/55c9c168-236e-473f-b35e-c3cba03dad49/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -1198,7 +1147,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src" } }, "StatusCode": 200, @@ -1206,27 +1155,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:57:10 GMT", + "Date": "Fri, 23 Sep 2022 16:49:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-8862890029025ad8813e91b18d4e54f6-1efe2f420ab42d9f-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-3fde5d9c41876840d430d404ee51d8d4-e59c1229bbf3994e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bfe4e25d-56a8-4d2c-8dac-93047cb88467", - "x-ms-ratelimit-remaining-subscription-writes": "1111", + "x-ms-correlation-request-id": "2df11dcb-ce40-477c-b1b2-65f19e67b092", + "x-ms-ratelimit-remaining-subscription-writes": "982", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085710Z:bfe4e25d-56a8-4d2c-8dac-93047cb88467", - "x-request-time": "0.108" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164933Z:2df11dcb-ce40-477c-b1b2-65f19e67b092", + "x-request-time": "0.116" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f4f57fd3-0d13-423d-a406-4d6ccd43be14/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/55c9c168-236e-473f-b35e-c3cba03dad49/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -1238,13 +1187,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src" }, "systemData": { - "createdAt": "2022-09-20T04:07:28.9023268\u002B00:00", + "createdAt": "2022-09-23T15:26:16.5278828\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T08:57:10.6839448\u002B00:00", + "lastModifiedAt": "2022-09-23T16:49:33.388378\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -1293,7 +1242,7 @@ }, "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f4f57fd3-0d13-423d-a406-4d6ccd43be14/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/55c9c168-236e-473f-b35e-c3cba03dad49/versions/1", "entry_script": "score.py", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1" @@ -1309,26 +1258,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2315", + "Content-Length": "2313", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:57:12 GMT", + "Date": "Fri, 23 Sep 2022 16:49:35 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-2da04fa344765faf4fa177203d0931ee-cdad05f02e259734-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-6bc0cd57f01414844cade1b81dee0734-3816b78c21197776-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b0e675f2-5f6d-4dc8-8b2f-f06b1449f385", - "x-ms-ratelimit-remaining-subscription-writes": "1110", + "x-ms-correlation-request-id": "1bb01d91-2c42-4e9f-9a59-87fcc452f304", + "x-ms-ratelimit-remaining-subscription-writes": "981", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085713Z:b0e675f2-5f6d-4dc8-8b2f-f06b1449f385", - "x-request-time": "0.348" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164935Z:1bb01d91-2c42-4e9f-9a59-87fcc452f304", + "x-request-time": "0.314" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ac26d5af-25b8-4649-b2ce-7f585b63f45e", - "name": "ac26d5af-25b8-4649-b2ce-7f585b63f45e", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/60b739ff-1e46-47cd-a815-9aeb86e22e55", + "name": "60b739ff-1e46-47cd-a815-9aeb86e22e55", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1338,7 +1287,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "ac26d5af-25b8-4649-b2ce-7f585b63f45e", + "version": "60b739ff-1e46-47cd-a815-9aeb86e22e55", "display_name": "BatchScore", "is_deterministic": "True", "type": "parallel", @@ -1356,7 +1305,7 @@ } }, "task": { - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f4f57fd3-0d13-423d-a406-4d6ccd43be14/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/55c9c168-236e-473f-b35e-c3cba03dad49/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "entry_script": "score.py", @@ -1376,10 +1325,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T01:24:46.0744261\u002B00:00", + "createdAt": "2022-09-23T16:27:30.6477673\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T01:24:46.2680151\u002B00:00", + "lastModifiedAt": "2022-09-23T16:27:30.84688\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -1400,24 +1349,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:57:14 GMT", + "Date": "Fri, 23 Sep 2022 16:49:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-41c14d2e70ebf2aea0d141b646c8ad77-567d1afcd0c0e2e7-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-6380dd19660b3664d6ec655076f93c3f-ecc3cd5432160521-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c688cbfa-c8fa-4626-8352-395f9ca26cc9", - "x-ms-ratelimit-remaining-subscription-reads": "11922", + "x-ms-correlation-request-id": "e4220d7a-5d76-4695-ba8a-f1f31fbefc40", + "x-ms-ratelimit-remaining-subscription-reads": "11830", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085714Z:c688cbfa-c8fa-4626-8352-395f9ca26cc9", - "x-request-time": "0.077" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164936Z:e4220d7a-5d76-4695-ba8a-f1f31fbefc40", + "x-request-time": "0.080" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -1432,17 +1381,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -1464,21 +1413,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:57:15 GMT", + "Date": "Fri, 23 Sep 2022 16:49:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-23e2fe424a2be862c7904eb984035ab2-b79a15bde5bf666a-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-02b06402c9bcf2524344fa92296dc0cb-e3103e908d5f80f1-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "294be4a9-7ad1-4347-90fd-0e2669f35de0", - "x-ms-ratelimit-remaining-subscription-writes": "1157", + "x-ms-correlation-request-id": "ca569da9-a12c-427d-80ad-31202913838f", + "x-ms-ratelimit-remaining-subscription-writes": "1096", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085715Z:294be4a9-7ad1-4347-90fd-0e2669f35de0", - "x-request-time": "0.085" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164937Z:ca569da9-a12c-427d-80ad-31202913838f", + "x-request-time": "0.104" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1486,14 +1435,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/mnist-data/0.png", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/mnist-data/0.png", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:57:17 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:49:39 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -1503,9 +1452,9 @@ "Content-Length": "223", "Content-MD5": "yLW2CQQeldeN1S7hH1/5Nw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 08:57:15 GMT", - "ETag": "\u00220x8DA9ABDA6C28B2F\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:07:36 GMT", + "Date": "Fri, 23 Sep 2022 16:49:37 GMT", + "ETag": "\u00220x8DA9D77C1560DE2\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:24:49 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1514,32 +1463,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:07:35 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:24:48 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "80cdbe1e-c1b1-4361-9b1d-288a0ac2d4ef", + "x-ms-meta-name": "e6954628-b564-4b7e-bf0e-472284fbfa3f", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "89452cd1-aed0-478a-aecb-1b9d3d38c892", + "x-ms-meta-version": "c9aa34c9-8122-4239-abd0-25287b724051", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/mnist-data/0.png", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/mnist-data/0.png", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:57:17 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:49:39 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 08:57:16 GMT", + "Date": "Fri, 23 Sep 2022 16:49:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1558,7 +1507,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "4516", + "Content-Length": "4570", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -1591,7 +1540,7 @@ "max_concurrency_per_instance": 1, "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f4f57fd3-0d13-423d-a406-4d6ccd43be14/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/55c9c168-236e-473f-b35e-c3cba03dad49/versions/1", "entry_script": "score.py", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1" @@ -1608,8 +1557,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ac26d5af-25b8-4649-b2ce-7f585b63f45e", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/60b739ff-1e46-47cd-a815-9aeb86e22e55", "retry_settings": null, "logging_level": null, "mini_batch_size": 1 @@ -1635,8 +1585,9 @@ "job_output_type": "mltable" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/356b86a4-2f31-42a9-8084-4f22ca2524be" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/dc8f2483-9429-46d6-b1f1-5b9784cdc5d5" }, "file_batch_inference_duplicate_node": { "type": "parallel", @@ -1650,7 +1601,7 @@ "max_concurrency_per_instance": 1, "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f4f57fd3-0d13-423d-a406-4d6ccd43be14/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/55c9c168-236e-473f-b35e-c3cba03dad49/versions/1", "entry_script": "score.py", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1" @@ -1673,8 +1624,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ac26d5af-25b8-4649-b2ce-7f585b63f45e", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/60b739ff-1e46-47cd-a815-9aeb86e22e55", "retry_settings": null, "logging_level": null, "mini_batch_size": 1 @@ -1694,22 +1646,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "7352", + "Content-Length": "7430", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:57:24 GMT", + "Date": "Fri, 23 Sep 2022 16:49:47 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-a7729c602f08a193fdc1c81e12127118-7ae3c9ec5217ab29-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-ae663f4f7acc599a7e01e8359eda8790-f4d1ec6ef943b345-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a720ed32-9aca-40e4-b23d-483972028de9", - "x-ms-ratelimit-remaining-subscription-writes": "1109", + "x-ms-correlation-request-id": "ab8f58ad-6708-48d5-9a12-61784c97732a", + "x-ms-ratelimit-remaining-subscription-writes": "980", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085725Z:a720ed32-9aca-40e4-b23d-483972028de9", - "x-request-time": "3.126" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164947Z:ab8f58ad-6708-48d5-9a12-61784c97732a", + "x-request-time": "3.333" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -1772,7 +1724,7 @@ "max_concurrency_per_instance": 1, "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f4f57fd3-0d13-423d-a406-4d6ccd43be14/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/55c9c168-236e-473f-b35e-c3cba03dad49/versions/1", "entry_script": "score.py", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1" @@ -1789,8 +1741,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ac26d5af-25b8-4649-b2ce-7f585b63f45e", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/60b739ff-1e46-47cd-a815-9aeb86e22e55", "retry_settings": null, "logging_level": null, "mini_batch_size": 1 @@ -1816,8 +1769,9 @@ "job_output_type": "mltable" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/356b86a4-2f31-42a9-8084-4f22ca2524be" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/dc8f2483-9429-46d6-b1f1-5b9784cdc5d5" }, "file_batch_inference_duplicate_node": { "type": "parallel", @@ -1831,7 +1785,7 @@ "max_concurrency_per_instance": 1, "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f4f57fd3-0d13-423d-a406-4d6ccd43be14/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/55c9c168-236e-473f-b35e-c3cba03dad49/versions/1", "entry_script": "score.py", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1" @@ -1854,8 +1808,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ac26d5af-25b8-4649-b2ce-7f585b63f45e", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/60b739ff-1e46-47cd-a815-9aeb86e22e55", "retry_settings": null, "logging_level": null, "mini_batch_size": 1 @@ -1880,7 +1835,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T08:57:24.6616151\u002B00:00", + "createdAt": "2022-09-23T16:49:47.0986764\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_nyc_taxi_data_regression.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_nyc_taxi_data_regression.json index acd027b0dba6..d61df4df2fae 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_nyc_taxi_data_regression.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_nyc_taxi_data_regression.json @@ -15,11 +15,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:54:50 GMT", + "Date": "Fri, 23 Sep 2022 16:44:41 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-4cee2687ee4d853d8bb4d6b2135c3f3f-c10d855c3ffa485d-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-32838cc06220dbdf46fe79a07c032639-ca56d14faeb3a3f3-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -28,11 +28,11 @@ ], "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "544a7cdf-7ce2-4d22-b1b5-8dc6881d2a2d", - "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-correlation-request-id": "8950ab11-743a-4a03-b5d7-d1705e19fda8", + "x-ms-ratelimit-remaining-subscription-reads": "11851", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085450Z:544a7cdf-7ce2-4d22-b1b5-8dc6881d2a2d", - "x-request-time": "0.048" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164441Z:8950ab11-743a-4a03-b5d7-d1705e19fda8", + "x-request-time": "0.072" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -41,8 +41,8 @@ "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T11:47:20.6013506\u002B00:00", - "modifiedOn": "2022-09-15T11:47:27.309088\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -60,36 +60,19 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 0, - "targetNodeCount": 4, + "currentNodeCount": 3, + "targetNodeCount": 2, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 0, - "idleNodeCount": 0, + "runningNodeCount": 2, + "idleNodeCount": 1, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-21T08:54:16.356\u002B00:00", - "errors": [ - { - "error": { - "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_92fbcd8f75321f6d485a668091b97888e36091744f4980c61f41b4675223dea0_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_d926d2653334081d0c6ac00169793cd4b57455955641cb3b62f1127b332fafe9_d: There is not enough disk space on the node", - "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - }, - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - } - ] - } - } - ], + "allocationStateTransitionTime": "2022-09-23T16:43:36.415\u002B00:00", + "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -114,24 +97,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:54:52 GMT", + "Date": "Fri, 23 Sep 2022 16:45:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-5627f4997538bbff6c50ae68856b3554-c43a573da8afd4b7-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-906bc43ffbbb24ce1dfab3acc3853091-6db92e03cc78232a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "439e62e8-f845-4011-bfdb-37e7e1bb0352", - "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-correlation-request-id": "aa7f4489-8cd3-48ba-96a8-0ff980fce39b", + "x-ms-ratelimit-remaining-subscription-reads": "11850", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085453Z:439e62e8-f845-4011-bfdb-37e7e1bb0352", - "x-request-time": "0.102" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164528Z:aa7f4489-8cd3-48ba-96a8-0ff980fce39b", + "x-request-time": "0.123" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -146,17 +129,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -178,21 +161,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:54:55 GMT", + "Date": "Fri, 23 Sep 2022 16:45:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-71039454d17333195debcc19520fd011-517a969508c49ebb-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-2f6baf82a0dc1b5e16bc3caa27d9d557-8437e046d5ed3f1d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ca26a302-5126-4c61-8233-2326a1248d22", - "x-ms-ratelimit-remaining-subscription-writes": "1172", + "x-ms-correlation-request-id": "3faadbc8-0d35-4cd4-abe6-6a4898a24ac9", + "x-ms-ratelimit-remaining-subscription-writes": "1111", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085455Z:ca26a302-5126-4c61-8233-2326a1248d22", - "x-request-time": "0.085" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164534Z:3faadbc8-0d35-4cd4-abe6-6a4898a24ac9", + "x-request-time": "0.093" }, "ResponseBody": { "secretsType": "AccountKey", @@ -200,14 +183,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/prep_src/prep.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/prep_src/prep.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:54:57 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:45:47 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -217,9 +200,9 @@ "Content-Length": "4138", "Content-MD5": "0KXmFx7HK/7s4zv4\u002BZJGlg==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 08:54:56 GMT", - "ETag": "\u00220x8DA9ABCBE5D009D\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:01:06 GMT", + "Date": "Fri, 23 Sep 2022 16:45:46 GMT", + "ETag": "\u00220x8DA9D7F6B218418\u0022", + "Last-Modified": "Fri, 23 Sep 2022 16:19:41 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -228,10 +211,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:01:06 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 16:19:40 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "68e72a69-1ddf-4585-b08a-07ebf80d02d2", + "x-ms-meta-name": "8d652f51-6f84-4f3e-bc2c-c6cffe1b4bac", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -240,20 +223,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/prep_src/prep.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/prep_src/prep.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:54:58 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:45:49 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 08:54:56 GMT", + "Date": "Fri, 23 Sep 2022 16:45:46 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -266,7 +249,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/68e72a69-1ddf-4585-b08a-07ebf80d02d2/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/8d652f51-6f84-4f3e-bc2c-c6cffe1b4bac/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -284,7 +267,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/prep_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/prep_src" } }, "StatusCode": 200, @@ -292,27 +275,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:55:00 GMT", + "Date": "Fri, 23 Sep 2022 16:45:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-198146fd6d453afbbc9d825b9ae5f408-9a70fe455844c1a7-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-b2a8d26184c410c4bbdfc2fd4e697a53-f3a7e4b460b1dbb1-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "820ed558-63c2-47ec-aa1b-c2971a4f5ab9", - "x-ms-ratelimit-remaining-subscription-writes": "1136", + "x-ms-correlation-request-id": "86aacdea-3610-4314-95ce-ae98b264a11e", + "x-ms-ratelimit-remaining-subscription-writes": "1007", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085501Z:820ed558-63c2-47ec-aa1b-c2971a4f5ab9", - "x-request-time": "0.069" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164548Z:86aacdea-3610-4314-95ce-ae98b264a11e", + "x-request-time": "0.713" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/68e72a69-1ddf-4585-b08a-07ebf80d02d2/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/8d652f51-6f84-4f3e-bc2c-c6cffe1b4bac/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -324,13 +307,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/prep_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/prep_src" }, "systemData": { - "createdAt": "2022-09-20T04:01:08.1080226\u002B00:00", + "createdAt": "2022-09-23T16:19:41.7340169\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T08:55:01.404712\u002B00:00", + "lastModifiedAt": "2022-09-23T16:45:48.5671376\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -355,7 +338,7 @@ "isArchived": false, "componentSpec": { "command": "python prep.py --raw_data ${{inputs.raw_data}} --prep_data ${{outputs.prep_data}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/68e72a69-1ddf-4585-b08a-07ebf80d02d2/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/8d652f51-6f84-4f3e-bc2c-c6cffe1b4bac/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cuda11-gpu/versions/3", "name": "azureml_anonymous", "tags": {}, @@ -382,24 +365,24 @@ "Cache-Control": "no-cache", "Content-Length": "1880", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:55:02 GMT", + "Date": "Fri, 23 Sep 2022 16:45:54 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-26e1ba0d07060b33e73af009b3fa3749-b59ad626f1cd4a58-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-38a8a6d1641108aa01bad4e267418bd5-32f271eab36e90b1-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bf067e04-9d82-45d7-8aef-a4c5e9c43877", - "x-ms-ratelimit-remaining-subscription-writes": "1135", + "x-ms-correlation-request-id": "2b8faa44-1703-4643-b441-ea02d838be11", + "x-ms-ratelimit-remaining-subscription-writes": "1006", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085502Z:bf067e04-9d82-45d7-8aef-a4c5e9c43877", - "x-request-time": "0.329" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164555Z:2b8faa44-1703-4643-b441-ea02d838be11", + "x-request-time": "0.788" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/02a9007f-e5c9-48fa-bbfc-924075b33168", - "name": "02a9007f-e5c9-48fa-bbfc-924075b33168", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/fef442a0-e032-4c3f-88b3-3e429c1ac3ad", + "name": "fef442a0-e032-4c3f-88b3-3e429c1ac3ad", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -409,7 +392,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "02a9007f-e5c9-48fa-bbfc-924075b33168", + "version": "fef442a0-e032-4c3f-88b3-3e429c1ac3ad", "display_name": "PrepTaxiData", "is_deterministic": "True", "type": "command", @@ -424,7 +407,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/68e72a69-1ddf-4585-b08a-07ebf80d02d2/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/8d652f51-6f84-4f3e-bc2c-c6cffe1b4bac/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cuda11-gpu/versions/3", "resources": { "instance_count": "1" @@ -434,10 +417,10 @@ } }, "systemData": { - "createdAt": "2022-09-20T04:01:09.8180617\u002B00:00", + "createdAt": "2022-09-23T16:19:43.0390453\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-20T04:01:10.0413337\u002B00:00", + "lastModifiedAt": "2022-09-23T16:19:43.2483917\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -458,24 +441,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:55:03 GMT", + "Date": "Fri, 23 Sep 2022 16:46:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-9afdda7342ebe8dee513dc57af7e7d7c-0b50e9a9ddc4a728-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-a006dd3fe47dd03fdd77267b02107d8c-6ad261ea4b09f2fb-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fc528077-98c5-45cf-833d-63eeb17fc12e", - "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-correlation-request-id": "c30cec0d-463e-44fa-9a5f-b71f6086c3c6", + "x-ms-ratelimit-remaining-subscription-reads": "11849", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085504Z:fc528077-98c5-45cf-833d-63eeb17fc12e", - "x-request-time": "0.092" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164615Z:c30cec0d-463e-44fa-9a5f-b71f6086c3c6", + "x-request-time": "0.105" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -490,17 +473,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -522,21 +505,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:55:04 GMT", + "Date": "Fri, 23 Sep 2022 16:46:16 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-1e551934a48be3bb795df650fbd4623c-f5a20ab6e2c6bc06-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-4339d2669b8998b2e3f77602352a2321-f102e9fced741963-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "196f60c3-ed14-44c6-a0d9-c14442057290", - "x-ms-ratelimit-remaining-subscription-writes": "1171", + "x-ms-correlation-request-id": "5ceb5b0a-5a10-45c4-a798-9ebe49b613cc", + "x-ms-ratelimit-remaining-subscription-writes": "1110", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085505Z:196f60c3-ed14-44c6-a0d9-c14442057290", - "x-request-time": "0.078" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164616Z:5ceb5b0a-5a10-45c4-a798-9ebe49b613cc", + "x-request-time": "0.122" }, "ResponseBody": { "secretsType": "AccountKey", @@ -544,14 +527,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/transform_src/transform.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/transform_src/transform.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:55:06 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:46:21 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -561,9 +544,9 @@ "Content-Length": "5512", "Content-MD5": "YTwbWiBVzF01p1o6D8iCLw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 08:55:05 GMT", - "ETag": "\u00220x8DA9ABCC3056872\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:01:14 GMT", + "Date": "Fri, 23 Sep 2022 16:46:19 GMT", + "ETag": "\u00220x8DA9D7F6E01CB47\u0022", + "Last-Modified": "Fri, 23 Sep 2022 16:19:45 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -572,10 +555,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:01:14 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 16:19:45 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "2b63a6e0-23d8-4099-802c-7447849f3e2a", + "x-ms-meta-name": "e6cd90ac-dad6-40fb-9b5c-495726930ab0", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -584,20 +567,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/transform_src/transform.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/transform_src/transform.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:55:07 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:46:21 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 08:55:06 GMT", + "Date": "Fri, 23 Sep 2022 16:46:19 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -610,7 +593,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2b63a6e0-23d8-4099-802c-7447849f3e2a/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/e6cd90ac-dad6-40fb-9b5c-495726930ab0/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -628,7 +611,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/transform_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/transform_src" } }, "StatusCode": 200, @@ -636,27 +619,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:55:08 GMT", + "Date": "Fri, 23 Sep 2022 16:46:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-d0569eb6ecd04321ee68e981bf56188b-1ea4a0e217a8a2fa-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-717cea23cb2ce572a14aaed062a19650-706211443f948c21-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3d4c1386-00ca-48fe-9048-d4423c643272", - "x-ms-ratelimit-remaining-subscription-writes": "1134", + "x-ms-correlation-request-id": "27b31186-55ac-406e-b451-ab3e9cf7ecb3", + "x-ms-ratelimit-remaining-subscription-writes": "1005", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085508Z:3d4c1386-00ca-48fe-9048-d4423c643272", - "x-request-time": "0.087" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164623Z:27b31186-55ac-406e-b451-ab3e9cf7ecb3", + "x-request-time": "0.104" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2b63a6e0-23d8-4099-802c-7447849f3e2a/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/e6cd90ac-dad6-40fb-9b5c-495726930ab0/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -668,13 +651,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/transform_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/transform_src" }, "systemData": { - "createdAt": "2022-09-20T04:01:14.9730046\u002B00:00", + "createdAt": "2022-09-23T16:19:46.5127562\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T08:55:08.6127354\u002B00:00", + "lastModifiedAt": "2022-09-23T16:46:23.2554102\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -699,7 +682,7 @@ "isArchived": false, "componentSpec": { "command": "python transform.py --clean_data ${{inputs.clean_data}} --transformed_data ${{outputs.transformed_data}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2b63a6e0-23d8-4099-802c-7447849f3e2a/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/e6cd90ac-dad6-40fb-9b5c-495726930ab0/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cuda11-gpu/versions/3", "name": "azureml_anonymous", "tags": {}, @@ -726,24 +709,24 @@ "Cache-Control": "no-cache", "Content-Length": "1922", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:55:09 GMT", + "Date": "Fri, 23 Sep 2022 16:46:27 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-251a3545a8d8834c672fde6978bff828-c770da96ac1bef97-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-c72618b133f5a77154310ef366a0b0db-f2917e8b5f02ee10-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "40c38d80-53d1-4a2b-add6-161d8276ed42", - "x-ms-ratelimit-remaining-subscription-writes": "1133", + "x-ms-correlation-request-id": "d72e3038-e0e3-47ae-ad28-d32963a49e76", + "x-ms-ratelimit-remaining-subscription-writes": "1004", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085510Z:40c38d80-53d1-4a2b-add6-161d8276ed42", - "x-request-time": "0.328" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164628Z:d72e3038-e0e3-47ae-ad28-d32963a49e76", + "x-request-time": "0.279" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1ce7f673-e2a1-4bda-b182-fad8c25c3bbb", - "name": "1ce7f673-e2a1-4bda-b182-fad8c25c3bbb", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/6ad6859c-a4b0-4afc-8c2d-990d8df9e073", + "name": "6ad6859c-a4b0-4afc-8c2d-990d8df9e073", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -753,7 +736,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "1ce7f673-e2a1-4bda-b182-fad8c25c3bbb", + "version": "6ad6859c-a4b0-4afc-8c2d-990d8df9e073", "display_name": "TaxiFeatureEngineering", "is_deterministic": "True", "type": "command", @@ -768,7 +751,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2b63a6e0-23d8-4099-802c-7447849f3e2a/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/e6cd90ac-dad6-40fb-9b5c-495726930ab0/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cuda11-gpu/versions/3", "resources": { "instance_count": "1" @@ -778,10 +761,10 @@ } }, "systemData": { - "createdAt": "2022-09-20T04:01:16.5721028\u002B00:00", + "createdAt": "2022-09-23T16:19:47.8266026\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-20T04:01:16.8165787\u002B00:00", + "lastModifiedAt": "2022-09-23T16:19:47.9937343\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -802,24 +785,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:55:10 GMT", + "Date": "Fri, 23 Sep 2022 16:46:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-79111eca3a214f3df714824287920fa1-1bc5e6925c188854-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-e63a7da643e66f966d20946fd92fb294-df3c5278740e07e4-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a566f008-598a-4bd3-8ab5-94449db67a36", - "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-correlation-request-id": "91d91b0d-b5eb-4dc9-a7fb-292f81b60b81", + "x-ms-ratelimit-remaining-subscription-reads": "11848", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085510Z:a566f008-598a-4bd3-8ab5-94449db67a36", - "x-request-time": "0.101" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164633Z:91d91b0d-b5eb-4dc9-a7fb-292f81b60b81", + "x-request-time": "0.086" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -834,17 +817,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -866,21 +849,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:55:11 GMT", + "Date": "Fri, 23 Sep 2022 16:46:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-d6872ccdd6e2cc3a726fd0356aa4c3a3-db7abb7b13223e22-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-6602ffbad2ec18c2877b511122199a96-5d1ddf47bfb6ed7e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "42e1f0e4-61c8-4564-aebd-7e1fa7752685", - "x-ms-ratelimit-remaining-subscription-writes": "1170", + "x-ms-correlation-request-id": "50fceea2-d4aa-45db-a10c-caac1d17efb2", + "x-ms-ratelimit-remaining-subscription-writes": "1109", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085512Z:42e1f0e4-61c8-4564-aebd-7e1fa7752685", - "x-request-time": "0.084" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164636Z:50fceea2-d4aa-45db-a10c-caac1d17efb2", + "x-request-time": "0.155" }, "ResponseBody": { "secretsType": "AccountKey", @@ -888,14 +871,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/train_src/train.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/train_src/train.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:55:13 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:46:40 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -905,9 +888,9 @@ "Content-Length": "2422", "Content-MD5": "LwwtIGRB0XMBLqUtuK9UCg==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 08:55:13 GMT", - "ETag": "\u00220x8DA9ABCC6E9D983\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:01:20 GMT", + "Date": "Fri, 23 Sep 2022 16:46:38 GMT", + "ETag": "\u00220x8DA9D7F70B981B7\u0022", + "Last-Modified": "Fri, 23 Sep 2022 16:19:50 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -916,10 +899,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:01:20 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 16:19:50 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "78c516c6-4d73-4b50-a257-ddd4cfa23b0f", + "x-ms-meta-name": "2a7b4009-c754-4337-8049-e80b7ccae244", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -928,20 +911,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/train_src/train.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/train_src/train.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:55:14 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:46:41 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 08:55:13 GMT", + "Date": "Fri, 23 Sep 2022 16:46:39 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -954,7 +937,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/78c516c6-4d73-4b50-a257-ddd4cfa23b0f/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2a7b4009-c754-4337-8049-e80b7ccae244/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -972,7 +955,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/train_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/train_src" } }, "StatusCode": 200, @@ -980,27 +963,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:55:13 GMT", + "Date": "Fri, 23 Sep 2022 16:46:40 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-fa8f2efab48116fb1c34f00e5c163475-9e09f9764ea85ce9-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-40130febed810ee1011ff201cbd2bd1f-75378d597571757f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "53057d4d-f3bd-4f8f-a7a4-dd9df2a4030d", - "x-ms-ratelimit-remaining-subscription-writes": "1132", + "x-ms-correlation-request-id": "67c4e4fa-4a5d-4673-8fa3-b3523641c207", + "x-ms-ratelimit-remaining-subscription-writes": "1003", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085514Z:53057d4d-f3bd-4f8f-a7a4-dd9df2a4030d", - "x-request-time": "0.071" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164640Z:67c4e4fa-4a5d-4673-8fa3-b3523641c207", + "x-request-time": "0.092" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/78c516c6-4d73-4b50-a257-ddd4cfa23b0f/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2a7b4009-c754-4337-8049-e80b7ccae244/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -1012,13 +995,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/train_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/train_src" }, "systemData": { - "createdAt": "2022-09-20T04:01:21.7698177\u002B00:00", + "createdAt": "2022-09-23T16:19:50.9933712\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T08:55:14.3936634\u002B00:00", + "lastModifiedAt": "2022-09-23T16:46:40.4028657\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -1043,7 +1026,7 @@ "isArchived": false, "componentSpec": { "command": "python train.py --training_data ${{inputs.training_data}} --test_data ${{outputs.test_data}} --model_output ${{outputs.model_output}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/78c516c6-4d73-4b50-a257-ddd4cfa23b0f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2a7b4009-c754-4337-8049-e80b7ccae244/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cuda11-gpu/versions/3", "name": "azureml_anonymous", "tags": {}, @@ -1073,24 +1056,24 @@ "Cache-Control": "no-cache", "Content-Length": "2019", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:55:15 GMT", + "Date": "Fri, 23 Sep 2022 16:46:43 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-48e747ba9a5bc71ea6730dd00d1dbf6b-73ab7b03d1d5105f-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-cf1ae37bfe3bd5ad192591d180a2f3fb-cdbfa761bbe72bb6-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f18072c8-12bc-4015-ab4b-0213ed95bda8", - "x-ms-ratelimit-remaining-subscription-writes": "1131", + "x-ms-correlation-request-id": "4cd2645d-1636-495e-999e-571608cd6ad5", + "x-ms-ratelimit-remaining-subscription-writes": "1002", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085515Z:f18072c8-12bc-4015-ab4b-0213ed95bda8", - "x-request-time": "0.349" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164644Z:4cd2645d-1636-495e-999e-571608cd6ad5", + "x-request-time": "0.313" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1f684b65-cba9-4c59-b252-091f60a61b45", - "name": "1f684b65-cba9-4c59-b252-091f60a61b45", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/13d86874-d9a9-4dcd-9ba0-5533c3c52c2f", + "name": "13d86874-d9a9-4dcd-9ba0-5533c3c52c2f", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1100,7 +1083,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "1f684b65-cba9-4c59-b252-091f60a61b45", + "version": "13d86874-d9a9-4dcd-9ba0-5533c3c52c2f", "display_name": "TrainLinearRegressionModel", "is_deterministic": "True", "type": "command", @@ -1118,7 +1101,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/78c516c6-4d73-4b50-a257-ddd4cfa23b0f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2a7b4009-c754-4337-8049-e80b7ccae244/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cuda11-gpu/versions/3", "resources": { "instance_count": "1" @@ -1128,10 +1111,10 @@ } }, "systemData": { - "createdAt": "2022-09-20T04:01:23.4237084\u002B00:00", + "createdAt": "2022-09-23T16:19:52.0056273\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-20T04:01:23.6412205\u002B00:00", + "lastModifiedAt": "2022-09-23T16:19:52.2224507\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -1152,24 +1135,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:55:16 GMT", + "Date": "Fri, 23 Sep 2022 16:46:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-56b1ca00ae4a40ecc47e52f5e009c57c-64c2db8dcbd32ec1-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-dc796fdabd346603c50b9d8bdab4626c-2a91c70859f25903-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "861457c8-49e4-400d-aebe-d4ab16861a55", - "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-correlation-request-id": "f31dd92e-0211-4ab8-9297-8c9419afbf64", + "x-ms-ratelimit-remaining-subscription-reads": "11847", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085517Z:861457c8-49e4-400d-aebe-d4ab16861a55", - "x-request-time": "0.073" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164646Z:f31dd92e-0211-4ab8-9297-8c9419afbf64", + "x-request-time": "0.079" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -1184,17 +1167,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -1216,21 +1199,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:55:17 GMT", + "Date": "Fri, 23 Sep 2022 16:46:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-f5c80b2568023fa286818e14f01e15fc-1ad23329ac112af3-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-83ee8b8568f4cc31f9e0b08afe4035e1-ee7b48f148da827a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "36374749-66a9-478e-838a-ad697d47f3ee", - "x-ms-ratelimit-remaining-subscription-writes": "1169", + "x-ms-correlation-request-id": "ccb7f12b-2ece-463b-8c6a-06d9b908b2cd", + "x-ms-ratelimit-remaining-subscription-writes": "1108", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085518Z:36374749-66a9-478e-838a-ad697d47f3ee", - "x-request-time": "0.082" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164647Z:ccb7f12b-2ece-463b-8c6a-06d9b908b2cd", + "x-request-time": "0.090" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1238,14 +1221,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/predict_src/predict.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/predict_src/predict.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:55:19 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:46:51 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -1255,9 +1238,9 @@ "Content-Length": "2430", "Content-MD5": "i0ZPoTL2iW5n0MGJfy7GWQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 08:55:18 GMT", - "ETag": "\u00220x8DA9ABCCA9282D1\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:01:26 GMT", + "Date": "Fri, 23 Sep 2022 16:46:49 GMT", + "ETag": "\u00220x8DA9D7F735158B1\u0022", + "Last-Modified": "Fri, 23 Sep 2022 16:19:54 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1266,10 +1249,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:01:26 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 16:19:54 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "840042a4-e45e-4caf-b0e1-4aae83793610", + "x-ms-meta-name": "6f75946a-838a-4ab9-b69d-bc99b6eaa2e5", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -1278,20 +1261,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/predict_src/predict.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/predict_src/predict.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:55:20 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:46:51 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 08:55:19 GMT", + "Date": "Fri, 23 Sep 2022 16:46:49 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1304,7 +1287,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/840042a4-e45e-4caf-b0e1-4aae83793610/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/6f75946a-838a-4ab9-b69d-bc99b6eaa2e5/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -1322,7 +1305,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/predict_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/predict_src" } }, "StatusCode": 200, @@ -1330,27 +1313,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:55:20 GMT", + "Date": "Fri, 23 Sep 2022 16:46:50 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-5783dccb078517d460b6aeaa0696c86c-1c7d42e6b0a39739-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-4555ce88242cf248ad83521cccbfddd0-61a8ea3deb8de74d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "13d227ff-c580-4e6e-aaaf-0c1e19cd51b9", - "x-ms-ratelimit-remaining-subscription-writes": "1130", + "x-ms-correlation-request-id": "53313178-df11-401d-ae5f-06a9c827711a", + "x-ms-ratelimit-remaining-subscription-writes": "1001", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085521Z:13d227ff-c580-4e6e-aaaf-0c1e19cd51b9", - "x-request-time": "0.095" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164650Z:53313178-df11-401d-ae5f-06a9c827711a", + "x-request-time": "0.091" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/840042a4-e45e-4caf-b0e1-4aae83793610/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/6f75946a-838a-4ab9-b69d-bc99b6eaa2e5/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -1362,13 +1345,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/predict_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/predict_src" }, "systemData": { - "createdAt": "2022-09-20T04:01:27.6127805\u002B00:00", + "createdAt": "2022-09-23T16:19:55.542378\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T08:55:21.2457618\u002B00:00", + "lastModifiedAt": "2022-09-23T16:46:50.5912299\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -1393,7 +1376,7 @@ "isArchived": false, "componentSpec": { "command": "python predict.py --model_input ${{inputs.model_input}} --test_data ${{inputs.test_data}} --predictions ${{outputs.predictions}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/840042a4-e45e-4caf-b0e1-4aae83793610/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/6f75946a-838a-4ab9-b69d-bc99b6eaa2e5/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cuda11-gpu/versions/3", "name": "azureml_anonymous", "tags": {}, @@ -1423,24 +1406,24 @@ "Cache-Control": "no-cache", "Content-Length": "2032", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:55:22 GMT", + "Date": "Fri, 23 Sep 2022 16:46:53 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-91c464a342d41d797a217a9df779c0ee-44d97fc2ddbee126-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-a32c2a32dfa4db430ae21899d3ba3f3b-dcb9b50a93ac4deb-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8b3970ea-a67a-4da6-9979-f91e5e695b67", - "x-ms-ratelimit-remaining-subscription-writes": "1129", + "x-ms-correlation-request-id": "69651787-9a08-4e21-b221-ce6d5dea3cc4", + "x-ms-ratelimit-remaining-subscription-writes": "1000", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085523Z:8b3970ea-a67a-4da6-9979-f91e5e695b67", - "x-request-time": "0.327" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164653Z:69651787-9a08-4e21-b221-ce6d5dea3cc4", + "x-request-time": "0.299" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/77ec2b75-afbf-4f71-ba70-63f4b7a180dd", - "name": "77ec2b75-afbf-4f71-ba70-63f4b7a180dd", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f13341dc-e865-4325-bfa3-3990528315a3", + "name": "f13341dc-e865-4325-bfa3-3990528315a3", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1450,7 +1433,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "77ec2b75-afbf-4f71-ba70-63f4b7a180dd", + "version": "f13341dc-e865-4325-bfa3-3990528315a3", "display_name": "PredictTaxiFares", "is_deterministic": "True", "type": "command", @@ -1469,7 +1452,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/840042a4-e45e-4caf-b0e1-4aae83793610/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/6f75946a-838a-4ab9-b69d-bc99b6eaa2e5/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cuda11-gpu/versions/3", "resources": { "instance_count": "1" @@ -1479,10 +1462,10 @@ } }, "systemData": { - "createdAt": "2022-09-20T04:01:29.4656621\u002B00:00", + "createdAt": "2022-09-23T16:19:56.7177242\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-20T04:01:29.6371565\u002B00:00", + "lastModifiedAt": "2022-09-23T16:19:56.9308952\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -1503,24 +1486,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:55:23 GMT", + "Date": "Fri, 23 Sep 2022 16:46:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-7c124ed57fe3b2b84173515aa645de55-691253bdd8a5d0c3-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-ad7b379781334eb4ea69930f0dfd6de6-3d2140d07b139c61-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "38fbd049-eb5d-4570-90fc-80119c7f5a56", - "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-correlation-request-id": "59f2a853-934b-492b-8f87-bad493017b09", + "x-ms-ratelimit-remaining-subscription-reads": "11846", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085524Z:38fbd049-eb5d-4570-90fc-80119c7f5a56", - "x-request-time": "0.078" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164657Z:59f2a853-934b-492b-8f87-bad493017b09", + "x-request-time": "0.082" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -1535,17 +1518,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -1567,21 +1550,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:55:24 GMT", + "Date": "Fri, 23 Sep 2022 16:46:57 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-d2af4bae63e6e51fa155c2a06215fcc3-8f1fb09bf9befe7c-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-3583571fa9505db83f761c67b3f058f8-6a33e0131a755b95-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ce8585a2-a97d-46ca-b92d-3b8ced0db468", - "x-ms-ratelimit-remaining-subscription-writes": "1168", + "x-ms-correlation-request-id": "bac48325-f6a2-4722-a151-923be58ab84f", + "x-ms-ratelimit-remaining-subscription-writes": "1107", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085525Z:ce8585a2-a97d-46ca-b92d-3b8ced0db468", - "x-request-time": "0.122" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164658Z:bac48325-f6a2-4722-a151-923be58ab84f", + "x-request-time": "0.222" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1589,14 +1572,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/score_src/score.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/score_src/score.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:55:26 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:47:01 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -1606,9 +1589,9 @@ "Content-Length": "2224", "Content-MD5": "6qz6o7uq4IvX5ETlbeIXjw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 08:55:25 GMT", - "ETag": "\u00220x8DA9ABCCE8597C5\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:01:33 GMT", + "Date": "Fri, 23 Sep 2022 16:46:59 GMT", + "ETag": "\u00220x8DA9D7F761A23A0\u0022", + "Last-Modified": "Fri, 23 Sep 2022 16:19:59 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1617,10 +1600,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:01:33 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 16:19:59 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "b092a5da-92bc-4695-8346-e15889288002", + "x-ms-meta-name": "5294bced-8eba-4df2-a541-09d1d9c9bdb5", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -1629,20 +1612,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/score_src/score.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/score_src/score.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:55:27 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:47:02 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 08:55:26 GMT", + "Date": "Fri, 23 Sep 2022 16:46:59 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1655,7 +1638,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/b092a5da-92bc-4695-8346-e15889288002/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5294bced-8eba-4df2-a541-09d1d9c9bdb5/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -1673,7 +1656,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/score_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/score_src" } }, "StatusCode": 200, @@ -1681,27 +1664,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:55:27 GMT", + "Date": "Fri, 23 Sep 2022 16:47:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-b4e3a284c6d9d1451a5c3aef88e736b5-21a72a6035be6213-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-71aa969f7c019831b290ebacae1b1f97-2e949319c791915b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e7cd6edd-763f-4d09-bb8b-443b408d6c64", - "x-ms-ratelimit-remaining-subscription-writes": "1128", + "x-ms-correlation-request-id": "e56cf67e-cb92-4290-a3ce-4940d506b6c8", + "x-ms-ratelimit-remaining-subscription-writes": "999", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085527Z:e7cd6edd-763f-4d09-bb8b-443b408d6c64", - "x-request-time": "0.067" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164700Z:e56cf67e-cb92-4290-a3ce-4940d506b6c8", + "x-request-time": "0.079" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/b092a5da-92bc-4695-8346-e15889288002/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5294bced-8eba-4df2-a541-09d1d9c9bdb5/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -1713,13 +1696,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/score_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/score_src" }, "systemData": { - "createdAt": "2022-09-20T04:01:34.2253465\u002B00:00", + "createdAt": "2022-09-23T16:20:00.045596\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T08:55:27.8031853\u002B00:00", + "lastModifiedAt": "2022-09-23T16:47:00.8699242\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -1744,7 +1727,7 @@ "isArchived": false, "componentSpec": { "command": "python score.py --predictions ${{inputs.predictions}} --model ${{inputs.model}} --score_report ${{outputs.score_report}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/b092a5da-92bc-4695-8346-e15889288002/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5294bced-8eba-4df2-a541-09d1d9c9bdb5/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cuda11-gpu/versions/3", "name": "azureml_anonymous", "tags": {}, @@ -1774,24 +1757,24 @@ "Cache-Control": "no-cache", "Content-Length": "2015", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:55:29 GMT", + "Date": "Fri, 23 Sep 2022 16:47:03 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-f1760eb204adc360d54c930f665e3c00-9388fbb3596eb4e9-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-0e7a323b4762d0e82224bbef56ce5173-c7ceae9d9df50656-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "18717186-ab0b-40e9-972e-0675c46888a7", - "x-ms-ratelimit-remaining-subscription-writes": "1127", + "x-ms-correlation-request-id": "794a3874-7c26-41d5-9968-bd7561261bff", + "x-ms-ratelimit-remaining-subscription-writes": "998", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085530Z:18717186-ab0b-40e9-972e-0675c46888a7", - "x-request-time": "0.343" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164704Z:794a3874-7c26-41d5-9968-bd7561261bff", + "x-request-time": "0.328" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/df00e325-64d2-490b-8741-14a34e5880ba", - "name": "df00e325-64d2-490b-8741-14a34e5880ba", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/82ee890b-bd0b-4e00-b38a-7669009bec18", + "name": "82ee890b-bd0b-4e00-b38a-7669009bec18", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1801,7 +1784,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "df00e325-64d2-490b-8741-14a34e5880ba", + "version": "82ee890b-bd0b-4e00-b38a-7669009bec18", "display_name": "ScoreModel", "is_deterministic": "True", "type": "command", @@ -1820,7 +1803,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/b092a5da-92bc-4695-8346-e15889288002/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/5294bced-8eba-4df2-a541-09d1d9c9bdb5/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cuda11-gpu/versions/3", "resources": { "instance_count": "1" @@ -1830,10 +1813,10 @@ } }, "systemData": { - "createdAt": "2022-09-20T04:01:35.9957678\u002B00:00", + "createdAt": "2022-09-23T16:20:01.0795269\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-20T04:01:36.1696271\u002B00:00", + "lastModifiedAt": "2022-09-23T16:20:01.2494506\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -1854,24 +1837,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:55:31 GMT", + "Date": "Fri, 23 Sep 2022 16:47:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-6f6db774e3f913986591420d7d855fcb-0869735822462f5f-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-cfa62be78e120b46c2cc53fc672c2c11-2b39542e6217e9fd-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "89881b67-7a77-4a45-8fc3-674da0d0ce04", - "x-ms-ratelimit-remaining-subscription-reads": "11937", + "x-ms-correlation-request-id": "3632ac80-3101-4bcb-b5ba-5dd7101c377b", + "x-ms-ratelimit-remaining-subscription-reads": "11845", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085532Z:89881b67-7a77-4a45-8fc3-674da0d0ce04", - "x-request-time": "0.106" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164707Z:3632ac80-3101-4bcb-b5ba-5dd7101c377b", + "x-request-time": "0.078" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -1886,17 +1869,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -1918,21 +1901,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:55:33 GMT", + "Date": "Fri, 23 Sep 2022 16:47:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-50239677f92699b9bffc6056b47a8e08-5b53618cafce02aa-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-80e51ad2a9de89b897a80f58914f5416-5fc8a942bd1a6f96-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d0b24fc9-7b09-4521-9641-d7a422e7823f", - "x-ms-ratelimit-remaining-subscription-writes": "1167", + "x-ms-correlation-request-id": "596e1fe1-b3a5-46af-b020-1abf0841c28d", + "x-ms-ratelimit-remaining-subscription-writes": "1106", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085533Z:d0b24fc9-7b09-4521-9641-d7a422e7823f", - "x-request-time": "0.162" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164708Z:596e1fe1-b3a5-46af-b020-1abf0841c28d", + "x-request-time": "0.140" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1940,14 +1923,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/data/greenTaxiData.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/data/greenTaxiData.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:55:35 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:47:12 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -1957,9 +1940,9 @@ "Content-Length": "830766", "Content-MD5": "Oi4Z1vQHnvcCYff59aHKbg==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 08:55:34 GMT", - "ETag": "\u00220x8DA9ABCD36E5A94\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:01:41 GMT", + "Date": "Fri, 23 Sep 2022 16:47:10 GMT", + "ETag": "\u00220x8DA9D7F7A719246\u0022", + "Last-Modified": "Fri, 23 Sep 2022 16:20:06 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1968,32 +1951,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:01:40 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 16:20:04 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "28e5dd23-b753-422e-801b-0153278ef540", + "x-ms-meta-name": "3c879665-ce4b-4460-9e89-56eaa9ebc599", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "550be7a0-b38f-427d-880f-1e967fe8b119", + "x-ms-meta-version": "189af1de-a68c-44fd-a8ba-8491217bc6bb", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/data/greenTaxiData.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/data/greenTaxiData.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:55:35 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:47:13 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 08:55:34 GMT", + "Date": "Fri, 23 Sep 2022 16:47:11 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -2012,7 +1995,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "5077", + "Content-Length": "5167", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -2054,8 +2037,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/02a9007f-e5c9-48fa-bbfc-924075b33168" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/fef442a0-e032-4c3f-88b3-3e429c1ac3ad" }, "transform_job": { "resources": null, @@ -2079,8 +2063,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1ce7f673-e2a1-4bda-b182-fad8c25c3bbb" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/6ad6859c-a4b0-4afc-8c2d-990d8df9e073" }, "train_job": { "resources": null, @@ -2108,8 +2093,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1f684b65-cba9-4c59-b252-091f60a61b45" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/13d86874-d9a9-4dcd-9ba0-5533c3c52c2f" }, "predict_job": { "resources": null, @@ -2137,8 +2123,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/77ec2b75-afbf-4f71-ba70-63f4b7a180dd" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f13341dc-e865-4325-bfa3-3990528315a3" }, "score_job": { "resources": null, @@ -2166,8 +2153,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/df00e325-64d2-490b-8741-14a34e5880ba" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/82ee890b-bd0b-4e00-b38a-7669009bec18" } }, "outputs": { @@ -2211,22 +2199,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "8644", + "Content-Length": "8774", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:55:40 GMT", + "Date": "Fri, 23 Sep 2022 16:47:22 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-4a7bb01dcf22137732d248d742a585e6-5000ff4c136397b6-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-0e8522416835c0769e6cf09bab22a3a2-5d3ac990d245d7ce-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d6950ed0-c15d-461c-bb14-438f1bafa375", - "x-ms-ratelimit-remaining-subscription-writes": "1126", + "x-ms-correlation-request-id": "aa32c042-418e-4598-b3d4-8c558779a67a", + "x-ms-ratelimit-remaining-subscription-writes": "997", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085541Z:d6950ed0-c15d-461c-bb14-438f1bafa375", - "x-request-time": "3.147" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164722Z:aa32c042-418e-4598-b3d4-8c558779a67a", + "x-request-time": "3.969" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -2300,8 +2288,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/02a9007f-e5c9-48fa-bbfc-924075b33168" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/fef442a0-e032-4c3f-88b3-3e429c1ac3ad" }, "transform_job": { "resources": null, @@ -2325,8 +2314,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1ce7f673-e2a1-4bda-b182-fad8c25c3bbb" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/6ad6859c-a4b0-4afc-8c2d-990d8df9e073" }, "train_job": { "resources": null, @@ -2354,8 +2344,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1f684b65-cba9-4c59-b252-091f60a61b45" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/13d86874-d9a9-4dcd-9ba0-5533c3c52c2f" }, "predict_job": { "resources": null, @@ -2383,8 +2374,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/77ec2b75-afbf-4f71-ba70-63f4b7a180dd" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f13341dc-e865-4325-bfa3-3990528315a3" }, "score_job": { "resources": null, @@ -2412,8 +2404,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/df00e325-64d2-490b-8741-14a34e5880ba" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/82ee890b-bd0b-4e00-b38a-7669009bec18" } }, "inputs": { @@ -2465,7 +2458,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T08:55:40.7228079\u002B00:00", + "createdAt": "2022-09-23T16:47:21.9551597\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_parallel_components.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_parallel_components.json index 7197b8a3c1fd..d47b51d687fb 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_parallel_components.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_parallel_components.json @@ -13,22 +13,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1067", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:16:10 GMT", + "Date": "Fri, 23 Sep 2022 17:42:59 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-fc29f0f013af5f86c80c6843822bcd90-fc2d298349c2175b-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-1a99c0eebf73af498181c4dad0377596-9122b1a1af0af1a7-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3bc10ae8-d095-4618-ad55-35222908d6f0", - "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-correlation-request-id": "4c2dd41d-8ef7-49ac-bc23-ed43a52e7704", + "x-ms-ratelimit-remaining-subscription-reads": "11999", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T091610Z:3bc10ae8-d095-4618-ad55-35222908d6f0", - "x-request-time": "0.217" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T174300Z:4c2dd41d-8ef7-49ac-bc23-ed43a52e7704", + "x-request-time": "0.111" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -43,17 +47,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -73,21 +77,23 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "61", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:16:11 GMT", + "Date": "Fri, 23 Sep 2022 17:43:00 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-c44b7f18ae45abae6e7d4a82ffc81f36-b2fd3fa1f30c2794-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-a0e306f0a6a1e563ebe6fd4683f3595a-5cb405c65b4f4a87-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f588646a-1950-4b92-81ff-f3e487eb209e", + "x-ms-correlation-request-id": "669e9749-1143-4be7-ab8c-41105d4fed02", "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T091611Z:f588646a-1950-4b92-81ff-f3e487eb209e", - "x-request-time": "0.124" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T174301Z:669e9749-1143-4be7-ab8c-41105d4fed02", + "x-request-time": "0.194" }, "ResponseBody": { "secretsType": "AccountKey", @@ -95,14 +101,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src/convert_data.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src/convert_data.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 09:16:13 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:43:03 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -112,9 +118,9 @@ "Content-Length": "969", "Content-MD5": "DhunCanKGufSVuPKEYN51w==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 09:16:13 GMT", - "ETag": "\u00220x8DA9B7DDE44C312\u0022", - "Last-Modified": "Wed, 21 Sep 2022 03:03:32 GMT", + "Date": "Fri, 23 Sep 2022 17:43:02 GMT", + "ETag": "\u00220x8DA9D83C800EA89\u0022", + "Last-Modified": "Fri, 23 Sep 2022 16:50:54 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -123,10 +129,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 03:03:32 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 16:50:54 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "460ddba0-72bc-4def-ad31-f5b1b54122f7", + "x-ms-meta-name": "22f9ea33-2e27-4fad-b979-685cda39afb9", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -135,20 +141,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/src/convert_data.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/src/convert_data.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 09:16:15 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:43:05 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 09:16:13 GMT", + "Date": "Fri, 23 Sep 2022 17:43:03 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -161,7 +167,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/460ddba0-72bc-4def-ad31-f5b1b54122f7/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/22f9ea33-2e27-4fad-b979-685cda39afb9/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -179,31 +185,35 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "821", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:16:17 GMT", + "Date": "Fri, 23 Sep 2022 17:43:05 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-ad9c4de2319657801bdda6d8cc0eb327-1aed42cc46b9d104-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-337310f2a08a11ce677d6824d2e43518-64044d34c69477b7-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "705452f2-c9df-4501-990e-adaca884ade6", + "x-ms-correlation-request-id": "6b6570ac-a0cf-417c-bf11-d42c6c83e2d2", "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T091617Z:705452f2-c9df-4501-990e-adaca884ade6", - "x-request-time": "0.540" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T174305Z:6b6570ac-a0cf-417c-bf11-d42c6c83e2d2", + "x-request-time": "0.101" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/460ddba0-72bc-4def-ad31-f5b1b54122f7/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/22f9ea33-2e27-4fad-b979-685cda39afb9/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -215,13 +225,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src" }, "systemData": { - "createdAt": "2022-09-21T03:03:33.6159708\u002B00:00", + "createdAt": "2022-09-23T16:50:55.4610694\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T09:16:17.465844\u002B00:00", + "lastModifiedAt": "2022-09-23T17:43:05.4889889\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -246,7 +256,7 @@ "isArchived": false, "componentSpec": { "command": "python get_data.py --input_data ${{inputs.input_data}} --file_output_data ${{outputs.file_output_data}} --tabular_output_data ${{outputs.tabular_output_data}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/460ddba0-72bc-4def-ad31-f5b1b54122f7/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/22f9ea33-2e27-4fad-b979-685cda39afb9/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "name": "azureml_anonymous", "tags": {}, @@ -276,24 +286,24 @@ "Cache-Control": "no-cache", "Content-Length": "2040", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:16:20 GMT", + "Date": "Fri, 23 Sep 2022 17:43:05 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-17a14b38c48ff1986422d84ab8dca5fb-e326d3a978b31080-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-c726041b97e900ee138041f7f897aadb-80604affd803b578-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "75a2dcbd-3a8e-4904-9e34-19d34c1a5ec1", + "x-ms-correlation-request-id": "49b0a9d5-ee36-4952-a09b-b9719a7ec442", "x-ms-ratelimit-remaining-subscription-writes": "1198", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T091620Z:75a2dcbd-3a8e-4904-9e34-19d34c1a5ec1", - "x-request-time": "1.255" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T174306Z:49b0a9d5-ee36-4952-a09b-b9719a7ec442", + "x-request-time": "0.313" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/92437bec-8698-4d2f-b8ac-d10b8291130f", - "name": "92437bec-8698-4d2f-b8ac-d10b8291130f", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/4e9ddb1c-4bbf-492e-8008-34cc2de9f9b2", + "name": "4e9ddb1c-4bbf-492e-8008-34cc2de9f9b2", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -303,7 +313,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "92437bec-8698-4d2f-b8ac-d10b8291130f", + "version": "4e9ddb1c-4bbf-492e-8008-34cc2de9f9b2", "display_name": "Get_File_Tabular_Dataset", "is_deterministic": "True", "type": "command", @@ -321,7 +331,7 @@ "type": "mltable" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/460ddba0-72bc-4def-ad31-f5b1b54122f7/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/22f9ea33-2e27-4fad-b979-685cda39afb9/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -331,10 +341,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T03:03:35.2355223\u002B00:00", + "createdAt": "2022-09-23T16:51:01.4844076\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T03:03:35.4099583\u002B00:00", + "lastModifiedAt": "2022-09-23T16:51:01.6651185\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -353,22 +363,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1067", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:16:21 GMT", + "Date": "Fri, 23 Sep 2022 17:43:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-235443452ef3e3f84dbfbaeaa91e34ce-ad44b21e34f6375b-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-c057db312249659a71f046eaf545d81d-70269af30db151ac-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7cd40dbe-dad4-404c-b286-37f385ebb959", - "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-correlation-request-id": "d5fe518e-7a52-4a5a-8536-150ecdc397e4", + "x-ms-ratelimit-remaining-subscription-reads": "11998", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T091621Z:7cd40dbe-dad4-404c-b286-37f385ebb959", - "x-request-time": "0.177" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T174307Z:d5fe518e-7a52-4a5a-8536-150ecdc397e4", + "x-request-time": "0.073" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -383,17 +397,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -413,21 +427,23 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "61", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:16:22 GMT", + "Date": "Fri, 23 Sep 2022 17:43:07 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-2cad94c0f38d73bd1f82af34467f534e-f92c5c7a3fcebd0d-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-c0cb205fc348dc1db634054445eb01e7-0c9c82cdb1c703d3-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b2361661-3adb-4a41-ac22-3db85d5aeaf6", + "x-ms-correlation-request-id": "54794668-c7ba-4664-ad55-70ef80550110", "x-ms-ratelimit-remaining-subscription-writes": "1198", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T091622Z:b2361661-3adb-4a41-ac22-3db85d5aeaf6", - "x-request-time": "0.087" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T174307Z:54794668-c7ba-4664-ad55-70ef80550110", + "x-request-time": "0.117" }, "ResponseBody": { "secretsType": "AccountKey", @@ -435,14 +451,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src/convert_data.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src/convert_data.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 09:16:24 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:43:09 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -452,9 +468,9 @@ "Content-Length": "969", "Content-MD5": "DhunCanKGufSVuPKEYN51w==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 09:16:22 GMT", - "ETag": "\u00220x8DA9B7DDE44C312\u0022", - "Last-Modified": "Wed, 21 Sep 2022 03:03:32 GMT", + "Date": "Fri, 23 Sep 2022 17:43:07 GMT", + "ETag": "\u00220x8DA9D83C800EA89\u0022", + "Last-Modified": "Fri, 23 Sep 2022 16:50:54 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -463,10 +479,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 03:03:32 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 16:50:54 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "460ddba0-72bc-4def-ad31-f5b1b54122f7", + "x-ms-meta-name": "22f9ea33-2e27-4fad-b979-685cda39afb9", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -475,20 +491,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/src/convert_data.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/src/convert_data.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 09:16:24 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:43:10 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 09:16:23 GMT", + "Date": "Fri, 23 Sep 2022 17:43:07 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -501,7 +517,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/460ddba0-72bc-4def-ad31-f5b1b54122f7/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/22f9ea33-2e27-4fad-b979-685cda39afb9/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -519,31 +535,35 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "822", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:16:24 GMT", + "Date": "Fri, 23 Sep 2022 17:43:08 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-e6f608853b293339cd16af7924a19c05-b6e1ba1aeb1ef41a-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-d7c16730c37fc9f0b18f59f80901b5f9-2f3107d6d8162508-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ec28144b-25ab-4a7d-ab59-52214ae99655", + "x-ms-correlation-request-id": "ffb921cc-a4c4-41ed-9f01-a1f857150bba", "x-ms-ratelimit-remaining-subscription-writes": "1197", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T091624Z:ec28144b-25ab-4a7d-ab59-52214ae99655", - "x-request-time": "0.083" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T174309Z:ffb921cc-a4c4-41ed-9f01-a1f857150bba", + "x-request-time": "0.095" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/460ddba0-72bc-4def-ad31-f5b1b54122f7/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/22f9ea33-2e27-4fad-b979-685cda39afb9/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -555,13 +575,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src" }, "systemData": { - "createdAt": "2022-09-21T03:03:33.6159708\u002B00:00", + "createdAt": "2022-09-23T16:50:55.4610694\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T09:16:24.3455545\u002B00:00", + "lastModifiedAt": "2022-09-23T17:43:08.9796885\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -610,7 +630,7 @@ }, "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/460ddba0-72bc-4def-ad31-f5b1b54122f7/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/22f9ea33-2e27-4fad-b979-685cda39afb9/versions/1", "entry_script": "file_batch_inference.py", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1" @@ -628,24 +648,24 @@ "Cache-Control": "no-cache", "Content-Length": "2330", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:16:25 GMT", + "Date": "Fri, 23 Sep 2022 17:43:09 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-47ed1e6cc0a581c8ce4f7f0a6a85703a-2cd6b3fa1f53c56c-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-7b1458fecea6583e8fdc6e5bcd9faae8-bd204a65f0be4174-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ad0fc517-e06c-477a-bccb-7463e010162e", + "x-ms-correlation-request-id": "e0639e37-96d2-44d4-88e4-32eaeee39ae7", "x-ms-ratelimit-remaining-subscription-writes": "1196", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T091625Z:ad0fc517-e06c-477a-bccb-7463e010162e", - "x-request-time": "0.443" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T174309Z:e0639e37-96d2-44d4-88e4-32eaeee39ae7", + "x-request-time": "0.288" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/92b71027-0f44-4118-a1ca-ddb1f649baad", - "name": "92b71027-0f44-4118-a1ca-ddb1f649baad", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d6df89bf-a04f-4975-979f-1ccdd9d1a51c", + "name": "d6df89bf-a04f-4975-979f-1ccdd9d1a51c", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -655,7 +675,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "92b71027-0f44-4118-a1ca-ddb1f649baad", + "version": "d6df89bf-a04f-4975-979f-1ccdd9d1a51c", "display_name": "BatchScore", "is_deterministic": "True", "type": "parallel", @@ -673,7 +693,7 @@ } }, "task": { - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/460ddba0-72bc-4def-ad31-f5b1b54122f7/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/22f9ea33-2e27-4fad-b979-685cda39afb9/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "entry_script": "file_batch_inference.py", @@ -693,10 +713,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T03:03:41.9354089\u002B00:00", + "createdAt": "2022-09-23T16:51:06.4261295\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T03:03:42.1066665\u002B00:00", + "lastModifiedAt": "2022-09-23T16:51:06.5811484\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -715,22 +735,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1067", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:16:26 GMT", + "Date": "Fri, 23 Sep 2022 17:43:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-1745727eeba76d64a7816b6ef4e18014-9d48992504a7394c-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-ee190fb03a993839074cc23a78f96e1d-28497a1c64f2092d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d05ebe00-3ad0-4e5b-a33c-bb382a8aa589", - "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-correlation-request-id": "c196d9f1-9126-41a2-8c2d-bb0563bf7ff3", + "x-ms-ratelimit-remaining-subscription-reads": "11997", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T091626Z:d05ebe00-3ad0-4e5b-a33c-bb382a8aa589", - "x-request-time": "0.105" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T174310Z:c196d9f1-9126-41a2-8c2d-bb0563bf7ff3", + "x-request-time": "0.156" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -745,17 +769,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -775,21 +799,23 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "61", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:16:27 GMT", + "Date": "Fri, 23 Sep 2022 17:43:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-1ecf758cd0b341142a1f3f38f699a0e3-63860649388e5db9-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-41b168d44d57b419c67c41201ea77ee1-0c54d0e266bded19-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9ddc3ed4-c362-462e-a697-d2f5dce4e86e", + "x-ms-correlation-request-id": "48a9b52b-b0c0-4ad7-b30a-6b6755b092ef", "x-ms-ratelimit-remaining-subscription-writes": "1197", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T091627Z:9ddc3ed4-c362-462e-a697-d2f5dce4e86e", - "x-request-time": "0.095" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T174311Z:48a9b52b-b0c0-4ad7-b30a-6b6755b092ef", + "x-request-time": "0.085" }, "ResponseBody": { "secretsType": "AccountKey", @@ -797,14 +823,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src/convert_data.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src/convert_data.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 09:16:29 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:43:13 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -814,9 +840,9 @@ "Content-Length": "969", "Content-MD5": "DhunCanKGufSVuPKEYN51w==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 09:16:27 GMT", - "ETag": "\u00220x8DA9B7DDE44C312\u0022", - "Last-Modified": "Wed, 21 Sep 2022 03:03:32 GMT", + "Date": "Fri, 23 Sep 2022 17:43:10 GMT", + "ETag": "\u00220x8DA9D83C800EA89\u0022", + "Last-Modified": "Fri, 23 Sep 2022 16:50:54 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -825,10 +851,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 03:03:32 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 16:50:54 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "460ddba0-72bc-4def-ad31-f5b1b54122f7", + "x-ms-meta-name": "22f9ea33-2e27-4fad-b979-685cda39afb9", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -837,20 +863,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/src/convert_data.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/src/convert_data.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 09:16:29 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:43:13 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 09:16:28 GMT", + "Date": "Fri, 23 Sep 2022 17:43:11 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -863,7 +889,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/460ddba0-72bc-4def-ad31-f5b1b54122f7/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/22f9ea33-2e27-4fad-b979-685cda39afb9/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -881,31 +907,35 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "822", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:16:29 GMT", + "Date": "Fri, 23 Sep 2022 17:43:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-9fcbe077e1ffff3376b5763537deb9f3-d8f2fe4d984c618a-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-61bcbad07199850c00a372993e0fd9f2-95841b8455e305ee-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4e39e95a-7432-42a7-b5c7-795f860241cd", + "x-ms-correlation-request-id": "4b7b313b-2b94-47c8-961a-007921d14d1f", "x-ms-ratelimit-remaining-subscription-writes": "1195", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T091629Z:4e39e95a-7432-42a7-b5c7-795f860241cd", - "x-request-time": "0.127" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T174312Z:4b7b313b-2b94-47c8-961a-007921d14d1f", + "x-request-time": "0.087" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/460ddba0-72bc-4def-ad31-f5b1b54122f7/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/22f9ea33-2e27-4fad-b979-685cda39afb9/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -917,13 +947,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src" }, "systemData": { - "createdAt": "2022-09-21T03:03:33.6159708\u002B00:00", + "createdAt": "2022-09-23T16:50:55.4610694\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T09:16:29.4482794\u002B00:00", + "lastModifiedAt": "2022-09-23T17:43:12.4992872\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -948,7 +978,7 @@ "isArchived": false, "componentSpec": { "command": "python convert_data.py --input_data ${{inputs.input_data}} --file_output_data ${{outputs.file_output_data}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/460ddba0-72bc-4def-ad31-f5b1b54122f7/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/22f9ea33-2e27-4fad-b979-685cda39afb9/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "name": "azureml_anonymous", "tags": {}, @@ -975,24 +1005,24 @@ "Cache-Control": "no-cache", "Content-Length": "1924", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:16:31 GMT", + "Date": "Fri, 23 Sep 2022 17:43:12 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-2bd5e712d7e37abc445f4737a00f0ca8-7e7ef4e80c05acdf-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-310ad5955b3dd9275cdd3df576ba5381-4daf3fd592fb33f2-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cac7c64b-162d-44e5-b98f-47be464aa15e", + "x-ms-correlation-request-id": "e7632ec9-0eba-4fd9-a435-1ba7d0d49a4c", "x-ms-ratelimit-remaining-subscription-writes": "1194", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T091631Z:cac7c64b-162d-44e5-b98f-47be464aa15e", - "x-request-time": "0.408" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T174313Z:e7632ec9-0eba-4fd9-a435-1ba7d0d49a4c", + "x-request-time": "0.402" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f1bfc8ad-eeaa-4a7a-beea-a5686022d7bb", - "name": "f1bfc8ad-eeaa-4a7a-beea-a5686022d7bb", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/cf3ffe54-a3c1-4524-a785-39886f16569d", + "name": "cf3ffe54-a3c1-4524-a785-39886f16569d", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1002,7 +1032,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "f1bfc8ad-eeaa-4a7a-beea-a5686022d7bb", + "version": "cf3ffe54-a3c1-4524-a785-39886f16569d", "display_name": "Convert_To_Mltable_File_Dataset", "is_deterministic": "True", "type": "command", @@ -1017,7 +1047,7 @@ "type": "mltable" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/460ddba0-72bc-4def-ad31-f5b1b54122f7/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/22f9ea33-2e27-4fad-b979-685cda39afb9/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -1027,10 +1057,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T03:03:48.0035519\u002B00:00", + "createdAt": "2022-09-23T16:51:14.5517241\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T03:03:48.1359448\u002B00:00", + "lastModifiedAt": "2022-09-23T16:51:14.7318607\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -1049,22 +1079,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1067", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:16:31 GMT", + "Date": "Fri, 23 Sep 2022 17:43:13 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-dfd52d9fa5d2c8ed65e1a844b16b81e0-42ff073849799703-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-05603d600ca2e071e725551db3b4c83e-5bbde82d9149eeb3-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "12cb3a12-23a9-46a3-8d06-dbd8ede76636", - "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-correlation-request-id": "21c84254-e090-4e24-ad22-ff4732ac3fff", + "x-ms-ratelimit-remaining-subscription-reads": "11996", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T091632Z:12cb3a12-23a9-46a3-8d06-dbd8ede76636", - "x-request-time": "0.091" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T174314Z:21c84254-e090-4e24-ad22-ff4732ac3fff", + "x-request-time": "0.076" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -1079,17 +1113,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -1109,21 +1143,23 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "61", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:16:33 GMT", + "Date": "Fri, 23 Sep 2022 17:43:14 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-373929e55c13f4987cbe571051fa4695-f99b0ef438e77f49-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-f2c8f8a1ce1a69bf459dfc8ec9562285-e10623f60ea4012c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b89b3ede-e18f-4c6f-9c8c-0586a1e00539", + "x-ms-correlation-request-id": "43e05b2e-2f45-4e88-a579-992330156181", "x-ms-ratelimit-remaining-subscription-writes": "1196", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T091633Z:b89b3ede-e18f-4c6f-9c8c-0586a1e00539", - "x-request-time": "0.117" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T174314Z:43e05b2e-2f45-4e88-a579-992330156181", + "x-request-time": "0.101" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1131,14 +1167,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src/convert_data.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src/convert_data.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 09:16:35 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:43:17 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -1148,9 +1184,9 @@ "Content-Length": "969", "Content-MD5": "DhunCanKGufSVuPKEYN51w==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 09:16:33 GMT", - "ETag": "\u00220x8DA9B7DDE44C312\u0022", - "Last-Modified": "Wed, 21 Sep 2022 03:03:32 GMT", + "Date": "Fri, 23 Sep 2022 17:43:14 GMT", + "ETag": "\u00220x8DA9D83C800EA89\u0022", + "Last-Modified": "Fri, 23 Sep 2022 16:50:54 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1159,10 +1195,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 03:03:32 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 16:50:54 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "460ddba0-72bc-4def-ad31-f5b1b54122f7", + "x-ms-meta-name": "22f9ea33-2e27-4fad-b979-685cda39afb9", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -1171,20 +1207,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/src/convert_data.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/src/convert_data.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 09:16:35 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:43:17 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 09:16:34 GMT", + "Date": "Fri, 23 Sep 2022 17:43:14 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1197,7 +1233,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/460ddba0-72bc-4def-ad31-f5b1b54122f7/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/22f9ea33-2e27-4fad-b979-685cda39afb9/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -1215,31 +1251,35 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "822", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:16:36 GMT", + "Date": "Fri, 23 Sep 2022 17:43:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-c192c8800bc8b8c061cb6e5ce355a91a-2745f9b7939510ee-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-ef837d520394686d672bef2901795a56-b732f9fcc7b2e4a0-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "eae4a481-41a4-485c-b046-b5e86a2d02f7", + "x-ms-correlation-request-id": "2b90bc8b-ef41-44eb-902a-f5cb1101c882", "x-ms-ratelimit-remaining-subscription-writes": "1193", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T091637Z:eae4a481-41a4-485c-b046-b5e86a2d02f7", - "x-request-time": "0.098" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T174316Z:2b90bc8b-ef41-44eb-902a-f5cb1101c882", + "x-request-time": "0.068" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/460ddba0-72bc-4def-ad31-f5b1b54122f7/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/22f9ea33-2e27-4fad-b979-685cda39afb9/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -1251,13 +1291,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src" }, "systemData": { - "createdAt": "2022-09-21T03:03:33.6159708\u002B00:00", + "createdAt": "2022-09-23T16:50:55.4610694\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T09:16:36.9478337\u002B00:00", + "lastModifiedAt": "2022-09-23T17:43:16.132487\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -1306,7 +1346,7 @@ }, "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/460ddba0-72bc-4def-ad31-f5b1b54122f7/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/22f9ea33-2e27-4fad-b979-685cda39afb9/versions/1", "entry_script": "file_batch_inference.py", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1" @@ -1324,24 +1364,24 @@ "Cache-Control": "no-cache", "Content-Length": "2330", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:16:38 GMT", + "Date": "Fri, 23 Sep 2022 17:43:16 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-117f7d57bdf65e7fb9d4ffa33831ed19-4e47a0aaebcfb895-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-3db72aa03cbd5eab38e9634e12917ff0-a99e2f007789268a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c16a2b86-fc31-48ea-bf47-797e3d40969b", + "x-ms-correlation-request-id": "a8c63fba-3611-468d-978c-0fa2ee00aaf2", "x-ms-ratelimit-remaining-subscription-writes": "1192", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T091638Z:c16a2b86-fc31-48ea-bf47-797e3d40969b", - "x-request-time": "0.358" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T174317Z:a8c63fba-3611-468d-978c-0fa2ee00aaf2", + "x-request-time": "0.315" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/92b71027-0f44-4118-a1ca-ddb1f649baad", - "name": "92b71027-0f44-4118-a1ca-ddb1f649baad", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d6df89bf-a04f-4975-979f-1ccdd9d1a51c", + "name": "d6df89bf-a04f-4975-979f-1ccdd9d1a51c", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1351,7 +1391,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "92b71027-0f44-4118-a1ca-ddb1f649baad", + "version": "d6df89bf-a04f-4975-979f-1ccdd9d1a51c", "display_name": "BatchScore", "is_deterministic": "True", "type": "parallel", @@ -1369,7 +1409,7 @@ } }, "task": { - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/460ddba0-72bc-4def-ad31-f5b1b54122f7/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/22f9ea33-2e27-4fad-b979-685cda39afb9/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "entry_script": "file_batch_inference.py", @@ -1389,10 +1429,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T03:03:41.9354089\u002B00:00", + "createdAt": "2022-09-23T16:51:06.4261295\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T03:03:42.1066665\u002B00:00", + "lastModifiedAt": "2022-09-23T16:51:06.5811484\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -1411,22 +1451,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1067", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:16:39 GMT", + "Date": "Fri, 23 Sep 2022 17:43:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-5516636a3b646457c8f7612a1a472075-77c0f9a37b17ca37-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-04e28f1300b3d6b2130d629103e68525-77a3ee6b977043ec-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6536ef00-6d2f-4f29-b9ea-f85e3da2a57b", - "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-correlation-request-id": "1dc8f8c3-578d-49e7-b551-a8287701cbd2", + "x-ms-ratelimit-remaining-subscription-reads": "11995", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T091639Z:6536ef00-6d2f-4f29-b9ea-f85e3da2a57b", - "x-request-time": "0.105" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T174317Z:1dc8f8c3-578d-49e7-b551-a8287701cbd2", + "x-request-time": "0.127" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -1441,17 +1485,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -1471,21 +1515,23 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "61", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:16:40 GMT", + "Date": "Fri, 23 Sep 2022 17:43:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-a0b79fc8ac521a726ff610b92092d946-92aa51a5b7555547-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-839ce5628d1410fa66c3e3453a367489-e557ff89e102bf94-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "903ec372-2364-44a8-b72d-be6a15e7ffed", + "x-ms-correlation-request-id": "d0d0917b-7645-42fe-86e8-3177c6a6d515", "x-ms-ratelimit-remaining-subscription-writes": "1195", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T091640Z:903ec372-2364-44a8-b72d-be6a15e7ffed", - "x-request-time": "0.168" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T174318Z:d0d0917b-7645-42fe-86e8-3177c6a6d515", + "x-request-time": "0.090" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1493,14 +1539,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src/convert_data.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src/convert_data.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 09:16:42 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:43:20 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -1510,9 +1556,9 @@ "Content-Length": "969", "Content-MD5": "DhunCanKGufSVuPKEYN51w==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 09:16:40 GMT", - "ETag": "\u00220x8DA9B7DDE44C312\u0022", - "Last-Modified": "Wed, 21 Sep 2022 03:03:32 GMT", + "Date": "Fri, 23 Sep 2022 17:43:17 GMT", + "ETag": "\u00220x8DA9D83C800EA89\u0022", + "Last-Modified": "Fri, 23 Sep 2022 16:50:54 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1521,10 +1567,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 03:03:32 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 16:50:54 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "460ddba0-72bc-4def-ad31-f5b1b54122f7", + "x-ms-meta-name": "22f9ea33-2e27-4fad-b979-685cda39afb9", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -1533,20 +1579,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/src/convert_data.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/src/convert_data.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 09:16:42 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:43:20 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 09:16:41 GMT", + "Date": "Fri, 23 Sep 2022 17:43:18 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1559,7 +1605,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/460ddba0-72bc-4def-ad31-f5b1b54122f7/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/22f9ea33-2e27-4fad-b979-685cda39afb9/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -1577,31 +1623,35 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src" } }, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "822", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:16:42 GMT", + "Date": "Fri, 23 Sep 2022 17:43:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-37ca1cb0492759796635a55e9d75173f-761105427314c63b-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-02b03955a6bdac20459eea08c366736a-8b68d0cf14cd4ac0-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "503e946b-fe9f-4dbe-b186-a3e73ba308f6", + "x-ms-correlation-request-id": "2c958b74-1285-4e64-9eb3-91dd9fd3de01", "x-ms-ratelimit-remaining-subscription-writes": "1191", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T091642Z:503e946b-fe9f-4dbe-b186-a3e73ba308f6", - "x-request-time": "0.068" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T174319Z:2c958b74-1285-4e64-9eb3-91dd9fd3de01", + "x-request-time": "0.100" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/460ddba0-72bc-4def-ad31-f5b1b54122f7/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/22f9ea33-2e27-4fad-b979-685cda39afb9/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -1613,13 +1663,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src" }, "systemData": { - "createdAt": "2022-09-21T03:03:33.6159708\u002B00:00", + "createdAt": "2022-09-23T16:50:55.4610694\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T09:16:42.5918326\u002B00:00", + "lastModifiedAt": "2022-09-23T17:43:19.6390627\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -1646,24 +1696,24 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Build-ID": "chb", + "Build-ID": "ch9", "Cache-Control": "no-cache", "Content-Length": "1359", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:16:55 GMT", + "Date": "Fri, 23 Sep 2022 17:43:30 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/CliV2AnonymousEnvironment/versions/6fe7be4cbb153a3107ff961211b4a9af?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-c76c0e6ad9916e3130e99ff22224cdb9-728fd526b0729552-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-b0a74ab4536aae6b40f00e57aa61dee7-3555566d64ad0c21-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "611b36b6-9d80-401e-b8d0-79a545db3e54", + "x-ms-correlation-request-id": "004f347a-c1f5-4f4a-b7b1-09d7afa94453", "x-ms-ratelimit-remaining-subscription-writes": "1190", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T091656Z:611b36b6-9d80-401e-b8d0-79a545db3e54", - "x-request-time": "12.463" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T174330Z:004f347a-c1f5-4f4a-b7b1-09d7afa94453", + "x-request-time": "10.613" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/CliV2AnonymousEnvironment/versions/6fe7be4cbb153a3107ff961211b4a9af", @@ -1681,10 +1731,10 @@ "osType": "Linux" }, "systemData": { - "createdAt": "2022-09-21T01:24:04.1458865\u002B00:00", + "createdAt": "2022-09-23T15:25:10.3353821\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T01:24:04.1458865\u002B00:00", + "lastModifiedAt": "2022-09-23T15:25:10.3353821\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -1735,7 +1785,7 @@ "logging_level": "DEBUG", "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/460ddba0-72bc-4def-ad31-f5b1b54122f7/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/22f9ea33-2e27-4fad-b979-685cda39afb9/versions/1", "entry_script": "tabular_batch_inference.py", "program_arguments": "--model ${{inputs.score_model}}", "append_row_to": "${{outputs.job_out_path}}", @@ -1756,26 +1806,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2537", + "Content-Length": "2538", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:16:57 GMT", + "Date": "Fri, 23 Sep 2022 17:43:31 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-3311102e48b0fd11b23a35f9a8e11e28-4a7d4e4f64e3b4af-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-8ec3a76c9f66e56f5d821ad4a6427d56-acd88bc51b78cc2a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2fde2fb6-1f01-4a9b-b867-d4908ec1a28c", + "x-ms-correlation-request-id": "9316a175-5ba9-47fa-90d6-ed717548ea1d", "x-ms-ratelimit-remaining-subscription-writes": "1189", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T091657Z:2fde2fb6-1f01-4a9b-b867-d4908ec1a28c", - "x-request-time": "0.384" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T174331Z:9316a175-5ba9-47fa-90d6-ed717548ea1d", + "x-request-time": "0.285" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/88dad2ac-afcf-4f47-a541-93bb8cbc9405", - "name": "88dad2ac-afcf-4f47-a541-93bb8cbc9405", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/be97b918-a8d9-4188-abfa-448f8d123e91", + "name": "be97b918-a8d9-4188-abfa-448f8d123e91", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1785,7 +1835,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "88dad2ac-afcf-4f47-a541-93bb8cbc9405", + "version": "be97b918-a8d9-4188-abfa-448f8d123e91", "display_name": "BatchScore", "is_deterministic": "True", "type": "parallel", @@ -1808,7 +1858,7 @@ } }, "task": { - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/460ddba0-72bc-4def-ad31-f5b1b54122f7/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/22f9ea33-2e27-4fad-b979-685cda39afb9/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/CliV2AnonymousEnvironment/versions/6fe7be4cbb153a3107ff961211b4a9af", "program_arguments": "--model ${{inputs.score_model}}", "entry_script": "tabular_batch_inference.py", @@ -1829,10 +1879,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T03:04:00.930408\u002B00:00", + "createdAt": "2022-09-23T16:51:37.9797646\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T03:04:01.1092047\u002B00:00", + "lastModifiedAt": "2022-09-23T16:51:38.1913953\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -1851,22 +1901,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1067", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:16:58 GMT", + "Date": "Fri, 23 Sep 2022 17:43:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-9df8ad05702c68cd624719df750a207a-f81bc0ab81797940-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-7630448ce32692a596fb72ec7cc8f04c-32c332dea67b1763-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bc882fa4-67fc-47d8-b273-f236d03cc173", - "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-correlation-request-id": "895e9963-d16c-4172-ae95-5622b745d343", + "x-ms-ratelimit-remaining-subscription-reads": "11994", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T091659Z:bc882fa4-67fc-47d8-b273-f236d03cc173", - "x-request-time": "0.093" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T174332Z:895e9963-d16c-4172-ae95-5622b745d343", + "x-request-time": "0.116" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -1881,17 +1935,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -1911,21 +1965,23 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "61", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:16:59 GMT", + "Date": "Fri, 23 Sep 2022 17:43:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-d17a0819625a2c9f36e3dd35792202cd-6a0afffea90c6441-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-7972ad71ff3b18ce2edded0555264d8c-a80e9e94487a45eb-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2c0eaa63-6089-422b-884b-c3098616c24f", + "x-ms-correlation-request-id": "d5b64aef-1979-4799-99cd-1c401efb9f12", "x-ms-ratelimit-remaining-subscription-writes": "1194", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T091700Z:2c0eaa63-6089-422b-884b-c3098616c24f", - "x-request-time": "0.114" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T174333Z:d5b64aef-1979-4799-99cd-1c401efb9f12", + "x-request-time": "0.160" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1933,14 +1989,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/dataset/iris-mltable/MLTable", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/dataset/iris-mltable/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 09:17:01 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:43:35 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -1950,9 +2006,9 @@ "Content-Length": "152", "Content-MD5": "LPwZTVvE9cmq2xCV9B8RmQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 09:16:59 GMT", - "ETag": "\u00220x8DA9B7DF18E714A\u0022", - "Last-Modified": "Wed, 21 Sep 2022 03:04:05 GMT", + "Date": "Fri, 23 Sep 2022 17:43:32 GMT", + "ETag": "\u00220x8DA9D83E74663EE\u0022", + "Last-Modified": "Fri, 23 Sep 2022 16:51:47 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1961,32 +2017,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 03:04:03 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 16:51:44 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "622dd48d-16a9-4a28-939d-82e3fe5d3c51", + "x-ms-meta-name": "bdc85477-b262-4a27-8153-5ebcf73182d1", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "e097c946-90d8-4d24-b87c-3ac5678c96d4", + "x-ms-meta-version": "6becb243-4444-4902-b571-a3587f2b5f87", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/dataset/iris-mltable/MLTable", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/dataset/iris-mltable/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 09:17:02 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:43:35 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 09:17:00 GMT", + "Date": "Fri, 23 Sep 2022 17:43:33 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -2011,22 +2067,26 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1067", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:17:01 GMT", + "Date": "Fri, 23 Sep 2022 17:43:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-f7e1902463fa250a0aaa0b8f49456fc0-6e5bb39dfa0056b8-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-b8b5c6efd762975a3d11d8e8b790bfe1-171faad23c31b629-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1b6badc6-f490-476d-8609-75a63536096e", - "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-correlation-request-id": "19b6dd9d-8872-449b-b6dc-4ddcc7a8f893", + "x-ms-ratelimit-remaining-subscription-reads": "11993", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T091701Z:1b6badc6-f490-476d-8609-75a63536096e", - "x-request-time": "0.087" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T174334Z:19b6dd9d-8872-449b-b6dc-4ddcc7a8f893", + "x-request-time": "0.077" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -2041,17 +2101,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -2071,21 +2131,23 @@ "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "61", + "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:17:02 GMT", + "Date": "Fri, 23 Sep 2022 17:43:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-abc5afbd5628cd430f4b054de6c96e66-3936496801c93388-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-50b2b2f33e693bbfb8c136d42d5da071-8f838c6aa9c47215-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cb80e8df-9009-44d5-9af2-bbc7b9044cb1", + "x-ms-correlation-request-id": "8b23032e-e2c4-4bba-bcac-9d8e0c1b09bd", "x-ms-ratelimit-remaining-subscription-writes": "1193", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T091702Z:cb80e8df-9009-44d5-9af2-bbc7b9044cb1", - "x-request-time": "0.083" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T174335Z:8b23032e-e2c4-4bba-bcac-9d8e0c1b09bd", + "x-request-time": "0.087" }, "ResponseBody": { "secretsType": "AccountKey", @@ -2093,14 +2155,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/model/iris_model/MLmodel", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/model/iris_model/MLmodel", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 09:17:04 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:43:37 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -2110,9 +2172,9 @@ "Content-Length": "298", "Content-MD5": "HaKpUL6X1WimkPVJF2lHiQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 09:17:02 GMT", - "ETag": "\u00220x8DA9B7DD39189A8\u0022", - "Last-Modified": "Wed, 21 Sep 2022 03:03:14 GMT", + "Date": "Fri, 23 Sep 2022 17:43:34 GMT", + "ETag": "\u00220x8DA9D83BBE50DC7\u0022", + "Last-Modified": "Fri, 23 Sep 2022 16:50:34 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -2121,32 +2183,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 03:03:14 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 16:50:34 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "e74ea290-c1f7-4fce-9017-fe27a58d5982", + "x-ms-meta-name": "0244b266-812d-4fb7-80cb-3a1864deca7d", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "415b92e8-4b8f-464a-8e3d-136db7e3ff95", + "x-ms-meta-version": "b3692c50-6ae9-4d6d-8457-16f9224f5e86", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/model/iris_model/MLmodel", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/model/iris_model/MLmodel", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 09:17:04 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:43:37 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 09:17:02 GMT", + "Date": "Fri, 23 Sep 2022 17:43:35 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -2165,7 +2227,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "6861", + "Content-Length": "6951", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -2214,8 +2276,9 @@ "job_output_type": "mltable" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/92437bec-8698-4d2f-b8ac-d10b8291130f" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/4e9ddb1c-4bbf-492e-8008-34cc2de9f9b2" }, "file_batch_inference_node": { "type": "parallel", @@ -2229,7 +2292,7 @@ "max_concurrency_per_instance": 1, "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/460ddba0-72bc-4def-ad31-f5b1b54122f7/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/22f9ea33-2e27-4fad-b979-685cda39afb9/versions/1", "entry_script": "file_batch_inference.py", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1" @@ -2247,8 +2310,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/92b71027-0f44-4118-a1ca-ddb1f649baad", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d6df89bf-a04f-4975-979f-1ccdd9d1a51c", "retry_settings": null, "logging_level": "DEBUG", "mini_batch_size": 1 @@ -2274,8 +2338,9 @@ "job_output_type": "mltable" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f1bfc8ad-eeaa-4a7a-beea-a5686022d7bb" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/cf3ffe54-a3c1-4524-a785-39886f16569d" }, "file_batch_inference_duplicate_node": { "type": "parallel", @@ -2289,7 +2354,7 @@ "max_concurrency_per_instance": 1, "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/460ddba0-72bc-4def-ad31-f5b1b54122f7/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/22f9ea33-2e27-4fad-b979-685cda39afb9/versions/1", "entry_script": "file_batch_inference.py", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1" @@ -2312,8 +2377,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/92b71027-0f44-4118-a1ca-ddb1f649baad", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d6df89bf-a04f-4975-979f-1ccdd9d1a51c", "retry_settings": null, "logging_level": "DEBUG", "mini_batch_size": 1 @@ -2327,7 +2393,7 @@ "max_concurrency_per_instance": 2, "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/460ddba0-72bc-4def-ad31-f5b1b54122f7/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/22f9ea33-2e27-4fad-b979-685cda39afb9/versions/1", "entry_script": "tabular_batch_inference.py", "program_arguments": "--model ${{inputs.score_model}}", "append_row_to": "${{outputs.job_out_path}}", @@ -2355,8 +2421,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/88dad2ac-afcf-4f47-a541-93bb8cbc9405", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/be97b918-a8d9-4188-abfa-448f8d123e91", "retry_settings": null, "logging_level": "DEBUG", "mini_batch_size": 100 @@ -2380,22 +2447,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "10565", + "Content-Length": "10695", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:17:10 GMT", + "Date": "Fri, 23 Sep 2022 17:43:42 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-0bf4e4cf1e972e1f60fca9e7d9e45791-09dce15b974318ad-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-2fdde7955c2b04e3c9a7a493a9f4ed87-be03f8e2810576b5-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0ce9085a-61aa-40e6-89c3-06cb94dbc8e8", + "x-ms-correlation-request-id": "b4729c84-b41d-4484-a192-6325ffafc3a6", "x-ms-ratelimit-remaining-subscription-writes": "1188", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T091711Z:0ce9085a-61aa-40e6-89c3-06cb94dbc8e8", - "x-request-time": "3.773" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T174342Z:b4729c84-b41d-4484-a192-6325ffafc3a6", + "x-request-time": "3.203" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -2471,8 +2538,9 @@ "job_output_type": "mltable" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/92437bec-8698-4d2f-b8ac-d10b8291130f" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/4e9ddb1c-4bbf-492e-8008-34cc2de9f9b2" }, "file_batch_inference_node": { "type": "parallel", @@ -2486,7 +2554,7 @@ "max_concurrency_per_instance": 1, "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/460ddba0-72bc-4def-ad31-f5b1b54122f7/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/22f9ea33-2e27-4fad-b979-685cda39afb9/versions/1", "entry_script": "file_batch_inference.py", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1" @@ -2504,8 +2572,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/92b71027-0f44-4118-a1ca-ddb1f649baad", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d6df89bf-a04f-4975-979f-1ccdd9d1a51c", "retry_settings": null, "logging_level": "DEBUG", "mini_batch_size": 1 @@ -2531,8 +2600,9 @@ "job_output_type": "mltable" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f1bfc8ad-eeaa-4a7a-beea-a5686022d7bb" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/cf3ffe54-a3c1-4524-a785-39886f16569d" }, "file_batch_inference_duplicate_node": { "type": "parallel", @@ -2546,7 +2616,7 @@ "max_concurrency_per_instance": 1, "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/460ddba0-72bc-4def-ad31-f5b1b54122f7/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/22f9ea33-2e27-4fad-b979-685cda39afb9/versions/1", "entry_script": "file_batch_inference.py", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1" @@ -2569,8 +2639,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/92b71027-0f44-4118-a1ca-ddb1f649baad", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d6df89bf-a04f-4975-979f-1ccdd9d1a51c", "retry_settings": null, "logging_level": "DEBUG", "mini_batch_size": 1 @@ -2584,7 +2655,7 @@ "max_concurrency_per_instance": 2, "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/460ddba0-72bc-4def-ad31-f5b1b54122f7/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/22f9ea33-2e27-4fad-b979-685cda39afb9/versions/1", "entry_script": "tabular_batch_inference.py", "program_arguments": "--model ${{inputs.score_model}}", "append_row_to": "${{outputs.job_out_path}}", @@ -2612,8 +2683,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/88dad2ac-afcf-4f47-a541-93bb8cbc9405", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/be97b918-a8d9-4188-abfa-448f8d123e91", "retry_settings": null, "logging_level": "DEBUG", "mini_batch_size": 100 @@ -2650,7 +2722,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T09:17:10.6527152\u002B00:00", + "createdAt": "2022-09-23T17:43:42.2804518\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_parallel_components_with_tabular_input_pipeline_output.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_parallel_components_with_tabular_input_pipeline_output.json index fb971392f753..e9f79efec698 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_parallel_components_with_tabular_input_pipeline_output.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_parallel_components_with_tabular_input_pipeline_output.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,39 +15,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:18:19 GMT", + "Date": "Mon, 26 Sep 2022 05:45:25 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-55b0533c676040b2bdc62407343a2061-caad1b9182901b75-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-4e84f233fe333589afa247353f889706-aa2b6719a244b2e2-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6ed4a26d-ad12-4211-9887-faceba8659ac", + "x-ms-correlation-request-id": "2dce9252-7978-4415-8ad0-49040ce17834", "x-ms-ratelimit-remaining-subscription-reads": "11999", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T091820Z:6ed4a26d-ad12-4211-9887-faceba8659ac", - "x-request-time": "0.035" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T054526Z:2dce9252-7978-4415-8ad0-49040ce17834", + "x-request-time": "0.231" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2", + "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-09-15T11:47:20.6013506\u002B00:00", - "modifiedOn": "2022-09-15T11:47:27.309088\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2", + "computeLocation": "centraluseuap", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -56,40 +56,23 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 2, - "targetNodeCount": 4, + "currentNodeCount": 1, + "targetNodeCount": 1, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 2, - "idleNodeCount": 0, + "runningNodeCount": 0, + "idleNodeCount": 1, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-21T09:16:30.281\u002B00:00", - "errors": [ - { - "error": { - "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_14992b9bec6ef8c766f1ebf619be8bf07489113d1e0418c13466299d07099531_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_7b99e19505f435ed13f8264e61c46cb7fb70a2cf6dfa70def900b698d31a3488_d: There is not enough disk space on the node", - "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - }, - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - } - ] - } - } - ], + "allocationStateTransitionTime": "2022-09-26T05:06:43.727\u002B00:00", + "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -106,7 +89,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -114,24 +97,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:18:23 GMT", + "Date": "Mon, 26 Sep 2022 05:45:29 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-e9c6485ac556a42e84ec0534d7044eeb-5f19f27d0b981c3e-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-0692f3d2df7aadc6a2d5f16b6194f741-8ccfeea168f31195-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "472d3c0b-40b0-4d43-a100-0b2bd871c56f", + "x-ms-correlation-request-id": "a102a100-96fc-4be4-b639-8a74d229ce48", "x-ms-ratelimit-remaining-subscription-reads": "11998", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T091824Z:472d3c0b-40b0-4d43-a100-0b2bd871c56f", - "x-request-time": "0.101" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T054530Z:a102a100-96fc-4be4-b639-8a74d229ce48", + "x-request-time": "1.101" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -146,17 +129,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -170,7 +153,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -178,21 +161,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:18:24 GMT", + "Date": "Mon, 26 Sep 2022 05:45:30 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-e1f459751c20fae123ca512f04d7a414-cd0ef733bd5b6945-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-0ff2d09d19475cde10dc4e8e74fe4194-e210a20d99e51282-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "13f7e643-1f69-4b29-9e15-f219b40d369a", + "x-ms-correlation-request-id": "1d936cc8-05c9-4cc9-8752-d9f3edc8af2f", "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T091824Z:13f7e643-1f69-4b29-9e15-f219b40d369a", - "x-request-time": "0.200" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T054531Z:1d936cc8-05c9-4cc9-8752-d9f3edc8af2f", + "x-request-time": "0.638" }, "ResponseBody": { "secretsType": "AccountKey", @@ -200,26 +183,26 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src/tabular_run_with_model.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src/tabular_run_with_model.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 09:18:26 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Mon, 26 Sep 2022 05:45:31 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Accept-Ranges": "bytes", - "Content-Length": "1102", - "Content-MD5": "jO1FYErTQcHautv7oG0/KQ==", + "Content-Length": "1064", + "Content-MD5": "e3xiE\u002BqEISCxsa7RncC27w==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 09:18:26 GMT", - "ETag": "\u00220x8DA9B6FF762FFAB\u0022", - "Last-Modified": "Wed, 21 Sep 2022 01:24:02 GMT", + "Date": "Mon, 26 Sep 2022 05:45:32 GMT", + "ETag": "\u00220x8DA9F7AD672EDD6\u0022", + "Last-Modified": "Mon, 26 Sep 2022 04:51:55 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -228,10 +211,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 01:24:01 GMT", + "x-ms-creation-time": "Mon, 26 Sep 2022 04:51:55 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "7f8ca489-3f80-40c3-b9f1-33ea50cca546", + "x-ms-meta-name": "3e2f335f-df3b-432b-9856-1d7c5338c931", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -240,20 +223,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/src/tabular_run_with_model.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/src/tabular_run_with_model.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 09:18:29 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Mon, 26 Sep 2022 05:45:32 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 09:18:27 GMT", + "Date": "Mon, 26 Sep 2022 05:45:32 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -266,7 +249,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/7f8ca489-3f80-40c3-b9f1-33ea50cca546/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3e2f335f-df3b-432b-9856-1d7c5338c931/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -274,7 +257,7 @@ "Connection": "keep-alive", "Content-Length": "292", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -284,7 +267,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src" } }, "StatusCode": 200, @@ -292,27 +275,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:18:29 GMT", + "Date": "Mon, 26 Sep 2022 05:45:33 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-6abfb5fbb00d1e37e1360def27a88846-cf426844e1e10f96-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-cdf15f48675e120d7d5b38c04d05b570-b1ce98098cc866ea-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2efca020-cd55-4309-8ce8-43bc9f5c4d51", + "x-ms-correlation-request-id": "7bb6d05d-5fd5-428c-9376-76a12c544839", "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T091830Z:2efca020-cd55-4309-8ce8-43bc9f5c4d51", - "x-request-time": "0.153" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T054534Z:7bb6d05d-5fd5-428c-9376-76a12c544839", + "x-request-time": "0.887" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/7f8ca489-3f80-40c3-b9f1-33ea50cca546/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3e2f335f-df3b-432b-9856-1d7c5338c931/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -324,13 +307,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src" }, "systemData": { - "createdAt": "2022-09-21T01:24:02.8420038\u002B00:00", + "createdAt": "2022-09-26T04:51:57.3293806\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T09:18:30.2005221\u002B00:00", + "lastModifiedAt": "2022-09-26T05:45:34.2244256\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -345,7 +328,7 @@ "Connection": "keep-alive", "Content-Length": "416", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -357,24 +340,24 @@ }, "StatusCode": 201, "ResponseHeaders": { - "Build-ID": "chc", + "Build-ID": "caa", "Cache-Control": "no-cache", - "Content-Length": "1359", + "Content-Length": "1351", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:18:41 GMT", + "Date": "Mon, 26 Sep 2022 05:45:49 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/CliV2AnonymousEnvironment/versions/6fe7be4cbb153a3107ff961211b4a9af?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-08471b7dfbce8028d4c03ea947d6816f-8d97bbe4e4fb1339-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-7eaed4172e799d90a5f135609c401623-12f80e6b00736ba3-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9339a6b7-9b93-4af8-8d55-e9f816a1b1ed", + "x-ms-correlation-request-id": "46d0cd11-a9ad-4f48-9524-b8952ed8eac1", "x-ms-ratelimit-remaining-subscription-writes": "1198", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T091842Z:9339a6b7-9b93-4af8-8d55-e9f816a1b1ed", - "x-request-time": "10.444" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T054549Z:46d0cd11-a9ad-4f48-9524-b8952ed8eac1", + "x-request-time": "13.939" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/CliV2AnonymousEnvironment/versions/6fe7be4cbb153a3107ff961211b4a9af", @@ -392,11 +375,11 @@ "osType": "Linux" }, "systemData": { - "createdAt": "2022-09-21T01:24:04.1458865\u002B00:00", - "createdBy": "Zhengfei Wang", + "createdAt": "2022-09-23T09:56:46.9554352\u002B00:00", + "createdBy": "Ying Chen", "createdByType": "User", - "lastModifiedAt": "2022-09-21T01:24:04.1458865\u002B00:00", - "lastModifiedBy": "Zhengfei Wang", + "lastModifiedAt": "2022-09-23T09:56:46.9554352\u002B00:00", + "lastModifiedBy": "Ying Chen", "lastModifiedByType": "User" } } @@ -410,7 +393,7 @@ "Connection": "keep-alive", "Content-Length": "1542", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -446,7 +429,7 @@ "logging_level": "DEBUG", "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/7f8ca489-3f80-40c3-b9f1-33ea50cca546/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3e2f335f-df3b-432b-9856-1d7c5338c931/versions/1", "entry_script": "tabular_run_with_model.py", "program_arguments": "--model ${{inputs.score_model}}", "append_row_to": "${{outputs.job_out_path}}", @@ -469,24 +452,24 @@ "Cache-Control": "no-cache", "Content-Length": "2537", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:18:43 GMT", + "Date": "Mon, 26 Sep 2022 05:45:52 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-e6a823323308cc5b04cef0a75cb24d4d-86cfd04984c03ee2-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-576f540468d16864a839ddbdae19b7fb-60d2a7d346d2d865-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6c61442b-cfaf-4a76-955b-8f7cd4551427", + "x-ms-correlation-request-id": "5c5f279b-8123-49c4-8704-491390b698b9", "x-ms-ratelimit-remaining-subscription-writes": "1197", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T091843Z:6c61442b-cfaf-4a76-955b-8f7cd4551427", - "x-request-time": "0.318" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T054552Z:5c5f279b-8123-49c4-8704-491390b698b9", + "x-request-time": "1.656" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/5bdc9e32-8ca4-49f5-bd3b-6ef015dbd6d2", - "name": "5bdc9e32-8ca4-49f5-bd3b-6ef015dbd6d2", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b6e2b320-d169-4f79-b187-fa6aa7fa8136", + "name": "b6e2b320-d169-4f79-b187-fa6aa7fa8136", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -496,7 +479,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "5bdc9e32-8ca4-49f5-bd3b-6ef015dbd6d2", + "version": "b6e2b320-d169-4f79-b187-fa6aa7fa8136", "display_name": "BatchScore", "is_deterministic": "True", "type": "parallel", @@ -519,7 +502,7 @@ } }, "task": { - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/7f8ca489-3f80-40c3-b9f1-33ea50cca546/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3e2f335f-df3b-432b-9856-1d7c5338c931/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/CliV2AnonymousEnvironment/versions/6fe7be4cbb153a3107ff961211b4a9af", "program_arguments": "--model ${{inputs.score_model}}", "entry_script": "tabular_run_with_model.py", @@ -540,10 +523,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T01:24:16.9472367\u002B00:00", + "createdAt": "2022-09-26T04:52:37.2530585\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T01:24:17.1478713\u002B00:00", + "lastModifiedAt": "2022-09-26T04:52:37.8100326\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -556,7 +539,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -564,24 +547,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:18:44 GMT", + "Date": "Mon, 26 Sep 2022 05:45:53 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-7ad87e32beea1adab127fe0e870f1e3b-34b37eaf649bd11a-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-3ecad76d65d3020d69f77bb631a8c062-8572beafc64d6d72-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "10218067-a484-4fff-bd14-6d33dcf5bf5d", + "x-ms-correlation-request-id": "ed66fb9a-eee7-4668-a114-8f7ab4f5435d", "x-ms-ratelimit-remaining-subscription-reads": "11997", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T091844Z:10218067-a484-4fff-bd14-6d33dcf5bf5d", - "x-request-time": "0.115" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T054553Z:ed66fb9a-eee7-4668-a114-8f7ab4f5435d", + "x-request-time": "0.087" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -596,17 +579,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -620,7 +603,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -628,21 +611,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:18:46 GMT", + "Date": "Mon, 26 Sep 2022 05:45:53 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-6fa8cce1929c43c0d175ebca695a8aeb-0ad8e18c4b2be557-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-37d5109c18b0856590788acd32384c5e-df074c1d169ace6b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c7ebe773-6636-493f-931f-fbd4f32931fb", + "x-ms-correlation-request-id": "39c00761-2c19-48de-a97a-dcde8f5b2254", "x-ms-ratelimit-remaining-subscription-writes": "1198", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T091846Z:c7ebe773-6636-493f-931f-fbd4f32931fb", - "x-request-time": "0.084" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T054554Z:39c00761-2c19-48de-a97a-dcde8f5b2254", + "x-request-time": "0.098" }, "ResponseBody": { "secretsType": "AccountKey", @@ -650,26 +633,26 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/iris-mltable/MLTable", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/iris-mltable/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 09:18:47 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Mon, 26 Sep 2022 05:45:54 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Accept-Ranges": "bytes", - "Content-Length": "152", - "Content-MD5": "LPwZTVvE9cmq2xCV9B8RmQ==", + "Content-Length": "145", + "Content-MD5": "rlGxMQGX0/J2YclXrj50HA==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 09:18:45 GMT", - "ETag": "\u00220x8DA9B7DD1C8A4E2\u0022", - "Last-Modified": "Wed, 21 Sep 2022 03:03:11 GMT", + "Date": "Mon, 26 Sep 2022 05:45:54 GMT", + "ETag": "\u00220x8DA9F7AF14B3AA5\u0022", + "Last-Modified": "Mon, 26 Sep 2022 04:52:40 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -678,32 +661,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 03:03:10 GMT", + "x-ms-creation-time": "Mon, 26 Sep 2022 04:52:40 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "e374c1e2-e00f-4504-abe4-d145197b8e1a", + "x-ms-meta-name": "02f3bb29-9430-4116-9fe5-8048855f82dc", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "e00fb9ea-d6f0-4267-b184-643061407717", + "x-ms-meta-version": "a9dd2e58-94cd-4223-af32-480c581d870f", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/iris-mltable/MLTable", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/iris-mltable/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 09:18:48 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Mon, 26 Sep 2022 05:45:54 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 09:18:46 GMT", + "Date": "Mon, 26 Sep 2022 05:45:54 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -722,7 +705,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -730,24 +713,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:18:47 GMT", + "Date": "Mon, 26 Sep 2022 05:45:55 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-df0834bf87e73774d210c845b1f55cb6-98fa5efd3a23c23b-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-9d4c6a0aa63972a9933d390af53826b2-9e412522b825dbb9-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f58edb38-1503-42d9-8858-48912ecae3a7", + "x-ms-correlation-request-id": "c8101a81-8d30-4479-9741-6365da669e7e", "x-ms-ratelimit-remaining-subscription-reads": "11996", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T091847Z:f58edb38-1503-42d9-8858-48912ecae3a7", - "x-request-time": "0.076" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T054555Z:c8101a81-8d30-4479-9741-6365da669e7e", + "x-request-time": "0.094" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -762,17 +745,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -786,7 +769,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -794,21 +777,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:18:49 GMT", + "Date": "Mon, 26 Sep 2022 05:45:56 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-c5be4b487dfab45190a99a8c81a117e9-eb51c8cf683d98f7-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-4dd8ca635c5e9478a3c854ae5a827c44-737fceda4c39d56f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d9e4223f-34a8-4847-9ef5-7285157a4822", + "x-ms-correlation-request-id": "70012b93-ecd2-4524-b22a-adc8f0de7976", "x-ms-ratelimit-remaining-subscription-writes": "1197", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T091849Z:d9e4223f-34a8-4847-9ef5-7285157a4822", - "x-request-time": "0.106" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T054556Z:70012b93-ecd2-4524-b22a-adc8f0de7976", + "x-request-time": "0.312" }, "ResponseBody": { "secretsType": "AccountKey", @@ -816,26 +799,26 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/model/iris_model/MLmodel", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/model/iris_model/MLmodel", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 09:18:51 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Mon, 26 Sep 2022 05:45:56 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Accept-Ranges": "bytes", - "Content-Length": "298", - "Content-MD5": "HaKpUL6X1WimkPVJF2lHiQ==", + "Content-Length": "287", + "Content-MD5": "70xFU4nvPmd68fVkqOtHNQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 09:18:49 GMT", - "ETag": "\u00220x8DA9B7DD39189A8\u0022", - "Last-Modified": "Wed, 21 Sep 2022 03:03:14 GMT", + "Date": "Mon, 26 Sep 2022 05:45:56 GMT", + "ETag": "\u00220x8DA9F7AF2C45D0E\u0022", + "Last-Modified": "Mon, 26 Sep 2022 04:52:43 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -844,32 +827,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 03:03:14 GMT", + "x-ms-creation-time": "Mon, 26 Sep 2022 04:52:43 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "e74ea290-c1f7-4fce-9017-fe27a58d5982", + "x-ms-meta-name": "654fd25d-69dd-4186-ae67-0576d49b0e0e", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "415b92e8-4b8f-464a-8e3d-136db7e3ff95", + "x-ms-meta-version": "0609c7ad-3891-44c0-9b87-d89a85269854", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/model/iris_model/MLmodel", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/model/iris_model/MLmodel", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 09:18:51 GMT", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Mon, 26 Sep 2022 05:45:56 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 09:18:49 GMT", + "Date": "Mon, 26 Sep 2022 05:45:56 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -888,9 +871,9 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "2588", + "Content-Length": "2606", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -922,7 +905,7 @@ "max_concurrency_per_instance": 2, "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/7f8ca489-3f80-40c3-b9f1-33ea50cca546/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3e2f335f-df3b-432b-9856-1d7c5338c931/versions/1", "entry_script": "tabular_run_with_model.py", "program_arguments": "--model ${{inputs.score_model}}", "append_row_to": "${{outputs.job_out_path}}", @@ -949,8 +932,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/5bdc9e32-8ca4-49f5-bd3b-6ef015dbd6d2", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b6e2b320-d169-4f79-b187-fa6aa7fa8136", "retry_settings": null, "logging_level": "DEBUG", "mini_batch_size": 100 @@ -971,22 +955,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "5000", + "Content-Length": "5030", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:18:58 GMT", + "Date": "Mon, 26 Sep 2022 05:46:03 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-92717c3ad9ddcf4c2501ef0eabdae26f-bfdf6ba270495d6d-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-6605ecc7d73cca95d46cba77d6c400c8-f6cd3680883edfb0-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0b6d0420-eaa8-48f6-9b42-18565d415859", + "x-ms-correlation-request-id": "de0214eb-6a2b-4532-bf0f-f67f828ee177", "x-ms-ratelimit-remaining-subscription-writes": "1196", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T091858Z:0b6d0420-eaa8-48f6-9b42-18565d415859", - "x-request-time": "3.247" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T054603Z:de0214eb-6a2b-4532-bf0f-f67f828ee177", + "x-request-time": "4.406" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -1014,7 +998,7 @@ "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null @@ -1047,7 +1031,7 @@ "max_concurrency_per_instance": 2, "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/7f8ca489-3f80-40c3-b9f1-33ea50cca546/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3e2f335f-df3b-432b-9856-1d7c5338c931/versions/1", "entry_script": "tabular_run_with_model.py", "program_arguments": "--model ${{inputs.score_model}}", "append_row_to": "${{outputs.job_out_path}}", @@ -1074,8 +1058,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/5bdc9e32-8ca4-49f5-bd3b-6ef015dbd6d2", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b6e2b320-d169-4f79-b187-fa6aa7fa8136", "retry_settings": null, "logging_level": "DEBUG", "mini_batch_size": 100 @@ -1106,7 +1091,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T09:18:57.5798437\u002B00:00", + "createdAt": "2022-09-26T05:46:03.2662231\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_pipeline_with_data.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_pipeline_with_data.json index 18f54aadcc68..90eabc80e882 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_pipeline_with_data.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_pipeline_with_data.json @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:50:19 GMT", + "Date": "Fri, 23 Sep 2022 17:38:23 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-ee6cc5be2d69d47241dbf542eb67c988-24ede0a2aa8a9807-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-eecd72b1336a04e10b97cdecbbbe6a9b-ff94540ef7dbdc71-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f6e92bf3-6493-4828-abb2-63e449a36a96", - "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-correlation-request-id": "d3e42094-50ea-4c9b-9e6b-a4501bc2015f", + "x-ms-ratelimit-remaining-subscription-reads": "11999", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085019Z:f6e92bf3-6493-4828-abb2-63e449a36a96", - "x-request-time": "0.033" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173824Z:d3e42094-50ea-4c9b-9e6b-a4501bc2015f", + "x-request-time": "0.032" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -41,8 +41,8 @@ "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T11:47:20.6013506\u002B00:00", - "modifiedOn": "2022-09-15T11:47:27.309088\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -60,23 +60,23 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 0, - "targetNodeCount": 2, + "currentNodeCount": 1, + "targetNodeCount": 4, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 0, + "runningNodeCount": 1, "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-21T08:50:16.129\u002B00:00", + "allocationState": "Steady", + "allocationStateTransitionTime": "2022-09-23T17:36:35.188\u002B00:00", "errors": [ { "error": { "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_92fbcd8f75321f6d485a668091b97888e36091744f4980c61f41b4675223dea0_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_c0b012c40824023b5c6231b76a58d1b2e3740b50bda3c31c9581a6b24c5aef5f_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_c737656408b129608bd5c73fa736ea4216046607cd2bd40f61a3e18e3bc82a31_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_d926d2653334081d0c6ac00169793cd4b57455955641cb3b62f1127b332fafe9_d: There is not enough disk space on the node", + "message": "ComputeNode.Id=tvmps_363864b505daf64a62c550b3039bf88a46c953293d3b4013e4cf21c28d5e312b_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_ae1eeb6a8f3122c9bccdf09343b2e3cd8217911e792aac6cd3d94797ad4b0ad4_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_c6e688f61710764bba9d4ebb13a6e8b9182eca42a7dc5ec038eda668590ef1b3_d: There is not enough disk space on the node", "details": [ { "code": "Message", @@ -86,10 +86,6 @@ "code": "Message", "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." }, - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - }, { "code": "Message", "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." @@ -122,11 +118,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:50:22 GMT", + "Date": "Fri, 23 Sep 2022 17:38:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-4b3c5f2184500b4fd94ad0c8ec9691fa-47a3c9092c229882-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-0e636b0f79d89e2ad4d92f26978e333e-99c523eab5ed004b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -135,11 +131,11 @@ ], "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "419e9eec-3ad3-44a4-9883-c751fa42f189", - "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-correlation-request-id": "55d5c9cd-b386-451a-942c-e1e09e7dd19b", + "x-ms-ratelimit-remaining-subscription-reads": "11998", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085022Z:419e9eec-3ad3-44a4-9883-c751fa42f189", - "x-request-time": "0.116" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173826Z:55d5c9cd-b386-451a-942c-e1e09e7dd19b", + "x-request-time": "0.213" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -154,17 +150,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -186,21 +182,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:50:23 GMT", + "Date": "Fri, 23 Sep 2022 17:38:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-0a1d280b79ff217f8d134fc457cf372a-52d0a8b2ecae4e4a-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-8e5a38beed3a75861c5bbf7323e4f79e-eec607d7dfd6d611-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3c8c33e4-34eb-4172-ac67-9353e83e25b4", - "x-ms-ratelimit-remaining-subscription-writes": "1187", + "x-ms-correlation-request-id": "2ed2cf6c-85dc-4994-b525-241a71cc64c0", + "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085024Z:3c8c33e4-34eb-4172-ac67-9353e83e25b4", - "x-request-time": "0.081" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173827Z:2ed2cf6c-85dc-4994-b525-241a71cc64c0", + "x-request-time": "0.127" }, "ResponseBody": { "secretsType": "AccountKey", @@ -208,14 +204,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/componentA_src/hello.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/componentA_src/hello.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:50:25 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:38:29 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -225,9 +221,9 @@ "Content-Length": "1008", "Content-MD5": "A0kqxUaINw78oUjIcFQevw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 08:50:24 GMT", - "ETag": "\u00220x8DA9B7CB5D7E639\u0022", - "Last-Modified": "Wed, 21 Sep 2022 02:55:15 GMT", + "Date": "Fri, 23 Sep 2022 17:38:27 GMT", + "ETag": "\u00220x8DA9D81EFAEA1B7\u0022", + "Last-Modified": "Fri, 23 Sep 2022 16:37:42 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -236,10 +232,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 02:55:15 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 16:37:41 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "7308da8e-de98-4ca5-970d-ef6733438636", + "x-ms-meta-name": "faef1edb-c311-4168-b5ef-db49dd8fedad", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -248,20 +244,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/componentA_src/hello.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/componentA_src/hello.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:50:26 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:38:30 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 08:50:24 GMT", + "Date": "Fri, 23 Sep 2022 17:38:28 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -274,7 +270,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/7308da8e-de98-4ca5-970d-ef6733438636/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/faef1edb-c311-4168-b5ef-db49dd8fedad/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -292,7 +288,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/componentA_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/componentA_src" } }, "StatusCode": 200, @@ -300,11 +296,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:50:26 GMT", + "Date": "Fri, 23 Sep 2022 17:38:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-65ae56617301b88ce17203ddd8a13da0-7c720402c6279996-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-3db336e0db8747c313434ffe31471616-170f05cdb1182a02-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -313,14 +309,14 @@ ], "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0bb0f2f9-2a43-46c3-ac85-aee17d529d65", - "x-ms-ratelimit-remaining-subscription-writes": "1178", + "x-ms-correlation-request-id": "75c6b7f2-7693-4d14-b41c-4e676e6b0962", + "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085027Z:0bb0f2f9-2a43-46c3-ac85-aee17d529d65", - "x-request-time": "0.093" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173830Z:75c6b7f2-7693-4d14-b41c-4e676e6b0962", + "x-request-time": "0.088" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/7308da8e-de98-4ca5-970d-ef6733438636/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/faef1edb-c311-4168-b5ef-db49dd8fedad/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -332,13 +328,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/componentA_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/componentA_src" }, "systemData": { - "createdAt": "2022-09-21T02:55:16.7034262\u002B00:00", + "createdAt": "2022-09-23T16:37:43.1439113\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T08:50:27.1085759\u002B00:00", + "lastModifiedAt": "2022-09-23T17:38:30.5971428\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -363,7 +359,7 @@ "isArchived": false, "componentSpec": { "command": "python hello.py --componentA_input ${{inputs.componentA_input}} --componentA_output ${{outputs.componentA_output}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/7308da8e-de98-4ca5-970d-ef6733438636/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/faef1edb-c311-4168-b5ef-db49dd8fedad/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "name": "azureml_anonymous", "tags": {}, @@ -390,24 +386,24 @@ "Cache-Control": "no-cache", "Content-Length": "1920", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:50:29 GMT", + "Date": "Fri, 23 Sep 2022 17:38:31 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-fa2c44aae8ea13e04bc7e70b40e42897-f624922b90f3d39d-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-6cdd913a35df7b7f4d3fb2066befa405-68eda6d226666e74-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "49b6e6ae-df76-4a2f-b233-ec38fcfeeaef", - "x-ms-ratelimit-remaining-subscription-writes": "1177", + "x-ms-correlation-request-id": "3c977e7e-9308-4a4a-ac57-7047a88a5044", + "x-ms-ratelimit-remaining-subscription-writes": "1198", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085029Z:49b6e6ae-df76-4a2f-b233-ec38fcfeeaef", - "x-request-time": "0.702" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173831Z:3c977e7e-9308-4a4a-ac57-7047a88a5044", + "x-request-time": "0.273" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/6560d433-2b39-42ea-a3be-792b35bdf66e", - "name": "6560d433-2b39-42ea-a3be-792b35bdf66e", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/278782d7-14c6-4bcf-94af-16c9d5b052dc", + "name": "278782d7-14c6-4bcf-94af-16c9d5b052dc", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -417,7 +413,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "6560d433-2b39-42ea-a3be-792b35bdf66e", + "version": "278782d7-14c6-4bcf-94af-16c9d5b052dc", "display_name": "componentA", "is_deterministic": "True", "type": "command", @@ -432,7 +428,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/7308da8e-de98-4ca5-970d-ef6733438636/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/faef1edb-c311-4168-b5ef-db49dd8fedad/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -442,10 +438,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T02:55:18.4411965\u002B00:00", + "createdAt": "2022-09-23T16:37:45.1527768\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:55:18.6046178\u002B00:00", + "lastModifiedAt": "2022-09-23T16:37:45.3241826\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -466,11 +462,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:50:29 GMT", + "Date": "Fri, 23 Sep 2022 17:38:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-99a74d08a598de9eef300feee45591d0-278a9182981e7b34-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-4428eae95d10fcd9588d60aa181c362a-f2173f7e657149e3-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -479,11 +475,11 @@ ], "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f591d129-abd1-48c9-8f01-b4be53a35345", - "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-correlation-request-id": "70bdc1eb-0634-42eb-b143-6cba02afb69e", + "x-ms-ratelimit-remaining-subscription-reads": "11997", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085030Z:f591d129-abd1-48c9-8f01-b4be53a35345", - "x-request-time": "0.083" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173832Z:70bdc1eb-0634-42eb-b143-6cba02afb69e", + "x-request-time": "0.148" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -498,17 +494,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -530,21 +526,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:50:30 GMT", + "Date": "Fri, 23 Sep 2022 17:38:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-e9b335eb5b8ad820d23896dcb8287b85-6e3b77556a3eac96-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-ff2df50eafb905060c30cc7ff2d285a0-851c5d7d0c97be41-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c20a5083-7380-4087-aa0f-441bbc063ae3", - "x-ms-ratelimit-remaining-subscription-writes": "1186", + "x-ms-correlation-request-id": "61fdb702-8234-46a9-b156-35de96c152a6", + "x-ms-ratelimit-remaining-subscription-writes": "1198", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085031Z:c20a5083-7380-4087-aa0f-441bbc063ae3", - "x-request-time": "0.104" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173833Z:61fdb702-8234-46a9-b156-35de96c152a6", + "x-request-time": "0.182" }, "ResponseBody": { "secretsType": "AccountKey", @@ -552,14 +548,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/componentB_src/hello.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/componentB_src/hello.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:50:32 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:38:35 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -569,9 +565,9 @@ "Content-Length": "1008", "Content-MD5": "1HkhAvMtfYHv8fBMXlSMOg==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 08:50:31 GMT", - "ETag": "\u00220x8DA9B7CB9910826\u0022", - "Last-Modified": "Wed, 21 Sep 2022 02:55:21 GMT", + "Date": "Fri, 23 Sep 2022 17:38:32 GMT", + "ETag": "\u00220x8DA9D81F439BF45\u0022", + "Last-Modified": "Fri, 23 Sep 2022 16:37:50 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -580,10 +576,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 02:55:21 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 16:37:49 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "c43bdfeb-1dcc-47b3-8011-cb8c905e9556", + "x-ms-meta-name": "8ac84723-a50f-4f49-9063-5f56bf3ff1d4", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -592,20 +588,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/componentB_src/hello.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/componentB_src/hello.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:50:33 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:38:35 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 08:50:32 GMT", + "Date": "Fri, 23 Sep 2022 17:38:32 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -618,7 +614,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/c43bdfeb-1dcc-47b3-8011-cb8c905e9556/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/8ac84723-a50f-4f49-9063-5f56bf3ff1d4/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -636,7 +632,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/componentB_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/componentB_src" } }, "StatusCode": 200, @@ -644,11 +640,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:50:33 GMT", + "Date": "Fri, 23 Sep 2022 17:38:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-5d88a8830db472631b1574752d900ef2-694e403dc5a6c6c5-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-28d48f32abb5d3960e72705fa263bc34-9780adbbae8ac469-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -657,14 +653,14 @@ ], "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "81576f96-337c-4939-98fc-23e4ed53eee2", - "x-ms-ratelimit-remaining-subscription-writes": "1176", + "x-ms-correlation-request-id": "f633bf9b-7bbd-4f3a-9fa3-5522e75aadd8", + "x-ms-ratelimit-remaining-subscription-writes": "1197", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085033Z:81576f96-337c-4939-98fc-23e4ed53eee2", - "x-request-time": "0.069" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173834Z:f633bf9b-7bbd-4f3a-9fa3-5522e75aadd8", + "x-request-time": "0.094" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/c43bdfeb-1dcc-47b3-8011-cb8c905e9556/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/8ac84723-a50f-4f49-9063-5f56bf3ff1d4/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -676,13 +672,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/componentB_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/componentB_src" }, "systemData": { - "createdAt": "2022-09-21T02:55:22.5305777\u002B00:00", + "createdAt": "2022-09-23T16:37:50.8813994\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T08:50:33.542535\u002B00:00", + "lastModifiedAt": "2022-09-23T17:38:34.377753\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -707,7 +703,7 @@ "isArchived": false, "componentSpec": { "command": "python hello.py --componentB_input ${{inputs.componentB_input}} --componentB_output ${{outputs.componentB_output}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/c43bdfeb-1dcc-47b3-8011-cb8c905e9556/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/8ac84723-a50f-4f49-9063-5f56bf3ff1d4/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "name": "azureml_anonymous", "tags": {}, @@ -734,24 +730,24 @@ "Cache-Control": "no-cache", "Content-Length": "1920", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:50:34 GMT", + "Date": "Fri, 23 Sep 2022 17:38:35 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-8674c8c39b054eeab3252957a9001b4e-211c9f01fef24be9-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-e230e2204a5cb40e8e1f2ab94d1e16fb-ce1d4bcd84fa77c7-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3d9267e4-22e1-47b2-9616-0483e1c5827a", - "x-ms-ratelimit-remaining-subscription-writes": "1175", + "x-ms-correlation-request-id": "944ec97f-c4e0-4788-afee-e4e210140eea", + "x-ms-ratelimit-remaining-subscription-writes": "1196", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085034Z:3d9267e4-22e1-47b2-9616-0483e1c5827a", - "x-request-time": "0.331" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173835Z:944ec97f-c4e0-4788-afee-e4e210140eea", + "x-request-time": "0.289" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b7385a5e-e890-4884-aa10-9f1829262077", - "name": "b7385a5e-e890-4884-aa10-9f1829262077", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/03fbf231-9004-4fb3-9dbf-13dd72038c2e", + "name": "03fbf231-9004-4fb3-9dbf-13dd72038c2e", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -761,7 +757,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "b7385a5e-e890-4884-aa10-9f1829262077", + "version": "03fbf231-9004-4fb3-9dbf-13dd72038c2e", "display_name": "componentB", "is_deterministic": "True", "type": "command", @@ -776,7 +772,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/c43bdfeb-1dcc-47b3-8011-cb8c905e9556/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/8ac84723-a50f-4f49-9063-5f56bf3ff1d4/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -786,10 +782,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T02:55:24.3923766\u002B00:00", + "createdAt": "2022-09-23T16:37:52.8291155\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:55:24.5457878\u002B00:00", + "lastModifiedAt": "2022-09-23T16:37:53.0278346\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -810,11 +806,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:50:35 GMT", + "Date": "Fri, 23 Sep 2022 17:38:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-14b5e012ec007feffc6442d32c7b8797-884d41fcc067fd77-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-62b11101ddda5166369f789ce2df1560-e53179df8f1c0f89-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -823,11 +819,11 @@ ], "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a1e051f9-4458-4101-a46a-b6a303e4f33e", - "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-correlation-request-id": "3986861e-0158-42e9-b79b-ddef93853ff0", + "x-ms-ratelimit-remaining-subscription-reads": "11996", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085036Z:a1e051f9-4458-4101-a46a-b6a303e4f33e", - "x-request-time": "0.087" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173836Z:3986861e-0158-42e9-b79b-ddef93853ff0", + "x-request-time": "0.131" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -842,17 +838,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -874,21 +870,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:50:36 GMT", + "Date": "Fri, 23 Sep 2022 17:38:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-1ea3953651763987efdce258634775ff-7b88efed8795bff9-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-bc1d1a43172ee39c0c54788c3ea809d4-72db521d48854410-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "74db911d-dab8-4f31-a958-2d1ed113f8ee", - "x-ms-ratelimit-remaining-subscription-writes": "1185", + "x-ms-correlation-request-id": "30a28714-5ad8-4cc9-985b-2e24b71de83a", + "x-ms-ratelimit-remaining-subscription-writes": "1197", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085037Z:74db911d-dab8-4f31-a958-2d1ed113f8ee", - "x-request-time": "0.102" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173836Z:30a28714-5ad8-4cc9-985b-2e24b71de83a", + "x-request-time": "0.139" }, "ResponseBody": { "secretsType": "AccountKey", @@ -896,14 +892,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/componentC_src/hello.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/componentC_src/hello.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:50:38 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:38:38 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -913,9 +909,9 @@ "Content-Length": "1008", "Content-MD5": "dFP4Jw1QhQH4bNqA3XPF7Q==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 08:50:37 GMT", - "ETag": "\u00220x8DA9B7CBD184BCF\u0022", - "Last-Modified": "Wed, 21 Sep 2022 02:55:27 GMT", + "Date": "Fri, 23 Sep 2022 17:38:36 GMT", + "ETag": "\u00220x8DA9D81F815F211\u0022", + "Last-Modified": "Fri, 23 Sep 2022 16:37:56 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -924,10 +920,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 02:55:27 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 16:37:56 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "07fa29a6-a78b-43c7-bb0f-bbc2bf90e449", + "x-ms-meta-name": "2007641e-54ad-4d8b-9016-34cacbe5a7d2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -936,20 +932,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/componentC_src/hello.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/componentC_src/hello.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:50:39 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:38:39 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 08:50:38 GMT", + "Date": "Fri, 23 Sep 2022 17:38:36 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -962,7 +958,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/07fa29a6-a78b-43c7-bb0f-bbc2bf90e449/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2007641e-54ad-4d8b-9016-34cacbe5a7d2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -980,7 +976,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/componentC_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/componentC_src" } }, "StatusCode": 200, @@ -988,11 +984,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:50:39 GMT", + "Date": "Fri, 23 Sep 2022 17:38:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-154cf95c6a5816cd89c532221db4e75c-9f91d3bac3ca2a14-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-08fc34e8b5089d3ee2b9695b2d8a714b-51a7410881e65973-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -1001,14 +997,14 @@ ], "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5623b540-e9e8-46ec-9799-e94ff585e30d", - "x-ms-ratelimit-remaining-subscription-writes": "1174", + "x-ms-correlation-request-id": "c624231b-dcd3-4acc-b8d7-54b6e9620c5a", + "x-ms-ratelimit-remaining-subscription-writes": "1195", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085040Z:5623b540-e9e8-46ec-9799-e94ff585e30d", - "x-request-time": "0.092" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173837Z:c624231b-dcd3-4acc-b8d7-54b6e9620c5a", + "x-request-time": "0.083" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/07fa29a6-a78b-43c7-bb0f-bbc2bf90e449/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2007641e-54ad-4d8b-9016-34cacbe5a7d2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -1020,13 +1016,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/componentC_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/componentC_src" }, "systemData": { - "createdAt": "2022-09-21T02:55:29.1171975\u002B00:00", + "createdAt": "2022-09-23T16:37:57.6239688\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T08:50:40.10697\u002B00:00", + "lastModifiedAt": "2022-09-23T17:38:37.8333879\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -1051,7 +1047,7 @@ "isArchived": false, "componentSpec": { "command": "python hello.py --componentC_input ${{inputs.componentC_input}} --componentC_output ${{outputs.componentC_output}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/07fa29a6-a78b-43c7-bb0f-bbc2bf90e449/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2007641e-54ad-4d8b-9016-34cacbe5a7d2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "name": "azureml_anonymous", "tags": {}, @@ -1078,24 +1074,24 @@ "Cache-Control": "no-cache", "Content-Length": "1920", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:50:40 GMT", + "Date": "Fri, 23 Sep 2022 17:38:38 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-e87e1696c4e97170073e3a1666c2ae74-82a423c099df5a98-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-9dca0dc6fe455204317e3ed85b244b35-fed98bd034172efd-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f63ea719-548a-4115-a550-042f193e15b1", - "x-ms-ratelimit-remaining-subscription-writes": "1173", + "x-ms-correlation-request-id": "8c62e7f7-98fa-4ac7-98e5-67a82131bc7f", + "x-ms-ratelimit-remaining-subscription-writes": "1194", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085041Z:f63ea719-548a-4115-a550-042f193e15b1", - "x-request-time": "0.324" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173838Z:8c62e7f7-98fa-4ac7-98e5-67a82131bc7f", + "x-request-time": "0.288" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1705f6f6-0c45-40d5-aba5-6be6606b3c8d", - "name": "1705f6f6-0c45-40d5-aba5-6be6606b3c8d", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/3f91bf85-419f-4f5e-a79a-1007f49e444c", + "name": "3f91bf85-419f-4f5e-a79a-1007f49e444c", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1105,7 +1101,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "1705f6f6-0c45-40d5-aba5-6be6606b3c8d", + "version": "3f91bf85-419f-4f5e-a79a-1007f49e444c", "display_name": "componentC", "is_deterministic": "True", "type": "command", @@ -1120,7 +1116,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/07fa29a6-a78b-43c7-bb0f-bbc2bf90e449/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2007641e-54ad-4d8b-9016-34cacbe5a7d2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -1130,10 +1126,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T02:55:30.4563165\u002B00:00", + "createdAt": "2022-09-23T16:37:59.4314511\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:55:30.5849492\u002B00:00", + "lastModifiedAt": "2022-09-23T16:37:59.5949787\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -1146,7 +1142,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "2899", + "Content-Length": "2953", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -1188,8 +1184,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/6560d433-2b39-42ea-a3be-792b35bdf66e" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/278782d7-14c6-4bcf-94af-16c9d5b052dc" }, "component_b_job": { "resources": null, @@ -1213,8 +1210,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b7385a5e-e890-4884-aa10-9f1829262077" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/03fbf231-9004-4fb3-9dbf-13dd72038c2e" }, "component_c_job": { "resources": null, @@ -1238,8 +1236,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1705f6f6-0c45-40d5-aba5-6be6606b3c8d" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/3f91bf85-419f-4f5e-a79a-1007f49e444c" } }, "outputs": { @@ -1264,22 +1263,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "5700", + "Content-Length": "5778", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:50:48 GMT", + "Date": "Fri, 23 Sep 2022 17:38:45 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-f6592e6f37fa6c29ee3a75e0c935a02c-eb0716480866ba5f-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-f348ec4367fe6ac0b07a50d34b7633c8-b67e347717ce7aa2-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a2a1fb44-afb6-4417-bc95-c27d63212854", - "x-ms-ratelimit-remaining-subscription-writes": "1172", + "x-ms-correlation-request-id": "0bbeabe2-8404-4b59-9e13-f410661b397a", + "x-ms-ratelimit-remaining-subscription-writes": "1193", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085049Z:a2a1fb44-afb6-4417-bc95-c27d63212854", - "x-request-time": "2.847" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T173846Z:0bbeabe2-8404-4b59-9e13-f410661b397a", + "x-request-time": "3.220" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -1352,8 +1351,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/6560d433-2b39-42ea-a3be-792b35bdf66e" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/278782d7-14c6-4bcf-94af-16c9d5b052dc" }, "component_b_job": { "resources": null, @@ -1377,8 +1377,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b7385a5e-e890-4884-aa10-9f1829262077" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/03fbf231-9004-4fb3-9dbf-13dd72038c2e" }, "component_c_job": { "resources": null, @@ -1402,8 +1403,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1705f6f6-0c45-40d5-aba5-6be6606b3c8d" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/3f91bf85-419f-4f5e-a79a-1007f49e444c" } }, "inputs": { @@ -1437,7 +1439,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T08:50:48.6139902\u002B00:00", + "createdAt": "2022-09-23T17:38:45.9279139\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_pipeline_with_data_as_inputs_for_pipeline_component.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_pipeline_with_data_as_inputs_for_pipeline_component.json index 1d81cc50dc72..ac637f10a54b 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_pipeline_with_data_as_inputs_for_pipeline_component.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_pipeline_with_data_as_inputs_for_pipeline_component.json @@ -10,53 +10,303 @@ "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, + "StatusCode": 404, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1001", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 16:54:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-eastus2-02", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "6806b75b-4204-41be-ac83-6650d4e77695", + "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-response-type": "error", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165407Z:6806b75b-4204-41be-ac83-6650d4e77695", + "x-request-time": "0.051" + }, + "ResponseBody": { + "error": { + "code": "UserError", + "message": "pipeline_component_training container was not found.", + "details": [], + "additionalInfo": [ + { + "type": "ComponentName", + "info": { + "value": "managementfrontend" + } + }, + { + "type": "Correlation", + "info": { + "value": { + "operation": "e7d730bd6b054e7e56a8a4d31ca3c0c0", + "request": "80ab0e5acc6239b3" + } + } + }, + { + "type": "Environment", + "info": { + "value": "eastus2" + } + }, + { + "type": "Location", + "info": { + "value": "eastus2" + } + }, + { + "type": "Time", + "info": { + "value": "2022-09-23T16:54:07.1672198\u002B00:00" + } + }, + { + "type": "InnerError", + "info": { + "value": { + "code": "NotFoundError", + "innerError": null + } + } + } + ] + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:00:35 GMT", + "Date": "Fri, 23 Sep 2022 16:54:10 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-8158f51c4ab45da83df7c0dafbbe2016-b499f88d118ffe09-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-7af09b95a1edda419a41ec4b738f1051-fa83845f30be22af-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c0619f88-dd35-4268-a6a8-82cfe8ff6282", - "x-ms-ratelimit-remaining-subscription-reads": "11900", + "x-ms-correlation-request-id": "45597a78-c126-4bbd-ae35-459ea3a9f802", + "x-ms-ratelimit-remaining-subscription-reads": "11807", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T090035Z:c0619f88-dd35-4268-a6a8-82cfe8ff6282", - "x-request-time": "0.085" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165410Z:45597a78-c126-4bbd-ae35-459ea3a9f802", + "x-request-time": "0.072" }, "ResponseBody": { - "value": [ - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/data/pipeline_component_training/versions/0.0.1", - "name": "0.0.1", - "type": "Microsoft.MachineLearningServices/workspaces/data/versions", - "properties": { - "description": null, - "tags": {}, - "properties": {}, - "isArchived": false, - "isAnonymous": false, - "dataUri": "azureml://workspaces/63e57e0c-1296-4327-a01d-537c6e3ee06d/datastores/workspaceblobstore/paths/LocalUpload/00000000000000000000000000000000/data/", - "dataType": "uri_folder" - }, - "systemData": { - "createdAt": "2022-09-21T03:06:04.2492283\u002B00:00", - "createdBy": "Zhengfei Wang", - "createdByType": "User", - "lastModifiedAt": "2022-09-21T03:06:04.2643203\u002B00:00" - } - } - ] + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", + "name": "workspaceblobstore", + "type": "Microsoft.MachineLearningServices/workspaces/datastores", + "properties": { + "description": null, + "tags": null, + "properties": null, + "isDefault": true, + "credentials": { + "credentialsType": "AccountKey" + }, + "datastoreType": "AzureBlob", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", + "endpoint": "core.windows.net", + "protocol": "https", + "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" + }, + "systemData": { + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", + "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", + "createdByType": "Application", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", + "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", + "lastModifiedByType": "Application" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore/listSecrets?api-version=2022-05-01", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "0", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 16:54:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-7f2af91fb3052504158965f8df7a711a-63902d7f2fafab40-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-eastus2-02", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "b0e1be0b-3992-412f-b0eb-006159e869be", + "x-ms-ratelimit-remaining-subscription-writes": "1075", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165411Z:b0e1be0b-3992-412f-b0eb-006159e869be", + "x-request-time": "0.098" + }, + "ResponseBody": { + "secretsType": "AccountKey", + "key": "dGhpcyBpcyBmYWtlIGtleQ==" + } + }, + { + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/data/sample.csv", + "RequestMethod": "HEAD", + "RequestHeaders": { + "Accept": "application/xml", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:54:14 GMT", + "x-ms-version": "2021-08-06" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Accept-Ranges": "bytes", + "Content-Length": "508", + "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", + "Content-Type": "application/octet-stream", + "Date": "Fri, 23 Sep 2022 16:54:12 GMT", + "ETag": "\u00220x8DA9D7BE5A046D9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:54:28 GMT", + "Server": [ + "Windows-Azure-Blob/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": "Origin", + "x-ms-access-tier": "Hot", + "x-ms-access-tier-inferred": "true", + "x-ms-blob-type": "BlockBlob", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:54:27 GMT", + "x-ms-lease-state": "available", + "x-ms-lease-status": "unlocked", + "x-ms-meta-name": "a144e40a-1670-4168-a96f-eba38109cc45", + "x-ms-meta-upload_status": "completed", + "x-ms-meta-version": "a2d99187-0868-4b22-add5-a121322288a5", + "x-ms-server-encrypted": "true", + "x-ms-version": "2021-08-06" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/data/sample.csv", + "RequestMethod": "HEAD", + "RequestHeaders": { + "Accept": "application/xml", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 16:54:15 GMT", + "x-ms-version": "2021-08-06" + }, + "RequestBody": null, + "StatusCode": 404, + "ResponseHeaders": { + "Date": "Fri, 23 Sep 2022 16:54:12 GMT", + "Server": [ + "Windows-Azure-Blob/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Transfer-Encoding": "chunked", + "Vary": "Origin", + "x-ms-error-code": "BlobNotFound", + "x-ms-version": "2021-08-06" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/data/pipeline_component_training/versions/0.0.1?api-version=2022-05-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "225", + "Content-Type": "application/json", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": { + "properties": { + "properties": {}, + "tags": {}, + "isAnonymous": false, + "isArchived": false, + "dataType": "uri_folder", + "dataUri": "azureml://datastores/workspaceblobstore/paths/LocalUpload/00000000000000000000000000000000/data" + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "848", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 16:54:13 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/data/pipeline_component_training/versions/0.0.1?api-version=2022-05-01", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-bc10150b701f8c579e7c0c7f6d57fe76-2bb179c3f66d1b0a-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-aml-cluster": "vienna-eastus2-02", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "bf6b47b1-ec09-4666-9c89-c0d153f6c6a2", + "x-ms-ratelimit-remaining-subscription-writes": "949", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165414Z:bf6b47b1-ec09-4666-9c89-c0d153f6c6a2", + "x-request-time": "0.161" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/data/pipeline_component_training/versions/0.0.1", + "name": "0.0.1", + "type": "Microsoft.MachineLearningServices/workspaces/data/versions", + "properties": { + "description": null, + "tags": {}, + "properties": {}, + "isArchived": false, + "isAnonymous": false, + "dataUri": "azureml://subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000/datastores/workspaceblobstore/paths/LocalUpload/00000000000000000000000000000000/data/", + "dataType": "uri_folder" + }, + "systemData": { + "createdAt": "2022-09-23T16:54:14.1941021\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T16:54:14.2078028\u002B00:00" + } } }, { @@ -74,24 +324,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:00:37 GMT", + "Date": "Fri, 23 Sep 2022 16:54:18 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-edaafc9103e413efef8dcdb8411518a1-81f30a6761a1cab0-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-56065475bc2d218253e2f7b53c34ddcf-a3413d862c499b12-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "181f69f4-b5e9-4527-9c04-b92602232223", - "x-ms-ratelimit-remaining-subscription-reads": "11899", + "x-ms-correlation-request-id": "f85970a2-eb4f-4cf2-931b-876c5a5a1de5", + "x-ms-ratelimit-remaining-subscription-reads": "11806", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T090037Z:181f69f4-b5e9-4527-9c04-b92602232223", - "x-request-time": "0.090" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165419Z:f85970a2-eb4f-4cf2-931b-876c5a5a1de5", + "x-request-time": "0.267" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -106,17 +356,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -138,21 +388,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:00:37 GMT", + "Date": "Fri, 23 Sep 2022 16:54:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-2d8cfba50f803cf2575fe0d7d7281123-41082e6985eb3603-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-4b909e320b1a310ecd56bd695a91042b-9c741d27503aeb80-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "65e2bd92-ca58-4a6a-8f79-3f8380b2a76a", - "x-ms-ratelimit-remaining-subscription-writes": "1136", + "x-ms-correlation-request-id": "b339ca56-c16b-462c-ad4e-d78dbdea64b9", + "x-ms-ratelimit-remaining-subscription-writes": "1074", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T090037Z:65e2bd92-ca58-4a6a-8f79-3f8380b2a76a", - "x-request-time": "0.107" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165419Z:b339ca56-c16b-462c-ad4e-d78dbdea64b9", + "x-request-time": "0.089" }, "ResponseBody": { "secretsType": "AccountKey", @@ -160,14 +410,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/train_src/train.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/train_src/train.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 09:00:39 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:54:22 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -177,9 +427,9 @@ "Content-Length": "1502", "Content-MD5": "EQ00rYDpw0NQnGfvdnx9Rw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 09:00:37 GMT", - "ETag": "\u00220x8DA9B7E1124F730\u0022", - "Last-Modified": "Wed, 21 Sep 2022 03:04:58 GMT", + "Date": "Fri, 23 Sep 2022 16:54:19 GMT", + "ETag": "\u00220x8DA9D7BC399D7AF\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:53:31 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -188,10 +438,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 03:04:57 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:53:31 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "a66f079a-d939-43ad-9a53-7444ef88b7ca", + "x-ms-meta-name": "7795983d-d8e7-433d-aaa3-7d47332c23d0", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -200,20 +450,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/train_src/train.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/train_src/train.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 09:00:39 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:54:23 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 09:00:38 GMT", + "Date": "Fri, 23 Sep 2022 16:54:20 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -226,7 +476,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/a66f079a-d939-43ad-9a53-7444ef88b7ca/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/7795983d-d8e7-433d-aaa3-7d47332c23d0/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -244,7 +494,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/train_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/train_src" } }, "StatusCode": 200, @@ -252,27 +502,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:00:39 GMT", + "Date": "Fri, 23 Sep 2022 16:54:21 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-d3db8dd1e8beb84eab059d0007460973-c6f2ac4eb3a37425-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-f994159e33a82bec96ac7a1992e29afe-fe9ad512773197f9-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "217dd3ff-79e0-477d-ade5-0346918b4358", - "x-ms-ratelimit-remaining-subscription-writes": "1078", + "x-ms-correlation-request-id": "52e4f815-e84d-4a95-9f2a-7e72eae20daf", + "x-ms-ratelimit-remaining-subscription-writes": "948", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T090039Z:217dd3ff-79e0-477d-ade5-0346918b4358", - "x-request-time": "0.086" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165422Z:52e4f815-e84d-4a95-9f2a-7e72eae20daf", + "x-request-time": "0.077" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/a66f079a-d939-43ad-9a53-7444ef88b7ca/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/7795983d-d8e7-433d-aaa3-7d47332c23d0/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -284,13 +534,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/train_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/train_src" }, "systemData": { - "createdAt": "2022-09-21T03:04:59.3942313\u002B00:00", + "createdAt": "2022-09-23T15:53:32.8054715\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T09:00:39.521093\u002B00:00", + "lastModifiedAt": "2022-09-23T16:54:21.9267555\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -316,7 +566,7 @@ "isArchived": false, "componentSpec": { "command": "python train.py --training_data ${{inputs.training_data}} $[[--max_epochs ${{inputs.max_epochs}}]] --learning_rate ${{inputs.learning_rate}} --learning_rate_schedule ${{inputs.learning_rate_schedule}} --model_output ${{outputs.model_output}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/a66f079a-d939-43ad-9a53-7444ef88b7ca/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/7795983d-d8e7-433d-aaa3-7d47332c23d0/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "name": "azureml_anonymous", "description": "A dummy training component", @@ -357,24 +607,24 @@ "Cache-Control": "no-cache", "Content-Length": "2454", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:00:41 GMT", + "Date": "Fri, 23 Sep 2022 16:54:24 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-f8ffdd48bb704524a44de4fe5cf3ca53-e40161a63b1bf9c2-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-66bfa1da9f0e3621f84f53189b0d4e60-284015d59806976c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8189a364-0af1-4137-a20b-c157ef84723f", - "x-ms-ratelimit-remaining-subscription-writes": "1077", + "x-ms-correlation-request-id": "85d66073-3af9-4720-8bd1-8b54a08255a1", + "x-ms-ratelimit-remaining-subscription-writes": "947", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T090041Z:8189a364-0af1-4137-a20b-c157ef84723f", - "x-request-time": "0.354" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165424Z:85d66073-3af9-4720-8bd1-8b54a08255a1", + "x-request-time": "0.332" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/7667bddd-4bd9-4eef-90e2-80a090a0e459", - "name": "7667bddd-4bd9-4eef-90e2-80a090a0e459", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ccd64322-f356-4aaa-8a67-0bb9a6439d42", + "name": "ccd64322-f356-4aaa-8a67-0bb9a6439d42", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -384,7 +634,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "7667bddd-4bd9-4eef-90e2-80a090a0e459", + "version": "ccd64322-f356-4aaa-8a67-0bb9a6439d42", "display_name": "Train Model", "is_deterministic": "True", "type": "command", @@ -414,7 +664,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/a66f079a-d939-43ad-9a53-7444ef88b7ca/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/7795983d-d8e7-433d-aaa3-7d47332c23d0/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -424,10 +674,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T03:05:01.0272876\u002B00:00", + "createdAt": "2022-09-23T15:53:33.8456371\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T03:05:01.2339071\u002B00:00", + "lastModifiedAt": "2022-09-23T15:53:33.9871163\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -448,24 +698,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:00:42 GMT", + "Date": "Fri, 23 Sep 2022 16:54:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-d0ab0a6af6802d47ddfe9141ece4ef72-d04b7d329d73b599-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-eee475e3a9bae635463b64dc07ffe71c-a17f0c2c339f3c6d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0cb1f56e-fdba-4b6c-a155-ae1be2bfd6c9", - "x-ms-ratelimit-remaining-subscription-reads": "11898", + "x-ms-correlation-request-id": "92994380-acca-499a-8cf2-d53666a59465", + "x-ms-ratelimit-remaining-subscription-reads": "11805", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T090042Z:0cb1f56e-fdba-4b6c-a155-ae1be2bfd6c9", - "x-request-time": "0.087" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165428Z:92994380-acca-499a-8cf2-d53666a59465", + "x-request-time": "0.222" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -480,17 +730,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -512,21 +762,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:00:43 GMT", + "Date": "Fri, 23 Sep 2022 16:54:27 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-7b08bd55271da9f9727e5293a403ba35-5d1fa55ab77a917b-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-e51ad46791443ce59dd36a38908c1409-5de984c0318c0e30-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "eb1c4ce3-dd80-4594-9ba8-2cd799cc54a9", - "x-ms-ratelimit-remaining-subscription-writes": "1135", + "x-ms-correlation-request-id": "c44914e3-e0cb-4600-8acb-54a5a96a4e46", + "x-ms-ratelimit-remaining-subscription-writes": "1073", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T090043Z:eb1c4ce3-dd80-4594-9ba8-2cd799cc54a9", - "x-request-time": "0.085" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165428Z:c44914e3-e0cb-4600-8acb-54a5a96a4e46", + "x-request-time": "0.086" }, "ResponseBody": { "secretsType": "AccountKey", @@ -534,14 +784,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/score_src/score.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/score_src/score.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 09:00:45 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:54:32 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -551,9 +801,9 @@ "Content-Length": "939", "Content-MD5": "Q2DIK4bErnWv1LgcGzUh0A==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 09:00:43 GMT", - "ETag": "\u00220x8DA9B7C60A667D4\u0022", - "Last-Modified": "Wed, 21 Sep 2022 02:52:52 GMT", + "Date": "Fri, 23 Sep 2022 16:54:30 GMT", + "ETag": "\u00220x8DA9D7BC769174F\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:53:37 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -562,10 +812,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 02:52:52 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:53:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "fd9482ba-1783-4eff-ac0e-c65cfd46f793", + "x-ms-meta-name": "6cbd3051-aa7e-4a3e-ae14-045a19583372", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -574,20 +824,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/score_src/score.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/score_src/score.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 09:00:45 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:54:33 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 09:00:44 GMT", + "Date": "Fri, 23 Sep 2022 16:54:30 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -600,7 +850,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/fd9482ba-1783-4eff-ac0e-c65cfd46f793/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/6cbd3051-aa7e-4a3e-ae14-045a19583372/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -618,7 +868,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/score_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/score_src" } }, "StatusCode": 200, @@ -626,27 +876,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:00:45 GMT", + "Date": "Fri, 23 Sep 2022 16:54:31 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-a6d3a76599b13af34c4b5b875697c73f-9efb9540dd7eee32-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-089af12358ce2a569f5a8e45ef2debc7-d4edd2c072e53880-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dfc587b3-cd21-45bb-9e23-aab4be85e1cc", - "x-ms-ratelimit-remaining-subscription-writes": "1076", + "x-ms-correlation-request-id": "67b5f19e-a779-414a-a5db-35a8f45faed5", + "x-ms-ratelimit-remaining-subscription-writes": "946", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T090045Z:dfc587b3-cd21-45bb-9e23-aab4be85e1cc", - "x-request-time": "0.082" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165432Z:67b5f19e-a779-414a-a5db-35a8f45faed5", + "x-request-time": "0.080" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/fd9482ba-1783-4eff-ac0e-c65cfd46f793/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/6cbd3051-aa7e-4a3e-ae14-045a19583372/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -658,13 +908,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/score_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/score_src" }, "systemData": { - "createdAt": "2022-09-21T02:52:54.5544476\u002B00:00", + "createdAt": "2022-09-23T15:53:39.2456895\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T09:00:45.6259221\u002B00:00", + "lastModifiedAt": "2022-09-23T16:54:32.0142867\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -690,7 +940,7 @@ "isArchived": false, "componentSpec": { "command": "python score.py --model_input ${{inputs.model_input}} --test_data ${{inputs.test_data}} --score_output ${{outputs.score_output}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/fd9482ba-1783-4eff-ac0e-c65cfd46f793/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/6cbd3051-aa7e-4a3e-ae14-045a19583372/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "name": "azureml_anonymous", "description": "A dummy scoring component", @@ -722,24 +972,24 @@ "Cache-Control": "no-cache", "Content-Length": "2075", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:00:47 GMT", + "Date": "Fri, 23 Sep 2022 16:54:34 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-8af6e9b422700e42cd00ca73cb3264c5-b679bc3e2d9f741f-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-2bc605ac5c9ad50037f39139047a583d-bcbc7b3be4b625fa-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "415df406-a3e3-4064-8b0c-cadd880c80b1", - "x-ms-ratelimit-remaining-subscription-writes": "1075", + "x-ms-correlation-request-id": "1874efe9-f5cb-4d4c-8a86-13b4ee30056c", + "x-ms-ratelimit-remaining-subscription-writes": "945", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T090048Z:415df406-a3e3-4064-8b0c-cadd880c80b1", - "x-request-time": "0.343" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165434Z:1874efe9-f5cb-4d4c-8a86-13b4ee30056c", + "x-request-time": "0.380" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/024d590d-f0b4-4185-a898-d843c161dc1e", - "name": "024d590d-f0b4-4185-a898-d843c161dc1e", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f3fc70c3-4788-4306-a23a-c4fec592a4db", + "name": "f3fc70c3-4788-4306-a23a-c4fec592a4db", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -749,7 +999,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "024d590d-f0b4-4185-a898-d843c161dc1e", + "version": "f3fc70c3-4788-4306-a23a-c4fec592a4db", "display_name": "Score Data", "is_deterministic": "True", "type": "command", @@ -769,7 +1019,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/fd9482ba-1783-4eff-ac0e-c65cfd46f793/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/6cbd3051-aa7e-4a3e-ae14-045a19583372/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -779,10 +1029,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T03:05:09.9635695\u002B00:00", + "createdAt": "2022-09-23T15:53:41.5081871\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T03:05:10.1902801\u002B00:00", + "lastModifiedAt": "2022-09-23T15:53:41.6831788\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -803,24 +1053,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:00:49 GMT", + "Date": "Fri, 23 Sep 2022 16:54:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-5cedc14528f30f5f69a66bfa45a19e73-ba0fb8bfe5fab3f9-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-347a59e7bcbe75b0c7a14c3d536f17c4-2a33d7547ab78ba7-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c5fccd70-ebf4-462f-addd-edf1fe461c4f", - "x-ms-ratelimit-remaining-subscription-reads": "11897", + "x-ms-correlation-request-id": "0bf33ecc-cdbd-4228-8e7e-fc8ee517c5b1", + "x-ms-ratelimit-remaining-subscription-reads": "11804", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T090049Z:c5fccd70-ebf4-462f-addd-edf1fe461c4f", - "x-request-time": "0.072" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165436Z:0bf33ecc-cdbd-4228-8e7e-fc8ee517c5b1", + "x-request-time": "0.108" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -835,17 +1085,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -867,21 +1117,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:00:50 GMT", + "Date": "Fri, 23 Sep 2022 16:54:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-633e71a1c85414780f7173fb649d1990-f6b2319423d1f8be-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-c1fc4cca16b374d4655482eb805a3c9d-a00dbe4eca15de75-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8bc78037-e122-44fc-9b2a-8f97d630dc2a", - "x-ms-ratelimit-remaining-subscription-writes": "1134", + "x-ms-correlation-request-id": "e9e38e8d-0cbd-46a5-bb9e-31c3827dbc06", + "x-ms-ratelimit-remaining-subscription-writes": "1072", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T090050Z:8bc78037-e122-44fc-9b2a-8f97d630dc2a", - "x-request-time": "0.081" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165436Z:e9e38e8d-0cbd-46a5-bb9e-31c3827dbc06", + "x-request-time": "0.083" }, "ResponseBody": { "secretsType": "AccountKey", @@ -889,14 +1139,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/eval_src/eval.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/eval_src/eval.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 09:00:52 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:54:39 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -906,9 +1156,9 @@ "Content-Length": "795", "Content-MD5": "DCyaJK0A7h/5O4tRl1ENtA==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 09:00:50 GMT", - "ETag": "\u00220x8DA9B7E1AF2D41B\u0022", - "Last-Modified": "Wed, 21 Sep 2022 03:05:14 GMT", + "Date": "Fri, 23 Sep 2022 16:54:36 GMT", + "ETag": "\u00220x8DA9D7BCC3445BE\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:53:45 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -917,10 +1167,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 03:05:14 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:53:45 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "45fa3bfe-4768-4164-b56e-31a4934cc697", + "x-ms-meta-name": "32e61230-d3cd-4cfc-996b-f772b13337e3", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -929,20 +1179,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/eval_src/eval.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/eval_src/eval.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 09:00:52 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:54:39 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 09:00:50 GMT", + "Date": "Fri, 23 Sep 2022 16:54:36 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -955,7 +1205,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/45fa3bfe-4768-4164-b56e-31a4934cc697/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/32e61230-d3cd-4cfc-996b-f772b13337e3/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -973,7 +1223,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/eval_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/eval_src" } }, "StatusCode": 200, @@ -981,27 +1231,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:00:52 GMT", + "Date": "Fri, 23 Sep 2022 16:54:37 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-094ce60144ef225cb5b886931324efc3-a21bbc501b633415-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-2901a8d315137027aedaf85e4db3a326-5e1f7d29e6da7273-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c406bd59-67b3-4372-be02-ea2c889e9514", - "x-ms-ratelimit-remaining-subscription-writes": "1074", + "x-ms-correlation-request-id": "b6e42b62-2b09-48de-ba30-d5504a05db97", + "x-ms-ratelimit-remaining-subscription-writes": "944", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T090052Z:c406bd59-67b3-4372-be02-ea2c889e9514", - "x-request-time": "0.079" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165438Z:b6e42b62-2b09-48de-ba30-d5504a05db97", + "x-request-time": "0.111" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/45fa3bfe-4768-4164-b56e-31a4934cc697/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/32e61230-d3cd-4cfc-996b-f772b13337e3/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -1013,13 +1263,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/eval_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/eval_src" }, "systemData": { - "createdAt": "2022-09-21T03:05:17.4614902\u002B00:00", + "createdAt": "2022-09-23T15:53:47.4317915\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T09:00:52.1453224\u002B00:00", + "lastModifiedAt": "2022-09-23T16:54:38.1752251\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -1045,7 +1295,7 @@ "isArchived": false, "componentSpec": { "command": "python eval.py --scoring_result ${{inputs.scoring_result}} --eval_output ${{outputs.eval_output}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/45fa3bfe-4768-4164-b56e-31a4934cc697/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/32e61230-d3cd-4cfc-996b-f772b13337e3/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "name": "azureml_anonymous", "description": "A dummy evaluate component", @@ -1074,24 +1324,24 @@ "Cache-Control": "no-cache", "Content-Length": "1951", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:00:53 GMT", + "Date": "Fri, 23 Sep 2022 16:54:38 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-877d38887c63271bf556e0e02a3423f7-d4694e948257d1d0-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-5223d44cd3b314d540f5cd62341c8a2c-56114a06abcfe57d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5b5fe4b4-815b-49cf-ba57-8b2e6d9b3823", - "x-ms-ratelimit-remaining-subscription-writes": "1073", + "x-ms-correlation-request-id": "58e0d0ba-85fd-45ab-bcb6-0ddd5aa381c3", + "x-ms-ratelimit-remaining-subscription-writes": "943", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T090054Z:5b5fe4b4-815b-49cf-ba57-8b2e6d9b3823", - "x-request-time": "0.298" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165439Z:58e0d0ba-85fd-45ab-bcb6-0ddd5aa381c3", + "x-request-time": "0.343" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d5541670-9027-45f9-ad52-818cd6469564", - "name": "d5541670-9027-45f9-ad52-818cd6469564", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/6e2c6044-2a1c-46cb-b112-ae4eaef62187", + "name": "6e2c6044-2a1c-46cb-b112-ae4eaef62187", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1101,7 +1351,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "d5541670-9027-45f9-ad52-818cd6469564", + "version": "6e2c6044-2a1c-46cb-b112-ae4eaef62187", "display_name": "Eval Model", "is_deterministic": "True", "type": "command", @@ -1117,7 +1367,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/45fa3bfe-4768-4164-b56e-31a4934cc697/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/32e61230-d3cd-4cfc-996b-f772b13337e3/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -1127,10 +1377,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T03:05:20.0154964\u002B00:00", + "createdAt": "2022-09-23T15:53:49.7280662\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T03:05:20.1805965\u002B00:00", + "lastModifiedAt": "2022-09-23T15:53:49.8851176\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -1143,7 +1393,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "3346", + "Content-Length": "3400", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -1225,8 +1475,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/7667bddd-4bd9-4eef-90e2-80a090a0e459" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ccd64322-f356-4aaa-8a67-0bb9a6439d42" }, "score_with_sample_data": { "resources": null, @@ -1254,8 +1505,9 @@ "job_output_type": "uri_folder" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/024d590d-f0b4-4185-a898-d843c161dc1e" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f3fc70c3-4788-4306-a23a-c4fec592a4db" }, "eval_with_sample_data": { "resources": null, @@ -1279,8 +1531,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d5541670-9027-45f9-ad52-818cd6469564" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/6e2c6044-2a1c-46cb-b112-ae4eaef62187" } }, "_source": "DSL", @@ -1293,24 +1546,24 @@ "Cache-Control": "no-cache", "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:00:57 GMT", + "Date": "Fri, 23 Sep 2022 16:54:39 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-a7d93edb87a67ce87287458a6d7ce673-ea1b5c9d62029db5-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-8a2694d2afbce63862fe91ce55108137-86d6756fce06beb8-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a75c054f-a404-4460-9147-9f63255f0f4b", - "x-ms-ratelimit-remaining-subscription-writes": "1072", + "x-ms-correlation-request-id": "2ffc9e4d-7112-4876-8bf4-29524a9667c5", + "x-ms-ratelimit-remaining-subscription-writes": "942", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T090057Z:a75c054f-a404-4460-9147-9f63255f0f4b", - "x-request-time": "0.971" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165440Z:2ffc9e4d-7112-4876-8bf4-29524a9667c5", + "x-request-time": "0.984" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2da4cfcc-7892-4ff4-baed-20781d1414a8", - "name": "2da4cfcc-7892-4ff4-baed-20781d1414a8", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/52181d52-6bba-445e-b45a-f22714886820", + "name": "52181d52-6bba-445e-b45a-f22714886820", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1320,7 +1573,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "2da4cfcc-7892-4ff4-baed-20781d1414a8", + "version": "52181d52-6bba-445e-b45a-f22714886820", "display_name": "train_pipeline_component", "is_deterministic": "True", "type": "pipeline", @@ -1361,10 +1614,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T09:00:57.2709445\u002B00:00", + "createdAt": "2022-09-23T16:54:40.5853703\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T09:00:57.2709445\u002B00:00", + "lastModifiedAt": "2022-09-23T16:54:40.5853703\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -1377,7 +1630,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "3346", + "Content-Length": "3400", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -1459,8 +1712,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/7667bddd-4bd9-4eef-90e2-80a090a0e459" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ccd64322-f356-4aaa-8a67-0bb9a6439d42" }, "score_with_sample_data": { "resources": null, @@ -1488,8 +1742,9 @@ "job_output_type": "uri_folder" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/024d590d-f0b4-4185-a898-d843c161dc1e" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f3fc70c3-4788-4306-a23a-c4fec592a4db" }, "eval_with_sample_data": { "resources": null, @@ -1513,8 +1768,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d5541670-9027-45f9-ad52-818cd6469564" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/6e2c6044-2a1c-46cb-b112-ae4eaef62187" } }, "_source": "DSL", @@ -1527,24 +1783,24 @@ "Cache-Control": "no-cache", "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:01:00 GMT", + "Date": "Fri, 23 Sep 2022 16:54:42 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-950bdb409746bcc45dfb21351ab3b2d7-8f37ca5c3781df81-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-8889dc4851cb3722e77626eb1890d510-0c3a25b2cd322249-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e0d20d4c-1a9b-470a-b920-ba5f9d7c319a", - "x-ms-ratelimit-remaining-subscription-writes": "1071", + "x-ms-correlation-request-id": "999f5805-0a61-4dbc-85cc-b77de3d5e68f", + "x-ms-ratelimit-remaining-subscription-writes": "941", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T090100Z:e0d20d4c-1a9b-470a-b920-ba5f9d7c319a", - "x-request-time": "0.977" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165442Z:999f5805-0a61-4dbc-85cc-b77de3d5e68f", + "x-request-time": "0.945" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/5e284afa-f474-4022-87fc-d6c9e686488d", - "name": "5e284afa-f474-4022-87fc-d6c9e686488d", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bb94674e-2a72-43fa-bad9-8e0b92b2a5b6", + "name": "bb94674e-2a72-43fa-bad9-8e0b92b2a5b6", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1554,7 +1810,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "5e284afa-f474-4022-87fc-d6c9e686488d", + "version": "bb94674e-2a72-43fa-bad9-8e0b92b2a5b6", "display_name": "train_pipeline_component", "is_deterministic": "True", "type": "pipeline", @@ -1595,10 +1851,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T09:00:59.9327874\u002B00:00", + "createdAt": "2022-09-23T16:54:42.1979653\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T09:00:59.9327874\u002B00:00", + "lastModifiedAt": "2022-09-23T16:54:42.1979653\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -1619,24 +1875,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:01:00 GMT", + "Date": "Fri, 23 Sep 2022 16:54:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-efac45998204e4de4df8deab4b51d3bf-7a56af425d0897d2-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-81cd8b7c16f37660e8240889bdee30fc-8a91eb5e1f1ca393-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f422bfdc-b0bc-4e79-bcd4-d0d39344cbf2", - "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-correlation-request-id": "dc4c3303-ac4b-4dff-ae38-b1f8712126ea", + "x-ms-ratelimit-remaining-subscription-reads": "11803", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T090101Z:f422bfdc-b0bc-4e79-bcd4-d0d39344cbf2", - "x-request-time": "0.075" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165443Z:dc4c3303-ac4b-4dff-ae38-b1f8712126ea", + "x-request-time": "0.129" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -1651,17 +1907,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -1683,21 +1939,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:01:02 GMT", + "Date": "Fri, 23 Sep 2022 16:54:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-b570edee955293d9b7b337bc37024d89-7f35ba707f6e8f08-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-dd0d5c4156a7274c066d5ee78d364462-3563d9578b3ea14c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "08d5baad-f1cf-4110-975c-ac318fe96bc1", - "x-ms-ratelimit-remaining-subscription-writes": "1133", + "x-ms-correlation-request-id": "f7a2697c-0cd7-4bf4-9d2f-9ed41a790d55", + "x-ms-ratelimit-remaining-subscription-writes": "1071", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T090102Z:08d5baad-f1cf-4110-975c-ac318fe96bc1", - "x-request-time": "0.096" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165444Z:f7a2697c-0cd7-4bf4-9d2f-9ed41a790d55", + "x-request-time": "0.099" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1705,14 +1961,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/compare2_src/compare2.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/compare2_src/compare2.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 09:01:04 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:54:46 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -1722,9 +1978,9 @@ "Content-Length": "1355", "Content-MD5": "KDKfFAmtl5iN7Kbvl/m5/g==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 09:01:02 GMT", - "ETag": "\u00220x8DA9B7E246CF7F2\u0022", - "Last-Modified": "Wed, 21 Sep 2022 03:05:30 GMT", + "Date": "Fri, 23 Sep 2022 16:54:44 GMT", + "ETag": "\u00220x8DA9D7BE0FA00FE\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:54:20 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1733,10 +1989,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 03:05:30 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:54:20 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "879bc61a-3f0c-45d7-9da1-2df9a45d5834", + "x-ms-meta-name": "bb7ede4c-4b76-40a3-b2a2-44980ccdc8a7", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -1745,20 +2001,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/compare2_src/compare2.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/compare2_src/compare2.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 09:01:04 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:54:47 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 09:01:02 GMT", + "Date": "Fri, 23 Sep 2022 16:54:44 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1771,7 +2027,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/879bc61a-3f0c-45d7-9da1-2df9a45d5834/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/bb7ede4c-4b76-40a3-b2a2-44980ccdc8a7/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -1789,7 +2045,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/compare2_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/compare2_src" } }, "StatusCode": 200, @@ -1797,27 +2053,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:01:04 GMT", + "Date": "Fri, 23 Sep 2022 16:54:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-ee47eeaa2516f0e355a05e6027ba150c-b0a899aa82ab767f-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-98d551047827a12376682e777e024db0-eb3fdfd2f84038e1-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f88ceac3-1514-46d5-a0ca-db7452b9e100", - "x-ms-ratelimit-remaining-subscription-writes": "1070", + "x-ms-correlation-request-id": "51f8eb20-5462-4616-9268-9cb81bbcf98c", + "x-ms-ratelimit-remaining-subscription-writes": "940", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T090104Z:f88ceac3-1514-46d5-a0ca-db7452b9e100", - "x-request-time": "0.069" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165446Z:51f8eb20-5462-4616-9268-9cb81bbcf98c", + "x-request-time": "0.073" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/879bc61a-3f0c-45d7-9da1-2df9a45d5834/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/bb7ede4c-4b76-40a3-b2a2-44980ccdc8a7/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -1829,13 +2085,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/compare2_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/compare2_src" }, "systemData": { - "createdAt": "2022-09-21T03:05:31.3878331\u002B00:00", + "createdAt": "2022-09-23T15:54:21.6692962\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T09:01:04.5396344\u002B00:00", + "lastModifiedAt": "2022-09-23T16:54:46.249791\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -1861,7 +2117,7 @@ "isArchived": false, "componentSpec": { "command": "python compare2.py $[[--model1 ${{inputs.model1}}]] $[[--eval_result1 ${{inputs.eval_result1}}]] $[[--model2 ${{inputs.model2}}]] $[[--eval_result2 ${{inputs.eval_result2}}]] --best_model ${{outputs.best_model}} --best_result ${{outputs.best_result}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/879bc61a-3f0c-45d7-9da1-2df9a45d5834/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/bb7ede4c-4b76-40a3-b2a2-44980ccdc8a7/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "name": "azureml_anonymous", "description": "A dummy comparison module takes two models as input and outputs the better one", @@ -1904,26 +2160,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2507", + "Content-Length": "2506", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:01:06 GMT", + "Date": "Fri, 23 Sep 2022 16:54:47 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-4468a96c0b733474ad0c093f22629960-bbce8c6a5e178f09-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-e4492b4275e92ff791aa284b43fa1298-371e58984e2ea865-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3b70d6b3-2d1c-428d-a04b-00668f7a348f", - "x-ms-ratelimit-remaining-subscription-writes": "1069", + "x-ms-correlation-request-id": "fd431177-8a0a-49a3-a81d-bb8b5d96425c", + "x-ms-ratelimit-remaining-subscription-writes": "939", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T090106Z:3b70d6b3-2d1c-428d-a04b-00668f7a348f", - "x-request-time": "0.330" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165447Z:fd431177-8a0a-49a3-a81d-bb8b5d96425c", + "x-request-time": "0.308" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/7c5c7915-5f95-4429-8f87-bc67812009f8", - "name": "7c5c7915-5f95-4429-8f87-bc67812009f8", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/787a2230-a660-43f5-b81e-a7f7d209ca59", + "name": "787a2230-a660-43f5-b81e-a7f7d209ca59", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1933,7 +2189,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "7c5c7915-5f95-4429-8f87-bc67812009f8", + "version": "787a2230-a660-43f5-b81e-a7f7d209ca59", "display_name": "Compare 2 Models", "is_deterministic": "True", "type": "command", @@ -1964,7 +2220,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/879bc61a-3f0c-45d7-9da1-2df9a45d5834/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/bb7ede4c-4b76-40a3-b2a2-44980ccdc8a7/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -1974,10 +2230,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T03:05:32.9424235\u002B00:00", + "createdAt": "2022-09-23T15:54:23.747248\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T03:05:33.0900042\u002B00:00", + "lastModifiedAt": "2022-09-23T15:54:23.9196348\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -1990,7 +2246,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "3732", + "Content-Length": "3786", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -2038,8 +2294,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "DSL", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2da4cfcc-7892-4ff4-baed-20781d1414a8" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/52181d52-6bba-445e-b45a-f22714886820" }, "train_and_evaludate_model2": { "name": "train_and_evaludate_model2", @@ -2062,8 +2319,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "DSL", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/5e284afa-f474-4022-87fc-d6c9e686488d" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bb94674e-2a72-43fa-bad9-8e0b92b2a5b6" }, "compare2_models": { "resources": null, @@ -2103,8 +2361,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/7c5c7915-5f95-4429-8f87-bc67812009f8" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/787a2230-a660-43f5-b81e-a7f7d209ca59" } }, "outputs": { @@ -2124,22 +2383,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "6912", + "Content-Length": "6990", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:01:14 GMT", + "Date": "Fri, 23 Sep 2022 16:54:55 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-6d85d8d809758f8f43970baaf6454f5e-2fc1bd1ff562a18e-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-795dbeb5b1d715c23c0587831f9281d2-2feeea8b3749c88b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8051b702-daab-4645-937d-e10afa3f6be9", - "x-ms-ratelimit-remaining-subscription-writes": "1068", + "x-ms-correlation-request-id": "92bf294e-ebfb-41f3-bef0-4a955d4ebc82", + "x-ms-ratelimit-remaining-subscription-writes": "938", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T090114Z:8051b702-daab-4645-937d-e10afa3f6be9", - "x-request-time": "3.112" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165455Z:92bf294e-ebfb-41f3-bef0-4a955d4ebc82", + "x-request-time": "3.277" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -2212,8 +2471,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "DSL", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2da4cfcc-7892-4ff4-baed-20781d1414a8" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/52181d52-6bba-445e-b45a-f22714886820" }, "train_and_evaludate_model2": { "name": "train_and_evaludate_model2", @@ -2236,8 +2496,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "DSL", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/5e284afa-f474-4022-87fc-d6c9e686488d" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bb94674e-2a72-43fa-bad9-8e0b92b2a5b6" }, "compare2_models": { "resources": null, @@ -2277,8 +2538,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/7c5c7915-5f95-4429-8f87-bc67812009f8" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/787a2230-a660-43f5-b81e-a7f7d209ca59" } }, "inputs": { @@ -2316,7 +2578,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T09:01:14.1386396\u002B00:00", + "createdAt": "2022-09-23T16:54:55.4337772\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_pipeline_with_pipeline_component.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_pipeline_with_pipeline_component.json index 1540a83094bf..dcc12530f5d0 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_pipeline_with_pipeline_component.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_pipeline_with_pipeline_component.json @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:59:40 GMT", + "Date": "Fri, 23 Sep 2022 16:53:03 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-3ca2d818413ba978e1f2fcb943ab7f88-d0ac884936e7308a-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-f08e64c6537bee4b66cf320411fa2ec0-f1363c91c5b87f5b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b9ec53c7-157f-4dc7-b43c-7e3588332aad", - "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-correlation-request-id": "323b829e-31d0-4334-8f74-1a99cbaad0c3", + "x-ms-ratelimit-remaining-subscription-reads": "11814", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085940Z:b9ec53c7-157f-4dc7-b43c-7e3588332aad", - "x-request-time": "0.125" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165304Z:323b829e-31d0-4334-8f74-1a99cbaad0c3", + "x-request-time": "0.099" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -47,17 +47,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -79,21 +79,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:59:41 GMT", + "Date": "Fri, 23 Sep 2022 16:53:04 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-4d5eee071679ab459f83e66c1dd21f29-905eb8d17c31c0d2-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-a1cbbf483f29db13db4a907e54200b90-d477e6546919fa1c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f2813a99-b26a-4f0b-a1ed-a4aa4f3d5663", - "x-ms-ratelimit-remaining-subscription-writes": "1142", + "x-ms-correlation-request-id": "74b38458-f152-4195-b88e-2a48eedae6bf", + "x-ms-ratelimit-remaining-subscription-writes": "1081", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085941Z:f2813a99-b26a-4f0b-a1ed-a4aa4f3d5663", - "x-request-time": "0.107" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165305Z:74b38458-f152-4195-b88e-2a48eedae6bf", + "x-request-time": "0.166" }, "ResponseBody": { "secretsType": "AccountKey", @@ -101,14 +101,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/train_src/train.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/train_src/train.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:59:43 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:53:08 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -118,9 +118,9 @@ "Content-Length": "1502", "Content-MD5": "EQ00rYDpw0NQnGfvdnx9Rw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 08:59:41 GMT", - "ETag": "\u00220x8DA9B7E1124F730\u0022", - "Last-Modified": "Wed, 21 Sep 2022 03:04:58 GMT", + "Date": "Fri, 23 Sep 2022 16:53:05 GMT", + "ETag": "\u00220x8DA9D7BC399D7AF\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:53:31 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -129,10 +129,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 03:04:57 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:53:31 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "a66f079a-d939-43ad-9a53-7444ef88b7ca", + "x-ms-meta-name": "7795983d-d8e7-433d-aaa3-7d47332c23d0", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -141,20 +141,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/train_src/train.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/train_src/train.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:59:43 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:53:08 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 08:59:42 GMT", + "Date": "Fri, 23 Sep 2022 16:53:05 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -167,7 +167,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/a66f079a-d939-43ad-9a53-7444ef88b7ca/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/7795983d-d8e7-433d-aaa3-7d47332c23d0/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -185,7 +185,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/train_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/train_src" } }, "StatusCode": 200, @@ -193,27 +193,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:59:43 GMT", + "Date": "Fri, 23 Sep 2022 16:53:06 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-eb8caccc9c41ce213df92ae550077f07-9bff1da08f74ab7f-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-b10e7020fe48eb63d846983217d7ec01-7e66b92f3176a8b6-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ea0b163b-b2ff-4402-b078-a6ae06df9e8e", - "x-ms-ratelimit-remaining-subscription-writes": "1089", + "x-ms-correlation-request-id": "ca68d597-4d16-4837-8393-0d1a11140cc4", + "x-ms-ratelimit-remaining-subscription-writes": "960", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085943Z:ea0b163b-b2ff-4402-b078-a6ae06df9e8e", - "x-request-time": "0.089" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165307Z:ca68d597-4d16-4837-8393-0d1a11140cc4", + "x-request-time": "0.087" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/a66f079a-d939-43ad-9a53-7444ef88b7ca/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/7795983d-d8e7-433d-aaa3-7d47332c23d0/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -225,13 +225,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/train_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/train_src" }, "systemData": { - "createdAt": "2022-09-21T03:04:59.3942313\u002B00:00", + "createdAt": "2022-09-23T15:53:32.8054715\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T08:59:43.7840493\u002B00:00", + "lastModifiedAt": "2022-09-23T16:53:07.163223\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -257,7 +257,7 @@ "isArchived": false, "componentSpec": { "command": "python train.py --training_data ${{inputs.training_data}} $[[--max_epochs ${{inputs.max_epochs}}]] --learning_rate ${{inputs.learning_rate}} --learning_rate_schedule ${{inputs.learning_rate_schedule}} --model_output ${{outputs.model_output}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/a66f079a-d939-43ad-9a53-7444ef88b7ca/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/7795983d-d8e7-433d-aaa3-7d47332c23d0/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "name": "azureml_anonymous", "description": "A dummy training component", @@ -298,24 +298,24 @@ "Cache-Control": "no-cache", "Content-Length": "2454", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:59:44 GMT", + "Date": "Fri, 23 Sep 2022 16:53:09 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-b13338df91bf281969fbac06e97731ea-65fcfc41845ebaa8-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-26164c501406cb34a0351ba23b4d1fc2-512ef5070cbe72d2-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a3b481a2-ec79-4585-80ae-fb6645c279e9", - "x-ms-ratelimit-remaining-subscription-writes": "1088", + "x-ms-correlation-request-id": "103db5e1-458e-405d-b114-2cac2999b60f", + "x-ms-ratelimit-remaining-subscription-writes": "959", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085945Z:a3b481a2-ec79-4585-80ae-fb6645c279e9", - "x-request-time": "0.347" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165309Z:103db5e1-458e-405d-b114-2cac2999b60f", + "x-request-time": "0.369" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/7667bddd-4bd9-4eef-90e2-80a090a0e459", - "name": "7667bddd-4bd9-4eef-90e2-80a090a0e459", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ccd64322-f356-4aaa-8a67-0bb9a6439d42", + "name": "ccd64322-f356-4aaa-8a67-0bb9a6439d42", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -325,7 +325,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "7667bddd-4bd9-4eef-90e2-80a090a0e459", + "version": "ccd64322-f356-4aaa-8a67-0bb9a6439d42", "display_name": "Train Model", "is_deterministic": "True", "type": "command", @@ -355,7 +355,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/a66f079a-d939-43ad-9a53-7444ef88b7ca/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/7795983d-d8e7-433d-aaa3-7d47332c23d0/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -365,10 +365,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T03:05:01.0272876\u002B00:00", + "createdAt": "2022-09-23T15:53:33.8456371\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T03:05:01.2339071\u002B00:00", + "lastModifiedAt": "2022-09-23T15:53:33.9871163\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -389,24 +389,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:59:45 GMT", + "Date": "Fri, 23 Sep 2022 16:53:11 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-c99cdc1efbbba0f388ef60ab37d453e8-4fed0042e16dc4b7-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-4b4a139505d64cc1f3a546e6f0a46a86-92a3137c89391c14-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "affdd90e-1ea5-4b20-994e-9f1f3b49e1fd", - "x-ms-ratelimit-remaining-subscription-reads": "11905", + "x-ms-correlation-request-id": "5b993a36-9ddd-4a89-b5f7-b0ef5776ab95", + "x-ms-ratelimit-remaining-subscription-reads": "11813", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085946Z:affdd90e-1ea5-4b20-994e-9f1f3b49e1fd", - "x-request-time": "0.102" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165312Z:5b993a36-9ddd-4a89-b5f7-b0ef5776ab95", + "x-request-time": "0.131" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -421,17 +421,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -453,21 +453,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:59:46 GMT", + "Date": "Fri, 23 Sep 2022 16:53:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-51cc96e33a8211389e3942a10105b090-1cabbbaea4126171-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-5b9db4a3e9779577e4a99cb9c1cbc2d0-982c5930b4c5f026-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "93c4e6ba-7f6c-42ba-862d-049372cbfb11", - "x-ms-ratelimit-remaining-subscription-writes": "1141", + "x-ms-correlation-request-id": "6861153d-1c3d-4253-a19e-8d370b9287dc", + "x-ms-ratelimit-remaining-subscription-writes": "1080", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085947Z:93c4e6ba-7f6c-42ba-862d-049372cbfb11", - "x-request-time": "0.088" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165312Z:6861153d-1c3d-4253-a19e-8d370b9287dc", + "x-request-time": "0.079" }, "ResponseBody": { "secretsType": "AccountKey", @@ -475,14 +475,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/score_src/score.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/score_src/score.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:59:48 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:53:16 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -492,9 +492,9 @@ "Content-Length": "939", "Content-MD5": "Q2DIK4bErnWv1LgcGzUh0A==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 08:59:47 GMT", - "ETag": "\u00220x8DA9B7C60A667D4\u0022", - "Last-Modified": "Wed, 21 Sep 2022 02:52:52 GMT", + "Date": "Fri, 23 Sep 2022 16:53:13 GMT", + "ETag": "\u00220x8DA9D7BC769174F\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:53:37 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -503,10 +503,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 02:52:52 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:53:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "fd9482ba-1783-4eff-ac0e-c65cfd46f793", + "x-ms-meta-name": "6cbd3051-aa7e-4a3e-ae14-045a19583372", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -515,20 +515,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/score_src/score.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/score_src/score.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:59:49 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:53:16 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 08:59:47 GMT", + "Date": "Fri, 23 Sep 2022 16:53:13 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -541,7 +541,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/fd9482ba-1783-4eff-ac0e-c65cfd46f793/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/6cbd3051-aa7e-4a3e-ae14-045a19583372/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -559,7 +559,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/score_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/score_src" } }, "StatusCode": 200, @@ -567,27 +567,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:59:48 GMT", + "Date": "Fri, 23 Sep 2022 16:53:15 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-7efa1544d6b6bc1f416a2b2da3fd40f8-c7d220ce517833f2-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-cc626ab56e32975787ef901459073b09-349088d2a7aa17e2-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "79c417bb-38e3-4535-a993-89c050f68b7d", - "x-ms-ratelimit-remaining-subscription-writes": "1087", + "x-ms-correlation-request-id": "86616e23-6408-4733-bfcb-44bd95ba7148", + "x-ms-ratelimit-remaining-subscription-writes": "958", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085949Z:79c417bb-38e3-4535-a993-89c050f68b7d", - "x-request-time": "0.117" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165315Z:86616e23-6408-4733-bfcb-44bd95ba7148", + "x-request-time": "0.081" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/fd9482ba-1783-4eff-ac0e-c65cfd46f793/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/6cbd3051-aa7e-4a3e-ae14-045a19583372/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -599,13 +599,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/score_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/score_src" }, "systemData": { - "createdAt": "2022-09-21T02:52:54.5544476\u002B00:00", + "createdAt": "2022-09-23T15:53:39.2456895\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T08:59:48.899542\u002B00:00", + "lastModifiedAt": "2022-09-23T16:53:15.4540956\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -631,7 +631,7 @@ "isArchived": false, "componentSpec": { "command": "python score.py --model_input ${{inputs.model_input}} --test_data ${{inputs.test_data}} --score_output ${{outputs.score_output}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/fd9482ba-1783-4eff-ac0e-c65cfd46f793/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/6cbd3051-aa7e-4a3e-ae14-045a19583372/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "name": "azureml_anonymous", "description": "A dummy scoring component", @@ -663,24 +663,24 @@ "Cache-Control": "no-cache", "Content-Length": "2075", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:59:51 GMT", + "Date": "Fri, 23 Sep 2022 16:53:17 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-dc8bc04276466d1022a5ccedf0dae66f-fb337e25b711e248-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-823ea2bfc8c8efe5d91a9f4f43ba49fe-1d2919b82ed1ebe6-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0d80d63d-b7d3-4fd6-8f81-ef97239c55f0", - "x-ms-ratelimit-remaining-subscription-writes": "1086", + "x-ms-correlation-request-id": "fa4678cf-d745-4f3b-a69f-db808ed49ed1", + "x-ms-ratelimit-remaining-subscription-writes": "957", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085951Z:0d80d63d-b7d3-4fd6-8f81-ef97239c55f0", - "x-request-time": "0.361" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165317Z:fa4678cf-d745-4f3b-a69f-db808ed49ed1", + "x-request-time": "0.348" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/024d590d-f0b4-4185-a898-d843c161dc1e", - "name": "024d590d-f0b4-4185-a898-d843c161dc1e", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f3fc70c3-4788-4306-a23a-c4fec592a4db", + "name": "f3fc70c3-4788-4306-a23a-c4fec592a4db", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -690,7 +690,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "024d590d-f0b4-4185-a898-d843c161dc1e", + "version": "f3fc70c3-4788-4306-a23a-c4fec592a4db", "display_name": "Score Data", "is_deterministic": "True", "type": "command", @@ -710,7 +710,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/fd9482ba-1783-4eff-ac0e-c65cfd46f793/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/6cbd3051-aa7e-4a3e-ae14-045a19583372/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -720,10 +720,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T03:05:09.9635695\u002B00:00", + "createdAt": "2022-09-23T15:53:41.5081871\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T03:05:10.1902801\u002B00:00", + "lastModifiedAt": "2022-09-23T15:53:41.6831788\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -744,24 +744,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:59:53 GMT", + "Date": "Fri, 23 Sep 2022 16:53:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-281de1d9fda079fc84677170c008480a-bca4edb3dfcf70ec-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-f9549526d8e3819b0165ea6b72192996-1b5855ca5ea0efe1-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "653a0e16-173e-4a08-8ec0-2c8ecc757639", - "x-ms-ratelimit-remaining-subscription-reads": "11904", + "x-ms-correlation-request-id": "c6c71c83-1b6f-4bec-8704-8df7d5a79185", + "x-ms-ratelimit-remaining-subscription-reads": "11812", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085953Z:653a0e16-173e-4a08-8ec0-2c8ecc757639", - "x-request-time": "0.106" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165320Z:c6c71c83-1b6f-4bec-8704-8df7d5a79185", + "x-request-time": "0.075" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -776,17 +776,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -808,21 +808,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:59:54 GMT", + "Date": "Fri, 23 Sep 2022 16:53:20 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-9e80520ee9a80816baa8416768d2f4aa-a6daef83a3ef383f-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-b15768c602334dadf1215572d9f03ef8-2d418d7348c08df1-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "75ee3290-6c2c-4cbd-8d37-698197b96028", - "x-ms-ratelimit-remaining-subscription-writes": "1140", + "x-ms-correlation-request-id": "1631e87a-3039-4dde-8f73-d0b476bd7067", + "x-ms-ratelimit-remaining-subscription-writes": "1079", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085955Z:75ee3290-6c2c-4cbd-8d37-698197b96028", - "x-request-time": "0.083" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165321Z:1631e87a-3039-4dde-8f73-d0b476bd7067", + "x-request-time": "0.089" }, "ResponseBody": { "secretsType": "AccountKey", @@ -830,14 +830,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/eval_src/eval.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/eval_src/eval.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:59:57 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:53:25 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -847,9 +847,9 @@ "Content-Length": "795", "Content-MD5": "DCyaJK0A7h/5O4tRl1ENtA==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 08:59:55 GMT", - "ETag": "\u00220x8DA9B7E1AF2D41B\u0022", - "Last-Modified": "Wed, 21 Sep 2022 03:05:14 GMT", + "Date": "Fri, 23 Sep 2022 16:53:22 GMT", + "ETag": "\u00220x8DA9D7BCC3445BE\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:53:45 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -858,10 +858,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 03:05:14 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:53:45 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "45fa3bfe-4768-4164-b56e-31a4934cc697", + "x-ms-meta-name": "32e61230-d3cd-4cfc-996b-f772b13337e3", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -870,20 +870,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/eval_src/eval.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/eval_src/eval.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:59:57 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:53:26 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 08:59:56 GMT", + "Date": "Fri, 23 Sep 2022 16:53:23 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -896,7 +896,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/45fa3bfe-4768-4164-b56e-31a4934cc697/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/32e61230-d3cd-4cfc-996b-f772b13337e3/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -914,7 +914,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/eval_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/eval_src" } }, "StatusCode": 200, @@ -922,27 +922,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:59:57 GMT", + "Date": "Fri, 23 Sep 2022 16:53:24 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-bce78fbee4c6b2dd2855e5a95223a0aa-84754dd465bd33b1-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-46b1b5e160977be38214ed54ecc52528-a8a41ca0c9f39273-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "98842642-f95d-4ad3-a034-83f50f142db4", - "x-ms-ratelimit-remaining-subscription-writes": "1085", + "x-ms-correlation-request-id": "d7049b4e-f0d2-4db0-af4a-f1df6fa4ee45", + "x-ms-ratelimit-remaining-subscription-writes": "956", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085958Z:98842642-f95d-4ad3-a034-83f50f142db4", - "x-request-time": "0.068" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165324Z:d7049b4e-f0d2-4db0-af4a-f1df6fa4ee45", + "x-request-time": "0.064" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/45fa3bfe-4768-4164-b56e-31a4934cc697/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/32e61230-d3cd-4cfc-996b-f772b13337e3/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -954,13 +954,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/eval_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/eval_src" }, "systemData": { - "createdAt": "2022-09-21T03:05:17.4614902\u002B00:00", + "createdAt": "2022-09-23T15:53:47.4317915\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T08:59:58.4821813\u002B00:00", + "lastModifiedAt": "2022-09-23T16:53:24.8482745\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -986,7 +986,7 @@ "isArchived": false, "componentSpec": { "command": "python eval.py --scoring_result ${{inputs.scoring_result}} --eval_output ${{outputs.eval_output}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/45fa3bfe-4768-4164-b56e-31a4934cc697/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/32e61230-d3cd-4cfc-996b-f772b13337e3/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "name": "azureml_anonymous", "description": "A dummy evaluate component", @@ -1015,24 +1015,24 @@ "Cache-Control": "no-cache", "Content-Length": "1951", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:59:59 GMT", + "Date": "Fri, 23 Sep 2022 16:53:26 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-d9437cabb3d2aba6998c9f9b8a844a09-b38ef83c4a15f998-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-0c73261497f603460ad0e1219274299c-ad5bf6adf94891c8-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9fa84071-ec9a-41c1-a178-a7bf9bfad491", - "x-ms-ratelimit-remaining-subscription-writes": "1084", + "x-ms-correlation-request-id": "e3fb5b69-a0e3-4c70-880d-6f9c24ba4acc", + "x-ms-ratelimit-remaining-subscription-writes": "955", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085959Z:9fa84071-ec9a-41c1-a178-a7bf9bfad491", - "x-request-time": "0.304" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165327Z:e3fb5b69-a0e3-4c70-880d-6f9c24ba4acc", + "x-request-time": "0.325" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d5541670-9027-45f9-ad52-818cd6469564", - "name": "d5541670-9027-45f9-ad52-818cd6469564", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/6e2c6044-2a1c-46cb-b112-ae4eaef62187", + "name": "6e2c6044-2a1c-46cb-b112-ae4eaef62187", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1042,7 +1042,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "d5541670-9027-45f9-ad52-818cd6469564", + "version": "6e2c6044-2a1c-46cb-b112-ae4eaef62187", "display_name": "Eval Model", "is_deterministic": "True", "type": "command", @@ -1058,7 +1058,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/45fa3bfe-4768-4164-b56e-31a4934cc697/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/32e61230-d3cd-4cfc-996b-f772b13337e3/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -1068,10 +1068,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T03:05:20.0154964\u002B00:00", + "createdAt": "2022-09-23T15:53:49.7280662\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T03:05:20.1805965\u002B00:00", + "lastModifiedAt": "2022-09-23T15:53:49.8851176\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -1084,7 +1084,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "3346", + "Content-Length": "3400", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -1166,8 +1166,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/7667bddd-4bd9-4eef-90e2-80a090a0e459" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ccd64322-f356-4aaa-8a67-0bb9a6439d42" }, "score_with_sample_data": { "resources": null, @@ -1195,8 +1196,9 @@ "job_output_type": "uri_folder" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/024d590d-f0b4-4185-a898-d843c161dc1e" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f3fc70c3-4788-4306-a23a-c4fec592a4db" }, "eval_with_sample_data": { "resources": null, @@ -1220,8 +1222,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d5541670-9027-45f9-ad52-818cd6469564" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/6e2c6044-2a1c-46cb-b112-ae4eaef62187" } }, "_source": "DSL", @@ -1234,24 +1237,24 @@ "Cache-Control": "no-cache", "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:00:02 GMT", + "Date": "Fri, 23 Sep 2022 16:53:30 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-c426ce5e1e0e07a9a8376b30b00b45ab-3180b9974ee68ea0-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-948266edd01685ce3d0649cc835696bf-461353e4b441f863-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fcb88a77-b7d2-41f7-85a8-6324dced78da", - "x-ms-ratelimit-remaining-subscription-writes": "1083", + "x-ms-correlation-request-id": "6b115028-ac15-43c2-a6ef-19113fd9d152", + "x-ms-ratelimit-remaining-subscription-writes": "954", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T090002Z:fcb88a77-b7d2-41f7-85a8-6324dced78da", - "x-request-time": "1.047" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165330Z:6b115028-ac15-43c2-a6ef-19113fd9d152", + "x-request-time": "1.228" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/57d4074e-4d5c-44b7-94b8-578671ca3092", - "name": "57d4074e-4d5c-44b7-94b8-578671ca3092", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a2285b8f-389b-4504-a498-fb59fd09e07c", + "name": "a2285b8f-389b-4504-a498-fb59fd09e07c", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1261,7 +1264,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "57d4074e-4d5c-44b7-94b8-578671ca3092", + "version": "a2285b8f-389b-4504-a498-fb59fd09e07c", "display_name": "train_pipeline_component", "is_deterministic": "True", "type": "pipeline", @@ -1302,10 +1305,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T09:00:02.5122828\u002B00:00", + "createdAt": "2022-09-23T16:53:30.2690995\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T09:00:02.5122828\u002B00:00", + "lastModifiedAt": "2022-09-23T16:53:30.2690995\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -1318,7 +1321,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "3346", + "Content-Length": "3400", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -1400,8 +1403,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/7667bddd-4bd9-4eef-90e2-80a090a0e459" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ccd64322-f356-4aaa-8a67-0bb9a6439d42" }, "score_with_sample_data": { "resources": null, @@ -1429,8 +1433,9 @@ "job_output_type": "uri_folder" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/024d590d-f0b4-4185-a898-d843c161dc1e" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f3fc70c3-4788-4306-a23a-c4fec592a4db" }, "eval_with_sample_data": { "resources": null, @@ -1454,8 +1459,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d5541670-9027-45f9-ad52-818cd6469564" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/6e2c6044-2a1c-46cb-b112-ae4eaef62187" } }, "_source": "DSL", @@ -1468,24 +1474,24 @@ "Cache-Control": "no-cache", "Content-Length": "1933", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:00:05 GMT", + "Date": "Fri, 23 Sep 2022 16:53:32 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-45b200fbd8fec043cfe6069f91ad712f-ee5fa973176b70f6-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-669de917046f33109a365eb0a0fa9256-041793b3900a6301-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b7f08e9c-af45-4bd0-a304-2536a6bfbee8", - "x-ms-ratelimit-remaining-subscription-writes": "1082", + "x-ms-correlation-request-id": "858c4ea6-0c58-4609-8c56-3e5cac209a0c", + "x-ms-ratelimit-remaining-subscription-writes": "953", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T090005Z:b7f08e9c-af45-4bd0-a304-2536a6bfbee8", - "x-request-time": "0.949" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165333Z:858c4ea6-0c58-4609-8c56-3e5cac209a0c", + "x-request-time": "0.922" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/7701035a-1f69-4450-a531-3bd5cf42a8b4", - "name": "7701035a-1f69-4450-a531-3bd5cf42a8b4", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/5db820fe-93c4-473d-9c17-f8f6c8e2b9dc", + "name": "5db820fe-93c4-473d-9c17-f8f6c8e2b9dc", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1495,7 +1501,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "7701035a-1f69-4450-a531-3bd5cf42a8b4", + "version": "5db820fe-93c4-473d-9c17-f8f6c8e2b9dc", "display_name": "train_pipeline_component", "is_deterministic": "True", "type": "pipeline", @@ -1536,10 +1542,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T09:00:05.4620746\u002B00:00", + "createdAt": "2022-09-23T16:53:33.1216528\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T09:00:05.4620746\u002B00:00", + "lastModifiedAt": "2022-09-23T16:53:33.1216528\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -1560,24 +1566,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:00:07 GMT", + "Date": "Fri, 23 Sep 2022 16:53:34 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-1455f37793231adf6ab7c3beb477776d-1af2d90339ce3e1c-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-b96a8c6e0a8d907b894291304e34f93a-98e814c2d3e86352-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "81ee980f-60d9-4c4a-9986-523d4bb89951", - "x-ms-ratelimit-remaining-subscription-reads": "11903", + "x-ms-correlation-request-id": "006d57bf-7f54-41ac-9871-2f77fa0287ad", + "x-ms-ratelimit-remaining-subscription-reads": "11811", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T090007Z:81ee980f-60d9-4c4a-9986-523d4bb89951", - "x-request-time": "0.101" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165335Z:006d57bf-7f54-41ac-9871-2f77fa0287ad", + "x-request-time": "0.115" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -1592,17 +1598,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -1624,21 +1630,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:00:08 GMT", + "Date": "Fri, 23 Sep 2022 16:53:35 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-65c6e051f2ed234d2c8a3970672779c4-441f299afad6c40d-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-5a012f561856c5fe55ca739be543187a-e7b95aa05779bc69-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6be2a092-b05c-4d3f-8f5d-881b716eeb6b", - "x-ms-ratelimit-remaining-subscription-writes": "1139", + "x-ms-correlation-request-id": "1ae77b87-0ab3-40fa-a6cf-cf42fc8c574f", + "x-ms-ratelimit-remaining-subscription-writes": "1078", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T090009Z:6be2a092-b05c-4d3f-8f5d-881b716eeb6b", - "x-request-time": "0.094" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165335Z:1ae77b87-0ab3-40fa-a6cf-cf42fc8c574f", + "x-request-time": "0.091" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1646,14 +1652,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/compare2_src/compare2.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/compare2_src/compare2.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 09:00:11 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:53:39 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -1663,9 +1669,9 @@ "Content-Length": "1355", "Content-MD5": "KDKfFAmtl5iN7Kbvl/m5/g==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 09:00:09 GMT", - "ETag": "\u00220x8DA9B7E246CF7F2\u0022", - "Last-Modified": "Wed, 21 Sep 2022 03:05:30 GMT", + "Date": "Fri, 23 Sep 2022 16:53:37 GMT", + "ETag": "\u00220x8DA9D7BE0FA00FE\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:54:20 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1674,10 +1680,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 03:05:30 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:54:20 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "879bc61a-3f0c-45d7-9da1-2df9a45d5834", + "x-ms-meta-name": "bb7ede4c-4b76-40a3-b2a2-44980ccdc8a7", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -1686,20 +1692,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/compare2_src/compare2.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/compare2_src/compare2.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 09:00:11 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:53:40 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 09:00:09 GMT", + "Date": "Fri, 23 Sep 2022 16:53:37 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1712,7 +1718,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/879bc61a-3f0c-45d7-9da1-2df9a45d5834/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/bb7ede4c-4b76-40a3-b2a2-44980ccdc8a7/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -1730,7 +1736,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/compare2_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/compare2_src" } }, "StatusCode": 200, @@ -1738,27 +1744,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:00:10 GMT", + "Date": "Fri, 23 Sep 2022 16:53:38 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-d87bf94f33f116cb8b9982125ebc183d-3259911068eaa652-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-f76a70c533abf47dee2f43ff8f4e530d-ecf54203e0e068d6-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6ff654c3-1767-49a7-bcb2-fb73d0b27726", - "x-ms-ratelimit-remaining-subscription-writes": "1081", + "x-ms-correlation-request-id": "79fb49a6-208e-4670-a95a-f77ab1c21baf", + "x-ms-ratelimit-remaining-subscription-writes": "952", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T090011Z:6ff654c3-1767-49a7-bcb2-fb73d0b27726", - "x-request-time": "0.219" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165339Z:79fb49a6-208e-4670-a95a-f77ab1c21baf", + "x-request-time": "0.086" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/879bc61a-3f0c-45d7-9da1-2df9a45d5834/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/bb7ede4c-4b76-40a3-b2a2-44980ccdc8a7/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -1770,13 +1776,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/compare2_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/compare2_src" }, "systemData": { - "createdAt": "2022-09-21T03:05:31.3878331\u002B00:00", + "createdAt": "2022-09-23T15:54:21.6692962\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T09:00:11.3384735\u002B00:00", + "lastModifiedAt": "2022-09-23T16:53:39.0664525\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -1802,7 +1808,7 @@ "isArchived": false, "componentSpec": { "command": "python compare2.py $[[--model1 ${{inputs.model1}}]] $[[--eval_result1 ${{inputs.eval_result1}}]] $[[--model2 ${{inputs.model2}}]] $[[--eval_result2 ${{inputs.eval_result2}}]] --best_model ${{outputs.best_model}} --best_result ${{outputs.best_result}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/879bc61a-3f0c-45d7-9da1-2df9a45d5834/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/bb7ede4c-4b76-40a3-b2a2-44980ccdc8a7/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "name": "azureml_anonymous", "description": "A dummy comparison module takes two models as input and outputs the better one", @@ -1845,26 +1851,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2507", + "Content-Length": "2506", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:00:13 GMT", + "Date": "Fri, 23 Sep 2022 16:53:40 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-d530719f638abc32eb98dd42c7f726bb-4c80d552e0742a47-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-c4a8c654c52e73c9d7589eab9ad56762-68e9ed77070d4951-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6039d8fc-d8f9-4b26-98fa-d3055940d34e", - "x-ms-ratelimit-remaining-subscription-writes": "1080", + "x-ms-correlation-request-id": "5d9803f3-13a9-48ca-bf4d-b05dc017cbf3", + "x-ms-ratelimit-remaining-subscription-writes": "951", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T090013Z:6039d8fc-d8f9-4b26-98fa-d3055940d34e", - "x-request-time": "0.368" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165341Z:5d9803f3-13a9-48ca-bf4d-b05dc017cbf3", + "x-request-time": "0.371" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/7c5c7915-5f95-4429-8f87-bc67812009f8", - "name": "7c5c7915-5f95-4429-8f87-bc67812009f8", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/787a2230-a660-43f5-b81e-a7f7d209ca59", + "name": "787a2230-a660-43f5-b81e-a7f7d209ca59", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1874,7 +1880,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "7c5c7915-5f95-4429-8f87-bc67812009f8", + "version": "787a2230-a660-43f5-b81e-a7f7d209ca59", "display_name": "Compare 2 Models", "is_deterministic": "True", "type": "command", @@ -1905,7 +1911,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/879bc61a-3f0c-45d7-9da1-2df9a45d5834/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/bb7ede4c-4b76-40a3-b2a2-44980ccdc8a7/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -1915,10 +1921,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T03:05:32.9424235\u002B00:00", + "createdAt": "2022-09-23T15:54:23.747248\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T03:05:33.0900042\u002B00:00", + "lastModifiedAt": "2022-09-23T15:54:23.9196348\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -1939,24 +1945,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:00:14 GMT", + "Date": "Fri, 23 Sep 2022 16:53:42 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-2b6f6ebf8534b08770f7845db8b9a3e1-a354182b58b139a4-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-c4f7e93572dc4f8ef6c472138ac80e9d-56158b437bab10b8-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2cfd8331-75c3-44cf-979b-370cf90a497e", - "x-ms-ratelimit-remaining-subscription-reads": "11902", + "x-ms-correlation-request-id": "871eadc4-c50c-4895-b628-17d2a89dd6f5", + "x-ms-ratelimit-remaining-subscription-reads": "11810", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T090014Z:2cfd8331-75c3-44cf-979b-370cf90a497e", - "x-request-time": "0.118" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165343Z:871eadc4-c50c-4895-b628-17d2a89dd6f5", + "x-request-time": "0.117" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -1971,17 +1977,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -2003,21 +2009,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:00:16 GMT", + "Date": "Fri, 23 Sep 2022 16:53:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-7e866ca765744b15275ed951a829bdd2-6290837ad701977b-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-24ae24b298d9b337e38c20f22dc137e0-ffa70627574ccf6d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b8ee18ef-ba46-402a-a64a-9f5d2ac16dc9", - "x-ms-ratelimit-remaining-subscription-writes": "1138", + "x-ms-correlation-request-id": "a3eb97dd-2eec-49ea-9f20-48f42370852c", + "x-ms-ratelimit-remaining-subscription-writes": "1077", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T090016Z:b8ee18ef-ba46-402a-a64a-9f5d2ac16dc9", - "x-request-time": "0.169" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165344Z:a3eb97dd-2eec-49ea-9f20-48f42370852c", + "x-request-time": "0.088" }, "ResponseBody": { "secretsType": "AccountKey", @@ -2025,14 +2031,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/data/sample.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/data/sample.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 09:00:18 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:53:47 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -2042,9 +2048,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 09:00:17 GMT", - "ETag": "\u00220x8DA9B7CCC9971A6\u0022", - "Last-Modified": "Wed, 21 Sep 2022 02:55:53 GMT", + "Date": "Fri, 23 Sep 2022 16:53:44 GMT", + "ETag": "\u00220x8DA9D7BE5A046D9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:54:28 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -2053,32 +2059,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 02:55:53 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:54:27 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "83696465-85ca-42b1-9f9b-81869113fc56", + "x-ms-meta-name": "a144e40a-1670-4168-a96f-eba38109cc45", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "4864cc21-becf-4c9d-9958-45fa9ed10208", + "x-ms-meta-version": "a2d99187-0868-4b22-add5-a121322288a5", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/data/sample.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/data/sample.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 09:00:18 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:53:47 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 09:00:17 GMT", + "Date": "Fri, 23 Sep 2022 16:53:44 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -2105,24 +2111,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:00:18 GMT", + "Date": "Fri, 23 Sep 2022 16:53:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-ae102b0e03e721f4339f1b2eb527f40c-40809dcc21ef634e-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-057f9e106009ccf73e22fbd36ff9c003-3089bf91bcca761a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c6d6091b-fab7-4728-91b5-86690fe4c056", - "x-ms-ratelimit-remaining-subscription-reads": "11901", + "x-ms-correlation-request-id": "2d8699a5-3cce-43d0-b8d5-cce34ad313bb", + "x-ms-ratelimit-remaining-subscription-reads": "11809", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T090019Z:c6d6091b-fab7-4728-91b5-86690fe4c056", - "x-request-time": "0.105" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165346Z:2d8699a5-3cce-43d0-b8d5-cce34ad313bb", + "x-request-time": "0.154" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -2137,17 +2143,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -2169,21 +2175,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:00:20 GMT", + "Date": "Fri, 23 Sep 2022 16:53:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-05359965a48200274ff488012771c1b8-8f8518315692141f-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-9b2f35ba021bc63bbd467a3afaece276-ee1d89c52b7dc086-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4d4a6d61-38eb-4fcd-a448-d4310939a763", - "x-ms-ratelimit-remaining-subscription-writes": "1137", + "x-ms-correlation-request-id": "5de484c8-6199-40a0-8b3f-9bd5ff357302", + "x-ms-ratelimit-remaining-subscription-writes": "1076", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T090021Z:4d4a6d61-38eb-4fcd-a448-d4310939a763", - "x-request-time": "0.115" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165348Z:5de484c8-6199-40a0-8b3f-9bd5ff357302", + "x-request-time": "0.082" }, "ResponseBody": { "secretsType": "AccountKey", @@ -2191,14 +2197,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/data/sample.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/data/sample.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 09:00:22 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:53:50 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -2208,9 +2214,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 09:00:21 GMT", - "ETag": "\u00220x8DA9B7CCC9971A6\u0022", - "Last-Modified": "Wed, 21 Sep 2022 02:55:53 GMT", + "Date": "Fri, 23 Sep 2022 16:53:47 GMT", + "ETag": "\u00220x8DA9D7BE5A046D9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:54:28 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -2219,32 +2225,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 02:55:53 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:54:27 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "83696465-85ca-42b1-9f9b-81869113fc56", + "x-ms-meta-name": "a144e40a-1670-4168-a96f-eba38109cc45", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "4864cc21-becf-4c9d-9958-45fa9ed10208", + "x-ms-meta-version": "a2d99187-0868-4b22-add5-a121322288a5", "x-ms-server-encrypted": "true", "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/data/sample.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/data/sample.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 09:00:23 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:53:50 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 09:00:21 GMT", + "Date": "Fri, 23 Sep 2022 16:53:48 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -2263,7 +2269,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "3515", + "Content-Length": "3569", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -2315,8 +2321,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "DSL", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/57d4074e-4d5c-44b7-94b8-578671ca3092" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a2285b8f-389b-4504-a498-fb59fd09e07c" }, "train_and_evaludate_model2": { "name": "train_and_evaludate_model2", @@ -2339,8 +2346,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "DSL", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/7701035a-1f69-4450-a531-3bd5cf42a8b4" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/5db820fe-93c4-473d-9c17-f8f6c8e2b9dc" }, "compare2_models": { "resources": null, @@ -2380,8 +2388,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/7c5c7915-5f95-4429-8f87-bc67812009f8" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/787a2230-a660-43f5-b81e-a7f7d209ca59" } }, "outputs": { @@ -2401,22 +2410,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "6787", + "Content-Length": "6865", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 09:00:28 GMT", + "Date": "Fri, 23 Sep 2022 16:53:58 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-ff5a893bca4e4751d4966d15ed958594-ce3d6cff9056fe7c-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-ee81df284accb2f7d27364072138db07-b10e1d97876a547e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1df15957-993e-42d8-a283-ba5a16e26d53", - "x-ms-ratelimit-remaining-subscription-writes": "1079", + "x-ms-correlation-request-id": "33be4820-343f-46ea-9cf6-0e5ff8c03c30", + "x-ms-ratelimit-remaining-subscription-writes": "950", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T090029Z:1df15957-993e-42d8-a283-ba5a16e26d53", - "x-request-time": "3.068" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T165358Z:33be4820-343f-46ea-9cf6-0e5ff8c03c30", + "x-request-time": "3.200" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -2489,8 +2498,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "DSL", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/57d4074e-4d5c-44b7-94b8-578671ca3092" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a2285b8f-389b-4504-a498-fb59fd09e07c" }, "train_and_evaludate_model2": { "name": "train_and_evaludate_model2", @@ -2513,8 +2523,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "DSL", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/7701035a-1f69-4450-a531-3bd5cf42a8b4" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/5db820fe-93c4-473d-9c17-f8f6c8e2b9dc" }, "compare2_models": { "resources": null, @@ -2554,8 +2565,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/7c5c7915-5f95-4429-8f87-bc67812009f8" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/787a2230-a660-43f5-b81e-a7f7d209ca59" } }, "inputs": { @@ -2599,7 +2611,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T09:00:29.2595947\u002B00:00", + "createdAt": "2022-09-23T16:53:58.0167229\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_pytorch_hello_world.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_pytorch_hello_world.json index 3ba72a112179..7d232d61fe5f 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_pytorch_hello_world.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_pytorch_hello_world.json @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:54:26 GMT", + "Date": "Fri, 23 Sep 2022 16:42:56 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-8f64c21958f41aa6ba6211d50952b678-450968fe6a46ca58-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-85940d5338d42906b3f9b1dd5c54d84f-9a08de7fed7a2e1e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4a6decf0-8d72-4685-a649-b6e1e4956a37", - "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-correlation-request-id": "7df83d41-5086-4861-a4ba-b8c3dda139b5", + "x-ms-ratelimit-remaining-subscription-reads": "11853", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085427Z:4a6decf0-8d72-4685-a649-b6e1e4956a37", - "x-request-time": "0.044" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164257Z:7df83d41-5086-4861-a4ba-b8c3dda139b5", + "x-request-time": "0.034" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -41,8 +41,8 @@ "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T11:47:20.6013506\u002B00:00", - "modifiedOn": "2022-09-15T11:47:27.309088\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -60,36 +60,19 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 0, - "targetNodeCount": 4, + "currentNodeCount": 4, + "targetNodeCount": 3, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 0, - "idleNodeCount": 0, + "runningNodeCount": 2, + "idleNodeCount": 2, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-21T08:54:16.356\u002B00:00", - "errors": [ - { - "error": { - "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_92fbcd8f75321f6d485a668091b97888e36091744f4980c61f41b4675223dea0_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_d926d2653334081d0c6ac00169793cd4b57455955641cb3b62f1127b332fafe9_d: There is not enough disk space on the node", - "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - }, - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - } - ] - } - } - ], + "allocationStateTransitionTime": "2022-09-23T16:39:36.144\u002B00:00", + "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -114,24 +97,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:54:29 GMT", + "Date": "Fri, 23 Sep 2022 16:43:12 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-fb67ec4e60eece85e9a7c7b0d5d445af-06115a781103bc2b-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-b37b6d37dcd1c27d6f4278d1ea3cc535-1585d5b9cdd40178-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7fdd94ce-1826-4d64-8e02-79ddc8110f0a", - "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-correlation-request-id": "fb9cf007-4f81-429f-8b1f-93a2e5a31e4b", + "x-ms-ratelimit-remaining-subscription-reads": "11852", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085430Z:7fdd94ce-1826-4d64-8e02-79ddc8110f0a", - "x-request-time": "0.080" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164313Z:fb9cf007-4f81-429f-8b1f-93a2e5a31e4b", + "x-request-time": "0.121" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -146,17 +129,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -178,21 +161,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:54:31 GMT", + "Date": "Fri, 23 Sep 2022 16:43:17 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-1b38e05679cb6c6bff686959a1159932-6ba1be3866f8e24d-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-c9f71bdf4971bef96e0988a07560fdff-dea907c3466e1278-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5b0972d1-f4eb-4756-99ff-5da5997b1dc4", - "x-ms-ratelimit-remaining-subscription-writes": "1173", + "x-ms-correlation-request-id": "5d6f6a9e-39d5-441f-872f-b13dd1b087c8", + "x-ms-ratelimit-remaining-subscription-writes": "1112", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085432Z:5b0972d1-f4eb-4756-99ff-5da5997b1dc4", - "x-request-time": "0.106" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164317Z:5d6f6a9e-39d5-441f-872f-b13dd1b087c8", + "x-request-time": "0.100" }, "ResponseBody": { "secretsType": "AccountKey", @@ -200,14 +183,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:54:33 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:43:28 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -217,9 +200,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 08:54:32 GMT", - "ETag": "\u00220x8DA9ABCB2F66FF1\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:00:47 GMT", + "Date": "Fri, 23 Sep 2022 16:43:27 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -228,10 +211,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:00:47 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ca7591cf-36a6-4425-bb3d-579cd587b206", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -240,20 +223,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:54:34 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:43:30 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 08:54:32 GMT", + "Date": "Fri, 23 Sep 2022 16:43:27 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -266,7 +249,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -284,7 +267,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -292,27 +275,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:54:35 GMT", + "Date": "Fri, 23 Sep 2022 16:43:28 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-2068550e9f83c38abddf6eda590ff0da-9a30f6b2cc52f7a5-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-817fb976ee66f8f28ed4b278e5969122-263582c1b5f95d3d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e43b830f-ec19-4b18-b0c9-2724cfb46f3e", - "x-ms-ratelimit-remaining-subscription-writes": "1139", + "x-ms-correlation-request-id": "4eaa14bd-11bd-4b43-9c5b-7f50e3d79a33", + "x-ms-ratelimit-remaining-subscription-writes": "1010", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085435Z:e43b830f-ec19-4b18-b0c9-2724cfb46f3e", - "x-request-time": "0.164" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164329Z:4eaa14bd-11bd-4b43-9c5b-7f50e3d79a33", + "x-request-time": "0.089" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -324,13 +307,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-20T04:00:48.9804975\u002B00:00", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T08:54:35.3606732\u002B00:00", + "lastModifiedAt": "2022-09-23T16:43:28.944023\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -357,7 +340,7 @@ "componentSpec": { "compute": "azureml:gpu-cluster", "command": "echo \u0022 RANK: $RANK \\n LOCAL_RANK: $LOCAL_RANK \\n NODE_RANK: $NODE_RANK \\n MASTER_ADDR: $MASTER_ADDR \\n MASTER_PORT: $MASTER_PORT \\n\u0022", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-pytorch-1.9-ubuntu18.04-py37-cuda11-gpu/versions/7", "resources": { "instance_count": 2 @@ -382,26 +365,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1952", + "Content-Length": "1950", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:54:36 GMT", + "Date": "Fri, 23 Sep 2022 16:43:34 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-ea4a549632065fa2927f3c8dc986dba3-626f21a318d1cb1a-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-44e9aa6114335a484eff6923af8463dd-d08f3d8c12aa8440-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "15a1e4b0-992f-4645-a734-ae3abeabfcca", - "x-ms-ratelimit-remaining-subscription-writes": "1138", + "x-ms-correlation-request-id": "b92e3692-b947-4011-9fab-b0e4140a3ba1", + "x-ms-ratelimit-remaining-subscription-writes": "1009", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085437Z:15a1e4b0-992f-4645-a734-ae3abeabfcca", - "x-request-time": "0.289" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164335Z:b92e3692-b947-4011-9fab-b0e4140a3ba1", + "x-request-time": "0.575" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/5c095366-cc01-47c9-96e3-967498253523", - "name": "5c095366-cc01-47c9-96e3-967498253523", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/c7d51845-fe73-4dd2-b6ec-23eb3b46ce60", + "name": "c7d51845-fe73-4dd2-b6ec-23eb3b46ce60", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -411,12 +394,12 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "5c095366-cc01-47c9-96e3-967498253523", + "version": "c7d51845-fe73-4dd2-b6ec-23eb3b46ce60", "display_name": "PyTorch-hello-world", "is_deterministic": "True", "type": "command", "description": "Prints the environment variables useful for scripts running in a PyTorch training environment.", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-pytorch-1.9-ubuntu18.04-py37-cuda11-gpu/versions/7", "resources": { "instance_count": "2" @@ -430,10 +413,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T02:59:40.5046456\u002B00:00", + "createdAt": "2022-09-23T16:43:34.862187\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:59:40.7072399\u002B00:00", + "lastModifiedAt": "2022-09-23T16:43:34.862187\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -446,7 +429,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1069", + "Content-Length": "1087", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -479,8 +462,9 @@ "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "inputs": {}, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/5c095366-cc01-47c9-96e3-967498253523" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/c7d51845-fe73-4dd2-b6ec-23eb3b46ce60" } }, "outputs": {}, @@ -492,22 +476,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2961", + "Content-Length": "2987", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:54:44 GMT", + "Date": "Fri, 23 Sep 2022 16:43:56 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-bc5dc7307c0bbf90e6572ce4da252503-041d19553c43f156-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-a66eebb31926c87d269d0dc4291ab7c0-097919d1490a68a0-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "75f711c5-bcf7-451b-93cc-7762c235f5c8", - "x-ms-ratelimit-remaining-subscription-writes": "1137", + "x-ms-correlation-request-id": "9636510f-7b24-4175-9796-bda1de99face", + "x-ms-ratelimit-remaining-subscription-writes": "1008", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085445Z:75f711c5-bcf7-451b-93cc-7762c235f5c8", - "x-request-time": "3.511" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164357Z:9636510f-7b24-4175-9796-bda1de99face", + "x-request-time": "3.446" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -575,8 +559,9 @@ "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "inputs": {}, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/5c095366-cc01-47c9-96e3-967498253523" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/c7d51845-fe73-4dd2-b6ec-23eb3b46ce60" } }, "inputs": {}, @@ -584,7 +569,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T08:54:44.5065636\u002B00:00", + "createdAt": "2022-09-23T16:43:56.4587138\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_tf_hello_world.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_tf_hello_world.json index d306e6e35e20..835f69efa618 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_tf_hello_world.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_tf_hello_world.json @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:53:46 GMT", + "Date": "Fri, 23 Sep 2022 16:41:43 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-06d13091823eeeb0878ccc871307e08c-3ee0b7374fa74eeb-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-664fbff88a8758f33accffa168b9cb82-3e803ae7eec01a4a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9a762ec9-09d9-4ef2-9ee5-a7169fd4a97d", - "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-correlation-request-id": "dea31986-f6ed-4c85-8bc4-6d2ad22136a6", + "x-ms-ratelimit-remaining-subscription-reads": "11857", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085347Z:9a762ec9-09d9-4ef2-9ee5-a7169fd4a97d", - "x-request-time": "0.034" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164143Z:dea31986-f6ed-4c85-8bc4-6d2ad22136a6", + "x-request-time": "0.056" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -41,8 +41,8 @@ "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T11:47:20.6013506\u002B00:00", - "modifiedOn": "2022-09-15T11:47:27.309088\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -60,44 +60,19 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 2, - "targetNodeCount": 2, + "currentNodeCount": 4, + "targetNodeCount": 3, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 0, - "idleNodeCount": 0, + "runningNodeCount": 2, + "idleNodeCount": 2, "unusableNodeCount": 0, - "leavingNodeCount": 2, + "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-21T08:50:16.129\u002B00:00", - "errors": [ - { - "error": { - "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_92fbcd8f75321f6d485a668091b97888e36091744f4980c61f41b4675223dea0_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_c0b012c40824023b5c6231b76a58d1b2e3740b50bda3c31c9581a6b24c5aef5f_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_c737656408b129608bd5c73fa736ea4216046607cd2bd40f61a3e18e3bc82a31_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_d926d2653334081d0c6ac00169793cd4b57455955641cb3b62f1127b332fafe9_d: There is not enough disk space on the node", - "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - }, - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - }, - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - }, - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - } - ] - } - } - ], + "allocationStateTransitionTime": "2022-09-23T16:39:36.144\u002B00:00", + "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -122,24 +97,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:53:49 GMT", + "Date": "Fri, 23 Sep 2022 16:41:46 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-807e36c0e63ac98337314ee1b4558b29-a25bfbf874d7ac5d-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-9e12a1b4d811e37418bd1dc799c0c6c5-45df7c26aff5fd66-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d2609219-f2bf-42c1-bec6-e2d16aff4911", - "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-correlation-request-id": "9dd66d2d-8c0c-45b0-a5d0-0574e3c23b17", + "x-ms-ratelimit-remaining-subscription-reads": "11856", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085350Z:d2609219-f2bf-42c1-bec6-e2d16aff4911", - "x-request-time": "0.145" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164146Z:9dd66d2d-8c0c-45b0-a5d0-0574e3c23b17", + "x-request-time": "0.093" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -154,17 +129,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -186,21 +161,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:53:50 GMT", + "Date": "Fri, 23 Sep 2022 16:41:47 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-94a3f4b29efca1e99b39d20d05d39b52-0b4efead1dc219ab-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-192ae0439d3c3effbf5325f0a7d43ba4-276e5c29aac38912-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c1287b89-66cc-41b6-9fb5-d19c77df5b85", - "x-ms-ratelimit-remaining-subscription-writes": "1175", + "x-ms-correlation-request-id": "ef250ae7-2694-4bec-bd21-806b34ec55ca", + "x-ms-ratelimit-remaining-subscription-writes": "1114", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085351Z:c1287b89-66cc-41b6-9fb5-d19c77df5b85", - "x-request-time": "0.104" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164147Z:ef250ae7-2694-4bec-bd21-806b34ec55ca", + "x-request-time": "0.091" }, "ResponseBody": { "secretsType": "AccountKey", @@ -208,14 +183,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:53:53 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:41:49 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -225,9 +200,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 08:53:51 GMT", - "ETag": "\u00220x8DA9ABCB2F66FF1\u0022", - "Last-Modified": "Tue, 20 Sep 2022 04:00:47 GMT", + "Date": "Fri, 23 Sep 2022 16:41:47 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -236,10 +211,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Tue, 20 Sep 2022 04:00:47 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ca7591cf-36a6-4425-bb3d-579cd587b206", + "x-ms-meta-name": "20a552d5-eb53-46d2-ab75-a24c4e5ee7f2", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -248,20 +223,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:53:53 GMT", + "x-ms-date": "Fri, 23 Sep 2022 16:41:50 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 08:53:52 GMT", + "Date": "Fri, 23 Sep 2022 16:41:47 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -274,7 +249,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -292,7 +267,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -300,27 +275,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:53:54 GMT", + "Date": "Fri, 23 Sep 2022 16:41:48 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-e04f586e71a13e1531a1cac12efe1474-34433c73c03f65e5-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-e8051605e274bde85ca7b5ba6de7ca0e-4e60ec1baf74f7b9-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2b9b5287-5d7f-4ac0-a4dd-0037c64f2b38", - "x-ms-ratelimit-remaining-subscription-writes": "1145", + "x-ms-correlation-request-id": "11f1d517-9a6c-405e-8443-bde00d719568", + "x-ms-ratelimit-remaining-subscription-writes": "1016", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085354Z:2b9b5287-5d7f-4ac0-a4dd-0037c64f2b38", - "x-request-time": "0.060" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164149Z:11f1d517-9a6c-405e-8443-bde00d719568", + "x-request-time": "0.069" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -332,13 +307,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-20T04:00:48.9804975\u002B00:00", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T08:53:53.9878688\u002B00:00", + "lastModifiedAt": "2022-09-23T16:41:48.9303005\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -365,7 +340,7 @@ "componentSpec": { "compute": "azureml:gpu-cluster", "command": "echo $TF_CONFIG", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-tensorflow-2.4-ubuntu18.04-py37-cuda11-gpu/versions/15", "resources": { "instance_count": 2 @@ -393,24 +368,24 @@ "Cache-Control": "no-cache", "Content-Length": "1828", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:53:55 GMT", + "Date": "Fri, 23 Sep 2022 16:41:50 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-8fdee4b65fd134aaab63495edf963469-9ea3a602dc51fbd3-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-172940677658727fdb610739d7edcf0a-19cc1b646195ecfc-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "745442c3-1a34-495d-9626-b541f7e07676", - "x-ms-ratelimit-remaining-subscription-writes": "1144", + "x-ms-correlation-request-id": "095ea14f-c02f-47a7-81a9-596316f4e0fe", + "x-ms-ratelimit-remaining-subscription-writes": "1015", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085355Z:745442c3-1a34-495d-9626-b541f7e07676", - "x-request-time": "0.305" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164150Z:095ea14f-c02f-47a7-81a9-596316f4e0fe", + "x-request-time": "0.494" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/6a369dbe-1aec-45b6-92ea-4267838a4c08", - "name": "6a369dbe-1aec-45b6-92ea-4267838a4c08", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f1fd3720-0e94-419b-aa0c-320ce41bfb26", + "name": "f1fd3720-0e94-419b-aa0c-320ce41bfb26", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -420,12 +395,12 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "6a369dbe-1aec-45b6-92ea-4267838a4c08", + "version": "f1fd3720-0e94-419b-aa0c-320ce41bfb26", "display_name": "TF-hello-world", "is_deterministic": "True", "type": "command", "description": "TensorFlow hello-world showing training environment with $TF_CONFIG", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ca7591cf-36a6-4425-bb3d-579cd587b206/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/20a552d5-eb53-46d2-ab75-a24c4e5ee7f2/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-tensorflow-2.4-ubuntu18.04-py37-cuda11-gpu/versions/15", "resources": { "instance_count": "2" @@ -440,10 +415,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T02:58:58.5913041\u002B00:00", + "createdAt": "2022-09-23T16:41:50.5596633\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:58:58.7572499\u002B00:00", + "lastModifiedAt": "2022-09-23T16:41:50.5596633\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -456,7 +431,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1046", + "Content-Length": "1064", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -490,8 +465,9 @@ "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "inputs": {}, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/6a369dbe-1aec-45b6-92ea-4267838a4c08" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f1fd3720-0e94-419b-aa0c-320ce41bfb26" } }, "outputs": {}, @@ -503,22 +479,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2947", + "Content-Length": "2974", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:54:02 GMT", + "Date": "Fri, 23 Sep 2022 16:42:02 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-6adb5f78ce984f467b8485ad138c5a1a-b9319a61edf04183-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-c3f8c3b1ee89de778767668554d59d62-ed8fd995b08b8ceb-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b129a9e9-015d-418c-9912-aa1c32e99565", - "x-ms-ratelimit-remaining-subscription-writes": "1143", + "x-ms-correlation-request-id": "6bba249f-20bc-435d-9f4e-7b1b628a5125", + "x-ms-ratelimit-remaining-subscription-writes": "1014", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085402Z:b129a9e9-015d-418c-9912-aa1c32e99565", - "x-request-time": "3.534" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T164202Z:6bba249f-20bc-435d-9f4e-7b1b628a5125", + "x-request-time": "5.654" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -587,8 +563,9 @@ "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "inputs": {}, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/6a369dbe-1aec-45b6-92ea-4267838a4c08" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/f1fd3720-0e94-419b-aa0c-320ce41bfb26" } }, "inputs": {}, @@ -596,7 +573,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T08:54:02.283364\u002B00:00", + "createdAt": "2022-09-23T16:42:02.0139237\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_tf_mnist.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_tf_mnist.json index 75b89faad1b9..246689b42812 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_tf_mnist.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_tf_mnist.json @@ -15,11 +15,11 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:55:46 GMT", + "Date": "Fri, 23 Sep 2022 17:42:30 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-37dfc5d2966f0bd20c370f3db0b76d82-0bccf799444df6d1-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-6529024e0eb0ef342683ff694e27e021-683877a96ccf5646-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ @@ -28,11 +28,11 @@ ], "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fc788d6e-b18b-4a0b-af1a-db1f26235022", - "x-ms-ratelimit-remaining-subscription-reads": "11936", + "x-ms-correlation-request-id": "0504429b-60b2-48c7-a6a5-c0d9d4d2678f", + "x-ms-ratelimit-remaining-subscription-reads": "11999", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085547Z:fc788d6e-b18b-4a0b-af1a-db1f26235022", - "x-request-time": "0.035" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T174230Z:0504429b-60b2-48c7-a6a5-c0d9d4d2678f", + "x-request-time": "0.064" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -41,8 +41,8 @@ "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T11:47:20.6013506\u002B00:00", - "modifiedOn": "2022-09-15T11:47:27.309088\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -60,28 +60,32 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 0, + "currentNodeCount": 1, "targetNodeCount": 4, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 0, + "runningNodeCount": 1, "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-21T08:54:16.356\u002B00:00", + "allocationState": "Steady", + "allocationStateTransitionTime": "2022-09-23T17:36:35.188\u002B00:00", "errors": [ { "error": { "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_92fbcd8f75321f6d485a668091b97888e36091744f4980c61f41b4675223dea0_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_d926d2653334081d0c6ac00169793cd4b57455955641cb3b62f1127b332fafe9_d: There is not enough disk space on the node", + "message": "ComputeNode.Id=tvmps_363864b505daf64a62c550b3039bf88a46c953293d3b4013e4cf21c28d5e312b_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_ae1eeb6a8f3122c9bccdf09343b2e3cd8217911e792aac6cd3d94797ad4b0ad4_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_c6e688f61710764bba9d4ebb13a6e8b9182eca42a7dc5ec038eda668590ef1b3_d: There is not enough disk space on the node", "details": [ { "code": "Message", "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." }, + { + "code": "Message", + "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." + }, { "code": "Message", "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." @@ -114,24 +118,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:55:48 GMT", + "Date": "Fri, 23 Sep 2022 17:42:32 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-ac82c6eb02d44708175e25242d5745cc-b12b1406de6027f2-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-795ba4b58ee49e6a21b8376d9b9d8adc-142bccb5436376b1-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e6ea880b-361b-4d8b-ae13-115903bfa7ba", - "x-ms-ratelimit-remaining-subscription-reads": "11935", + "x-ms-correlation-request-id": "2f7e26e5-ae23-4a58-b5e8-c1108856608e", + "x-ms-ratelimit-remaining-subscription-reads": "11998", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085549Z:e6ea880b-361b-4d8b-ae13-115903bfa7ba", - "x-request-time": "0.078" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T174233Z:2f7e26e5-ae23-4a58-b5e8-c1108856608e", + "x-request-time": "0.076" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -146,17 +150,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -178,21 +182,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:55:49 GMT", + "Date": "Fri, 23 Sep 2022 17:42:33 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-8b519751fe0f0e3c4b19b1fd82c097bd-adca05f035209c98-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-b64c59d2da0eb272e3b698fa3b05efbe-074ad540ffea508d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "214eeee2-85cf-45a8-bf72-376f28479964", - "x-ms-ratelimit-remaining-subscription-writes": "1166", + "x-ms-correlation-request-id": "5410dae5-6816-4837-ba87-928c2b05efe5", + "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085550Z:214eeee2-85cf-45a8-bf72-376f28479964", - "x-request-time": "0.112" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T174234Z:5410dae5-6816-4837-ba87-928c2b05efe5", + "x-request-time": "0.130" }, "ResponseBody": { "secretsType": "AccountKey", @@ -200,14 +204,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src/train.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src/train.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:55:52 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:42:36 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -217,9 +221,9 @@ "Content-Length": "4233", "Content-MD5": "FqEPHhQCo3mzHver6j7Q9g==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 08:55:50 GMT", - "ETag": "\u00220x8DA9B7D85B83C91\u0022", - "Last-Modified": "Wed, 21 Sep 2022 03:01:04 GMT", + "Date": "Fri, 23 Sep 2022 17:42:34 GMT", + "ETag": "\u00220x8DA9D835A7FF537\u0022", + "Last-Modified": "Fri, 23 Sep 2022 16:47:51 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -228,10 +232,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 03:01:03 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 16:47:49 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "61b7d768-c564-4d90-81f4-751a305a9d81", + "x-ms-meta-name": "ee1bcfae-c5ec-4776-914a-5fa7f16f941d", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -240,20 +244,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/src/train.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/src/train.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:55:52 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:42:37 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 08:55:51 GMT", + "Date": "Fri, 23 Sep 2022 17:42:34 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -266,7 +270,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/61b7d768-c564-4d90-81f4-751a305a9d81/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ee1bcfae-c5ec-4776-914a-5fa7f16f941d/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -284,7 +288,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src" } }, "StatusCode": 200, @@ -292,27 +296,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:55:52 GMT", + "Date": "Fri, 23 Sep 2022 17:42:36 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-6eaf3d672920d5dfae67867710ac1309-1d080256ffda9820-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-41078c0b17700dc0f922205ff58ceea2-466d1333cc16e65f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0d8744aa-b25e-454a-9090-5369efeaa673", - "x-ms-ratelimit-remaining-subscription-writes": "1125", + "x-ms-correlation-request-id": "c84d4c52-5fd9-4a9e-857f-a89d27a948ea", + "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085553Z:0d8744aa-b25e-454a-9090-5369efeaa673", - "x-request-time": "0.071" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T174236Z:c84d4c52-5fd9-4a9e-857f-a89d27a948ea", + "x-request-time": "0.094" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/61b7d768-c564-4d90-81f4-751a305a9d81/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ee1bcfae-c5ec-4776-914a-5fa7f16f941d/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -324,13 +328,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src" }, "systemData": { - "createdAt": "2022-09-21T03:01:05.2238299\u002B00:00", + "createdAt": "2022-09-23T16:47:51.7380861\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T08:55:53.1320278\u002B00:00", + "lastModifiedAt": "2022-09-23T17:42:36.8773347\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -357,7 +361,7 @@ "componentSpec": { "compute": "azureml:gpu-cluster", "command": "python train.py --epochs ${{inputs.epochs}} --model-dir ${{outputs.trained_model_output}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/61b7d768-c564-4d90-81f4-751a305a9d81/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ee1bcfae-c5ec-4776-914a-5fa7f16f941d/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-tensorflow-2.4-ubuntu18.04-py37-cuda11-gpu/versions/15", "resources": { "instance_count": 2 @@ -394,24 +398,24 @@ "Cache-Control": "no-cache", "Content-Length": "2169", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:55:53 GMT", + "Date": "Fri, 23 Sep 2022 17:42:37 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-baa37a5127971a8ba1f347e649688399-de42c61dc9f0f3f9-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-60bd8d7129bc9345e8f080d75ff34d01-1e299f1442549b10-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c86cc431-8728-40a8-93a6-7c6807e94da9", - "x-ms-ratelimit-remaining-subscription-writes": "1124", + "x-ms-correlation-request-id": "779a160e-3370-4cab-b4ca-8d775da19e34", + "x-ms-ratelimit-remaining-subscription-writes": "1198", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085554Z:c86cc431-8728-40a8-93a6-7c6807e94da9", - "x-request-time": "0.305" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T174238Z:779a160e-3370-4cab-b4ca-8d775da19e34", + "x-request-time": "0.424" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/74f310fd-f908-432f-ac2b-a9b218ad0cf9", - "name": "74f310fd-f908-432f-ac2b-a9b218ad0cf9", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/3bbcf2f3-b74c-41f0-b473-a9c88fe29426", + "name": "3bbcf2f3-b74c-41f0-b473-a9c88fe29426", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -421,7 +425,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "74f310fd-f908-432f-ac2b-a9b218ad0cf9", + "version": "3bbcf2f3-b74c-41f0-b473-a9c88fe29426", "display_name": "TF_mnist", "is_deterministic": "True", "type": "command", @@ -438,7 +442,7 @@ "default": "1.0" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/61b7d768-c564-4d90-81f4-751a305a9d81/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ee1bcfae-c5ec-4776-914a-5fa7f16f941d/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-tensorflow-2.4-ubuntu18.04-py37-cuda11-gpu/versions/15", "resources": { "instance_count": "2" @@ -453,10 +457,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T03:01:06.9775836\u002B00:00", + "createdAt": "2022-09-23T16:47:55.1335394\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T03:01:07.1978457\u002B00:00", + "lastModifiedAt": "2022-09-23T16:47:55.3078484\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -469,7 +473,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1125", + "Content-Length": "1143", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -513,8 +517,9 @@ "job_output_type": "uri_folder" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/74f310fd-f908-432f-ac2b-a9b218ad0cf9" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/3bbcf2f3-b74c-41f0-b473-a9c88fe29426" } }, "outputs": {}, @@ -526,22 +531,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3139", + "Content-Length": "3165", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:56:01 GMT", + "Date": "Fri, 23 Sep 2022 17:42:44 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-17f8a97a54b125bfbe2e5b30cd0b448a-1acbbb104d474b5b-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-b9d478a2d2cad2c82695fe6c670660f3-ce52534ec2799457-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7cfdf6de-c39a-44b2-bab0-e33ff2669a1b", - "x-ms-ratelimit-remaining-subscription-writes": "1123", + "x-ms-correlation-request-id": "09cdd058-457d-446e-bb48-94215e820f49", + "x-ms-ratelimit-remaining-subscription-writes": "1197", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085602Z:7cfdf6de-c39a-44b2-bab0-e33ff2669a1b", - "x-request-time": "3.281" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T174244Z:09cdd058-457d-446e-bb48-94215e820f49", + "x-request-time": "2.625" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -620,8 +625,9 @@ "job_output_type": "uri_folder" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/74f310fd-f908-432f-ac2b-a9b218ad0cf9" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/3bbcf2f3-b74c-41f0-b473-a9c88fe29426" } }, "inputs": {}, @@ -629,7 +635,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T08:56:02.0547464\u002B00:00", + "createdAt": "2022-09-23T17:42:43.7797078\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_web_url_input.json b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_web_url_input.json index 3e462c97a796..353602384888 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_web_url_input.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/dsl/e2etests/test_dsl_pipeline_samples.pyTestDSLPipelineSamplestest_web_url_input.json @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:52:22 GMT", + "Date": "Fri, 23 Sep 2022 17:41:19 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-b9edfcb51ec1324855c8b8b205b1d2b0-cba80fb41ba3a6e6-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-30f370ce4126b2f7859559a50b205785-89520eaca6bb02ef-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d7040f8e-09f2-452c-898d-8c7553323335", - "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-correlation-request-id": "d6715d01-b580-42db-81e3-cc41a4a6e188", + "x-ms-ratelimit-remaining-subscription-reads": "11999", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085223Z:d7040f8e-09f2-452c-898d-8c7553323335", - "x-request-time": "0.032" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T174119Z:d6715d01-b580-42db-81e3-cc41a4a6e188", + "x-request-time": "0.033" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", @@ -41,8 +41,8 @@ "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T11:47:20.6013506\u002B00:00", - "modifiedOn": "2022-09-15T11:47:27.309088\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, @@ -60,23 +60,23 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 2, - "targetNodeCount": 2, + "currentNodeCount": 1, + "targetNodeCount": 4, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 0, + "runningNodeCount": 1, "idleNodeCount": 0, "unusableNodeCount": 0, - "leavingNodeCount": 2, + "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-21T08:50:16.129\u002B00:00", + "allocationState": "Steady", + "allocationStateTransitionTime": "2022-09-23T17:36:35.188\u002B00:00", "errors": [ { "error": { "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_92fbcd8f75321f6d485a668091b97888e36091744f4980c61f41b4675223dea0_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_c0b012c40824023b5c6231b76a58d1b2e3740b50bda3c31c9581a6b24c5aef5f_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_c737656408b129608bd5c73fa736ea4216046607cd2bd40f61a3e18e3bc82a31_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_d926d2653334081d0c6ac00169793cd4b57455955641cb3b62f1127b332fafe9_d: There is not enough disk space on the node", + "message": "ComputeNode.Id=tvmps_363864b505daf64a62c550b3039bf88a46c953293d3b4013e4cf21c28d5e312b_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_ae1eeb6a8f3122c9bccdf09343b2e3cd8217911e792aac6cd3d94797ad4b0ad4_d: There is not enough disk space on the node,ComputeNode.Id=tvmps_c6e688f61710764bba9d4ebb13a6e8b9182eca42a7dc5ec038eda668590ef1b3_d: There is not enough disk space on the node", "details": [ { "code": "Message", @@ -86,10 +86,6 @@ "code": "Message", "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." }, - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - }, { "code": "Message", "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." @@ -122,24 +118,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:52:27 GMT", + "Date": "Fri, 23 Sep 2022 17:41:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-a45d2547adc225f96c2be90122468bf7-19ce4a0e38b13991-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-3787733111ff88b07d54c6d9a0c41077-0333e07c5d26dd7d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "71c626d5-5a84-4237-b7cf-faebfa1fe6c4", - "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-correlation-request-id": "248122b5-7f98-4ec8-b280-20f41bd25cef", + "x-ms-ratelimit-remaining-subscription-reads": "11998", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085227Z:71c626d5-5a84-4237-b7cf-faebfa1fe6c4", - "x-request-time": "0.081" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T174122Z:248122b5-7f98-4ec8-b280-20f41bd25cef", + "x-request-time": "0.141" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -154,17 +150,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sa3uz44b2f7uc5u", - "containerName": "azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T11:47:06.4979185\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T11:47:07.199821\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -186,21 +182,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:52:27 GMT", + "Date": "Fri, 23 Sep 2022 17:41:22 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-bb2abee7dc7d8a1b18d6310a54e6d34b-21512d07fe4abaf3-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-ccd68ad4e0018020e73370ba311c043e-4807493adebf6cb6-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a26c326e-19d1-4671-bd5b-f2120d40a009", - "x-ms-ratelimit-remaining-subscription-writes": "1179", + "x-ms-correlation-request-id": "eb4926b7-b0e9-429c-9a6f-bebcdb762e09", + "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085228Z:a26c326e-19d1-4671-bd5b-f2120d40a009", - "x-request-time": "0.091" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T174123Z:eb4926b7-b0e9-429c-9a6f-bebcdb762e09", + "x-request-time": "0.092" }, "ResponseBody": { "secretsType": "AccountKey", @@ -208,14 +204,14 @@ } }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src/hello.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src/hello.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:52:29 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:41:25 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, @@ -225,9 +221,9 @@ "Content-Length": "1328", "Content-MD5": "/SfPiekmZfyRzf6WSAAdRg==", "Content-Type": "application/octet-stream", - "Date": "Wed, 21 Sep 2022 08:52:28 GMT", - "ETag": "\u00220x8DA9B7D001BE9C8\u0022", - "Last-Modified": "Wed, 21 Sep 2022 02:57:20 GMT", + "Date": "Fri, 23 Sep 2022 17:41:24 GMT", + "ETag": "\u00220x8DA9D82438794FA\u0022", + "Last-Modified": "Fri, 23 Sep 2022 16:40:03 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -236,10 +232,10 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Wed, 21 Sep 2022 02:57:19 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 16:40:01 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "a37ae136-7ac9-409f-831b-e8bfbb4ec5eb", + "x-ms-meta-name": "0bd5ff93-5e5e-4b5c-91a5-61cd48544752", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", @@ -248,20 +244,20 @@ "ResponseBody": null }, { - "RequestUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/az-ml-artifacts/00000000000000000000000000000000/src/hello.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/src/hello.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", - "x-ms-date": "Wed, 21 Sep 2022 08:52:30 GMT", + "x-ms-date": "Fri, 23 Sep 2022 17:41:26 GMT", "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Wed, 21 Sep 2022 08:52:28 GMT", + "Date": "Fri, 23 Sep 2022 17:41:24 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -274,7 +270,7 @@ "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/a37ae136-7ac9-409f-831b-e8bfbb4ec5eb/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/0bd5ff93-5e5e-4b5c-91a5-61cd48544752/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -292,7 +288,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src" } }, "StatusCode": 200, @@ -300,27 +296,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:52:29 GMT", + "Date": "Fri, 23 Sep 2022 17:41:26 GMT", "Expires": "-1", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-476b05c498eb42a841124f40b59ce15a-c61079feaa515b90-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-a52e3f99c70c98462659c7a553ee4de3-aa91c9a15d57f608-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bd38b273-9341-46ca-8e35-94cb13e259cd", - "x-ms-ratelimit-remaining-subscription-writes": "1159", + "x-ms-correlation-request-id": "401b4521-d88b-48fd-8137-7c2faf33d941", + "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085229Z:bd38b273-9341-46ca-8e35-94cb13e259cd", - "x-request-time": "0.094" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T174126Z:401b4521-d88b-48fd-8137-7c2faf33d941", + "x-request-time": "0.157" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/a37ae136-7ac9-409f-831b-e8bfbb4ec5eb/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/0bd5ff93-5e5e-4b5c-91a5-61cd48544752/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -332,13 +328,13 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sa3uz44b2f7uc5u.blob.core.windows.net/azureml-blobstore-63e57e0c-1296-4327-a01d-537c6e3ee06d/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/src" }, "systemData": { - "createdAt": "2022-09-21T02:57:21.6601532\u002B00:00", + "createdAt": "2022-09-23T16:40:03.682937\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T08:52:29.7432613\u002B00:00", + "lastModifiedAt": "2022-09-23T17:41:26.479212\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -363,7 +359,7 @@ "isArchived": false, "componentSpec": { "command": "python hello.py --input_data ${{inputs.sample_input_data}} --input_string ${{inputs.sample_input_string}} --output_data ${{outputs.sample_output_data}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/a37ae136-7ac9-409f-831b-e8bfbb4ec5eb/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/0bd5ff93-5e5e-4b5c-91a5-61cd48544752/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "name": "azureml_anonymous", "tags": {}, @@ -394,24 +390,24 @@ "Cache-Control": "no-cache", "Content-Length": "2112", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:52:30 GMT", + "Date": "Fri, 23 Sep 2022 17:41:27 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-ae6d37e647afffb1b1cd446c74a0b4b6-1cda3ded5380c435-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-c8da9a97fec540c6d8f6b78e87533a59-f044ea97346b9f28-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a37284b4-ab76-45dc-a706-84509b76639b", - "x-ms-ratelimit-remaining-subscription-writes": "1158", + "x-ms-correlation-request-id": "f722ede0-25a1-456c-b4aa-f2d6c8256a74", + "x-ms-ratelimit-remaining-subscription-writes": "1198", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085231Z:a37284b4-ab76-45dc-a706-84509b76639b", - "x-request-time": "0.531" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T174127Z:f722ede0-25a1-456c-b4aa-f2d6c8256a74", + "x-request-time": "0.381" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/05864708-98a7-4195-8fc4-390055003293", - "name": "05864708-98a7-4195-8fc4-390055003293", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/6ca3118a-3023-4877-87fe-63c88d95644b", + "name": "6ca3118a-3023-4877-87fe-63c88d95644b", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -421,7 +417,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "05864708-98a7-4195-8fc4-390055003293", + "version": "6ca3118a-3023-4877-87fe-63c88d95644b", "display_name": "Hello_Python_World", "is_deterministic": "True", "type": "command", @@ -441,7 +437,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/a37ae136-7ac9-409f-831b-e8bfbb4ec5eb/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/0bd5ff93-5e5e-4b5c-91a5-61cd48544752/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -451,10 +447,10 @@ } }, "systemData": { - "createdAt": "2022-09-21T02:57:23.2071268\u002B00:00", + "createdAt": "2022-09-23T16:40:05.5921388\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-21T02:57:23.3791917\u002B00:00", + "lastModifiedAt": "2022-09-23T16:40:05.7737459\u002B00:00", "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } @@ -467,7 +463,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1561", + "Content-Length": "1579", "Content-Type": "application/json", "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, @@ -517,8 +513,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/05864708-98a7-4195-8fc4-390055003293" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/6ca3118a-3023-4877-87fe-63c88d95644b" } }, "outputs": { @@ -534,22 +531,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3877", + "Content-Length": "3903", "Content-Type": "application/json; charset=utf-8", - "Date": "Wed, 21 Sep 2022 08:52:37 GMT", + "Date": "Fri, 23 Sep 2022 17:41:33 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", - "Server-Timing": "traceparent;desc=\u002200-03ff72eeecdfca87a4236377170dcfae-aa66852e74cea67d-01\u0022", + "Server-Timing": "traceparent;desc=\u002200-80ae2c7802757796025f470d9825aaad-f9eb3f1debec9d9f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1814b502-e0fe-4725-a032-b0cdfeb47a3a", - "x-ms-ratelimit-remaining-subscription-writes": "1157", + "x-ms-correlation-request-id": "e1bd363e-4282-4bd0-b005-969abebf9b4c", + "x-ms-ratelimit-remaining-subscription-writes": "1197", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "SOUTHEASTASIA:20220921T085238Z:1814b502-e0fe-4725-a032-b0cdfeb47a3a", - "x-request-time": "3.227" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T174134Z:e1bd363e-4282-4bd0-b005-969abebf9b4c", + "x-request-time": "3.217" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -625,8 +622,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/05864708-98a7-4195-8fc4-390055003293" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/6ca3118a-3023-4877-87fe-63c88d95644b" } }, "inputs": { @@ -653,7 +651,7 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-21T08:52:37.4665705\u002B00:00", + "createdAt": "2022-09-23T17:41:34.0943502\u002B00:00", "createdBy": "Zhengfei Wang", "createdByType": "User" } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/import_job/e2etests/test_import_job.pyTestImportJobtest_import_dsl_pipeline_submit_cancel.json b/sdk/ml/azure-ai-ml/tests/recordings/import_job/e2etests/test_import_job.pyTestImportJobtest_import_dsl_pipeline_submit_cancel.json index c9a4b51e1916..39d6347c8475 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/import_job/e2etests/test_import_job.pyTestImportJobtest_import_dsl_pipeline_submit_cancel.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/import_job/e2etests/test_import_job.pyTestImportJobtest_import_dsl_pipeline_submit_cancel.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,39 +15,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 15:31:41 GMT", + "Date": "Mon, 26 Sep 2022 04:54:52 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-9194d6d9d2d346e63f329e783b9603f7-bd072b15b30b5c6d-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-c6a10a8bb20909e997b5ed815a34e4bb-c7ecb52e4d51e1bb-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "89fd3503-9436-4b7d-a17f-9a0bd7703e54", - "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-correlation-request-id": "4171dc6c-782f-4b04-8c09-5fcd108217f2", + "x-ms-ratelimit-remaining-subscription-reads": "11993", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T153142Z:89fd3503-9436-4b7d-a17f-9a0bd7703e54", - "x-request-time": "0.069" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T045453Z:4171dc6c-782f-4b04-8c09-5fcd108217f2", + "x-request-time": "0.255" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-09-19T00:10:24.4202268\u002B00:00", - "modifiedOn": "2022-09-19T00:10:30.9839701\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "centraluseuap", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -56,36 +56,23 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 3, - "targetNodeCount": 4, + "currentNodeCount": 1, + "targetNodeCount": 1, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 3, - "idleNodeCount": 0, + "runningNodeCount": 0, + "idleNodeCount": 1, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-23T13:58:43.672\u002B00:00", - "errors": [ - { - "error": { - "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_6e552a8a759b0409f693795c742d744f80f78dac4ffac0f1a8cf0e084578105c_d: There is not enough disk space on the node", - "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - } - ] - } - } - ], + "allocationState": "Steady", + "allocationStateTransitionTime": "2022-09-26T04:04:13.116\u002B00:00", + "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -104,7 +91,7 @@ "Connection": "keep-alive", "Content-Length": "742", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -153,26 +140,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1895", + "Content-Length": "1837", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 15:31:44 GMT", + "Date": "Mon, 26 Sep 2022 04:54:56 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-37817de940f720ec25421926d86e4316-6e46bcb18508f50c-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-6416ae3a85deae4bb6888420abce10e2-b12305fdf454731b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e4926673-0f92-4b47-a10f-f021f2163a08", - "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-correlation-request-id": "dd68e226-9ad8-4fd3-85eb-6f93c2cec4b7", + "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T153144Z:e4926673-0f92-4b47-a10f-f021f2163a08", - "x-request-time": "0.248" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T045456Z:dd68e226-9ad8-4fd3-85eb-6f93c2cec4b7", + "x-request-time": "0.480" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/86fe4ef0-034c-4ba0-89ee-645948e8b089", - "name": "86fe4ef0-034c-4ba0-89ee-645948e8b089", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/df5eb3a7-ddce-444e-a0fa-a6a2e65bdf3c", + "name": "df5eb3a7-ddce-444e-a0fa-a6a2e65bdf3c", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -185,7 +172,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "86fe4ef0-034c-4ba0-89ee-645948e8b089", + "version": "df5eb3a7-ddce-444e-a0fa-a6a2e65bdf3c", "display_name": "ImportComponentBasic", "is_deterministic": "True", "type": "command", @@ -226,12 +213,12 @@ } }, "systemData": { - "createdAt": "2022-09-19T00:15:51.9119942\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-19T00:15:52.09174\u002B00:00", - "lastModifiedBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "lastModifiedByType": "Application" + "createdAt": "2022-09-26T03:48:29.5325064\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-26T03:48:30.0472623\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", + "lastModifiedByType": "User" } } }, @@ -242,7 +229,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -250,24 +237,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 15:31:44 GMT", + "Date": "Mon, 26 Sep 2022 04:54:56 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-89922aec4175699f59d2dcfccd9717d7-8719bb89c813d645-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-b475a0af7b4b30e9a6fec5ccdcbbb7b6-52010710d9c6471a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c65d994c-ca9c-4bb9-879f-d46d089e3508", - "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-correlation-request-id": "7e691c3f-992f-46d7-a8d7-3391348b8f57", + "x-ms-ratelimit-remaining-subscription-reads": "11992", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T153144Z:c65d994c-ca9c-4bb9-879f-d46d089e3508", - "x-request-time": "0.129" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T045457Z:7e691c3f-992f-46d7-a8d7-3391348b8f57", + "x-request-time": "0.131" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -282,17 +269,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sawcdivl5vo3cem", - "containerName": "azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-19T00:10:19.4497254\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-19T00:10:20.0957203\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -306,7 +293,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -314,21 +301,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 15:31:45 GMT", + "Date": "Mon, 26 Sep 2022 04:54:58 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-989a67f1cfc31bc3a429ae85a5cc491d-cccdb2530de0aa66-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-ee2c6ea32fdb14f16901bd4818ebe47d-f4d1c9cf66550549-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ab9e7428-06a1-4ef4-83b9-36af7bdf21d6", - "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-correlation-request-id": "563317ec-912b-4db4-8637-e228d8bd1396", + "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T153146Z:ab9e7428-06a1-4ef4-83b9-36af7bdf21d6", - "x-request-time": "0.102" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T045458Z:563317ec-912b-4db4-8637-e228d8bd1396", + "x-request-time": "0.450" }, "ResponseBody": { "secretsType": "AccountKey", @@ -336,15 +323,15 @@ } }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000/prep_src/prep.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/prep_src/prep.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 23 Sep 2022 15:31:46 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Mon, 26 Sep 2022 04:54:58 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -353,9 +340,9 @@ "Content-Length": "4138", "Content-MD5": "0KXmFx7HK/7s4zv4\u002BZJGlg==", "Content-Type": "application/octet-stream", - "Date": "Fri, 23 Sep 2022 15:31:45 GMT", - "ETag": "\u00220x8DA99D3853E5EDD\u0022", - "Last-Modified": "Mon, 19 Sep 2022 00:11:37 GMT", + "Date": "Mon, 26 Sep 2022 04:54:59 GMT", + "ETag": "\u00220x8DA9F71FBFEA6C5\u0022", + "Last-Modified": "Mon, 26 Sep 2022 03:48:33 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -364,32 +351,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Mon, 19 Sep 2022 00:11:37 GMT", + "x-ms-creation-time": "Mon, 26 Sep 2022 03:48:33 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "7417eea0-16d6-455d-9fd5-61e49da40d74", + "x-ms-meta-name": "97756168-3c33-4924-8333-21022b630383", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/az-ml-artifacts/00000000000000000000000000000000/prep_src/prep.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/prep_src/prep.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 23 Sep 2022 15:31:46 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Mon, 26 Sep 2022 04:54:59 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 23 Sep 2022 15:31:46 GMT", + "Date": "Mon, 26 Sep 2022 04:54:59 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -397,12 +384,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/7417eea0-16d6-455d-9fd5-61e49da40d74/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/97756168-3c33-4924-8333-21022b630383/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -410,7 +397,7 @@ "Connection": "keep-alive", "Content-Length": "297", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -420,7 +407,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000/prep_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/prep_src" } }, "StatusCode": 200, @@ -428,27 +415,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 15:31:46 GMT", + "Date": "Mon, 26 Sep 2022 04:55:00 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-f93030b4fd02946095cf0b475e0b1887-f140607b6e08a2cb-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-5dda2959f9ff11c4d66e688279501875-243cabd3113a5c78-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "25ee2b09-a41e-430d-a479-db77b0c35a2c", - "x-ms-ratelimit-remaining-subscription-writes": "1194", + "x-ms-correlation-request-id": "5c590ec1-782c-4112-aa82-116aeaf19ae4", + "x-ms-ratelimit-remaining-subscription-writes": "1198", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T153146Z:25ee2b09-a41e-430d-a479-db77b0c35a2c", - "x-request-time": "0.058" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T045501Z:5c590ec1-782c-4112-aa82-116aeaf19ae4", + "x-request-time": "0.465" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/7417eea0-16d6-455d-9fd5-61e49da40d74/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/97756168-3c33-4924-8333-21022b630383/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -460,14 +447,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000/prep_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/prep_src" }, "systemData": { - "createdAt": "2022-09-19T00:11:38.5231374\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-23T15:31:46.9743663\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-26T03:48:34.8762247\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-26T04:55:00.8970179\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -481,7 +468,7 @@ "Connection": "keep-alive", "Content-Length": "918", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -491,7 +478,7 @@ "isArchived": false, "componentSpec": { "command": "python prep.py --raw_data ${{inputs.raw_data}} --prep_data ${{outputs.prep_data}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/7417eea0-16d6-455d-9fd5-61e49da40d74/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/97756168-3c33-4924-8333-21022b630383/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cuda11-gpu/versions/3", "name": "azureml_anonymous", "tags": {}, @@ -516,26 +503,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1940", + "Content-Length": "1880", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 15:31:48 GMT", + "Date": "Mon, 26 Sep 2022 04:55:03 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-8ec135ce965d5abc62237f058a6b1636-b08617f09ac22333-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-739650a47cd3069f2b670be818e18c61-127b11d892cf2919-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "91c4b6ac-2b3f-48f4-9e6c-8bb296128964", - "x-ms-ratelimit-remaining-subscription-writes": "1193", + "x-ms-correlation-request-id": "3bff599e-d15c-4ee9-a09f-114a6ebc047d", + "x-ms-ratelimit-remaining-subscription-writes": "1197", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T153148Z:91c4b6ac-2b3f-48f4-9e6c-8bb296128964", - "x-request-time": "0.320" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T045504Z:3bff599e-d15c-4ee9-a09f-114a6ebc047d", + "x-request-time": "1.618" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/aaa907ec-19c3-4d26-a985-68f9ca8e7e34", - "name": "aaa907ec-19c3-4d26-a985-68f9ca8e7e34", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d5e14b6a-56fe-42e9-b1ab-9438d816f6f9", + "name": "d5e14b6a-56fe-42e9-b1ab-9438d816f6f9", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -545,7 +532,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "aaa907ec-19c3-4d26-a985-68f9ca8e7e34", + "version": "d5e14b6a-56fe-42e9-b1ab-9438d816f6f9", "display_name": "PrepTaxiData", "is_deterministic": "True", "type": "command", @@ -560,7 +547,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/7417eea0-16d6-455d-9fd5-61e49da40d74/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/97756168-3c33-4924-8333-21022b630383/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cuda11-gpu/versions/3", "resources": { "instance_count": "1" @@ -570,12 +557,12 @@ } }, "systemData": { - "createdAt": "2022-09-19T00:11:39.1586135\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-19T00:11:39.3471222\u002B00:00", - "lastModifiedBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "lastModifiedByType": "Application" + "createdAt": "2022-09-26T03:48:37.6085074\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-26T03:48:38.1027552\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", + "lastModifiedByType": "User" } } }, @@ -586,9 +573,9 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "2237", + "Content-Length": "2273", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -627,8 +614,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/86fe4ef0-034c-4ba0-89ee-645948e8b089" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/df5eb3a7-ddce-444e-a0fa-a6a2e65bdf3c" }, "prep_job": { "resources": null, @@ -652,8 +640,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/aaa907ec-19c3-4d26-a985-68f9ca8e7e34" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d5e14b6a-56fe-42e9-b1ab-9438d816f6f9" } }, "outputs": { @@ -674,22 +663,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4727", + "Content-Length": "4778", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 15:31:53 GMT", + "Date": "Mon, 26 Sep 2022 04:55:10 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-ddc15750bd79987187efcbba7db5165e-6087085a13673353-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-e239cfc653e2880d30dea4299827dcb4-b926da9ad5f7dcad-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "34297af3-0932-4265-bef0-ff8b1d544931", - "x-ms-ratelimit-remaining-subscription-writes": "1192", + "x-ms-correlation-request-id": "6d69aa7a-38f9-449c-9887-2510a32aafa2", + "x-ms-ratelimit-remaining-subscription-writes": "1196", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T153154Z:34297af3-0932-4265-bef0-ff8b1d544931", - "x-request-time": "2.703" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T045510Z:6d69aa7a-38f9-449c-9887-2510a32aafa2", + "x-request-time": "3.040" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -717,7 +706,7 @@ "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null @@ -767,8 +756,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/86fe4ef0-034c-4ba0-89ee-645948e8b089" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/df5eb3a7-ddce-444e-a0fa-a6a2e65bdf3c" }, "prep_job": { "resources": null, @@ -792,8 +782,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/aaa907ec-19c3-4d26-a985-68f9ca8e7e34" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d5e14b6a-56fe-42e9-b1ab-9438d816f6f9" } }, "inputs": {}, @@ -814,8 +805,8 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-23T15:31:54.0424327\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-26T04:55:10.1092707\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } @@ -827,7 +818,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -835,24 +826,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 15:31:54 GMT", + "Date": "Mon, 26 Sep 2022 04:55:12 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-02558d76b15b823992d4156e829c8fbd-035821e628c3b15a-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-0bfeccba88f237cb70239159ada7f24a-27e5e034c3e36880-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f2d1894b-5eb3-459a-a17f-5d8ebfe232d1", + "x-ms-correlation-request-id": "ec48c2c7-2f33-443a-891b-ced55033919d", "x-ms-ratelimit-remaining-subscription-reads": "11992", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T153155Z:f2d1894b-5eb3-459a-a17f-5d8ebfe232d1", - "x-request-time": "0.067" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T045512Z:ec48c2c7-2f33-443a-891b-ced55033919d", + "x-request-time": "0.210" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -880,7 +871,7 @@ "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null @@ -930,8 +921,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/86fe4ef0-034c-4ba0-89ee-645948e8b089" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/df5eb3a7-ddce-444e-a0fa-a6a2e65bdf3c" }, "prep_job": { "resources": null, @@ -955,8 +947,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/aaa907ec-19c3-4d26-a985-68f9ca8e7e34" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d5e14b6a-56fe-42e9-b1ab-9438d816f6f9" } }, "inputs": {}, @@ -977,8 +970,8 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-23T15:31:54.0424327\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-26T04:55:10.1092707\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } @@ -991,7 +984,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 202, @@ -999,50 +992,50 @@ "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 15:31:56 GMT", + "Date": "Mon, 26 Sep 2022 04:55:15 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/mfeOperationResults/jc:e17a3673-0df1-4734-b827-58bdbe7ad5bc:000000000000000000000?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/centraluseuap/mfeOperationResults/jc:e61cd5e2-512f-475e-9842-5e2a973993b8:000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", "x-ms-async-operation-timeout": "PT1H", - "x-ms-correlation-request-id": "1a3bc62a-627f-453a-bbf5-e982d10ad367", - "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-correlation-request-id": "2b264e10-0031-4532-aac1-2ca9e2abddba", + "x-ms-ratelimit-remaining-subscription-writes": "1198", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T153157Z:1a3bc62a-627f-453a-bbf5-e982d10ad367", - "x-request-time": "0.658" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T045515Z:2b264e10-0031-4532-aac1-2ca9e2abddba", + "x-request-time": "1.035" }, "ResponseBody": "null" }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/mfeOperationResults/jc:e17a3673-0df1-4734-b827-58bdbe7ad5bc:000000000000000000000?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/centraluseuap/mfeOperationResults/jc:e61cd5e2-512f-475e-9842-5e2a973993b8:000000000000000000000?api-version=2022-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 23 Sep 2022 15:32:26 GMT", + "Date": "Mon, 26 Sep 2022 04:55:45 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-bbc6a3ea11e7b7b89d7d9a9c68f811d0-4cca34cb7f857786-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-c44e72d39b9d301e6323263ea41108c1-864df0899e7c411c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c59c938d-a3fd-4ec6-8adf-99113fa5f0ad", + "x-ms-correlation-request-id": "858d27a7-f4fc-42bd-8346-beb484c6bedf", "x-ms-ratelimit-remaining-subscription-reads": "11991", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T153227Z:c59c938d-a3fd-4ec6-8adf-99113fa5f0ad", - "x-request-time": "0.050" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T045546Z:858d27a7-f4fc-42bd-8346-beb484c6bedf", + "x-request-time": "0.048" }, "ResponseBody": null }, @@ -1053,7 +1046,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1061,24 +1054,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 15:32:26 GMT", + "Date": "Mon, 26 Sep 2022 04:55:46 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-1c89f56e6d4726a80f4225a8054f2062-073710e056886941-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-bf26afc4dc428628125d6beb01b873c3-568b35d4d014a672-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4c217376-2342-42a2-9611-60a1bf728a4a", + "x-ms-correlation-request-id": "4d933411-fa0d-412d-a143-021240e159cf", "x-ms-ratelimit-remaining-subscription-reads": "11990", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T153227Z:4c217376-2342-42a2-9611-60a1bf728a4a", - "x-request-time": "0.072" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T045546Z:4d933411-fa0d-412d-a143-021240e159cf", + "x-request-time": "0.049" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -1106,7 +1099,7 @@ "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null @@ -1156,8 +1149,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/86fe4ef0-034c-4ba0-89ee-645948e8b089" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/df5eb3a7-ddce-444e-a0fa-a6a2e65bdf3c" }, "prep_job": { "resources": null, @@ -1181,8 +1175,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/aaa907ec-19c3-4d26-a985-68f9ca8e7e34" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d5e14b6a-56fe-42e9-b1ab-9438d816f6f9" } }, "inputs": {}, @@ -1203,8 +1198,8 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-23T15:31:54.0424327\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-26T04:55:10.1092707\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/import_job/e2etests/test_import_job.pyTestImportJobtest_import_pipeline_submit_cancel.json b/sdk/ml/azure-ai-ml/tests/recordings/import_job/e2etests/test_import_job.pyTestImportJobtest_import_pipeline_submit_cancel.json index 9322e1b982f7..3a26fe299749 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/import_job/e2etests/test_import_job.pyTestImportJobtest_import_pipeline_submit_cancel.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/import_job/e2etests/test_import_job.pyTestImportJobtest_import_pipeline_submit_cancel.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,39 +15,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 15:32:45 GMT", + "Date": "Mon, 26 Sep 2022 05:51:46 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-22f66c5b4aeca9a99b2ec88015718bda-a30f7a128e1673f1-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-e98098d7aa4f03e1262ed745a9facd0e-cf312f70cb4ac137-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bf9debb7-f736-46ac-9f7d-d92cd0ef70e3", - "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-correlation-request-id": "0ba26330-988f-4ff4-aa50-7465249ee263", + "x-ms-ratelimit-remaining-subscription-reads": "11988", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T153246Z:bf9debb7-f736-46ac-9f7d-d92cd0ef70e3", - "x-request-time": "0.070" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T055147Z:0ba26330-988f-4ff4-aa50-7465249ee263", + "x-request-time": "0.230" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-09-19T00:10:24.4202268\u002B00:00", - "modifiedOn": "2022-09-19T00:10:30.9839701\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "centraluseuap", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -56,36 +56,23 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 3, - "targetNodeCount": 4, + "currentNodeCount": 1, + "targetNodeCount": 1, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 3, - "idleNodeCount": 0, + "runningNodeCount": 0, + "idleNodeCount": 1, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-23T13:58:43.672\u002B00:00", - "errors": [ - { - "error": { - "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_6e552a8a759b0409f693795c742d744f80f78dac4ffac0f1a8cf0e084578105c_d: There is not enough disk space on the node", - "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - } - ] - } - } - ], + "allocationState": "Steady", + "allocationStateTransitionTime": "2022-09-26T05:06:43.727\u002B00:00", + "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -104,7 +91,7 @@ "Connection": "keep-alive", "Content-Length": "590", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -148,26 +135,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1852", + "Content-Length": "1792", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 15:32:48 GMT", + "Date": "Mon, 26 Sep 2022 05:51:53 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-69402150022aa2c3cd1cf37e7c211a91-580512de1bc381eb-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-cb401bf16a0c7a83d2a6b48b20643af0-40ba00ff03880193-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9bd786ec-74b8-4034-b9c9-0771b58f09b1", - "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-correlation-request-id": "f753b847-8de3-45fc-b465-845f2009b345", + "x-ms-ratelimit-remaining-subscription-writes": "1182", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T153248Z:9bd786ec-74b8-4034-b9c9-0771b58f09b1", - "x-request-time": "0.217" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T055153Z:f753b847-8de3-45fc-b465-845f2009b345", + "x-request-time": "2.273" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/64a3b016-6640-4d45-a665-40d572aa634a", - "name": "64a3b016-6640-4d45-a665-40d572aa634a", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/59f10397-75e0-4ec1-94b9-6c29fba1822d", + "name": "59f10397-75e0-4ec1-94b9-6c29fba1822d", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -177,7 +164,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "64a3b016-6640-4d45-a665-40d572aa634a", + "version": "59f10397-75e0-4ec1-94b9-6c29fba1822d", "display_name": "import_step", "is_deterministic": "True", "type": "command", @@ -216,12 +203,12 @@ } }, "systemData": { - "createdAt": "2022-09-19T00:15:51.4815146\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-19T00:15:51.6566037\u002B00:00", - "lastModifiedBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "lastModifiedByType": "Application" + "createdAt": "2022-09-26T03:46:50.4261873\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-26T03:46:50.9028034\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", + "lastModifiedByType": "User" } } }, @@ -232,7 +219,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -240,24 +227,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 15:32:48 GMT", + "Date": "Mon, 26 Sep 2022 05:51:53 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-4e8551e1152e455149f9a228fdff8f8d-25974950dd5b57ae-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-54e47ec9a4f3f93d4abe49105a9c18cd-aaf872f4398c31d6-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a322a9ba-5836-4685-850f-c70769f1ee8b", - "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-correlation-request-id": "b2008401-7b38-42eb-b760-97008d14713b", + "x-ms-ratelimit-remaining-subscription-reads": "11987", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T153248Z:a322a9ba-5836-4685-850f-c70769f1ee8b", - "x-request-time": "0.110" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T055154Z:b2008401-7b38-42eb-b760-97008d14713b", + "x-request-time": "0.141" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -272,17 +259,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sawcdivl5vo3cem", - "containerName": "azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-19T00:10:19.4497254\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-19T00:10:20.0957203\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -296,7 +283,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -304,21 +291,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 15:32:49 GMT", + "Date": "Mon, 26 Sep 2022 05:51:55 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-e5efe5d74e4683e6debf16086d6d7137-2aa208ca743a937a-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-a05893c59f36c7bfb5c6448a864c6236-e4d441ee0e1813ca-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "54aa024c-2446-4b39-bc04-3714a0473dd8", - "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-correlation-request-id": "49814ab4-41c0-4846-8124-540b9c428c1a", + "x-ms-ratelimit-remaining-subscription-writes": "1189", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T153249Z:54aa024c-2446-4b39-bc04-3714a0473dd8", - "x-request-time": "0.130" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T055155Z:49814ab4-41c0-4846-8124-540b9c428c1a", + "x-request-time": "0.611" }, "ResponseBody": { "secretsType": "AccountKey", @@ -326,15 +313,15 @@ } }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000/import_job/import_component_test.yml", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/import_job/import_component_test.yml", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 23 Sep 2022 15:32:49 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Mon, 26 Sep 2022 05:51:55 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -343,9 +330,9 @@ "Content-Length": "389", "Content-MD5": "kKaUQs8jWrCtVsHEaV\u002BV3g==", "Content-Type": "application/octet-stream", - "Date": "Fri, 23 Sep 2022 15:32:49 GMT", - "ETag": "\u00220x8DA9D7770187C87\u0022", - "Last-Modified": "Fri, 23 Sep 2022 15:22:33 GMT", + "Date": "Mon, 26 Sep 2022 05:51:56 GMT", + "ETag": "\u00220x8DA9F7B125AB7F5\u0022", + "Last-Modified": "Mon, 26 Sep 2022 04:53:36 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -354,32 +341,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Fri, 23 Sep 2022 15:22:33 GMT", + "x-ms-creation-time": "Mon, 26 Sep 2022 04:53:35 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "551c2a8c-58f5-4777-a961-68339b165bd3", + "x-ms-meta-name": "28255604-9e09-4c2e-90fd-622f2f983468", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/az-ml-artifacts/00000000000000000000000000000000/import_job/import_component_test.yml", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/import_job/import_component_test.yml", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 23 Sep 2022 15:32:50 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Mon, 26 Sep 2022 05:51:56 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 23 Sep 2022 15:32:49 GMT", + "Date": "Mon, 26 Sep 2022 05:51:56 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -387,12 +374,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/551c2a8c-58f5-4777-a961-68339b165bd3/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/28255604-9e09-4c2e-90fd-622f2f983468/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -400,7 +387,7 @@ "Connection": "keep-alive", "Content-Length": "299", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -410,7 +397,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000/import_job" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/import_job" } }, "StatusCode": 200, @@ -418,27 +405,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 15:32:49 GMT", + "Date": "Mon, 26 Sep 2022 05:51:57 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-271bb8cb0a4150d2f2aaaa4dd6c57595-dcbe4411dea46905-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-b2e7b6ca3a00a895de8e4eaf414813d2-36e9466151105d7e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "916b8cb7-13e2-4b03-9859-5e71eef64d55", - "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-correlation-request-id": "2386d5dd-3cac-43ea-bd68-5fc71ad3cf2d", + "x-ms-ratelimit-remaining-subscription-writes": "1181", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T153250Z:916b8cb7-13e2-4b03-9859-5e71eef64d55", - "x-request-time": "0.114" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T055158Z:2386d5dd-3cac-43ea-bd68-5fc71ad3cf2d", + "x-request-time": "0.968" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/551c2a8c-58f5-4777-a961-68339b165bd3/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/28255604-9e09-4c2e-90fd-622f2f983468/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -450,14 +437,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000/import_job" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/import_job" }, "systemData": { - "createdAt": "2022-09-23T15:22:34.1912437\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-26T04:53:37.863207\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-23T15:32:50.3122303\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-26T05:51:58.0839597\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -471,7 +458,7 @@ "Connection": "keep-alive", "Content-Length": "830", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -481,7 +468,7 @@ "isArchived": false, "componentSpec": { "command": "echo ${{inputs.imported_data}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/551c2a8c-58f5-4777-a961-68339b165bd3/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/28255604-9e09-4c2e-90fd-622f2f983468/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cuda11-gpu/versions/3", "name": "azureml_anonymous", "tags": {}, @@ -502,26 +489,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1743", + "Content-Length": "1741", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 15:32:50 GMT", + "Date": "Mon, 26 Sep 2022 05:52:00 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-8326769ea81a18840c88567897e86b39-c79cb28cfbf24dbe-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-8142f8742b78bb0eea2583990259acd8-e782de5f9d6238ed-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "01ea1ca4-6a2f-4784-9b65-c4368a12a399", - "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-correlation-request-id": "6a50f325-5795-4c33-b821-c6f747056100", + "x-ms-ratelimit-remaining-subscription-writes": "1180", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T153251Z:01ea1ca4-6a2f-4784-9b65-c4368a12a399", - "x-request-time": "0.324" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T055200Z:6a50f325-5795-4c33-b821-c6f747056100", + "x-request-time": "1.384" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/54b18866-fd7e-4f37-98a6-f90dac9f407d", - "name": "54b18866-fd7e-4f37-98a6-f90dac9f407d", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ba8833f7-2b60-4c5c-89f1-940ac79a13a0", + "name": "ba8833f7-2b60-4c5c-89f1-940ac79a13a0", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -531,7 +518,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "54b18866-fd7e-4f37-98a6-f90dac9f407d", + "version": "ba8833f7-2b60-4c5c-89f1-940ac79a13a0", "display_name": "data_prep_step", "is_deterministic": "True", "type": "command", @@ -541,7 +528,7 @@ "optional": "False" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/551c2a8c-58f5-4777-a961-68339b165bd3/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/28255604-9e09-4c2e-90fd-622f2f983468/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cuda11-gpu/versions/3", "resources": { "instance_count": "1" @@ -551,11 +538,11 @@ } }, "systemData": { - "createdAt": "2022-09-23T15:22:35.6894904\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-26T04:53:40.9961916\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-23T15:22:35.8976553\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-26T04:53:41.4798959\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -567,9 +554,9 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1903", + "Content-Length": "1939", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -609,8 +596,9 @@ "job_output_type": "mltable" } }, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/64a3b016-6640-4d45-a665-40d572aa634a" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/59f10397-75e0-4ec1-94b9-6c29fba1822d" }, "data_prep_step": { "resources": null, @@ -629,8 +617,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/54b18866-fd7e-4f37-98a6-f90dac9f407d" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ba8833f7-2b60-4c5c-89f1-940ac79a13a0" } }, "outputs": {}, @@ -642,22 +631,22 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4118", + "Content-Length": "4169", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 15:32:56 GMT", + "Date": "Mon, 26 Sep 2022 05:52:06 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-31d857ccc2ad23060aa9f2baf112f9a3-66904242f3881b99-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-6fe43cba7d4044f3ce76f36cecacd67f-2aac1f7598e38416-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "26e56ff8-3382-4433-a612-5d077f271666", - "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-correlation-request-id": "03f9a70c-cd53-4d38-bf97-948f9b458d6d", + "x-ms-ratelimit-remaining-subscription-writes": "1179", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T153256Z:26e56ff8-3382-4433-a612-5d077f271666", - "x-request-time": "2.828" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T055207Z:03f9a70c-cd53-4d38-bf97-948f9b458d6d", + "x-request-time": "2.836" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -685,7 +674,7 @@ "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null @@ -734,8 +723,9 @@ "job_output_type": "mltable" } }, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/64a3b016-6640-4d45-a665-40d572aa634a" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/59f10397-75e0-4ec1-94b9-6c29fba1822d" }, "data_prep_step": { "resources": null, @@ -754,8 +744,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/54b18866-fd7e-4f37-98a6-f90dac9f407d" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ba8833f7-2b60-4c5c-89f1-940ac79a13a0" } }, "inputs": {}, @@ -763,8 +754,8 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-23T15:32:56.6338459\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-26T05:52:06.3589716\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } @@ -776,7 +767,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -784,24 +775,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 15:32:57 GMT", + "Date": "Mon, 26 Sep 2022 05:52:08 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-a79dac9cb8343b73fd560e38473c73bc-1dfa81346f082eb6-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-493a578b8f42a15a3fee9585a74838f2-fdd37fd18783ace0-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "48ed7e51-cff3-40e1-94ca-b7e39d3f1cd3", - "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-correlation-request-id": "b0c48927-2d21-494f-9c0a-5cb3ab96ef63", + "x-ms-ratelimit-remaining-subscription-reads": "11986", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T153258Z:48ed7e51-cff3-40e1-94ca-b7e39d3f1cd3", - "x-request-time": "0.063" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T055209Z:b0c48927-2d21-494f-9c0a-5cb3ab96ef63", + "x-request-time": "0.072" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -829,7 +820,7 @@ "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null @@ -878,8 +869,9 @@ "job_output_type": "mltable" } }, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/64a3b016-6640-4d45-a665-40d572aa634a" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/59f10397-75e0-4ec1-94b9-6c29fba1822d" }, "data_prep_step": { "resources": null, @@ -898,8 +890,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/54b18866-fd7e-4f37-98a6-f90dac9f407d" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ba8833f7-2b60-4c5c-89f1-940ac79a13a0" } }, "inputs": {}, @@ -907,8 +900,8 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-23T15:32:56.6338459\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-26T05:52:06.3589716\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } @@ -921,7 +914,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 202, @@ -929,50 +922,50 @@ "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 15:33:00 GMT", + "Date": "Mon, 26 Sep 2022 05:52:12 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/mfeOperationResults/jc:e17a3673-0df1-4734-b827-58bdbe7ad5bc:000000000000000000000?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/centraluseuap/mfeOperationResults/jc:e61cd5e2-512f-475e-9842-5e2a973993b8:000000000000000000000?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", "x-ms-async-operation-timeout": "PT1H", - "x-ms-correlation-request-id": "251ffe35-e553-4446-93fb-ffd12f075147", - "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-correlation-request-id": "f23e75bb-11de-4ddd-bc6b-8f73a9cfbf69", + "x-ms-ratelimit-remaining-subscription-writes": "1188", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T153300Z:251ffe35-e553-4446-93fb-ffd12f075147", - "x-request-time": "0.579" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T055213Z:f23e75bb-11de-4ddd-bc6b-8f73a9cfbf69", + "x-request-time": "1.172" }, "ResponseBody": "null" }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/mfeOperationResults/jc:e17a3673-0df1-4734-b827-58bdbe7ad5bc:000000000000000000000?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/centraluseuap/mfeOperationResults/jc:e61cd5e2-512f-475e-9842-5e2a973993b8:000000000000000000000?api-version=2022-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "*/*", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 23 Sep 2022 15:33:30 GMT", + "Date": "Mon, 26 Sep 2022 05:52:42 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-26fa78d9bdefa00e29ead908ef21a264-64548bed811eb667-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-05f017950f3a4a5227a0471635308e04-830e665e8ec39190-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dfb6fadb-333d-4ab8-9aa0-95339eedd4a7", - "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-correlation-request-id": "e4d36107-b3d0-4d33-9266-c109d3388555", + "x-ms-ratelimit-remaining-subscription-reads": "11984", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T153330Z:dfb6fadb-333d-4ab8-9aa0-95339eedd4a7", - "x-request-time": "0.031" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T055243Z:e4d36107-b3d0-4d33-9266-c109d3388555", + "x-request-time": "0.036" }, "ResponseBody": null }, @@ -983,7 +976,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -991,24 +984,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 15:33:30 GMT", + "Date": "Mon, 26 Sep 2022 05:52:43 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-4df7bf3254958a5995f552fde14bb69b-ea937caab8cd5d91-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-59b71cf9b68b2db258d85b4c748cb1aa-30ec2cd56f48209e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d0f6bc1d-90f4-4c7a-950c-2c04b805b8dc", - "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-correlation-request-id": "98cf3703-898b-4181-baef-15f26504e894", + "x-ms-ratelimit-remaining-subscription-reads": "11983", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T153331Z:d0f6bc1d-90f4-4c7a-950c-2c04b805b8dc", - "x-request-time": "0.052" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T055244Z:98cf3703-898b-4181-baef-15f26504e894", + "x-request-time": "0.057" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", @@ -1036,7 +1029,7 @@ "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null @@ -1085,8 +1078,9 @@ "job_output_type": "mltable" } }, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/64a3b016-6640-4d45-a665-40d572aa634a" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/59f10397-75e0-4ec1-94b9-6c29fba1822d" }, "data_prep_step": { "resources": null, @@ -1105,8 +1099,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/54b18866-fd7e-4f37-98a6-f90dac9f407d" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ba8833f7-2b60-4c5c-89f1-940ac79a13a0" } }, "inputs": {}, @@ -1114,8 +1109,8 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-23T15:32:56.6338459\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-26T05:52:06.3589716\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_component_job.json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_component_job.json new file mode 100644 index 000000000000..b049f4842ed5 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_component_job.json @@ -0,0 +1,786 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:54:50 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-d5237d42846f9aafeb04d700eb6a5bcc-e80ac4c829872841-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-eastus2-02", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a9539265-dba8-4a02-be50-37aafca0e386", + "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T155450Z:a9539265-dba8-4a02-be50-37aafca0e386", + "x-request-time": "0.127" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", + "name": "workspaceblobstore", + "type": "Microsoft.MachineLearningServices/workspaces/datastores", + "properties": { + "description": null, + "tags": null, + "properties": null, + "isDefault": true, + "credentials": { + "credentialsType": "AccountKey" + }, + "datastoreType": "AzureBlob", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", + "endpoint": "core.windows.net", + "protocol": "https", + "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" + }, + "systemData": { + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", + "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", + "createdByType": "Application", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", + "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", + "lastModifiedByType": "Application" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore/listSecrets?api-version=2022-05-01", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "0", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:54:51 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-cd4b4c3e7776cccffbc855483764fe88-d80eaaf821dcec3b-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-eastus2-02", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "263c5f8a-d2c1-4b0d-8dbf-48e747ef4281", + "x-ms-ratelimit-remaining-subscription-writes": "1151", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T155451Z:263c5f8a-d2c1-4b0d-8dbf-48e747ef4281", + "x-request-time": "0.092" + }, + "ResponseBody": { + "secretsType": "AccountKey", + "key": "dGhpcyBpcyBmYWtlIGtleQ==" + } + }, + { + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestMethod": "HEAD", + "RequestHeaders": { + "Accept": "application/xml", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:54:53 GMT", + "x-ms-version": "2021-08-06" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Accept-Ranges": "bytes", + "Content-Length": "35", + "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", + "Content-Type": "application/octet-stream", + "Date": "Fri, 23 Sep 2022 15:54:52 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", + "Server": [ + "Windows-Azure-Blob/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": "Origin", + "x-ms-access-tier": "Hot", + "x-ms-access-tier-inferred": "true", + "x-ms-blob-type": "BlockBlob", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", + "x-ms-lease-state": "available", + "x-ms-lease-status": "unlocked", + "x-ms-meta-name": "000000000000000000000", + "x-ms-meta-upload_status": "completed", + "x-ms-meta-version": "1", + "x-ms-server-encrypted": "true", + "x-ms-version": "2021-08-06" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestMethod": "HEAD", + "RequestHeaders": { + "Accept": "application/xml", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:54:54 GMT", + "x-ms-version": "2021-08-06" + }, + "RequestBody": null, + "StatusCode": 404, + "ResponseHeaders": { + "Date": "Fri, 23 Sep 2022 15:54:52 GMT", + "Server": [ + "Windows-Azure-Blob/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Transfer-Encoding": "chunked", + "Vary": "Origin", + "x-ms-error-code": "BlobNotFound", + "x-ms-version": "2021-08-06" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1?api-version=2022-05-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "288", + "Content-Type": "application/json", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": { + "properties": { + "properties": { + "hash_sha256": "0000000000000", + "hash_version": "0000000000000" + }, + "isAnonymous": true, + "isArchived": false, + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:54:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-3e0ab74c0ee0d4e737c7aab065fffc0f-053813f3fb67b7da-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-eastus2-02", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f5bb4a80-ba44-4aa3-bf88-e92cc149ff30", + "x-ms-ratelimit-remaining-subscription-writes": "1158", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T155453Z:f5bb4a80-ba44-4aa3-bf88-e92cc149ff30", + "x-request-time": "0.076" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", + "name": "1", + "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", + "properties": { + "description": null, + "tags": {}, + "properties": { + "hash_sha256": "0000000000000", + "hash_version": "0000000000000" + }, + "isArchived": false, + "isAnonymous": false, + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" + }, + "systemData": { + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T15:54:53.6052502\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", + "lastModifiedByType": "User" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "1433", + "Content-Type": "application/json", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": { + "properties": { + "description": "This is the basic command component", + "properties": {}, + "tags": { + "tag": "tagvalue", + "owner": "sdkteam" + }, + "isAnonymous": true, + "isArchived": false, + "componentSpec": { + "command": "echo Hello World \u0026 echo $[[${{inputs.component_in_number}}]] \u0026 echo ${{inputs.component_in_path}} \u0026 echo ${{outputs.component_out_path}} \u003E ${{outputs.component_out_path}}/component_in_number", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", + "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", + "name": "azureml_anonymous", + "description": "This is the basic command component", + "tags": { + "tag": "tagvalue", + "owner": "sdkteam" + }, + "version": "000000000000000000000", + "$schema": "https://azuremlschemas.azureedge.net/development/commandComponent.schema.json", + "display_name": "CommandComponentBasic", + "is_deterministic": true, + "inputs": { + "component_in_number": { + "type": "number", + "optional": true, + "default": "10.99", + "description": "A number" + }, + "component_in_path": { + "type": "uri_folder", + "description": "A path" + } + }, + "outputs": { + "component_out_path": { + "type": "uri_folder" + } + }, + "type": "command", + "_source": "YAML.JOB" + } + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "2398", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:54:55 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-55bf29a1d3e64fc7bc9a2cfdf9310641-e9651f5c07ed5954-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-aml-cluster": "vienna-eastus2-02", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "681c5cfd-499d-4aa6-803e-c9e19f860d4b", + "x-ms-ratelimit-remaining-subscription-writes": "1157", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T155455Z:681c5cfd-499d-4aa6-803e-c9e19f860d4b", + "x-request-time": "0.328" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/4f589440-3f2e-4f17-a8f1-f0f3a615594b", + "name": "4f589440-3f2e-4f17-a8f1-f0f3a615594b", + "type": "Microsoft.MachineLearningServices/workspaces/components/versions", + "properties": { + "description": null, + "tags": { + "tag": "tagvalue", + "owner": "sdkteam" + }, + "properties": {}, + "isArchived": false, + "isAnonymous": true, + "componentSpec": { + "name": "azureml_anonymous", + "version": "4f589440-3f2e-4f17-a8f1-f0f3a615594b", + "display_name": "CommandComponentBasic", + "is_deterministic": "True", + "type": "command", + "description": "This is the basic command component", + "tags": { + "tag": "tagvalue", + "owner": "sdkteam" + }, + "inputs": { + "component_in_path": { + "type": "uri_folder", + "optional": "False", + "description": "A path" + }, + "component_in_number": { + "type": "number", + "optional": "True", + "default": "10.99", + "description": "A number" + } + }, + "outputs": { + "component_out_path": { + "type": "uri_folder" + } + }, + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", + "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", + "resources": { + "instance_count": "1" + }, + "command": "echo Hello World \u0026 echo $[[${{inputs.component_in_number}}]] \u0026 echo ${{inputs.component_in_path}} \u0026 echo ${{outputs.component_out_path}} \u003E ${{outputs.component_out_path}}/component_in_number", + "$schema": "https://azuremlschemas.azureedge.net/development/commandComponent.schema.json" + } + }, + "systemData": { + "createdAt": "2022-09-23T15:20:40.98508\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T15:20:41.170452\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", + "lastModifiedByType": "User" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "1275", + "Content-Type": "application/json", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": { + "properties": { + "properties": {}, + "tags": {}, + "isAnonymous": true, + "isArchived": false, + "componentSpec": { + "name": "azureml_anonymous", + "tags": {}, + "version": "000000000000000000000", + "display_name": "Hello World Pipeline Component", + "is_deterministic": true, + "inputs": { + "component_in_number": { + "type": "integer", + "default": "10" + }, + "component_in_path": { + "type": "uri_file" + } + }, + "outputs": { + "output_path": { + "type": "uri_folder" + } + }, + "type": "pipeline", + "jobs": { + "component_a_job": { + "resources": null, + "distribution": null, + "limits": null, + "environment_variables": {}, + "name": null, + "type": "command", + "display_name": null, + "tags": {}, + "computeId": null, + "inputs": { + "component_in_number": { + "job_input_type": "literal", + "value": "${{parent.inputs.component_in_number}}" + }, + "component_in_path": { + "job_input_type": "literal", + "value": "${{parent.inputs.component_in_path}}" + } + }, + "outputs": { + "component_out_path": { + "value": "${{parent.outputs.output_path}}", + "type": "literal" + } + }, + "properties": {}, + "_source": "YAML.JOB", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/4f589440-3f2e-4f17-a8f1-f0f3a615594b" + } + }, + "_source": "CLASS", + "sourceJobId": null + } + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1430", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:54:57 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-e7496a941555c252049b3939f8fc8eaf-388c2cf9256728c3-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-aml-cluster": "vienna-eastus2-02", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "7718f42d-0734-4d3e-96a8-38cc0363f72f", + "x-ms-ratelimit-remaining-subscription-writes": "1156", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T155458Z:7718f42d-0734-4d3e-96a8-38cc0363f72f", + "x-request-time": "0.762" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d373d29b-a03a-49e6-bf90-6b69bab5ce14", + "name": "d373d29b-a03a-49e6-bf90-6b69bab5ce14", + "type": "Microsoft.MachineLearningServices/workspaces/components/versions", + "properties": { + "description": null, + "tags": {}, + "properties": {}, + "isArchived": false, + "isAnonymous": true, + "componentSpec": { + "name": "azureml_anonymous", + "version": "d373d29b-a03a-49e6-bf90-6b69bab5ce14", + "display_name": "Hello World Pipeline Component", + "is_deterministic": "True", + "type": "pipeline", + "inputs": { + "component_in_path": { + "type": "uri_file", + "optional": "False" + }, + "component_in_number": { + "type": "integer", + "optional": "False", + "default": "10" + } + }, + "outputs": { + "output_path": { + "type": "uri_folder" + } + }, + "$schema": "https://componentsdk.azureedge.net/jsonschema/CommandComponent.json" + } + }, + "systemData": { + "createdAt": "2022-09-23T15:54:58.1860123\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T15:54:58.1860123\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", + "lastModifiedByType": "User" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "973", + "Content-Type": "application/json", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": { + "properties": { + "description": "The hello world pipeline job", + "properties": {}, + "tags": { + "tag": "tagvalue", + "owner": "sdkteam" + }, + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d373d29b-a03a-49e6-bf90-6b69bab5ce14", + "displayName": "Hello World Pipeline Component", + "experimentName": "azure-ai-ml", + "isArchived": false, + "jobType": "Pipeline", + "inputs": { + "component_in_number": { + "jobInputType": "literal", + "value": "10" + }, + "component_in_path": { + "uri": "https://dprepdata.blob.core.windows.net/demo/Titanic.csv", + "jobInputType": "uri_file" + } + }, + "jobs": {}, + "outputs": { + "output_path": { + "jobOutputType": "uri_folder" + } + }, + "settings": { + "default_compute": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", + "_source": "REMOTE.WORKSPACE.JOB" + } + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "3033", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:55:05 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-b9321aa6b83939370ee241d09466b2ab-ef36dabdc76c5740-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-aml-cluster": "vienna-eastus2-02", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "10eac395-1959-4a38-8e68-6761f75983d6", + "x-ms-ratelimit-remaining-subscription-writes": "1155", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T155506Z:10eac395-1959-4a38-8e68-6761f75983d6", + "x-request-time": "3.209" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", + "name": "000000000000000000000", + "type": "Microsoft.MachineLearningServices/workspaces/jobs", + "properties": { + "description": "The hello world pipeline job", + "tags": { + "tag": "tagvalue", + "owner": "sdkteam" + }, + "properties": { + "azureml.DevPlatv2": "true", + "azureml.runsource": "azureml.PipelineRun", + "runSource": "MFE", + "runType": "HTTP", + "azureml.parameters": "{\u0022component_in_number\u0022:\u002210\u0022}", + "azureml.continue_on_step_failure": "True", + "azureml.continue_on_failed_optional_input": "True", + "azureml.defaultComputeName": "cpu-cluster", + "azureml.defaultDataStoreName": "workspaceblobstore", + "azureml.pipelineComponent": "pipelinerun" + }, + "displayName": "Hello World Pipeline Component", + "status": "Preparing", + "experimentName": "azure-ai-ml", + "services": { + "Tracking": { + "jobServiceType": "Tracking", + "port": null, + "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "status": null, + "errorMessage": null, + "properties": null + }, + "Studio": { + "jobServiceType": "Studio", + "port": null, + "endpoint": "https://ml.azure.com/runs/000000000000000000000?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "status": null, + "errorMessage": null, + "properties": null + } + }, + "computeId": null, + "isArchived": false, + "identity": null, + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d373d29b-a03a-49e6-bf90-6b69bab5ce14", + "jobType": "Pipeline", + "settings": { + "default_compute": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", + "_source": "REMOTE.WORKSPACE.JOB" + }, + "jobs": {}, + "inputs": { + "component_in_number": { + "description": null, + "jobInputType": "literal", + "value": "10" + }, + "component_in_path": { + "description": null, + "uri": "https://dprepdata.blob.core.windows.net/demo/Titanic.csv", + "mode": "ReadOnlyMount", + "jobInputType": "uri_file" + } + }, + "outputs": { + "output_path": { + "description": null, + "uri": null, + "mode": "ReadWriteMount", + "jobOutputType": "uri_folder" + } + }, + "sourceJobId": null + }, + "systemData": { + "createdAt": "2022-09-23T15:55:05.7764116\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2/mfeOperationResults/jc:e950f876-7257-4cf3-99a5-ff66812ac44c:test_648071820053?api-version=2022-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Fri, 23 Sep 2022 15:55:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-8997a6c8824a593af4b356359ada2af2-fc55bd944aa16a17-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-aml-cluster": "vienna-eastus2-02", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "2a6d925e-ca71-4cd4-8c79-8d2ce24d7228", + "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T155517Z:2a6d925e-ca71-4cd4-8c79-8d2ce24d7228", + "x-request-time": "0.156" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000/cancel?api-version=2022-06-01-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "0", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, + "StatusCode": 400, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1224", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:55:23 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-aml-cluster": "vienna-eastus2-02", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e0514512-f16d-4833-98e2-78e5d1fa72d6", + "x-ms-ratelimit-remaining-subscription-writes": "1150", + "x-ms-response-type": "error", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T155523Z:e0514512-f16d-4833-98e2-78e5d1fa72d6", + "x-request-time": "15.023" + }, + "ResponseBody": { + "error": { + "code": "UserError", + "message": "The pipeline run 000000000000000000000 is in terminal status, it can\u0027t be canceled.", + "details": [], + "additionalInfo": [ + { + "type": "ComponentName", + "info": { + "value": "managementfrontend" + } + }, + { + "type": "Correlation", + "info": { + "value": { + "operation": "aaef93f4f76a25106ef0c618fe9fead4", + "request": "394da3fe5f0c35d2" + } + } + }, + { + "type": "Environment", + "info": { + "value": "eastus2" + } + }, + { + "type": "Location", + "info": { + "value": "eastus2" + } + }, + { + "type": "Time", + "info": { + "value": "2022-09-23T15:55:23.7675678\u002B00:00" + } + }, + { + "type": "InnerError", + "info": { + "value": { + "code": "BadArgument", + "innerError": { + "code": "ArgumentInvalid", + "innerError": { + "code": "CancelPipelineRunInTerminalStatus", + "innerError": null + } + } + } + } + } + ] + } + } + } + ], + "Variables": {} +} diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job__with_inline_component_file_in_component_folder.json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job__with_inline_component_file_in_component_folder.json index 8b6956bf34ab..ede0e9f16476 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job__with_inline_component_file_in_component_folder.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job__with_inline_component_file_in_component_folder.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:39:57 GMT", + "Date": "Mon, 26 Sep 2022 03:51:39 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-3259047893dcb0dd7b18b936d83809b8-546593076d62354b-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-fde2c6cfcc39c5d4c5b34f5a0b099760-63e9d1b3ded2a27e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "38c21b41-b150-4855-971e-5de16624385d", - "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-correlation-request-id": "ef628cf3-1f76-4a95-938e-101d09ad87c2", + "x-ms-ratelimit-remaining-subscription-reads": "11999", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T193957Z:38c21b41-b150-4855-971e-5de16624385d", - "x-request-time": "0.197" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T035139Z:ef628cf3-1f76-4a95-938e-101d09ad87c2", + "x-request-time": "0.461" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/microsoftsamplescommandcomponentbasic_nopaths_test/versions/1", @@ -66,7 +66,7 @@ "description": "A number" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/7e3e2698-4d1a-4bbc-b18f-beee1a20a3aa/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/92e51c4c-40c7-4f95-ba55-e3a63d7d7c14/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/CliV2AnonymousEnvironment/versions/65a57bb8969551bd51f7d3e2f734e76e", "resources": { "instance_count": "1" @@ -76,12 +76,12 @@ } }, "systemData": { - "createdAt": "2022-09-15T03:19:17.639218\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:19:17.8616901\u002B00:00", - "lastModifiedBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "lastModifiedByType": "Application" + "createdAt": "2022-09-23T09:44:36.2163623\u002B00:00", + "createdBy": "Ying Chen", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T09:44:37.0887573\u002B00:00", + "lastModifiedBy": "Ying Chen", + "lastModifiedByType": "User" } } }, @@ -92,7 +92,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -100,39 +100,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:39:58 GMT", + "Date": "Mon, 26 Sep 2022 03:51:41 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-82303f9ec49c4c071993dfe863583ed4-7556d195261eb6e8-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-8f24258da70cf7dcb02362ae81aa2985-dcd4f34006c3dbaa-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c00e50bc-6581-4b48-9e94-50e89a41fa09", - "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-correlation-request-id": "615617c8-ee3c-4054-8d18-ea68a9a1baf1", + "x-ms-ratelimit-remaining-subscription-reads": "11998", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T193959Z:c00e50bc-6581-4b48-9e94-50e89a41fa09", - "x-request-time": "0.041" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T035142Z:615617c8-ee3c-4054-8d18-ea68a9a1baf1", + "x-request-time": "0.236" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.912489\u002B00:00", - "modifiedOn": "2022-09-15T03:11:50.5830108\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "centraluseuap", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -141,22 +141,22 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 4, + "currentNodeCount": 1, + "targetNodeCount": 1, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 2, - "idleNodeCount": 2, + "runningNodeCount": 0, + "idleNodeCount": 1, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-16T18:30:06.83\u002B00:00", + "allocationStateTransitionTime": "2022-09-23T15:15:23.998\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -174,7 +174,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -182,39 +182,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:39:58 GMT", + "Date": "Mon, 26 Sep 2022 03:51:42 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-5b81fd01a841e4b248f67dd20d43e6ca-b07cc91f038acd81-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-0c873a3c45ddee2c19b246123e630d3d-0211d56da1bead88-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b231b658-9ffa-4f8c-b9de-1c01287eb1e9", - "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-correlation-request-id": "f1b15a46-bce9-4f14-970c-53dbf3ba5a33", + "x-ms-ratelimit-remaining-subscription-reads": "11997", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T193959Z:b231b658-9ffa-4f8c-b9de-1c01287eb1e9", - "x-request-time": "0.046" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T035143Z:f1b15a46-bce9-4f14-970c-53dbf3ba5a33", + "x-request-time": "0.226" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.912489\u002B00:00", - "modifiedOn": "2022-09-15T03:11:50.5830108\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "centraluseuap", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -223,22 +223,22 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 4, + "currentNodeCount": 1, + "targetNodeCount": 1, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 2, - "idleNodeCount": 2, + "runningNodeCount": 0, + "idleNodeCount": 1, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-16T18:30:06.83\u002B00:00", + "allocationStateTransitionTime": "2022-09-23T15:15:23.998\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -256,7 +256,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -264,24 +264,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:39:59 GMT", + "Date": "Mon, 26 Sep 2022 03:51:43 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-6f64ad21a8c46db5a1f6b2e290993b10-d6fd9c0e2d6fb69d-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-27be90b3ee1fa2d7a9123a25e6daac34-04d216d9739a4bbb-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b881675f-0c8e-479c-b33b-aa94f875bdf0", - "x-ms-ratelimit-remaining-subscription-reads": "11972", + "x-ms-correlation-request-id": "1022b5fa-d67b-4f36-973f-22249583836f", + "x-ms-ratelimit-remaining-subscription-reads": "11996", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T193959Z:b881675f-0c8e-479c-b33b-aa94f875bdf0", - "x-request-time": "0.094" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T035143Z:1022b5fa-d67b-4f36-973f-22249583836f", + "x-request-time": "0.115" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -296,17 +296,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -320,7 +320,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -328,21 +328,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:39:59 GMT", + "Date": "Mon, 26 Sep 2022 03:51:44 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-21e04adbe6231d59c70234adb24089e4-3ab14ff5334d219e-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-54389be8eb2cb1da77bda43cc5b8f28c-d171bb4ba9eaa9e2-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "211dc01f-bba0-4df4-a34a-9c95d5c6e990", - "x-ms-ratelimit-remaining-subscription-writes": "1193", + "x-ms-correlation-request-id": "73ebe28e-5b39-44ac-af2c-db4e8061fbaf", + "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T193959Z:211dc01f-bba0-4df4-a34a-9c95d5c6e990", - "x-request-time": "0.095" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T035144Z:73ebe28e-5b39-44ac-af2c-db4e8061fbaf", + "x-request-time": "0.234" }, "ResponseBody": { "secretsType": "AccountKey", @@ -350,15 +350,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/src/hello.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src/hello.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:39:58 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Mon, 26 Sep 2022 03:51:44 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -367,9 +367,9 @@ "Content-Length": "29", "Content-MD5": "Su6WKXXx57Itf5DK8YwOyA==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:39:59 GMT", - "ETag": "\u00220x8DA96C8A9F6AFD5\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:16:21 GMT", + "Date": "Mon, 26 Sep 2022 03:51:45 GMT", + "ETag": "\u00220x8DA9D48FCB3C574\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:50:02 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -378,32 +378,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:16:21 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:50:02 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "822c30cc-f8e0-44f1-8b38-b41425ccdaa6", + "x-ms-meta-name": "72ed944a-4d68-4730-aa2d-a3747ae1d41e", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/src/hello.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/src/hello.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:39:58 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Mon, 26 Sep 2022 03:51:45 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:39:59 GMT", + "Date": "Mon, 26 Sep 2022 03:51:45 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -411,12 +411,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/822c30cc-f8e0-44f1-8b38-b41425ccdaa6/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/72ed944a-4d68-4730-aa2d-a3747ae1d41e/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -424,7 +424,7 @@ "Connection": "keep-alive", "Content-Length": "292", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -434,7 +434,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src" } }, "StatusCode": 200, @@ -442,27 +442,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:40:01 GMT", + "Date": "Mon, 26 Sep 2022 03:51:47 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-f540945597d030d2e7f1e40a6ae684b4-2c40c0e4ea982231-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-f05bc1402ce4d9789eee6a05d83b68b7-89dfa0b10592cf29-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6c7b52cb-a83f-419e-ab91-53c385352372", - "x-ms-ratelimit-remaining-subscription-writes": "1188", + "x-ms-correlation-request-id": "b250ba8d-3a1f-4e13-9e49-c1291fc98c42", + "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194001Z:6c7b52cb-a83f-419e-ab91-53c385352372", - "x-request-time": "0.060" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T035147Z:b250ba8d-3a1f-4e13-9e49-c1291fc98c42", + "x-request-time": "0.641" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/822c30cc-f8e0-44f1-8b38-b41425ccdaa6/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/72ed944a-4d68-4730-aa2d-a3747ae1d41e/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -474,14 +474,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src" }, "systemData": { - "createdAt": "2022-09-15T03:16:22.0371739\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-16T19:40:01.9276438\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T09:50:04.0825375\u002B00:00", + "createdBy": "Ying Chen", + "createdByType": "User", + "lastModifiedAt": "2022-09-26T03:51:47.5682667\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -495,7 +495,7 @@ "Connection": "keep-alive", "Content-Length": "776", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -505,7 +505,7 @@ "isArchived": false, "componentSpec": { "command": "python hello.py", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/822c30cc-f8e0-44f1-8b38-b41425ccdaa6/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/72ed944a-4d68-4730-aa2d-a3747ae1d41e/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "name": "azureml_anonymous", "tags": {}, @@ -522,26 +522,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1601", + "Content-Length": "1592", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:40:02 GMT", + "Date": "Mon, 26 Sep 2022 03:51:49 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-f14ade2850f87d8fa8700e9900814e21-342643b71e5bbbfc-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-f359b1b21225f7c052526c5f3aea82ee-ed277475d4d55d98-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5c9a2ed3-4161-4111-8a63-82386768ae44", - "x-ms-ratelimit-remaining-subscription-writes": "1187", + "x-ms-correlation-request-id": "b2697c44-c0d8-41cf-b588-fef82b4f3918", + "x-ms-ratelimit-remaining-subscription-writes": "1198", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194003Z:5c9a2ed3-4161-4111-8a63-82386768ae44", - "x-request-time": "0.282" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T035150Z:b2697c44-c0d8-41cf-b588-fef82b4f3918", + "x-request-time": "1.406" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d36a043c-d4ad-4fc3-bcaf-cac824bf2450", - "name": "d36a043c-d4ad-4fc3-bcaf-cac824bf2450", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/47de7c63-bb5a-4470-9d20-5790d16be5ff", + "name": "47de7c63-bb5a-4470-9d20-5790d16be5ff", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -551,11 +551,11 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "d36a043c-d4ad-4fc3-bcaf-cac824bf2450", + "version": "47de7c63-bb5a-4470-9d20-5790d16be5ff", "display_name": "Hello_Python_World", "is_deterministic": "True", "type": "command", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/822c30cc-f8e0-44f1-8b38-b41425ccdaa6/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/72ed944a-4d68-4730-aa2d-a3747ae1d41e/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -565,32 +565,32 @@ } }, "systemData": { - "createdAt": "2022-09-16T03:14:01.612042\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T09:50:08.6899358\u002B00:00", + "createdBy": "Ying Chen", "createdByType": "User", - "lastModifiedAt": "2022-09-16T03:14:01.8202324\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T09:50:09.1924032\u002B00:00", + "lastModifiedBy": "Ying Chen", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_442084717275?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_40930922169?api-version=2022-06-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1593", + "Content-Length": "1628", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { "description": "Hello World component example", "properties": {}, "tags": {}, - "displayName": "test_442084717275", + "displayName": "test_40930922169", "experimentName": "azure-ai-ml", "isArchived": false, "jobType": "Pipeline", @@ -608,8 +608,9 @@ "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "inputs": {}, "outputs": {}, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d36a043c-d4ad-4fc3-bcaf-cac824bf2450" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/47de7c63-bb5a-4470-9d20-5790d16be5ff" }, "hello_python_world_job_duplicate": { "resources": null, @@ -623,8 +624,9 @@ "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "inputs": {}, "outputs": {}, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d36a043c-d4ad-4fc3-bcaf-cac824bf2450" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/47de7c63-bb5a-4470-9d20-5790d16be5ff" } }, "outputs": {}, @@ -636,26 +638,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3536", + "Content-Length": "3583", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:40:07 GMT", + "Date": "Mon, 26 Sep 2022 03:51:55 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_442084717275?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_40930922169?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-7a3bb99700f2934adabcee1558dd88bc-68c3807ee65c34ad-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-f4c5c29c96b85213ddf2f52b314178ed-1c3e8ebc09661a96-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4a17712e-0e20-40c8-97e2-405793543707", - "x-ms-ratelimit-remaining-subscription-writes": "1186", + "x-ms-correlation-request-id": "075ec433-791d-44cc-b56c-c855644c9ea9", + "x-ms-ratelimit-remaining-subscription-writes": "1197", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194008Z:4a17712e-0e20-40c8-97e2-405793543707", - "x-request-time": "2.342" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T035156Z:075ec433-791d-44cc-b56c-c855644c9ea9", + "x-request-time": "3.771" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_442084717275", - "name": "test_442084717275", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_40930922169", + "name": "test_40930922169", "type": "Microsoft.MachineLearningServices/workspaces/jobs", "properties": { "description": "Hello World component example", @@ -671,14 +673,14 @@ "azureml.defaultDataStoreName": "workspaceblobstore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_442084717275", + "displayName": "test_40930922169", "status": "Preparing", "experimentName": "azure-ai-ml", "services": { "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null @@ -686,7 +688,7 @@ "Studio": { "jobServiceType": "Studio", "port": null, - "endpoint": "https://ml.azure.com/runs/test_442084717275?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "endpoint": "https://ml.azure.com/runs/test_40930922169?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, "properties": null @@ -713,8 +715,9 @@ "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "inputs": {}, "outputs": {}, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d36a043c-d4ad-4fc3-bcaf-cac824bf2450" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/47de7c63-bb5a-4470-9d20-5790d16be5ff" }, "hello_python_world_job_duplicate": { "resources": null, @@ -728,8 +731,9 @@ "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "inputs": {}, "outputs": {}, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d36a043c-d4ad-4fc3-bcaf-cac824bf2450" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/47de7c63-bb5a-4470-9d20-5790d16be5ff" } }, "inputs": {}, @@ -737,20 +741,20 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-16T19:40:07.6957694\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-26T03:51:55.5075575\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d36a043c-d4ad-4fc3-bcaf-cac824bf2450?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/47de7c63-bb5a-4470-9d20-5790d16be5ff?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -758,28 +762,28 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:40:08 GMT", + "Date": "Mon, 26 Sep 2022 03:51:57 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-367e8ec55429bad1226a31d0c9a69fa0-28996a0a8e32f776-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-032af9002b4e44d32a05f59f0cc849e6-a206ef5d6b16e27a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ad014b17-2a96-44bd-a13d-bdac7baccc86", - "x-ms-ratelimit-remaining-subscription-reads": "11971", + "x-ms-correlation-request-id": "961344ad-b4a9-4b9c-8377-8453cbb81134", + "x-ms-ratelimit-remaining-subscription-reads": "11995", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194009Z:ad014b17-2a96-44bd-a13d-bdac7baccc86", - "x-request-time": "0.107" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T035158Z:961344ad-b4a9-4b9c-8377-8453cbb81134", + "x-request-time": "0.257" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d36a043c-d4ad-4fc3-bcaf-cac824bf2450", - "name": "d36a043c-d4ad-4fc3-bcaf-cac824bf2450", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/47de7c63-bb5a-4470-9d20-5790d16be5ff", + "name": "47de7c63-bb5a-4470-9d20-5790d16be5ff", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -789,11 +793,11 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "d36a043c-d4ad-4fc3-bcaf-cac824bf2450", + "version": "47de7c63-bb5a-4470-9d20-5790d16be5ff", "display_name": "Hello_Python_World", "is_deterministic": "True", "type": "command", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/822c30cc-f8e0-44f1-8b38-b41425ccdaa6/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/72ed944a-4d68-4730-aa2d-a3747ae1d41e/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -803,17 +807,17 @@ } }, "systemData": { - "createdAt": "2022-09-16T03:14:01.612042\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T09:50:08.6899358\u002B00:00", + "createdBy": "Ying Chen", "createdByType": "User", - "lastModifiedAt": "2022-09-16T03:14:01.8202324\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T09:50:09.1924032\u002B00:00", + "lastModifiedBy": "Ying Chen", "lastModifiedByType": "User" } } } ], "Variables": { - "name": "test_442084717275" + "name": "test_40930922169" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_anonymous_component_reuse.json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_anonymous_component_reuse.json index 29488a2f40a4..3d583b8363c9 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_anonymous_component_reuse.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_anonymous_component_reuse.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:43:42 GMT", + "Date": "Fri, 23 Sep 2022 15:28:06 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-76a76e2d356decebee9dba6faed1e1ae-82c06e05efdf9d14-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-c73035250288986463a9ceb2eba206af-180a46f2c4fdeb06-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4d28c1e8-ff05-4d36-ba09-8fa4ea7d8582", - "x-ms-ratelimit-remaining-subscription-reads": "11896", + "x-ms-correlation-request-id": "c22567ca-de38-449d-9fe5-3b62dfd91dcf", + "x-ms-ratelimit-remaining-subscription-reads": "11889", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194343Z:4d28c1e8-ff05-4d36-ba09-8fa4ea7d8582", - "x-request-time": "0.190" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152807Z:c22567ca-de38-449d-9fe5-3b62dfd91dcf", + "x-request-time": "0.119" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/microsoftsamples_command_component_basic/versions/0.0.1", @@ -76,7 +76,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -86,12 +86,12 @@ } }, "systemData": { - "createdAt": "2022-09-15T03:14:02.8157304\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:14:03.0476977\u002B00:00", - "lastModifiedBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "lastModifiedByType": "Application" + "createdAt": "2022-09-23T15:21:21.8475494\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T15:21:22.0816072\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", + "lastModifiedByType": "User" } } }, @@ -102,7 +102,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -110,39 +110,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:43:43 GMT", + "Date": "Fri, 23 Sep 2022 15:28:09 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-519fe7a1b2262fde61194b5ef93f0333-fc1dc672962c40eb-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-551dfba96a3badaf0b4a01e4dcc0e1de-29867d49ff186657-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "283fdb41-9342-4826-a1e4-7c537dbd9831", - "x-ms-ratelimit-remaining-subscription-reads": "11895", + "x-ms-correlation-request-id": "10e78704-09b3-4ef6-afa2-ccc930f31699", + "x-ms-ratelimit-remaining-subscription-reads": "11888", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194344Z:283fdb41-9342-4826-a1e4-7c537dbd9831", - "x-request-time": "0.045" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152810Z:10e78704-09b3-4ef6-afa2-ccc930f31699", + "x-request-time": "0.033" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.912489\u002B00:00", - "modifiedOn": "2022-09-15T03:11:50.5830108\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "eastus2", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -166,7 +166,7 @@ "preemptedNodeCount": 0 }, "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-16T19:43:10.707\u002B00:00", + "allocationStateTransitionTime": "2022-09-23T15:25:36.433\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -184,7 +184,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -192,39 +192,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:43:44 GMT", + "Date": "Fri, 23 Sep 2022 15:28:11 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-2ee1fab98c879aaee491d1108fc94af8-589cd1388019d7a5-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-cbe4efea3fd7297132b79a06f7fbd18a-3315136cbed6f8b8-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f842190e-b6b0-4ed0-87f1-034d4ade616c", - "x-ms-ratelimit-remaining-subscription-reads": "11894", + "x-ms-correlation-request-id": "9c61230b-ea62-468f-93ce-fcab4e0ac4ea", + "x-ms-ratelimit-remaining-subscription-reads": "11887", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194344Z:f842190e-b6b0-4ed0-87f1-034d4ade616c", - "x-request-time": "0.093" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152811Z:9c61230b-ea62-468f-93ce-fcab4e0ac4ea", + "x-request-time": "0.039" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.912489\u002B00:00", - "modifiedOn": "2022-09-15T03:11:50.5830108\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "eastus2", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -248,7 +248,7 @@ "preemptedNodeCount": 0 }, "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-16T19:43:10.707\u002B00:00", + "allocationStateTransitionTime": "2022-09-23T15:25:36.433\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -266,7 +266,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -274,39 +274,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:43:44 GMT", + "Date": "Fri, 23 Sep 2022 15:28:11 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-b994eab473e7e054cf9aa90d7ad8cdad-32a7fccdebfc194c-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-e33b935301c348c2333a731e00efe1be-65e48c274d50815b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a0a28e4f-d94c-4feb-9f9a-a09ccd98cac3", - "x-ms-ratelimit-remaining-subscription-reads": "11893", + "x-ms-correlation-request-id": "c5f3cca0-068c-4f6b-8741-41d52d9565fc", + "x-ms-ratelimit-remaining-subscription-reads": "11886", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194344Z:a0a28e4f-d94c-4feb-9f9a-a09ccd98cac3", - "x-request-time": "0.063" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152812Z:c5f3cca0-068c-4f6b-8741-41d52d9565fc", + "x-request-time": "0.042" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.912489\u002B00:00", - "modifiedOn": "2022-09-15T03:11:50.5830108\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "eastus2", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -330,7 +330,7 @@ "preemptedNodeCount": 0 }, "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-16T19:43:10.707\u002B00:00", + "allocationStateTransitionTime": "2022-09-23T15:25:36.433\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -348,7 +348,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -356,24 +356,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:43:44 GMT", + "Date": "Fri, 23 Sep 2022 15:28:12 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-12c96443625634c074d5b7312dc4e0c9-e9b7d12fc280a994-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-7a1feb401ab4afa2e45d8d42db401f66-4d93b16acdaa7349-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "52c10459-d0b9-4bb4-88c1-a14b5d0db7eb", - "x-ms-ratelimit-remaining-subscription-reads": "11892", + "x-ms-correlation-request-id": "1ef65600-9d3c-4daf-a842-111eb4629fd0", + "x-ms-ratelimit-remaining-subscription-reads": "11885", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194345Z:52c10459-d0b9-4bb4-88c1-a14b5d0db7eb", - "x-request-time": "0.090" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152812Z:1ef65600-9d3c-4daf-a842-111eb4629fd0", + "x-request-time": "0.095" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -388,17 +388,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -412,7 +412,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -420,21 +420,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:43:44 GMT", + "Date": "Fri, 23 Sep 2022 15:28:13 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-219ae8d6f1a50d59b8d0a314f9227d73-36114741fa064ba2-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-006da120110661b7c496c6dcc2887868-d21a8ef6c2361eb8-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "99903695-b04b-4abc-a8a5-dd3d4d845568", - "x-ms-ratelimit-remaining-subscription-writes": "1156", + "x-ms-correlation-request-id": "f21ddf38-ef27-4d06-9926-b886f037fcd1", + "x-ms-ratelimit-remaining-subscription-writes": "1153", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194345Z:99903695-b04b-4abc-a8a5-dd3d4d845568", - "x-request-time": "0.105" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152813Z:f21ddf38-ef27-4d06-9926-b886f037fcd1", + "x-request-time": "0.139" }, "ResponseBody": { "secretsType": "AccountKey", @@ -442,15 +442,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:43:44 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:28:15 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -459,9 +459,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:43:45 GMT", - "ETag": "\u00220x8DA975B4CC57610\u0022", - "Last-Modified": "Thu, 15 Sep 2022 20:46:01 GMT", + "Date": "Fri, 23 Sep 2022 15:28:13 GMT", + "ETag": "\u00220x8DA9D76EE2580A0\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:18:55 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -470,32 +470,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 20:46:01 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:18:53 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "f0648f42-ca3c-4aee-9d9e-f2fe26dc4430", + "x-ms-meta-name": "000000000000000000000", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/python/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/python/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:43:44 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:28:16 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:43:45 GMT", + "Date": "Fri, 23 Sep 2022 15:28:14 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -503,12 +503,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -516,7 +516,7 @@ "Connection": "keep-alive", "Content-Length": "295", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -526,7 +526,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python" } }, "StatusCode": 200, @@ -534,27 +534,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:43:45 GMT", + "Date": "Fri, 23 Sep 2022 15:28:15 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-ed2c8cd447266c1e1faddba4a049650c-d1cd98cc43c244d3-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-185e30b01615face1edc53aa2906aa91-5b5189672bbf1400-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1cb3a83f-2308-45b7-b4f2-262a8b725c73", - "x-ms-ratelimit-remaining-subscription-writes": "1124", + "x-ms-correlation-request-id": "9794259f-60c4-4f45-9777-e716ddb99721", + "x-ms-ratelimit-remaining-subscription-writes": "1117", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194346Z:1cb3a83f-2308-45b7-b4f2-262a8b725c73", - "x-request-time": "0.087" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152815Z:9794259f-60c4-4f45-9777-e716ddb99721", + "x-request-time": "0.074" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -566,14 +566,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python" }, "systemData": { - "createdAt": "2022-09-15T20:46:01.4252338\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:18:57.5027157\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T19:43:46.4673936\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:28:15.3108277\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -585,9 +585,9 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "914", + "Content-Length": "899", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -597,7 +597,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo ${{inputs.component_in_number}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "tags": {}, @@ -620,26 +620,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1844", + "Content-Length": "1830", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:43:48 GMT", + "Date": "Fri, 23 Sep 2022 15:28:16 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-c68500e201c9ef20c5dcde5e139ddf6b-82158344bd9bb062-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-16672a685ead6da54df7f648b7913ecd-2bb95b43c7bf2e83-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c7ca351a-bd46-449f-9c2e-d09ba5418fd5", - "x-ms-ratelimit-remaining-subscription-writes": "1123", + "x-ms-correlation-request-id": "925598e0-e998-4c73-ae6b-f664f5c44b32", + "x-ms-ratelimit-remaining-subscription-writes": "1116", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194349Z:c7ca351a-bd46-449f-9c2e-d09ba5418fd5", - "x-request-time": "0.240" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152816Z:925598e0-e998-4c73-ae6b-f664f5c44b32", + "x-request-time": "0.244" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/06326f13-2bca-4306-b158-17caed068b45", - "name": "06326f13-2bca-4306-b158-17caed068b45", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/aa9ad94f-599e-49fa-8459-555f66a4142e", + "name": "aa9ad94f-599e-49fa-8459-555f66a4142e", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -649,7 +649,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "06326f13-2bca-4306-b158-17caed068b45", + "version": "aa9ad94f-599e-49fa-8459-555f66a4142e", "display_name": "hello_world_component_inline", "is_deterministic": "True", "type": "command", @@ -661,7 +661,7 @@ "description": "Am integer" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -671,11 +671,11 @@ } }, "systemData": { - "createdAt": "2022-09-16T03:13:36.83502\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:16.2622422\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T03:13:36.987623\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:20:16.4228321\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -687,7 +687,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -695,24 +695,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:43:49 GMT", + "Date": "Fri, 23 Sep 2022 15:28:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-5846f6d4bde986b2df927e8dfe20e6d2-d19673d50dd42f47-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-d10502500109b3e6c81fbe73cd1c2149-a0c6446e054eb330-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "63bb423f-697f-4c37-811f-e8416058756e", - "x-ms-ratelimit-remaining-subscription-reads": "11891", + "x-ms-correlation-request-id": "98963e4b-7c07-4ea3-b71a-9d644f337511", + "x-ms-ratelimit-remaining-subscription-reads": "11884", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194349Z:63bb423f-697f-4c37-811f-e8416058756e", - "x-request-time": "0.111" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152817Z:98963e4b-7c07-4ea3-b71a-9d644f337511", + "x-request-time": "0.126" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -727,17 +727,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -751,7 +751,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -759,21 +759,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:43:49 GMT", + "Date": "Fri, 23 Sep 2022 15:28:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-5106718f2d18e8bcf76d039e90010594-605779f5b8e1df3f-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-0904ab8aabb1c552e4dfbe8b38515882-4a9e73e75413e020-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "85880bf0-23e9-4f78-b98c-2199e039fb53", - "x-ms-ratelimit-remaining-subscription-writes": "1155", + "x-ms-correlation-request-id": "c4c2758b-5986-4061-8e50-74cb1777b482", + "x-ms-ratelimit-remaining-subscription-writes": "1152", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194350Z:85880bf0-23e9-4f78-b98c-2199e039fb53", - "x-request-time": "0.139" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152818Z:c4c2758b-5986-4061-8e50-74cb1777b482", + "x-request-time": "0.106" }, "ResponseBody": { "secretsType": "AccountKey", @@ -781,15 +781,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:43:49 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:28:20 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -798,9 +798,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:43:50 GMT", - "ETag": "\u00220x8DA975B4CC57610\u0022", - "Last-Modified": "Thu, 15 Sep 2022 20:46:01 GMT", + "Date": "Fri, 23 Sep 2022 15:28:18 GMT", + "ETag": "\u00220x8DA9D76EE2580A0\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:18:55 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -809,32 +809,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 20:46:01 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:18:53 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "f0648f42-ca3c-4aee-9d9e-f2fe26dc4430", + "x-ms-meta-name": "000000000000000000000", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/python/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/python/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:43:49 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:28:20 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:43:50 GMT", + "Date": "Fri, 23 Sep 2022 15:28:18 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -842,12 +842,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -855,7 +855,7 @@ "Connection": "keep-alive", "Content-Length": "295", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -865,7 +865,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python" } }, "StatusCode": 200, @@ -873,27 +873,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:43:51 GMT", + "Date": "Fri, 23 Sep 2022 15:28:19 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-88fbec1530315be6acae296345f3cf1d-0cddf623ad322fbd-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-886bcfde2df4d9ffccf14c927c489db7-a50991197720db23-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "89c71658-6602-4ebc-b7f1-c4553435dd4b", - "x-ms-ratelimit-remaining-subscription-writes": "1122", + "x-ms-correlation-request-id": "27309191-cb1e-4e7f-aaf6-3af07a06edb3", + "x-ms-ratelimit-remaining-subscription-writes": "1115", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194352Z:89c71658-6602-4ebc-b7f1-c4553435dd4b", - "x-request-time": "0.110" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152819Z:27309191-cb1e-4e7f-aaf6-3af07a06edb3", + "x-request-time": "0.074" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -905,14 +905,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python" }, "systemData": { - "createdAt": "2022-09-15T20:46:01.4252338\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:18:57.5027157\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T19:43:52.4104571\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:28:19.429479\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -924,9 +924,9 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1018", + "Content-Length": "1003", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -936,7 +936,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo ${{inputs.component_in_number}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "tags": {}, @@ -960,26 +960,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1868", + "Content-Length": "1851", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:43:52 GMT", + "Date": "Fri, 23 Sep 2022 15:28:20 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-a6f74b9f37c862a9abf0fef187615c26-8c2b86e47744251f-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-56060c4a593c8b0503f1835625669ea1-e38e5a5f07b61afe-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "86d9c69f-f15c-45c3-8b38-a10405b731e3", - "x-ms-ratelimit-remaining-subscription-writes": "1121", + "x-ms-correlation-request-id": "3767fdf4-e2ed-4c5c-bcfe-70cf6470abd7", + "x-ms-ratelimit-remaining-subscription-writes": "1114", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194353Z:86d9c69f-f15c-45c3-8b38-a10405b731e3", - "x-request-time": "0.390" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152820Z:3767fdf4-e2ed-4c5c-bcfe-70cf6470abd7", + "x-request-time": "0.302" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/3f34f291-9210-450b-bad0-1e8786750ea4", - "name": "3f34f291-9210-450b-bad0-1e8786750ea4", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/23fabbbc-7a9c-447d-8f26-537bcd1f7746", + "name": "23fabbbc-7a9c-447d-8f26-537bcd1f7746", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -989,7 +989,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "3f34f291-9210-450b-bad0-1e8786750ea4", + "version": "23fabbbc-7a9c-447d-8f26-537bcd1f7746", "display_name": "hello_world_component_inline_with_schema", "is_deterministic": "True", "type": "command", @@ -1001,7 +1001,7 @@ "description": "Am integer" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -1011,25 +1011,25 @@ } }, "systemData": { - "createdAt": "2022-09-16T03:13:38.804565\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:20.462934\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T03:13:38.9726572\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:20:20.6095525\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_894405595824?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_85146748442?api-version=2022-06-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "2171", + "Content-Length": "2206", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -1040,7 +1040,7 @@ "owner": "sdkteam" }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", - "displayName": "test_894405595824", + "displayName": "test_85146748442", "experimentName": "azure-ai-ml", "isArchived": false, "jobType": "Pipeline", @@ -1072,8 +1072,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/06326f13-2bca-4306-b158-17caed068b45" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/aa9ad94f-599e-49fa-8459-555f66a4142e" }, "hello_world_component_inline_with_schema": { "resources": null, @@ -1092,8 +1093,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/3f34f291-9210-450b-bad0-1e8786750ea4" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/23fabbbc-7a9c-447d-8f26-537bcd1f7746" } }, "outputs": {}, @@ -1105,26 +1107,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4458", + "Content-Length": "4500", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:43:59 GMT", + "Date": "Fri, 23 Sep 2022 15:28:29 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_894405595824?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_85146748442?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-c42b34adde06efc78d3732f92026ee3c-533b9d8c1b688639-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-f4a47bb5968d26bb4444b15626667775-e2492b4f8bed5639-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fae69f40-ca7a-4a57-a642-e72e0ad0a31c", - "x-ms-ratelimit-remaining-subscription-writes": "1120", + "x-ms-correlation-request-id": "3b825073-102e-4058-b71f-56867ba74ef5", + "x-ms-ratelimit-remaining-subscription-writes": "1113", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194400Z:fae69f40-ca7a-4a57-a642-e72e0ad0a31c", - "x-request-time": "2.731" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152829Z:3b825073-102e-4058-b71f-56867ba74ef5", + "x-request-time": "3.321" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_894405595824", - "name": "test_894405595824", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_85146748442", + "name": "test_85146748442", "type": "Microsoft.MachineLearningServices/workspaces/jobs", "properties": { "description": "The hello world pipeline job with inline components", @@ -1144,14 +1146,14 @@ "azureml.defaultDataStoreName": "workspaceblobstore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_894405595824", + "displayName": "test_85146748442", "status": "Preparing", "experimentName": "azure-ai-ml", "services": { "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null @@ -1159,7 +1161,7 @@ "Studio": { "jobServiceType": "Studio", "port": null, - "endpoint": "https://ml.azure.com/runs/test_894405595824?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "endpoint": "https://ml.azure.com/runs/test_85146748442?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, "properties": null @@ -1191,8 +1193,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/06326f13-2bca-4306-b158-17caed068b45" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/aa9ad94f-599e-49fa-8459-555f66a4142e" }, "hello_world_component_inline_with_schema": { "resources": null, @@ -1211,8 +1214,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/3f34f291-9210-450b-bad0-1e8786750ea4" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/23fabbbc-7a9c-447d-8f26-537bcd1f7746" } }, "inputs": { @@ -1231,8 +1235,8 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-16T19:43:59.7871914\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:28:28.806306\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } @@ -1244,7 +1248,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1252,39 +1256,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:44:00 GMT", + "Date": "Fri, 23 Sep 2022 15:28:32 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-dcddcd4ff86dd606f88150e498f8dbd2-6f196e91e8d929ce-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-f72ee58d5faa6410a61558634da45aa3-3f4edd7e26b14284-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c6d8f0da-c6e4-40a3-9727-64c61726e7d0", - "x-ms-ratelimit-remaining-subscription-reads": "11890", + "x-ms-correlation-request-id": "377e0712-26cf-4282-b049-363d5f6829f6", + "x-ms-ratelimit-remaining-subscription-reads": "11883", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194401Z:c6d8f0da-c6e4-40a3-9727-64c61726e7d0", - "x-request-time": "0.044" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152832Z:377e0712-26cf-4282-b049-363d5f6829f6", + "x-request-time": "0.039" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.912489\u002B00:00", - "modifiedOn": "2022-09-15T03:11:50.5830108\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "eastus2", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -1308,7 +1312,7 @@ "preemptedNodeCount": 0 }, "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-16T19:43:10.707\u002B00:00", + "allocationStateTransitionTime": "2022-09-23T15:25:36.433\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -1326,7 +1330,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1334,39 +1338,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:44:00 GMT", + "Date": "Fri, 23 Sep 2022 15:28:33 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-da737eaabaf147266df6c2c3f8b66355-84ea0d4886254a4c-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-f3fa67f08cacb9847e088ff1761d08df-c4822a4e865d2340-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a791762c-8f6c-45d4-810d-f76fb9543f27", - "x-ms-ratelimit-remaining-subscription-reads": "11889", + "x-ms-correlation-request-id": "2062909b-269a-40f0-b553-a3a17fa413bf", + "x-ms-ratelimit-remaining-subscription-reads": "11882", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194401Z:a791762c-8f6c-45d4-810d-f76fb9543f27", - "x-request-time": "0.049" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152833Z:2062909b-269a-40f0-b553-a3a17fa413bf", + "x-request-time": "0.156" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.912489\u002B00:00", - "modifiedOn": "2022-09-15T03:11:50.5830108\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "eastus2", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -1390,7 +1394,7 @@ "preemptedNodeCount": 0 }, "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-16T19:43:10.707\u002B00:00", + "allocationStateTransitionTime": "2022-09-23T15:25:36.433\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -1408,7 +1412,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1416,39 +1420,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:44:00 GMT", + "Date": "Fri, 23 Sep 2022 15:28:34 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-473ea0a6290cc891913edf6277fbd83f-c8a450f8839e440f-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-f393c5a172ea31a8f2a7411af2c854db-71fc2e8d02cea6c6-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1fb3d520-aa5e-4f4c-b701-3037d5518368", - "x-ms-ratelimit-remaining-subscription-reads": "11888", + "x-ms-correlation-request-id": "d2c2200a-2429-486f-851a-ff65bec8f802", + "x-ms-ratelimit-remaining-subscription-reads": "11881", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194401Z:1fb3d520-aa5e-4f4c-b701-3037d5518368", - "x-request-time": "0.047" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152834Z:d2c2200a-2429-486f-851a-ff65bec8f802", + "x-request-time": "0.040" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.912489\u002B00:00", - "modifiedOn": "2022-09-15T03:11:50.5830108\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "eastus2", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -1472,7 +1476,7 @@ "preemptedNodeCount": 0 }, "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-16T19:43:10.707\u002B00:00", + "allocationStateTransitionTime": "2022-09-23T15:25:36.433\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -1490,7 +1494,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1498,24 +1502,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:44:02 GMT", + "Date": "Fri, 23 Sep 2022 15:28:35 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-51f7e24d81a88ef79db3bc15baa5b054-2a9dac0967016832-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-9abdcd3fccc9b363f1dc64fa742a99c0-62829730fa99f865-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f898ba77-d4bc-4e62-9339-bfb7fff339bb", - "x-ms-ratelimit-remaining-subscription-reads": "11887", + "x-ms-correlation-request-id": "0dc89d48-5c1f-48f7-a3bd-2e19aea6d105", + "x-ms-ratelimit-remaining-subscription-reads": "11880", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194402Z:f898ba77-d4bc-4e62-9339-bfb7fff339bb", - "x-request-time": "0.128" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152835Z:0dc89d48-5c1f-48f7-a3bd-2e19aea6d105", + "x-request-time": "0.194" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -1530,17 +1534,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -1554,7 +1558,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1562,21 +1566,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:44:03 GMT", + "Date": "Fri, 23 Sep 2022 15:28:36 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-68383bb43d0b83afed97144dd756f89a-7870ab170baf4c64-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-987fd11ce60b77f376ede50786979892-d219671a9125762d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "eee5aefd-3bab-4cd8-9450-1b9341abf115", - "x-ms-ratelimit-remaining-subscription-writes": "1154", + "x-ms-correlation-request-id": "a3e00032-3e28-4478-a96c-1e7355c2f5ef", + "x-ms-ratelimit-remaining-subscription-writes": "1151", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194403Z:eee5aefd-3bab-4cd8-9450-1b9341abf115", - "x-request-time": "0.100" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152836Z:a3e00032-3e28-4478-a96c-1e7355c2f5ef", + "x-request-time": "0.086" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1584,15 +1588,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:44:02 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:28:38 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -1601,9 +1605,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:44:02 GMT", - "ETag": "\u00220x8DA975B4CC57610\u0022", - "Last-Modified": "Thu, 15 Sep 2022 20:46:01 GMT", + "Date": "Fri, 23 Sep 2022 15:28:36 GMT", + "ETag": "\u00220x8DA9D76EE2580A0\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:18:55 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1612,32 +1616,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 20:46:01 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:18:53 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "f0648f42-ca3c-4aee-9d9e-f2fe26dc4430", + "x-ms-meta-name": "000000000000000000000", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/python/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/python/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:44:02 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:28:39 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:44:02 GMT", + "Date": "Fri, 23 Sep 2022 15:28:37 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1645,12 +1649,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -1658,7 +1662,7 @@ "Connection": "keep-alive", "Content-Length": "295", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -1668,7 +1672,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python" } }, "StatusCode": 200, @@ -1676,27 +1680,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:44:04 GMT", + "Date": "Fri, 23 Sep 2022 15:28:37 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-0b31ffef9724fa9798dd820d8ad8edcd-4cf56a5d9daa07a2-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-092ef03a50631b18fb716dda5a8061d8-0947dd9ec0f3abe3-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "06fb253b-b08a-4d43-b594-dfde33d0ab0a", - "x-ms-ratelimit-remaining-subscription-writes": "1119", + "x-ms-correlation-request-id": "5b03cc18-66bf-4c64-9426-6ec3f5743705", + "x-ms-ratelimit-remaining-subscription-writes": "1112", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194404Z:06fb253b-b08a-4d43-b594-dfde33d0ab0a", - "x-request-time": "0.109" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152838Z:5b03cc18-66bf-4c64-9426-6ec3f5743705", + "x-request-time": "0.069" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -1708,14 +1712,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python" }, "systemData": { - "createdAt": "2022-09-15T20:46:01.4252338\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:18:57.5027157\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T19:44:04.4532219\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:28:37.9365505\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -1727,9 +1731,9 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "914", + "Content-Length": "899", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -1739,7 +1743,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo ${{inputs.component_in_number}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "tags": {}, @@ -1762,26 +1766,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1844", + "Content-Length": "1830", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:44:05 GMT", + "Date": "Fri, 23 Sep 2022 15:28:38 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-61a86e91435b758e692b33500495501f-f31ad149db4d7c68-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-f75d65a862b09ff0ed894db0774ca699-188d941f42510a3a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5c395c3a-22c7-4730-87cb-0c10a808470a", - "x-ms-ratelimit-remaining-subscription-writes": "1118", + "x-ms-correlation-request-id": "f9122aef-896f-4a0f-b541-890612c1010a", + "x-ms-ratelimit-remaining-subscription-writes": "1111", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194405Z:5c395c3a-22c7-4730-87cb-0c10a808470a", - "x-request-time": "0.421" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152839Z:f9122aef-896f-4a0f-b541-890612c1010a", + "x-request-time": "0.269" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/06326f13-2bca-4306-b158-17caed068b45", - "name": "06326f13-2bca-4306-b158-17caed068b45", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/aa9ad94f-599e-49fa-8459-555f66a4142e", + "name": "aa9ad94f-599e-49fa-8459-555f66a4142e", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1791,7 +1795,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "06326f13-2bca-4306-b158-17caed068b45", + "version": "aa9ad94f-599e-49fa-8459-555f66a4142e", "display_name": "hello_world_component_inline", "is_deterministic": "True", "type": "command", @@ -1803,7 +1807,7 @@ "description": "Am integer" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -1813,11 +1817,11 @@ } }, "systemData": { - "createdAt": "2022-09-16T03:13:36.83502\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:16.2622422\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T03:13:36.987623\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:20:16.4228321\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -1829,7 +1833,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1837,24 +1841,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:44:05 GMT", + "Date": "Fri, 23 Sep 2022 15:28:39 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-159e798bd7a895078e6b1ebe3ed8f5e3-697dd7d1243395ac-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-a661fb67bd8192897cf1ec33024b8871-0e4cb95fb50576a1-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "aaa53cff-9323-4ba7-8dcb-9392c5153684", - "x-ms-ratelimit-remaining-subscription-reads": "11886", + "x-ms-correlation-request-id": "11448ca2-e187-4ddb-b78a-8748a83697e7", + "x-ms-ratelimit-remaining-subscription-reads": "11879", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194405Z:aaa53cff-9323-4ba7-8dcb-9392c5153684", - "x-request-time": "0.081" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152839Z:11448ca2-e187-4ddb-b78a-8748a83697e7", + "x-request-time": "0.107" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -1869,17 +1873,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -1893,7 +1897,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1901,21 +1905,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:44:06 GMT", + "Date": "Fri, 23 Sep 2022 15:28:40 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-5d2e06b40899bdf074671615baa0b837-38e47b58edfee4c7-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-f324c0897ab7b07b714996011b6d60ed-9b6996b2015386b5-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "875a4ff2-d54f-4d14-9725-d4286ada4895", - "x-ms-ratelimit-remaining-subscription-writes": "1153", + "x-ms-correlation-request-id": "bc642288-e0cc-41b8-ad7f-6ab9c2946aa5", + "x-ms-ratelimit-remaining-subscription-writes": "1150", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194406Z:875a4ff2-d54f-4d14-9725-d4286ada4895", - "x-request-time": "0.106" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152840Z:bc642288-e0cc-41b8-ad7f-6ab9c2946aa5", + "x-request-time": "0.125" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1923,15 +1927,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:44:05 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:28:43 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -1940,9 +1944,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:44:05 GMT", - "ETag": "\u00220x8DA975B4CC57610\u0022", - "Last-Modified": "Thu, 15 Sep 2022 20:46:01 GMT", + "Date": "Fri, 23 Sep 2022 15:28:41 GMT", + "ETag": "\u00220x8DA9D76EE2580A0\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:18:55 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1951,32 +1955,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 20:46:01 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:18:53 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "f0648f42-ca3c-4aee-9d9e-f2fe26dc4430", + "x-ms-meta-name": "000000000000000000000", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/python/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/python/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:44:05 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:28:43 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:44:05 GMT", + "Date": "Fri, 23 Sep 2022 15:28:41 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1984,12 +1988,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -1997,7 +2001,7 @@ "Connection": "keep-alive", "Content-Length": "295", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -2007,7 +2011,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python" } }, "StatusCode": 200, @@ -2015,27 +2019,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:44:06 GMT", + "Date": "Fri, 23 Sep 2022 15:28:42 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-6efa0f67f8b1e2bc79be6e5537907c67-fbc6fa0116f1ec08-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-e12789822248e29bc21e287c826b8ec1-ca14c45100d3e11a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7dba3271-65e0-4d20-a7a2-672b4b878e8d", - "x-ms-ratelimit-remaining-subscription-writes": "1117", + "x-ms-correlation-request-id": "b6a7fd03-718f-4552-a4b1-2930f3af8222", + "x-ms-ratelimit-remaining-subscription-writes": "1110", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194406Z:7dba3271-65e0-4d20-a7a2-672b4b878e8d", - "x-request-time": "0.052" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152842Z:b6a7fd03-718f-4552-a4b1-2930f3af8222", + "x-request-time": "0.071" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -2047,14 +2051,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python" }, "systemData": { - "createdAt": "2022-09-15T20:46:01.4252338\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:18:57.5027157\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T19:44:06.4264738\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:28:42.2897248\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -2066,9 +2070,9 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1018", + "Content-Length": "1003", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -2078,7 +2082,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo ${{inputs.component_in_number}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "tags": {}, @@ -2102,26 +2106,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1868", + "Content-Length": "1851", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:44:07 GMT", + "Date": "Fri, 23 Sep 2022 15:28:43 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-9dec527b3986d86115e6686dc3e72a4e-6c093b0ecc6dd3d8-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-7fdadab88ad7813e5ab8668c0e9ce028-c3c825b31768782d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0a093bb3-291a-41b6-a2ad-b35802cb04e2", - "x-ms-ratelimit-remaining-subscription-writes": "1116", + "x-ms-correlation-request-id": "294ba24a-f47c-4a71-954e-3920a190ef9c", + "x-ms-ratelimit-remaining-subscription-writes": "1109", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194408Z:0a093bb3-291a-41b6-a2ad-b35802cb04e2", - "x-request-time": "0.372" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152843Z:294ba24a-f47c-4a71-954e-3920a190ef9c", + "x-request-time": "0.243" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/3f34f291-9210-450b-bad0-1e8786750ea4", - "name": "3f34f291-9210-450b-bad0-1e8786750ea4", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/23fabbbc-7a9c-447d-8f26-537bcd1f7746", + "name": "23fabbbc-7a9c-447d-8f26-537bcd1f7746", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -2131,7 +2135,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "3f34f291-9210-450b-bad0-1e8786750ea4", + "version": "23fabbbc-7a9c-447d-8f26-537bcd1f7746", "display_name": "hello_world_component_inline_with_schema", "is_deterministic": "True", "type": "command", @@ -2143,7 +2147,7 @@ "description": "Am integer" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -2153,25 +2157,25 @@ } }, "systemData": { - "createdAt": "2022-09-16T03:13:38.804565\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:20.462934\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T03:13:38.9726572\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:20:20.6095525\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_560644569293?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_395444527958?api-version=2022-06-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "2171", + "Content-Length": "2207", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -2182,7 +2186,7 @@ "owner": "sdkteam" }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", - "displayName": "test_560644569293", + "displayName": "test_395444527958", "experimentName": "azure-ai-ml", "isArchived": false, "jobType": "Pipeline", @@ -2214,8 +2218,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/06326f13-2bca-4306-b158-17caed068b45" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/aa9ad94f-599e-49fa-8459-555f66a4142e" }, "hello_world_component_inline_with_schema": { "resources": null, @@ -2234,8 +2239,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/3f34f291-9210-450b-bad0-1e8786750ea4" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/23fabbbc-7a9c-447d-8f26-537bcd1f7746" } }, "outputs": {}, @@ -2247,26 +2253,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4458", + "Content-Length": "4505", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:44:12 GMT", + "Date": "Fri, 23 Sep 2022 15:28:48 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_560644569293?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_395444527958?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-2e44002e8981c06d360ac929191c1e84-c95fab0da6b76c03-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-782f4ac3cb304523fd5bdbe0dcf48ebe-c3dffc153b6df422-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dcf780ce-a933-4200-9774-fb1dbf874655", - "x-ms-ratelimit-remaining-subscription-writes": "1115", + "x-ms-correlation-request-id": "65b11e4d-df52-4c83-8311-39ad8ac1b11a", + "x-ms-ratelimit-remaining-subscription-writes": "1108", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194412Z:dcf780ce-a933-4200-9774-fb1dbf874655", - "x-request-time": "2.723" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152849Z:65b11e4d-df52-4c83-8311-39ad8ac1b11a", + "x-request-time": "2.976" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_560644569293", - "name": "test_560644569293", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_395444527958", + "name": "test_395444527958", "type": "Microsoft.MachineLearningServices/workspaces/jobs", "properties": { "description": "The hello world pipeline job with inline components", @@ -2286,14 +2292,14 @@ "azureml.defaultDataStoreName": "workspaceblobstore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_560644569293", + "displayName": "test_395444527958", "status": "Preparing", "experimentName": "azure-ai-ml", "services": { "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null @@ -2301,7 +2307,7 @@ "Studio": { "jobServiceType": "Studio", "port": null, - "endpoint": "https://ml.azure.com/runs/test_560644569293?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "endpoint": "https://ml.azure.com/runs/test_395444527958?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, "properties": null @@ -2333,8 +2339,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/06326f13-2bca-4306-b158-17caed068b45" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/aa9ad94f-599e-49fa-8459-555f66a4142e" }, "hello_world_component_inline_with_schema": { "resources": null, @@ -2353,8 +2360,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/3f34f291-9210-450b-bad0-1e8786750ea4" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/23fabbbc-7a9c-447d-8f26-537bcd1f7746" } }, "inputs": { @@ -2373,15 +2381,15 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-16T19:44:12.1452349\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:28:48.7460024\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } } ], "Variables": { - "job_name_1": "test_894405595824", - "job_name_2": "test_560644569293" + "job_name_1": "test_85146748442", + "job_name_2": "test_395444527958" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_child_run_download.json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_child_run_download.json index ad93d62f6dc7..177f611c78e0 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_child_run_download.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_child_run_download.json @@ -1,150 +1,5699 @@ { "Entries": [ { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/helloworld_pipeline_job_quick_with_output_2022W37_test_pipeline_job_child_run_download?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download?api-version=2022-06-01-preview", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, + "StatusCode": 404, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1473", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:31:55 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-eastus2-02", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "10944967-7861-48c1-89a4-360a7f08a3a7", + "x-ms-ratelimit-remaining-subscription-reads": "11850", + "x-ms-response-type": "error", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153155Z:10944967-7861-48c1-89a4-360a7f08a3a7", + "x-request-time": "0.036" + }, + "ResponseBody": { + "error": { + "code": "UserError", + "message": "Job helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download not found.", + "details": [], + "additionalInfo": [ + { + "type": "ComponentName", + "info": { + "value": "managementfrontend" + } + }, + { + "type": "Correlation", + "info": { + "value": { + "operation": "545fa08b97b05e0265cf3c1549fa5ec4", + "request": "6c616eb8650ef290" + } + } + }, + { + "type": "Environment", + "info": { + "value": "eastus2" + } + }, + { + "type": "Location", + "info": { + "value": "eastus2" + } + }, + { + "type": "Time", + "info": { + "value": "2022-09-23T15:31:55.3952168\u002B00:00" + } + }, + { + "type": "InnerError", + "info": { + "value": { + "code": "NotFound", + "innerError": { + "code": "JobNotFound", + "innerError": null + } + } + } + }, + { + "type": "MessageFormat", + "info": { + "value": "Job {jobId} not found." + } + }, + { + "type": "MessageParameters", + "info": { + "value": { + "jobId": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download" + } + } + } + ] + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster?api-version=2022-01-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:31:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-4979ecae3ed20c9c5b465771e7ee5b96-8b59d331ee2c2c03-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-eastus2-02", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "1d787d0b-6039-435d-ba0f-a30f5b1a4caf", + "x-ms-ratelimit-remaining-subscription-reads": "11849", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153159Z:1d787d0b-6039-435d-ba0f-a30f5b1a4caf", + "x-request-time": "0.034" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", + "name": "cpu-cluster", + "type": "Microsoft.MachineLearningServices/workspaces/computes", + "location": "eastus2", + "tags": {}, + "properties": { + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", + "disableLocalAuth": false, + "description": null, + "resourceId": null, + "computeType": "AmlCompute", + "computeLocation": "eastus2", + "provisioningState": "Succeeded", + "provisioningErrors": null, + "isAttachedCompute": false, + "properties": { + "vmSize": "STANDARD_DS2_V2", + "vmPriority": "Dedicated", + "scaleSettings": { + "maxNodeCount": 4, + "minNodeCount": 0, + "nodeIdleTimeBeforeScaleDown": "PT2M" + }, + "subnet": null, + "currentNodeCount": 4, + "targetNodeCount": 3, + "nodeStateCounts": { + "preparingNodeCount": 0, + "runningNodeCount": 2, + "idleNodeCount": 2, + "unusableNodeCount": 0, + "leavingNodeCount": 0, + "preemptedNodeCount": 0 + }, + "allocationState": "Resizing", + "allocationStateTransitionTime": "2022-09-23T15:31:36.126\u002B00:00", + "errors": null, + "remoteLoginPortPublicAccess": "Enabled", + "osType": "Linux", + "virtualMachineImage": null, + "isolatedNetwork": false, + "propertyBag": {} + } + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2/mfeOperationResults/jc:e950f876-7257-4cf3-99a5-ff66812ac44c:helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_download?api-version=2022-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Fri, 23 Sep 2022 15:32:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-c89c8da5eddd13f724bebb901978175d-fce74c9e20c38a55-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-aml-cluster": "vienna-eastus2-02", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "8fd560e0-78f8-4d69-817d-3345a984ec8c", + "x-ms-ratelimit-remaining-subscription-reads": "11848", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153200Z:8fd560e0-78f8-4d69-817d-3345a984ec8c", + "x-request-time": "0.027" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster?api-version=2022-01-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:32:00 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-27ae7f39072d72a8f990dbd09333f7f0-599d97cf8fe28951-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-eastus2-02", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "697b7ae7-36fa-4493-a65c-f6d9df3cf595", + "x-ms-ratelimit-remaining-subscription-reads": "11847", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153201Z:697b7ae7-36fa-4493-a65c-f6d9df3cf595", + "x-request-time": "0.057" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", + "name": "cpu-cluster", + "type": "Microsoft.MachineLearningServices/workspaces/computes", + "location": "eastus2", + "tags": {}, + "properties": { + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", + "disableLocalAuth": false, + "description": null, + "resourceId": null, + "computeType": "AmlCompute", + "computeLocation": "eastus2", + "provisioningState": "Succeeded", + "provisioningErrors": null, + "isAttachedCompute": false, + "properties": { + "vmSize": "STANDARD_DS2_V2", + "vmPriority": "Dedicated", + "scaleSettings": { + "maxNodeCount": 4, + "minNodeCount": 0, + "nodeIdleTimeBeforeScaleDown": "PT2M" + }, + "subnet": null, + "currentNodeCount": 4, + "targetNodeCount": 3, + "nodeStateCounts": { + "preparingNodeCount": 0, + "runningNodeCount": 2, + "idleNodeCount": 2, + "unusableNodeCount": 0, + "leavingNodeCount": 0, + "preemptedNodeCount": 0 + }, + "allocationState": "Resizing", + "allocationStateTransitionTime": "2022-09-23T15:31:36.126\u002B00:00", + "errors": null, + "remoteLoginPortPublicAccess": "Enabled", + "osType": "Linux", + "virtualMachineImage": null, + "isolatedNetwork": false, + "propertyBag": {} + } + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster?api-version=2022-01-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:32:01 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-b844d1471b58367e37a47b5121c574bf-65759d4ec23f74f8-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-eastus2-02", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "eb03d267-dc64-4783-9acb-fa68cbbb0977", + "x-ms-ratelimit-remaining-subscription-reads": "11846", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153201Z:eb03d267-dc64-4783-9acb-fa68cbbb0977", + "x-request-time": "0.045" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", + "name": "cpu-cluster", + "type": "Microsoft.MachineLearningServices/workspaces/computes", + "location": "eastus2", + "tags": {}, + "properties": { + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", + "disableLocalAuth": false, + "description": null, + "resourceId": null, + "computeType": "AmlCompute", + "computeLocation": "eastus2", + "provisioningState": "Succeeded", + "provisioningErrors": null, + "isAttachedCompute": false, + "properties": { + "vmSize": "STANDARD_DS2_V2", + "vmPriority": "Dedicated", + "scaleSettings": { + "maxNodeCount": 4, + "minNodeCount": 0, + "nodeIdleTimeBeforeScaleDown": "PT2M" + }, + "subnet": null, + "currentNodeCount": 4, + "targetNodeCount": 3, + "nodeStateCounts": { + "preparingNodeCount": 0, + "runningNodeCount": 2, + "idleNodeCount": 2, + "unusableNodeCount": 0, + "leavingNodeCount": 0, + "preemptedNodeCount": 0 + }, + "allocationState": "Resizing", + "allocationStateTransitionTime": "2022-09-23T15:31:36.126\u002B00:00", + "errors": null, + "remoteLoginPortPublicAccess": "Enabled", + "osType": "Linux", + "virtualMachineImage": null, + "isolatedNetwork": false, + "propertyBag": {} + } + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:32:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-eadd3c3f707183a61d287e144672325a-c63efabbfb8835f2-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-eastus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e07ee170-6746-4a5d-9eaa-4a28b3103d5d", + "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153205Z:e07ee170-6746-4a5d-9eaa-4a28b3103d5d", + "x-request-time": "0.089" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", + "name": "workspaceblobstore", + "type": "Microsoft.MachineLearningServices/workspaces/datastores", + "properties": { + "description": null, + "tags": null, + "properties": null, + "isDefault": true, + "credentials": { + "credentialsType": "AccountKey" + }, + "datastoreType": "AzureBlob", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", + "endpoint": "core.windows.net", + "protocol": "https", + "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" + }, + "systemData": { + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", + "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", + "createdByType": "Application", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", + "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", + "lastModifiedByType": "Application" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore/listSecrets?api-version=2022-05-01", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "0", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:32:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-0ac7b1a7b5d86bdcd641b0591f937800-46bdf82c66d0c350-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-eastus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "81737521-9f76-490a-bfa4-2b29afd10706", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153206Z:81737521-9f76-490a-bfa4-2b29afd10706", + "x-request-time": "0.081" + }, + "ResponseBody": { + "secretsType": "AccountKey", + "key": "dGhpcyBpcyBmYWtlIGtleQ==" + } + }, + { + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestMethod": "HEAD", + "RequestHeaders": { + "Accept": "application/xml", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:32:08 GMT", + "x-ms-version": "2021-08-06" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Accept-Ranges": "bytes", + "Content-Length": "35", + "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", + "Content-Type": "application/octet-stream", + "Date": "Fri, 23 Sep 2022 15:32:06 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", + "Server": [ + "Windows-Azure-Blob/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": "Origin", + "x-ms-access-tier": "Hot", + "x-ms-access-tier-inferred": "true", + "x-ms-blob-type": "BlockBlob", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", + "x-ms-lease-state": "available", + "x-ms-lease-status": "unlocked", + "x-ms-meta-name": "000000000000000000000", + "x-ms-meta-upload_status": "completed", + "x-ms-meta-version": "1", + "x-ms-server-encrypted": "true", + "x-ms-version": "2021-08-06" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestMethod": "HEAD", + "RequestHeaders": { + "Accept": "application/xml", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:32:09 GMT", + "x-ms-version": "2021-08-06" + }, + "RequestBody": null, + "StatusCode": 404, + "ResponseHeaders": { + "Date": "Fri, 23 Sep 2022 15:32:06 GMT", + "Server": [ + "Windows-Azure-Blob/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Transfer-Encoding": "chunked", + "Vary": "Origin", + "x-ms-error-code": "BlobNotFound", + "x-ms-version": "2021-08-06" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1?api-version=2022-05-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "288", + "Content-Type": "application/json", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": { + "properties": { + "properties": { + "hash_sha256": "0000000000000", + "hash_version": "0000000000000" + }, + "isAnonymous": true, + "isArchived": false, + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:32:08 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-73c347750578bd79b74e90cd342318ac-8a465617dc523449-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-eastus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c2c42736-140b-40ce-afce-bd4fd777f64b", + "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153208Z:c2c42736-140b-40ce-afce-bd4fd777f64b", + "x-request-time": "0.072" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", + "name": "1", + "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", + "properties": { + "description": null, + "tags": {}, + "properties": { + "hash_sha256": "0000000000000", + "hash_version": "0000000000000" + }, + "isArchived": false, + "isAnonymous": false, + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" + }, + "systemData": { + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T15:32:08.6306922\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", + "lastModifiedByType": "User" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "1017", + "Content-Type": "application/json", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": { + "properties": { + "description": "Simple job that writes hello world to file.", + "properties": {}, + "tags": {}, + "isAnonymous": true, + "isArchived": false, + "componentSpec": { + "command": "echo \u0022Hello World\u0022 \u003E ${{outputs.component_out_path_1}}/helloworld.txt", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", + "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", + "name": "azureml_anonymous", + "description": "Simple job that writes hello world to file.", + "tags": {}, + "version": "000000000000000000000", + "display_name": "hello_world_inline_commandjob_1", + "is_deterministic": true, + "inputs": {}, + "outputs": { + "component_out_path_1": { + "type": "uri_folder", + "mode": "mount" + } + }, + "type": "command", + "_source": "YAML.JOB" + } + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1825", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:32:09 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-4fb9db202b54e6fcb7dfeb8239993004-89493e5a13d4c2fa-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-aml-cluster": "vienna-eastus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "ac6aad24-5f25-4b14-a1b2-910e9349c4b4", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153210Z:ac6aad24-5f25-4b14-a1b2-910e9349c4b4", + "x-request-time": "0.276" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1bf47d41-9ae3-4f6c-ad73-9fb7b939f82e", + "name": "1bf47d41-9ae3-4f6c-ad73-9fb7b939f82e", + "type": "Microsoft.MachineLearningServices/workspaces/components/versions", + "properties": { + "description": null, + "tags": {}, + "properties": {}, + "isArchived": false, + "isAnonymous": true, + "componentSpec": { + "name": "azureml_anonymous", + "version": "1bf47d41-9ae3-4f6c-ad73-9fb7b939f82e", + "display_name": "hello_world_inline_commandjob_1", + "is_deterministic": "True", + "type": "command", + "description": "Simple job that writes hello world to file.", + "outputs": { + "component_out_path_1": { + "type": "uri_folder" + } + }, + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", + "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", + "resources": { + "instance_count": "1" + }, + "command": "echo \u0022Hello World\u0022 \u003E ${{outputs.component_out_path_1}}/helloworld.txt", + "$schema": "https://componentsdk.azureedge.net/jsonschema/CommandComponent.json" + } + }, + "systemData": { + "createdAt": "2022-09-23T15:30:02.6930477\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T15:30:02.8548403\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", + "lastModifiedByType": "User" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:32:10 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-1011da83aa9e7a193929929bba2c171d-010b03bd2045155d-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-eastus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "6c950dd0-4995-414f-8d76-69f914181dde", + "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153211Z:6c950dd0-4995-414f-8d76-69f914181dde", + "x-request-time": "0.103" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", + "name": "workspaceblobstore", + "type": "Microsoft.MachineLearningServices/workspaces/datastores", + "properties": { + "description": null, + "tags": null, + "properties": null, + "isDefault": true, + "credentials": { + "credentialsType": "AccountKey" + }, + "datastoreType": "AzureBlob", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", + "endpoint": "core.windows.net", + "protocol": "https", + "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" + }, + "systemData": { + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", + "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", + "createdByType": "Application", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", + "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", + "lastModifiedByType": "Application" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore/listSecrets?api-version=2022-05-01", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "0", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:32:11 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-3b401f3bbf6411cd4a30080c363d9bab-68c9348c80f14cd6-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-eastus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "98cef78b-e185-4226-8647-58eea8fe0e53", + "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153211Z:98cef78b-e185-4226-8647-58eea8fe0e53", + "x-request-time": "0.163" + }, + "ResponseBody": { + "secretsType": "AccountKey", + "key": "dGhpcyBpcyBmYWtlIGtleQ==" + } + }, + { + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestMethod": "HEAD", + "RequestHeaders": { + "Accept": "application/xml", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:32:14 GMT", + "x-ms-version": "2021-08-06" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Accept-Ranges": "bytes", + "Content-Length": "35", + "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", + "Content-Type": "application/octet-stream", + "Date": "Fri, 23 Sep 2022 15:32:11 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", + "Server": [ + "Windows-Azure-Blob/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": "Origin", + "x-ms-access-tier": "Hot", + "x-ms-access-tier-inferred": "true", + "x-ms-blob-type": "BlockBlob", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", + "x-ms-lease-state": "available", + "x-ms-lease-status": "unlocked", + "x-ms-meta-name": "000000000000000000000", + "x-ms-meta-upload_status": "completed", + "x-ms-meta-version": "1", + "x-ms-server-encrypted": "true", + "x-ms-version": "2021-08-06" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestMethod": "HEAD", + "RequestHeaders": { + "Accept": "application/xml", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:32:14 GMT", + "x-ms-version": "2021-08-06" + }, + "RequestBody": null, + "StatusCode": 404, + "ResponseHeaders": { + "Date": "Fri, 23 Sep 2022 15:32:11 GMT", + "Server": [ + "Windows-Azure-Blob/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Transfer-Encoding": "chunked", + "Vary": "Origin", + "x-ms-error-code": "BlobNotFound", + "x-ms-version": "2021-08-06" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1?api-version=2022-05-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "288", + "Content-Type": "application/json", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": { + "properties": { + "properties": { + "hash_sha256": "0000000000000", + "hash_version": "0000000000000" + }, + "isAnonymous": true, + "isArchived": false, + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:32:12 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-78477d13447aad53c06b270586f8a7c6-a8ae51b6aaf145d1-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-eastus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "8c6e6933-4faf-4af2-af04-eeb6b77d8633", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153213Z:8c6e6933-4faf-4af2-af04-eeb6b77d8633", + "x-request-time": "0.082" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", + "name": "1", + "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", + "properties": { + "description": null, + "tags": {}, + "properties": { + "hash_sha256": "0000000000000", + "hash_version": "0000000000000" + }, + "isArchived": false, + "isAnonymous": false, + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" + }, + "systemData": { + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T15:32:13.1610668\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", + "lastModifiedByType": "User" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "1000", + "Content-Type": "application/json", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": { + "properties": { + "description": "Simple job that writes hello world to file.", + "properties": {}, + "tags": {}, + "isAnonymous": true, + "isArchived": false, + "componentSpec": { + "command": "echo \u0022Hello World\u0022 \u003E ${{outputs.component_out_path_2}}/helloworld.txt", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", + "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", + "name": "azureml_anonymous", + "description": "Simple job that writes hello world to file.", + "tags": {}, + "version": "000000000000000000000", + "display_name": "hello_world_inline_commandjob_2", + "is_deterministic": true, + "inputs": {}, + "outputs": { + "component_out_path_2": { + "type": "uri_folder" + } + }, + "type": "command", + "_source": "YAML.JOB" + } + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1825", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:32:13 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-14244d80771b219792e84abe1849639b-c37ae45628d39be5-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-aml-cluster": "vienna-eastus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "f3f9b601-4e57-4901-8063-f89132d4599d", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153214Z:f3f9b601-4e57-4901-8063-f89132d4599d", + "x-request-time": "0.290" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/15c4400d-cf29-4615-b2bf-cb856311b395", + "name": "15c4400d-cf29-4615-b2bf-cb856311b395", + "type": "Microsoft.MachineLearningServices/workspaces/components/versions", + "properties": { + "description": null, + "tags": {}, + "properties": {}, + "isArchived": false, + "isAnonymous": true, + "componentSpec": { + "name": "azureml_anonymous", + "version": "15c4400d-cf29-4615-b2bf-cb856311b395", + "display_name": "hello_world_inline_commandjob_2", + "is_deterministic": "True", + "type": "command", + "description": "Simple job that writes hello world to file.", + "outputs": { + "component_out_path_2": { + "type": "uri_folder" + } + }, + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", + "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", + "resources": { + "instance_count": "1" + }, + "command": "echo \u0022Hello World\u0022 \u003E ${{outputs.component_out_path_2}}/helloworld.txt", + "$schema": "https://componentsdk.azureedge.net/jsonschema/CommandComponent.json" + } + }, + "systemData": { + "createdAt": "2022-09-23T15:30:07.5245299\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T15:30:07.6524186\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", + "lastModifiedByType": "User" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download?api-version=2022-06-01-preview", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "2121", + "Content-Type": "application/json", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": { + "properties": { + "description": "The hello world pipeline job with inline command job having inputs", + "properties": {}, + "tags": { + "tag": "tagvalue", + "owner": "sdkteam" + }, + "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", + "displayName": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "experimentName": "azure-ai-ml", + "isArchived": false, + "jobType": "Pipeline", + "inputs": {}, + "jobs": { + "hello_world_inline_commandjob_1": { + "resources": null, + "distribution": null, + "limits": null, + "environment_variables": {}, + "name": "hello_world_inline_commandjob_1", + "type": "command", + "display_name": null, + "tags": {}, + "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", + "inputs": {}, + "outputs": { + "component_out_path_1": { + "value": "${{parent.outputs.job_out_path_1}}", + "type": "literal" + } + }, + "properties": {}, + "_source": "YAML.JOB", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1bf47d41-9ae3-4f6c-ad73-9fb7b939f82e" + }, + "hello_world_inline_commandjob_2": { + "resources": null, + "distribution": null, + "limits": null, + "environment_variables": {}, + "name": "hello_world_inline_commandjob_2", + "type": "command", + "display_name": null, + "tags": {}, + "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", + "inputs": {}, + "outputs": {}, + "properties": {}, + "_source": "YAML.JOB", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/15c4400d-cf29-4615-b2bf-cb856311b395" + } + }, + "outputs": { + "job_out_path_1": { + "mode": "ReadWriteMount", + "jobOutputType": "uri_folder" + } + }, + "settings": { + "_source": "YAML.JOB" + } + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "4474", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:32:19 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download?api-version=2022-06-01-preview", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-2c5072d04c06b88accfc428590a4a03d-b26f2b5c8773c33e-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-aml-cluster": "vienna-eastus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a38edcfc-bfd6-4fd9-9f9a-f012619044ef", + "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153220Z:a38edcfc-bfd6-4fd9-9f9a-f012619044ef", + "x-request-time": "3.029" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "name": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "type": "Microsoft.MachineLearningServices/workspaces/jobs", + "properties": { + "description": "The hello world pipeline job with inline command job having inputs", + "tags": { + "tag": "tagvalue", + "owner": "sdkteam" + }, + "properties": { + "azureml.DevPlatv2": "true", + "azureml.runsource": "azureml.PipelineRun", + "runSource": "MFE", + "runType": "HTTP", + "azureml.parameters": "{}", + "azureml.continue_on_step_failure": "False", + "azureml.continue_on_failed_optional_input": "True", + "azureml.defaultComputeName": "cpu-cluster", + "azureml.defaultDataStoreName": "workspaceblobstore", + "azureml.pipelineComponent": "pipelinerun" + }, + "displayName": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "status": "Preparing", + "experimentName": "azure-ai-ml", + "services": { + "Tracking": { + "jobServiceType": "Tracking", + "port": null, + "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "status": null, + "errorMessage": null, + "properties": null + }, + "Studio": { + "jobServiceType": "Studio", + "port": null, + "endpoint": "https://ml.azure.com/runs/helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "status": null, + "errorMessage": null, + "properties": null + } + }, + "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", + "isArchived": false, + "identity": null, + "componentId": null, + "jobType": "Pipeline", + "settings": { + "_source": "YAML.JOB" + }, + "jobs": { + "hello_world_inline_commandjob_1": { + "resources": null, + "distribution": null, + "limits": null, + "environment_variables": {}, + "name": "hello_world_inline_commandjob_1", + "type": "command", + "display_name": null, + "tags": {}, + "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", + "inputs": {}, + "outputs": { + "component_out_path_1": { + "value": "${{parent.outputs.job_out_path_1}}", + "type": "literal" + } + }, + "properties": {}, + "_source": "YAML.JOB", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1bf47d41-9ae3-4f6c-ad73-9fb7b939f82e" + }, + "hello_world_inline_commandjob_2": { + "resources": null, + "distribution": null, + "limits": null, + "environment_variables": {}, + "name": "hello_world_inline_commandjob_2", + "type": "command", + "display_name": null, + "tags": {}, + "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", + "inputs": {}, + "outputs": {}, + "properties": {}, + "_source": "YAML.JOB", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/15c4400d-cf29-4615-b2bf-cb856311b395" + } + }, + "inputs": {}, + "outputs": { + "job_out_path_1": { + "description": null, + "uri": null, + "mode": "ReadWriteMount", + "jobOutputType": "uri_folder" + } + }, + "sourceJobId": null + }, + "systemData": { + "createdAt": "2022-09-23T15:32:19.5871788\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download?api-version=2022-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:32:24 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-169455bfd99d9ec6adf3349c57efa501-f91a6776deab5ce6-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-eastus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e964ce99-acc2-4f70-9709-3511532ba75e", + "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153225Z:e964ce99-acc2-4f70-9709-3511532ba75e", + "x-request-time": "0.077" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "name": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "type": "Microsoft.MachineLearningServices/workspaces/jobs", + "properties": { + "description": "The hello world pipeline job with inline command job having inputs", + "tags": { + "tag": "tagvalue", + "owner": "sdkteam" + }, + "properties": { + "azureml.DevPlatv2": "true", + "azureml.runsource": "azureml.PipelineRun", + "runSource": "MFE", + "runType": "HTTP", + "azureml.parameters": "{}", + "azureml.continue_on_step_failure": "False", + "azureml.continue_on_failed_optional_input": "True", + "azureml.defaultComputeName": "cpu-cluster", + "azureml.defaultDataStoreName": "workspaceblobstore", + "azureml.pipelineComponent": "pipelinerun" + }, + "displayName": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "status": "Running", + "experimentName": "azure-ai-ml", + "services": { + "Tracking": { + "jobServiceType": "Tracking", + "port": null, + "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "status": null, + "errorMessage": null, + "properties": null + }, + "Studio": { + "jobServiceType": "Studio", + "port": null, + "endpoint": "https://ml.azure.com/runs/helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "status": null, + "errorMessage": null, + "properties": null + } + }, + "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", + "isArchived": false, + "identity": null, + "componentId": null, + "jobType": "Pipeline", + "settings": { + "_source": "YAML.JOB" + }, + "jobs": { + "hello_world_inline_commandjob_1": { + "resources": null, + "distribution": null, + "limits": null, + "environment_variables": {}, + "name": "hello_world_inline_commandjob_1", + "type": "command", + "display_name": null, + "tags": {}, + "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", + "inputs": {}, + "outputs": { + "component_out_path_1": { + "value": "${{parent.outputs.job_out_path_1}}", + "type": "literal" + } + }, + "properties": {}, + "_source": "YAML.JOB", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1bf47d41-9ae3-4f6c-ad73-9fb7b939f82e" + }, + "hello_world_inline_commandjob_2": { + "resources": null, + "distribution": null, + "limits": null, + "environment_variables": {}, + "name": "hello_world_inline_commandjob_2", + "type": "command", + "display_name": null, + "tags": {}, + "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", + "inputs": {}, + "outputs": {}, + "properties": {}, + "_source": "YAML.JOB", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/15c4400d-cf29-4615-b2bf-cb856311b395" + } + }, + "inputs": {}, + "outputs": { + "job_out_path_1": { + "description": null, + "uri": null, + "mode": "ReadWriteMount", + "jobOutputType": "uri_folder" + } + }, + "sourceJobId": null + }, + "systemData": { + "createdAt": "2022-09-23T15:32:19.5871788\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download?api-version=2022-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:32:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-29b77fe87a4fc2254a1fede7c9fb4441-20f74b8d16ed0273-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-eastus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "0148cabe-5f2f-4cee-bb13-d18eb86a1247", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153230Z:0148cabe-5f2f-4cee-bb13-d18eb86a1247", + "x-request-time": "0.037" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "name": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "type": "Microsoft.MachineLearningServices/workspaces/jobs", + "properties": { + "description": "The hello world pipeline job with inline command job having inputs", + "tags": { + "tag": "tagvalue", + "owner": "sdkteam" + }, + "properties": { + "azureml.DevPlatv2": "true", + "azureml.runsource": "azureml.PipelineRun", + "runSource": "MFE", + "runType": "HTTP", + "azureml.parameters": "{}", + "azureml.continue_on_step_failure": "False", + "azureml.continue_on_failed_optional_input": "True", + "azureml.defaultComputeName": "cpu-cluster", + "azureml.defaultDataStoreName": "workspaceblobstore", + "azureml.pipelineComponent": "pipelinerun" + }, + "displayName": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "status": "Running", + "experimentName": "azure-ai-ml", + "services": { + "Tracking": { + "jobServiceType": "Tracking", + "port": null, + "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "status": null, + "errorMessage": null, + "properties": null + }, + "Studio": { + "jobServiceType": "Studio", + "port": null, + "endpoint": "https://ml.azure.com/runs/helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "status": null, + "errorMessage": null, + "properties": null + } + }, + "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", + "isArchived": false, + "identity": null, + "componentId": null, + "jobType": "Pipeline", + "settings": { + "_source": "YAML.JOB" + }, + "jobs": { + "hello_world_inline_commandjob_1": { + "resources": null, + "distribution": null, + "limits": null, + "environment_variables": {}, + "name": "hello_world_inline_commandjob_1", + "type": "command", + "display_name": null, + "tags": {}, + "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", + "inputs": {}, + "outputs": { + "component_out_path_1": { + "value": "${{parent.outputs.job_out_path_1}}", + "type": "literal" + } + }, + "properties": {}, + "_source": "YAML.JOB", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1bf47d41-9ae3-4f6c-ad73-9fb7b939f82e" + }, + "hello_world_inline_commandjob_2": { + "resources": null, + "distribution": null, + "limits": null, + "environment_variables": {}, + "name": "hello_world_inline_commandjob_2", + "type": "command", + "display_name": null, + "tags": {}, + "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", + "inputs": {}, + "outputs": {}, + "properties": {}, + "_source": "YAML.JOB", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/15c4400d-cf29-4615-b2bf-cb856311b395" + } + }, + "inputs": {}, + "outputs": { + "job_out_path_1": { + "description": null, + "uri": null, + "mode": "ReadWriteMount", + "jobOutputType": "uri_folder" + } + }, + "sourceJobId": null + }, + "systemData": { + "createdAt": "2022-09-23T15:32:19.5871788\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download?api-version=2022-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:32:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-eb028b363960d2f3ce99bdbeb69bafde-d0ec194520e39e0c-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-eastus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a216f6d2-fc4a-4b7e-bd31-12bf8b03aa9d", + "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153235Z:a216f6d2-fc4a-4b7e-bd31-12bf8b03aa9d", + "x-request-time": "0.067" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "name": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "type": "Microsoft.MachineLearningServices/workspaces/jobs", + "properties": { + "description": "The hello world pipeline job with inline command job having inputs", + "tags": { + "tag": "tagvalue", + "owner": "sdkteam" + }, + "properties": { + "azureml.DevPlatv2": "true", + "azureml.runsource": "azureml.PipelineRun", + "runSource": "MFE", + "runType": "HTTP", + "azureml.parameters": "{}", + "azureml.continue_on_step_failure": "False", + "azureml.continue_on_failed_optional_input": "True", + "azureml.defaultComputeName": "cpu-cluster", + "azureml.defaultDataStoreName": "workspaceblobstore", + "azureml.pipelineComponent": "pipelinerun" + }, + "displayName": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "status": "Running", + "experimentName": "azure-ai-ml", + "services": { + "Tracking": { + "jobServiceType": "Tracking", + "port": null, + "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "status": null, + "errorMessage": null, + "properties": null + }, + "Studio": { + "jobServiceType": "Studio", + "port": null, + "endpoint": "https://ml.azure.com/runs/helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "status": null, + "errorMessage": null, + "properties": null + } + }, + "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", + "isArchived": false, + "identity": null, + "componentId": null, + "jobType": "Pipeline", + "settings": { + "_source": "YAML.JOB" + }, + "jobs": { + "hello_world_inline_commandjob_1": { + "resources": null, + "distribution": null, + "limits": null, + "environment_variables": {}, + "name": "hello_world_inline_commandjob_1", + "type": "command", + "display_name": null, + "tags": {}, + "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", + "inputs": {}, + "outputs": { + "component_out_path_1": { + "value": "${{parent.outputs.job_out_path_1}}", + "type": "literal" + } + }, + "properties": {}, + "_source": "YAML.JOB", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1bf47d41-9ae3-4f6c-ad73-9fb7b939f82e" + }, + "hello_world_inline_commandjob_2": { + "resources": null, + "distribution": null, + "limits": null, + "environment_variables": {}, + "name": "hello_world_inline_commandjob_2", + "type": "command", + "display_name": null, + "tags": {}, + "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", + "inputs": {}, + "outputs": {}, + "properties": {}, + "_source": "YAML.JOB", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/15c4400d-cf29-4615-b2bf-cb856311b395" + } + }, + "inputs": {}, + "outputs": { + "job_out_path_1": { + "description": null, + "uri": null, + "mode": "ReadWriteMount", + "jobOutputType": "uri_folder" + } + }, + "sourceJobId": null + }, + "systemData": { + "createdAt": "2022-09-23T15:32:19.5871788\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download?api-version=2022-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:32:40 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-685b9369be18c60d229badb2cbae01ec-9f67508cf2faca08-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-eastus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "07fe6ddc-c029-4ad1-9498-22b04ab54b2f", + "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153241Z:07fe6ddc-c029-4ad1-9498-22b04ab54b2f", + "x-request-time": "0.055" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "name": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "type": "Microsoft.MachineLearningServices/workspaces/jobs", + "properties": { + "description": "The hello world pipeline job with inline command job having inputs", + "tags": { + "tag": "tagvalue", + "owner": "sdkteam" + }, + "properties": { + "azureml.DevPlatv2": "true", + "azureml.runsource": "azureml.PipelineRun", + "runSource": "MFE", + "runType": "HTTP", + "azureml.parameters": "{}", + "azureml.continue_on_step_failure": "False", + "azureml.continue_on_failed_optional_input": "True", + "azureml.defaultComputeName": "cpu-cluster", + "azureml.defaultDataStoreName": "workspaceblobstore", + "azureml.pipelineComponent": "pipelinerun" + }, + "displayName": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "status": "Running", + "experimentName": "azure-ai-ml", + "services": { + "Tracking": { + "jobServiceType": "Tracking", + "port": null, + "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "status": null, + "errorMessage": null, + "properties": null + }, + "Studio": { + "jobServiceType": "Studio", + "port": null, + "endpoint": "https://ml.azure.com/runs/helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "status": null, + "errorMessage": null, + "properties": null + } + }, + "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", + "isArchived": false, + "identity": null, + "componentId": null, + "jobType": "Pipeline", + "settings": { + "_source": "YAML.JOB" + }, + "jobs": { + "hello_world_inline_commandjob_1": { + "resources": null, + "distribution": null, + "limits": null, + "environment_variables": {}, + "name": "hello_world_inline_commandjob_1", + "type": "command", + "display_name": null, + "tags": {}, + "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", + "inputs": {}, + "outputs": { + "component_out_path_1": { + "value": "${{parent.outputs.job_out_path_1}}", + "type": "literal" + } + }, + "properties": {}, + "_source": "YAML.JOB", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1bf47d41-9ae3-4f6c-ad73-9fb7b939f82e" + }, + "hello_world_inline_commandjob_2": { + "resources": null, + "distribution": null, + "limits": null, + "environment_variables": {}, + "name": "hello_world_inline_commandjob_2", + "type": "command", + "display_name": null, + "tags": {}, + "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", + "inputs": {}, + "outputs": {}, + "properties": {}, + "_source": "YAML.JOB", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/15c4400d-cf29-4615-b2bf-cb856311b395" + } + }, + "inputs": {}, + "outputs": { + "job_out_path_1": { + "description": null, + "uri": null, + "mode": "ReadWriteMount", + "jobOutputType": "uri_folder" + } + }, + "sourceJobId": null + }, + "systemData": { + "createdAt": "2022-09-23T15:32:19.5871788\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download?api-version=2022-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:32:46 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-9161ecef77421957e34a9058f128dd8c-2c3507169c5fdf67-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-eastus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e43ecff3-ed3b-4a20-9a8c-8e13805b2863", + "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153247Z:e43ecff3-ed3b-4a20-9a8c-8e13805b2863", + "x-request-time": "0.053" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "name": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "type": "Microsoft.MachineLearningServices/workspaces/jobs", + "properties": { + "description": "The hello world pipeline job with inline command job having inputs", + "tags": { + "tag": "tagvalue", + "owner": "sdkteam" + }, + "properties": { + "azureml.DevPlatv2": "true", + "azureml.runsource": "azureml.PipelineRun", + "runSource": "MFE", + "runType": "HTTP", + "azureml.parameters": "{}", + "azureml.continue_on_step_failure": "False", + "azureml.continue_on_failed_optional_input": "True", + "azureml.defaultComputeName": "cpu-cluster", + "azureml.defaultDataStoreName": "workspaceblobstore", + "azureml.pipelineComponent": "pipelinerun" + }, + "displayName": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "status": "Running", + "experimentName": "azure-ai-ml", + "services": { + "Tracking": { + "jobServiceType": "Tracking", + "port": null, + "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "status": null, + "errorMessage": null, + "properties": null + }, + "Studio": { + "jobServiceType": "Studio", + "port": null, + "endpoint": "https://ml.azure.com/runs/helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "status": null, + "errorMessage": null, + "properties": null + } + }, + "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", + "isArchived": false, + "identity": null, + "componentId": null, + "jobType": "Pipeline", + "settings": { + "_source": "YAML.JOB" + }, + "jobs": { + "hello_world_inline_commandjob_1": { + "resources": null, + "distribution": null, + "limits": null, + "environment_variables": {}, + "name": "hello_world_inline_commandjob_1", + "type": "command", + "display_name": null, + "tags": {}, + "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", + "inputs": {}, + "outputs": { + "component_out_path_1": { + "value": "${{parent.outputs.job_out_path_1}}", + "type": "literal" + } + }, + "properties": {}, + "_source": "YAML.JOB", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1bf47d41-9ae3-4f6c-ad73-9fb7b939f82e" + }, + "hello_world_inline_commandjob_2": { + "resources": null, + "distribution": null, + "limits": null, + "environment_variables": {}, + "name": "hello_world_inline_commandjob_2", + "type": "command", + "display_name": null, + "tags": {}, + "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", + "inputs": {}, + "outputs": {}, + "properties": {}, + "_source": "YAML.JOB", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/15c4400d-cf29-4615-b2bf-cb856311b395" + } + }, + "inputs": {}, + "outputs": { + "job_out_path_1": { + "description": null, + "uri": null, + "mode": "ReadWriteMount", + "jobOutputType": "uri_folder" + } + }, + "sourceJobId": null + }, + "systemData": { + "createdAt": "2022-09-23T15:32:19.5871788\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download?api-version=2022-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:32:53 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-6d919e9b96650fce41a994c490c64816-2844c1c6309b8405-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-eastus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "1c61e2b6-db8f-45c4-a2f8-e5cc40c30bfa", + "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153253Z:1c61e2b6-db8f-45c4-a2f8-e5cc40c30bfa", + "x-request-time": "0.039" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "name": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "type": "Microsoft.MachineLearningServices/workspaces/jobs", + "properties": { + "description": "The hello world pipeline job with inline command job having inputs", + "tags": { + "tag": "tagvalue", + "owner": "sdkteam" + }, + "properties": { + "azureml.DevPlatv2": "true", + "azureml.runsource": "azureml.PipelineRun", + "runSource": "MFE", + "runType": "HTTP", + "azureml.parameters": "{}", + "azureml.continue_on_step_failure": "False", + "azureml.continue_on_failed_optional_input": "True", + "azureml.defaultComputeName": "cpu-cluster", + "azureml.defaultDataStoreName": "workspaceblobstore", + "azureml.pipelineComponent": "pipelinerun" + }, + "displayName": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "status": "Running", + "experimentName": "azure-ai-ml", + "services": { + "Tracking": { + "jobServiceType": "Tracking", + "port": null, + "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "status": null, + "errorMessage": null, + "properties": null + }, + "Studio": { + "jobServiceType": "Studio", + "port": null, + "endpoint": "https://ml.azure.com/runs/helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "status": null, + "errorMessage": null, + "properties": null + } + }, + "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", + "isArchived": false, + "identity": null, + "componentId": null, + "jobType": "Pipeline", + "settings": { + "_source": "YAML.JOB" + }, + "jobs": { + "hello_world_inline_commandjob_1": { + "resources": null, + "distribution": null, + "limits": null, + "environment_variables": {}, + "name": "hello_world_inline_commandjob_1", + "type": "command", + "display_name": null, + "tags": {}, + "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", + "inputs": {}, + "outputs": { + "component_out_path_1": { + "value": "${{parent.outputs.job_out_path_1}}", + "type": "literal" + } + }, + "properties": {}, + "_source": "YAML.JOB", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1bf47d41-9ae3-4f6c-ad73-9fb7b939f82e" + }, + "hello_world_inline_commandjob_2": { + "resources": null, + "distribution": null, + "limits": null, + "environment_variables": {}, + "name": "hello_world_inline_commandjob_2", + "type": "command", + "display_name": null, + "tags": {}, + "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", + "inputs": {}, + "outputs": {}, + "properties": {}, + "_source": "YAML.JOB", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/15c4400d-cf29-4615-b2bf-cb856311b395" + } + }, + "inputs": {}, + "outputs": { + "job_out_path_1": { + "description": null, + "uri": null, + "mode": "ReadWriteMount", + "jobOutputType": "uri_folder" + } + }, + "sourceJobId": null + }, + "systemData": { + "createdAt": "2022-09-23T15:32:19.5871788\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download?api-version=2022-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:32:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-3b638cab1a28bfd5bfabdbfdddd30db2-9310e4cdd3ea9bab-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-eastus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "5017250a-b722-4a8c-b6f1-36f77c25614d", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153259Z:5017250a-b722-4a8c-b6f1-36f77c25614d", + "x-request-time": "0.040" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "name": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "type": "Microsoft.MachineLearningServices/workspaces/jobs", + "properties": { + "description": "The hello world pipeline job with inline command job having inputs", + "tags": { + "tag": "tagvalue", + "owner": "sdkteam" + }, + "properties": { + "azureml.DevPlatv2": "true", + "azureml.runsource": "azureml.PipelineRun", + "runSource": "MFE", + "runType": "HTTP", + "azureml.parameters": "{}", + "azureml.continue_on_step_failure": "False", + "azureml.continue_on_failed_optional_input": "True", + "azureml.defaultComputeName": "cpu-cluster", + "azureml.defaultDataStoreName": "workspaceblobstore", + "azureml.pipelineComponent": "pipelinerun" + }, + "displayName": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "status": "Running", + "experimentName": "azure-ai-ml", + "services": { + "Tracking": { + "jobServiceType": "Tracking", + "port": null, + "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "status": null, + "errorMessage": null, + "properties": null + }, + "Studio": { + "jobServiceType": "Studio", + "port": null, + "endpoint": "https://ml.azure.com/runs/helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "status": null, + "errorMessage": null, + "properties": null + } + }, + "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", + "isArchived": false, + "identity": null, + "componentId": null, + "jobType": "Pipeline", + "settings": { + "_source": "YAML.JOB" + }, + "jobs": { + "hello_world_inline_commandjob_1": { + "resources": null, + "distribution": null, + "limits": null, + "environment_variables": {}, + "name": "hello_world_inline_commandjob_1", + "type": "command", + "display_name": null, + "tags": {}, + "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", + "inputs": {}, + "outputs": { + "component_out_path_1": { + "value": "${{parent.outputs.job_out_path_1}}", + "type": "literal" + } + }, + "properties": {}, + "_source": "YAML.JOB", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1bf47d41-9ae3-4f6c-ad73-9fb7b939f82e" + }, + "hello_world_inline_commandjob_2": { + "resources": null, + "distribution": null, + "limits": null, + "environment_variables": {}, + "name": "hello_world_inline_commandjob_2", + "type": "command", + "display_name": null, + "tags": {}, + "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", + "inputs": {}, + "outputs": {}, + "properties": {}, + "_source": "YAML.JOB", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/15c4400d-cf29-4615-b2bf-cb856311b395" + } + }, + "inputs": {}, + "outputs": { + "job_out_path_1": { + "description": null, + "uri": null, + "mode": "ReadWriteMount", + "jobOutputType": "uri_folder" + } + }, + "sourceJobId": null + }, + "systemData": { + "createdAt": "2022-09-23T15:32:19.5871788\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download?api-version=2022-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:33:06 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-f4c91b0d26efb046f814c31e0f7f56d7-155d9314980fdbff-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-eastus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "12bf7cce-e1c2-4d9a-93fe-2da5f216e012", + "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153306Z:12bf7cce-e1c2-4d9a-93fe-2da5f216e012", + "x-request-time": "0.040" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "name": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "type": "Microsoft.MachineLearningServices/workspaces/jobs", + "properties": { + "description": "The hello world pipeline job with inline command job having inputs", + "tags": { + "tag": "tagvalue", + "owner": "sdkteam" + }, + "properties": { + "azureml.DevPlatv2": "true", + "azureml.runsource": "azureml.PipelineRun", + "runSource": "MFE", + "runType": "HTTP", + "azureml.parameters": "{}", + "azureml.continue_on_step_failure": "False", + "azureml.continue_on_failed_optional_input": "True", + "azureml.defaultComputeName": "cpu-cluster", + "azureml.defaultDataStoreName": "workspaceblobstore", + "azureml.pipelineComponent": "pipelinerun" + }, + "displayName": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "status": "Running", + "experimentName": "azure-ai-ml", + "services": { + "Tracking": { + "jobServiceType": "Tracking", + "port": null, + "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "status": null, + "errorMessage": null, + "properties": null + }, + "Studio": { + "jobServiceType": "Studio", + "port": null, + "endpoint": "https://ml.azure.com/runs/helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "status": null, + "errorMessage": null, + "properties": null + } + }, + "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", + "isArchived": false, + "identity": null, + "componentId": null, + "jobType": "Pipeline", + "settings": { + "_source": "YAML.JOB" + }, + "jobs": { + "hello_world_inline_commandjob_1": { + "resources": null, + "distribution": null, + "limits": null, + "environment_variables": {}, + "name": "hello_world_inline_commandjob_1", + "type": "command", + "display_name": null, + "tags": {}, + "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", + "inputs": {}, + "outputs": { + "component_out_path_1": { + "value": "${{parent.outputs.job_out_path_1}}", + "type": "literal" + } + }, + "properties": {}, + "_source": "YAML.JOB", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1bf47d41-9ae3-4f6c-ad73-9fb7b939f82e" + }, + "hello_world_inline_commandjob_2": { + "resources": null, + "distribution": null, + "limits": null, + "environment_variables": {}, + "name": "hello_world_inline_commandjob_2", + "type": "command", + "display_name": null, + "tags": {}, + "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", + "inputs": {}, + "outputs": {}, + "properties": {}, + "_source": "YAML.JOB", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/15c4400d-cf29-4615-b2bf-cb856311b395" + } + }, + "inputs": {}, + "outputs": { + "job_out_path_1": { + "description": null, + "uri": null, + "mode": "ReadWriteMount", + "jobOutputType": "uri_folder" + } + }, + "sourceJobId": null + }, + "systemData": { + "createdAt": "2022-09-23T15:32:19.5871788\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download?api-version=2022-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:33:15 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-63acd5b9ac0452b9febc234934bc13ca-a685fb30225251c9-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-eastus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "c687d097-a4bc-4579-9109-1df853fa9920", + "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153315Z:c687d097-a4bc-4579-9109-1df853fa9920", + "x-request-time": "0.069" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "name": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "type": "Microsoft.MachineLearningServices/workspaces/jobs", + "properties": { + "description": "The hello world pipeline job with inline command job having inputs", + "tags": { + "tag": "tagvalue", + "owner": "sdkteam" + }, + "properties": { + "azureml.DevPlatv2": "true", + "azureml.runsource": "azureml.PipelineRun", + "runSource": "MFE", + "runType": "HTTP", + "azureml.parameters": "{}", + "azureml.continue_on_step_failure": "False", + "azureml.continue_on_failed_optional_input": "True", + "azureml.defaultComputeName": "cpu-cluster", + "azureml.defaultDataStoreName": "workspaceblobstore", + "azureml.pipelineComponent": "pipelinerun" + }, + "displayName": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "status": "Running", + "experimentName": "azure-ai-ml", + "services": { + "Tracking": { + "jobServiceType": "Tracking", + "port": null, + "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "status": null, + "errorMessage": null, + "properties": null + }, + "Studio": { + "jobServiceType": "Studio", + "port": null, + "endpoint": "https://ml.azure.com/runs/helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "status": null, + "errorMessage": null, + "properties": null + } + }, + "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", + "isArchived": false, + "identity": null, + "componentId": null, + "jobType": "Pipeline", + "settings": { + "_source": "YAML.JOB" + }, + "jobs": { + "hello_world_inline_commandjob_1": { + "resources": null, + "distribution": null, + "limits": null, + "environment_variables": {}, + "name": "hello_world_inline_commandjob_1", + "type": "command", + "display_name": null, + "tags": {}, + "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", + "inputs": {}, + "outputs": { + "component_out_path_1": { + "value": "${{parent.outputs.job_out_path_1}}", + "type": "literal" + } + }, + "properties": {}, + "_source": "YAML.JOB", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1bf47d41-9ae3-4f6c-ad73-9fb7b939f82e" + }, + "hello_world_inline_commandjob_2": { + "resources": null, + "distribution": null, + "limits": null, + "environment_variables": {}, + "name": "hello_world_inline_commandjob_2", + "type": "command", + "display_name": null, + "tags": {}, + "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", + "inputs": {}, + "outputs": {}, + "properties": {}, + "_source": "YAML.JOB", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/15c4400d-cf29-4615-b2bf-cb856311b395" + } + }, + "inputs": {}, + "outputs": { + "job_out_path_1": { + "description": null, + "uri": null, + "mode": "ReadWriteMount", + "jobOutputType": "uri_folder" + } + }, + "sourceJobId": null + }, + "systemData": { + "createdAt": "2022-09-23T15:32:19.5871788\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download?api-version=2022-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:33:26 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-0c5e7388b4f5b97935b242913fb389ea-0bfcda10b064ed41-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-eastus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "6c5d8f5c-2bf9-41e4-a57d-ad30dcee518b", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153327Z:6c5d8f5c-2bf9-41e4-a57d-ad30dcee518b", + "x-request-time": "0.043" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "name": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "type": "Microsoft.MachineLearningServices/workspaces/jobs", + "properties": { + "description": "The hello world pipeline job with inline command job having inputs", + "tags": { + "tag": "tagvalue", + "owner": "sdkteam" + }, + "properties": { + "azureml.DevPlatv2": "true", + "azureml.runsource": "azureml.PipelineRun", + "runSource": "MFE", + "runType": "HTTP", + "azureml.parameters": "{}", + "azureml.continue_on_step_failure": "False", + "azureml.continue_on_failed_optional_input": "True", + "azureml.defaultComputeName": "cpu-cluster", + "azureml.defaultDataStoreName": "workspaceblobstore", + "azureml.pipelineComponent": "pipelinerun" + }, + "displayName": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "status": "Running", + "experimentName": "azure-ai-ml", + "services": { + "Tracking": { + "jobServiceType": "Tracking", + "port": null, + "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "status": null, + "errorMessage": null, + "properties": null + }, + "Studio": { + "jobServiceType": "Studio", + "port": null, + "endpoint": "https://ml.azure.com/runs/helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "status": null, + "errorMessage": null, + "properties": null + } + }, + "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", + "isArchived": false, + "identity": null, + "componentId": null, + "jobType": "Pipeline", + "settings": { + "_source": "YAML.JOB" + }, + "jobs": { + "hello_world_inline_commandjob_1": { + "resources": null, + "distribution": null, + "limits": null, + "environment_variables": {}, + "name": "hello_world_inline_commandjob_1", + "type": "command", + "display_name": null, + "tags": {}, + "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", + "inputs": {}, + "outputs": { + "component_out_path_1": { + "value": "${{parent.outputs.job_out_path_1}}", + "type": "literal" + } + }, + "properties": {}, + "_source": "YAML.JOB", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1bf47d41-9ae3-4f6c-ad73-9fb7b939f82e" + }, + "hello_world_inline_commandjob_2": { + "resources": null, + "distribution": null, + "limits": null, + "environment_variables": {}, + "name": "hello_world_inline_commandjob_2", + "type": "command", + "display_name": null, + "tags": {}, + "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", + "inputs": {}, + "outputs": {}, + "properties": {}, + "_source": "YAML.JOB", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/15c4400d-cf29-4615-b2bf-cb856311b395" + } + }, + "inputs": {}, + "outputs": { + "job_out_path_1": { + "description": null, + "uri": null, + "mode": "ReadWriteMount", + "jobOutputType": "uri_folder" + } + }, + "sourceJobId": null + }, + "systemData": { + "createdAt": "2022-09-23T15:32:19.5871788\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download?api-version=2022-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:33:43 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-7789220bb2fe471c79f0887155e12738-ff32678d61878635-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-eastus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "30cffa03-c66f-4da5-b3e7-ccc17a27ac0b", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153344Z:30cffa03-c66f-4da5-b3e7-ccc17a27ac0b", + "x-request-time": "0.042" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "name": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "type": "Microsoft.MachineLearningServices/workspaces/jobs", + "properties": { + "description": "The hello world pipeline job with inline command job having inputs", + "tags": { + "tag": "tagvalue", + "owner": "sdkteam" + }, + "properties": { + "azureml.DevPlatv2": "true", + "azureml.runsource": "azureml.PipelineRun", + "runSource": "MFE", + "runType": "HTTP", + "azureml.parameters": "{}", + "azureml.continue_on_step_failure": "False", + "azureml.continue_on_failed_optional_input": "True", + "azureml.defaultComputeName": "cpu-cluster", + "azureml.defaultDataStoreName": "workspaceblobstore", + "azureml.pipelineComponent": "pipelinerun" + }, + "displayName": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "status": "Running", + "experimentName": "azure-ai-ml", + "services": { + "Tracking": { + "jobServiceType": "Tracking", + "port": null, + "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "status": null, + "errorMessage": null, + "properties": null + }, + "Studio": { + "jobServiceType": "Studio", + "port": null, + "endpoint": "https://ml.azure.com/runs/helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "status": null, + "errorMessage": null, + "properties": null + } + }, + "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", + "isArchived": false, + "identity": null, + "componentId": null, + "jobType": "Pipeline", + "settings": { + "_source": "YAML.JOB" + }, + "jobs": { + "hello_world_inline_commandjob_1": { + "resources": null, + "distribution": null, + "limits": null, + "environment_variables": {}, + "name": "hello_world_inline_commandjob_1", + "type": "command", + "display_name": null, + "tags": {}, + "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", + "inputs": {}, + "outputs": { + "component_out_path_1": { + "value": "${{parent.outputs.job_out_path_1}}", + "type": "literal" + } + }, + "properties": {}, + "_source": "YAML.JOB", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1bf47d41-9ae3-4f6c-ad73-9fb7b939f82e" + }, + "hello_world_inline_commandjob_2": { + "resources": null, + "distribution": null, + "limits": null, + "environment_variables": {}, + "name": "hello_world_inline_commandjob_2", + "type": "command", + "display_name": null, + "tags": {}, + "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", + "inputs": {}, + "outputs": {}, + "properties": {}, + "_source": "YAML.JOB", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/15c4400d-cf29-4615-b2bf-cb856311b395" + } + }, + "inputs": {}, + "outputs": { + "job_out_path_1": { + "description": null, + "uri": null, + "mode": "ReadWriteMount", + "jobOutputType": "uri_folder" + } + }, + "sourceJobId": null + }, + "systemData": { + "createdAt": "2022-09-23T15:32:19.5871788\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download?api-version=2022-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:34:14 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-9dc1777499d03a65d2a065da7055a763-710590f1b6e4fd1a-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-eastus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "0966f518-1ba3-49a0-a871-35b0ee89e93f", + "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153414Z:0966f518-1ba3-49a0-a871-35b0ee89e93f", + "x-request-time": "0.052" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "name": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "type": "Microsoft.MachineLearningServices/workspaces/jobs", + "properties": { + "description": "The hello world pipeline job with inline command job having inputs", + "tags": { + "tag": "tagvalue", + "owner": "sdkteam" + }, + "properties": { + "azureml.DevPlatv2": "true", + "azureml.runsource": "azureml.PipelineRun", + "runSource": "MFE", + "runType": "HTTP", + "azureml.parameters": "{}", + "azureml.continue_on_step_failure": "False", + "azureml.continue_on_failed_optional_input": "True", + "azureml.defaultComputeName": "cpu-cluster", + "azureml.defaultDataStoreName": "workspaceblobstore", + "azureml.pipelineComponent": "pipelinerun" + }, + "displayName": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "status": "Completed", + "experimentName": "azure-ai-ml", + "services": { + "Tracking": { + "jobServiceType": "Tracking", + "port": null, + "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "status": null, + "errorMessage": null, + "properties": null + }, + "Studio": { + "jobServiceType": "Studio", + "port": null, + "endpoint": "https://ml.azure.com/runs/helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "status": null, + "errorMessage": null, + "properties": null + } + }, + "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", + "isArchived": false, + "identity": null, + "componentId": null, + "jobType": "Pipeline", + "settings": { + "_source": "YAML.JOB" + }, + "jobs": { + "hello_world_inline_commandjob_1": { + "resources": null, + "distribution": null, + "limits": null, + "environment_variables": {}, + "name": "hello_world_inline_commandjob_1", + "type": "command", + "display_name": null, + "tags": {}, + "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", + "inputs": {}, + "outputs": { + "component_out_path_1": { + "value": "${{parent.outputs.job_out_path_1}}", + "type": "literal" + } + }, + "properties": {}, + "_source": "YAML.JOB", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1bf47d41-9ae3-4f6c-ad73-9fb7b939f82e" + }, + "hello_world_inline_commandjob_2": { + "resources": null, + "distribution": null, + "limits": null, + "environment_variables": {}, + "name": "hello_world_inline_commandjob_2", + "type": "command", + "display_name": null, + "tags": {}, + "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", + "inputs": {}, + "outputs": {}, + "properties": {}, + "_source": "YAML.JOB", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/15c4400d-cf29-4615-b2bf-cb856311b395" + } + }, + "inputs": {}, + "outputs": { + "job_out_path_1": { + "description": null, + "uri": null, + "mode": "ReadWriteMount", + "jobOutputType": "uri_folder" + } + }, + "sourceJobId": null + }, + "systemData": { + "createdAt": "2022-09-23T15:32:19.5871788\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download?api-version=2022-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:34:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-7047d95e0e2ea228c2d69a7181b4ef1e-b94d7b223bcbab67-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-eastus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "15177aad-fac4-4886-bbac-fa50cd46938b", + "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153417Z:15177aad-fac4-4886-bbac-fa50cd46938b", + "x-request-time": "0.078" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "name": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "type": "Microsoft.MachineLearningServices/workspaces/jobs", + "properties": { + "description": "The hello world pipeline job with inline command job having inputs", + "tags": { + "tag": "tagvalue", + "owner": "sdkteam" + }, + "properties": { + "azureml.DevPlatv2": "true", + "azureml.runsource": "azureml.PipelineRun", + "runSource": "MFE", + "runType": "HTTP", + "azureml.parameters": "{}", + "azureml.continue_on_step_failure": "False", + "azureml.continue_on_failed_optional_input": "True", + "azureml.defaultComputeName": "cpu-cluster", + "azureml.defaultDataStoreName": "workspaceblobstore", + "azureml.pipelineComponent": "pipelinerun" + }, + "displayName": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "status": "Completed", + "experimentName": "azure-ai-ml", + "services": { + "Tracking": { + "jobServiceType": "Tracking", + "port": null, + "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "status": null, + "errorMessage": null, + "properties": null + }, + "Studio": { + "jobServiceType": "Studio", + "port": null, + "endpoint": "https://ml.azure.com/runs/helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "status": null, + "errorMessage": null, + "properties": null + } + }, + "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", + "isArchived": false, + "identity": null, + "componentId": null, + "jobType": "Pipeline", + "settings": { + "_source": "YAML.JOB" + }, + "jobs": { + "hello_world_inline_commandjob_1": { + "resources": null, + "distribution": null, + "limits": null, + "environment_variables": {}, + "name": "hello_world_inline_commandjob_1", + "type": "command", + "display_name": null, + "tags": {}, + "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", + "inputs": {}, + "outputs": { + "component_out_path_1": { + "value": "${{parent.outputs.job_out_path_1}}", + "type": "literal" + } + }, + "properties": {}, + "_source": "YAML.JOB", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1bf47d41-9ae3-4f6c-ad73-9fb7b939f82e" + }, + "hello_world_inline_commandjob_2": { + "resources": null, + "distribution": null, + "limits": null, + "environment_variables": {}, + "name": "hello_world_inline_commandjob_2", + "type": "command", + "display_name": null, + "tags": {}, + "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", + "inputs": {}, + "outputs": {}, + "properties": {}, + "_source": "YAML.JOB", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/15c4400d-cf29-4615-b2bf-cb856311b395" + } + }, + "inputs": {}, + "outputs": { + "job_out_path_1": { + "description": null, + "uri": null, + "mode": "ReadWriteMount", + "jobOutputType": "uri_folder" + } + }, + "sourceJobId": null + }, + "systemData": { + "createdAt": "2022-09-23T15:32:19.5871788\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:34:21 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-88ec9dc0282f8a42ede3e92a98db0e3d-cc3d3386842d4763-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-eastus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "8c01fb5e-c40f-4980-977f-2c5c6f5bde7f", + "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153421Z:8c01fb5e-c40f-4980-977f-2c5c6f5bde7f", + "x-request-time": "0.016" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000", + "name": "00000", + "type": "Microsoft.MachineLearningServices/workspaces", + "location": "eastus2", + "tags": {}, + "etag": null, + "properties": { + "friendlyName": "00000", + "description": "", + "storageAccount": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/sav6dhrxexwlv7g", + "keyVault": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/kvtestp5bxvua5jdb3o", + "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/aiv6dhrxexwlv7g", + "hbiWorkspace": false, + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "imageBuildCompute": null, + "provisioningState": "Succeeded", + "v1LegacyMode": false, + "softDeleteEnabled": false, + "containerRegistry": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.ContainerRegistry/registries/crv6dhrxexwlv7g", + "notebookInfo": { + "resourceId": "dca3c7096cbf4e1bb56e8160950cd259", + "fqdn": "ml-sdkvnextcli-eastus2-e950f876-7257-4cf3-99a5-ff66812ac44c.eastus2.notebooks.azure.net", + "isPrivateLinkEnabled": false, + "notebookPreparationError": null + }, + "storageHnsEnabled": false, + "workspaceId": "e950f876-7257-4cf3-99a5-ff66812ac44c", + "linkedModelInventoryArmId": null, + "privateLinkCount": 0, + "publicNetworkAccess": "Enabled", + "discoveryUrl": "https://eastus2.api.azureml.ms/discovery", + "mlFlowTrackingUri": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000", + "sdkTelemetryAppInsightsKey": "e1f7b545-6243-4abf-ba76-c5691d2edb62", + "sasGetterUri": "" + }, + "identity": { + "type": "SystemAssigned", + "principalId": "caf4fc3d-ad1c-4328-98a9-2c61e9256b3d", + "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47" + }, + "sku": { + "name": "Basic", + "tier": "Basic" + }, + "systemData": { + "createdAt": "2022-09-22T03:07:16.8262302Z", + "createdBy": "zhengfeiwang@microsoft.com", + "createdByType": "User", + "lastModifiedAt": "2022-09-22T03:11:11.4686795Z", + "lastModifiedBy": "zhengfeiwang@microsoft.com", + "lastModifiedByType": "User" + } + } + }, + { + "RequestUri": "https://eastus2.api.azureml.ms/discovery", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-core/1.25.2 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Access-Control-Allow-Credentials": "false", + "Access-Control-Allow-Origin": "*", + "Access-Control-Expose-Headers": "Content-Length, Content-Range, Content-Type, Retry-After, Location, x-request-time, x-ms-client-request-id", + "Access-Control-Max-Age": "2520", + "Connection": "keep-alive", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:34:24 GMT", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-c904995a924961908d457b4f41976b41-67802351825aaf24-00\u0022", + "Strict-Transport-Security": "max-age=15724800; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-eastus2-02", + "X-Content-Type-Options": [ + "nosniff", + "nosniff" + ], + "x-ms-response-type": "standard", + "x-request-time": "0.006" + }, + "ResponseBody": { + "api": "https://eastus2.api.azureml.ms", + "catalog": "https://catalog.cortanaanalytics.com", + "experimentation": "https://eastus2.experiments.azureml.net", + "gallery": "https://gallery.cortanaintelligence.com/project", + "history": "https://eastus2.experiments.azureml.net", + "hyperdrive": "https://eastus2.experiments.azureml.net", + "labeling": "https://eastus2.experiments.azureml.net", + "modelmanagement": "https://eastus2.modelmanagement.azureml.net", + "pipelines": "https://eastus2.aether.ms", + "studio": "https://ml.azure.com" + } + }, + { + "RequestUri": "https://eastus2.api.azureml.ms/history/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/runs/helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download/children", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Connection": "keep-alive", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:34:27 GMT", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Strict-Transport-Security": "max-age=15724800; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-eastus2-02", + "X-Content-Type-Options": "nosniff", + "x-ms-response-type": "standard", + "x-request-time": "0.065" + }, + "ResponseBody": { + "value": [ + { + "runNumber": 1663947141, + "rootRunId": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "createdUtc": "2022-09-23T15:32:21.3420873\u002B00:00", + "createdBy": { + "userObjectId": "dccfa7b6-87c6-4f1e-af43-555f876e37a7", + "userPuId": "10032001B4DCFEFF", + "userIdp": null, + "userAltSecId": null, + "userIss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "userTenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "userName": "Zhengfei Wang", + "upn": null + }, + "userId": "dccfa7b6-87c6-4f1e-af43-555f876e37a7", + "token": null, + "tokenExpiryTimeUtc": null, + "error": null, + "warnings": null, + "revision": 13, + "statusRevision": 1, + "runUuid": "49b6832f-425b-4b63-9872-78140e2fe715", + "parentRunUuid": "34bea007-3ac9-4fc7-a049-77a0b4df62ca", + "rootRunUuid": "34bea007-3ac9-4fc7-a049-77a0b4df62ca", + "lastStartTimeUtc": null, + "currentComputeTime": null, + "computeDuration": "00:01:00.2463078", + "effectiveStartTimeUtc": null, + "lastModifiedBy": { + "userObjectId": "dccfa7b6-87c6-4f1e-af43-555f876e37a7", + "userPuId": "10032001B4DCFEFF", + "userIdp": null, + "userAltSecId": null, + "userIss": "azureml", + "userTenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "userName": "Zhengfei Wang", + "upn": null + }, + "lastModifiedUtc": "2022-09-23T15:32:52.0654229\u002B00:00", + "duration": "00:01:00.2463078", + "cancelationReason": null, + "currentAttemptId": null, + "runId": "7599d23f-8164-4644-808e-e4e13b1efe1d", + "parentRunId": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "experimentId": "f15e492d-c1fc-4028-a8e4-96b267558b7d", + "status": "Completed", + "startTimeUtc": "2022-09-23T15:32:52.2831362\u002B00:00", + "endTimeUtc": "2022-09-23T15:33:52.529444\u002B00:00", + "scheduleId": null, + "displayName": "hello_world_inline_commandjob_1", + "name": "azureml_anonymous", + "dataContainerId": "dcid.7599d23f-8164-4644-808e-e4e13b1efe1d", + "description": null, + "hidden": false, + "runType": "azureml.StepRun", + "runTypeV2": { + "orchestrator": "Execution", + "traits": [ + "azureml.StepRun", + "scriptRun", + "remote", + "AlmostCommonRuntime", + "OsType:Linux", + "CommonRuntime" + ], + "attribution": "Aether", + "computeType": "AmlcTrain" + }, + "properties": { + "azureml.DevPlatv2": "true", + "ContentSnapshotId": "f40668c2-1572-499f-864f-776f01547e68", + "StepType": "PythonScriptStep", + "ComputeTargetType": "AmlCompute", + "azureml.moduleid": "1bf47d41-9ae3-4f6c-ad73-9fb7b939f82e", + "azureml.moduleName": "azureml_anonymous", + "azureml.moduleVersion": "000000000000000000000", + "azureml.runsource": "azureml.StepRun", + "azureml.nodeid": "081ccb4b", + "azureml.pipelinerunid": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "azureml.pipeline": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "azureml.pipelineComponent": "masterescloud", + "_azureml.ComputeTargetType": "amlctrain", + "ProcessInfoFile": "azureml-logs/process_info.json", + "ProcessStatusFile": "azureml-logs/process_status.json" + }, + "parameters": {}, + "actionUris": { + "Cancel": "https://eastus2.api.azureml.ms/studioservice/apiv2/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/workspaces/00000/runs/7599d23f-8164-4644-808e-e4e13b1efe1d/Cancel", + "Diagnose": "" + }, + "scriptName": null, + "target": "cpu-cluster", + "uniqueChildRunComputeTargets": [], + "tags": { + "azureml.nodeid": "081ccb4b", + "azureml.pipeline": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "_aml_system_ComputeTargetStatus": "{\u0022AllocationState\u0022:\u0022resizing\u0022,\u0022PreparingNodeCount\u0022:0,\u0022RunningNodeCount\u0022:2,\u0022CurrentNodeCount\u0022:4}" + }, + "settings": {}, + "services": {}, + "inputDatasets": [], + "outputDatasets": [], + "runDefinition": null, + "jobSpecification": null, + "primaryMetricName": null, + "createdFrom": null, + "cancelUri": "https://eastus2.api.azureml.ms/studioservice/apiv2/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/workspaces/00000/runs/7599d23f-8164-4644-808e-e4e13b1efe1d/Cancel", + "completeUri": null, + "diagnosticsUri": "", + "computeRequest": { + "nodeCount": 1, + "gpuCount": 0 + }, + "compute": { + "target": "cpu-cluster", + "targetType": "amlcompute", + "vmSize": null, + "instanceType": null, + "instanceCount": 1, + "gpuCount": 0, + "priority": null, + "region": null + }, + "retainForLifetimeOfWorkspace": null, + "queueingInfo": null, + "inputs": null, + "outputs": null + }, + { + "runNumber": 1663947141, + "rootRunId": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "createdUtc": "2022-09-23T15:32:21.3854905\u002B00:00", + "createdBy": { + "userObjectId": "dccfa7b6-87c6-4f1e-af43-555f876e37a7", + "userPuId": "10032001B4DCFEFF", + "userIdp": null, + "userAltSecId": null, + "userIss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "userTenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "userName": "Zhengfei Wang", + "upn": null + }, + "userId": "dccfa7b6-87c6-4f1e-af43-555f876e37a7", + "token": null, + "tokenExpiryTimeUtc": null, + "error": null, + "warnings": null, + "revision": 13, + "statusRevision": 1, + "runUuid": "3db853db-2d59-4d19-8146-f036e31cf74f", + "parentRunUuid": "34bea007-3ac9-4fc7-a049-77a0b4df62ca", + "rootRunUuid": "34bea007-3ac9-4fc7-a049-77a0b4df62ca", + "lastStartTimeUtc": null, + "currentComputeTime": null, + "computeDuration": "00:00:59.8119881", + "effectiveStartTimeUtc": null, + "lastModifiedBy": { + "userObjectId": "dccfa7b6-87c6-4f1e-af43-555f876e37a7", + "userPuId": "10032001B4DCFEFF", + "userIdp": null, + "userAltSecId": null, + "userIss": "azureml", + "userTenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "userName": "Zhengfei Wang", + "upn": null + }, + "lastModifiedUtc": "2022-09-23T15:32:39.9314336\u002B00:00", + "duration": "00:00:59.8119881", + "cancelationReason": null, + "currentAttemptId": null, + "runId": "9fdcd68c-d0bb-4540-9f2b-e63a1f40d478", + "parentRunId": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "experimentId": "f15e492d-c1fc-4028-a8e4-96b267558b7d", + "status": "Completed", + "startTimeUtc": "2022-09-23T15:32:40.1752599\u002B00:00", + "endTimeUtc": "2022-09-23T15:33:39.987248\u002B00:00", + "scheduleId": null, + "displayName": "hello_world_inline_commandjob_2", + "name": "azureml_anonymous", + "dataContainerId": "dcid.9fdcd68c-d0bb-4540-9f2b-e63a1f40d478", + "description": null, + "hidden": false, + "runType": "azureml.StepRun", + "runTypeV2": { + "orchestrator": "Execution", + "traits": [ + "azureml.StepRun", + "scriptRun", + "remote", + "AlmostCommonRuntime", + "OsType:Linux", + "CommonRuntime" + ], + "attribution": "Aether", + "computeType": "AmlcTrain" + }, + "properties": { + "azureml.DevPlatv2": "true", + "ContentSnapshotId": "f40668c2-1572-499f-864f-776f01547e68", + "StepType": "PythonScriptStep", + "ComputeTargetType": "AmlCompute", + "azureml.moduleid": "15c4400d-cf29-4615-b2bf-cb856311b395", + "azureml.moduleName": "azureml_anonymous", + "azureml.moduleVersion": "000000000000000000000", + "azureml.runsource": "azureml.StepRun", + "azureml.nodeid": "fa1080c2", + "azureml.pipelinerunid": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "azureml.pipeline": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "azureml.pipelineComponent": "masterescloud", + "_azureml.ComputeTargetType": "amlctrain", + "ProcessInfoFile": "azureml-logs/process_info.json", + "ProcessStatusFile": "azureml-logs/process_status.json" + }, + "parameters": {}, + "actionUris": { + "Cancel": "https://eastus2.api.azureml.ms/studioservice/apiv2/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/workspaces/00000/runs/9fdcd68c-d0bb-4540-9f2b-e63a1f40d478/Cancel", + "Diagnose": "" + }, + "scriptName": null, + "target": "cpu-cluster", + "uniqueChildRunComputeTargets": [], + "tags": { + "azureml.nodeid": "fa1080c2", + "azureml.pipeline": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "_aml_system_ComputeTargetStatus": "{\u0022AllocationState\u0022:\u0022resizing\u0022,\u0022PreparingNodeCount\u0022:0,\u0022RunningNodeCount\u0022:2,\u0022CurrentNodeCount\u0022:4}" + }, + "settings": {}, + "services": {}, + "inputDatasets": [], + "outputDatasets": [], + "runDefinition": null, + "jobSpecification": null, + "primaryMetricName": null, + "createdFrom": null, + "cancelUri": "https://eastus2.api.azureml.ms/studioservice/apiv2/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/workspaces/00000/runs/9fdcd68c-d0bb-4540-9f2b-e63a1f40d478/Cancel", + "completeUri": null, + "diagnosticsUri": "", + "computeRequest": { + "nodeCount": 1, + "gpuCount": 0 + }, + "compute": { + "target": "cpu-cluster", + "targetType": "amlcompute", + "vmSize": null, + "instanceType": null, + "instanceCount": 1, + "gpuCount": 0, + "priority": null, + "region": null + }, + "retainForLifetimeOfWorkspace": null, + "queueingInfo": null, + "inputs": null, + "outputs": null + } + ] + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/7599d23f-8164-4644-808e-e4e13b1efe1d?api-version=2022-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:34:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-5ab8d9f251fcd07b3d684e2792bf146c-e0673a4ed5b3bb58-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-eastus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "43ca2f84-e695-4c4d-8732-1c4a9a12f954", + "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153429Z:43ca2f84-e695-4c4d-8732-1c4a9a12f954", + "x-request-time": "0.039" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/7599d23f-8164-4644-808e-e4e13b1efe1d", + "name": "7599d23f-8164-4644-808e-e4e13b1efe1d", + "type": "Microsoft.MachineLearningServices/workspaces/jobs", + "systemData": { + "createdAt": "2022-09-23T15:32:21.3420873\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User" + } + } + }, + { + "RequestUri": "https://eastus2.api.azureml.ms/history/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/runs/7599d23f-8164-4644-808e-e4e13b1efe1d", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Connection": "keep-alive", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:34:30 GMT", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Strict-Transport-Security": "max-age=15724800; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-eastus2-02", + "X-Content-Type-Options": "nosniff", + "x-ms-response-type": "standard", + "x-request-time": "0.021" + }, + "ResponseBody": { + "runNumber": 1663947141, + "rootRunId": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "createdUtc": "2022-09-23T15:32:21.3420873\u002B00:00", + "createdBy": { + "userObjectId": "dccfa7b6-87c6-4f1e-af43-555f876e37a7", + "userPuId": "10032001B4DCFEFF", + "userIdp": null, + "userAltSecId": null, + "userIss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "userTenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "userName": "Zhengfei Wang", + "upn": null + }, + "userId": "dccfa7b6-87c6-4f1e-af43-555f876e37a7", + "token": null, + "tokenExpiryTimeUtc": null, + "error": null, + "warnings": null, + "revision": 13, + "statusRevision": 1, + "runUuid": "49b6832f-425b-4b63-9872-78140e2fe715", + "parentRunUuid": "34bea007-3ac9-4fc7-a049-77a0b4df62ca", + "rootRunUuid": "34bea007-3ac9-4fc7-a049-77a0b4df62ca", + "lastStartTimeUtc": null, + "currentComputeTime": null, + "computeDuration": "00:01:00.2463078", + "effectiveStartTimeUtc": null, + "lastModifiedBy": { + "userObjectId": "dccfa7b6-87c6-4f1e-af43-555f876e37a7", + "userPuId": "10032001B4DCFEFF", + "userIdp": null, + "userAltSecId": null, + "userIss": "azureml", + "userTenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "userName": "Zhengfei Wang", + "upn": null + }, + "lastModifiedUtc": "2022-09-23T15:32:52.0654229\u002B00:00", + "duration": "00:01:00.2463078", + "cancelationReason": null, + "currentAttemptId": null, + "runId": "7599d23f-8164-4644-808e-e4e13b1efe1d", + "parentRunId": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "experimentId": "f15e492d-c1fc-4028-a8e4-96b267558b7d", + "status": "Completed", + "startTimeUtc": "2022-09-23T15:32:52.2831362\u002B00:00", + "endTimeUtc": "2022-09-23T15:33:52.529444\u002B00:00", + "scheduleId": null, + "displayName": "hello_world_inline_commandjob_1", + "name": "azureml_anonymous", + "dataContainerId": "dcid.7599d23f-8164-4644-808e-e4e13b1efe1d", + "description": null, + "hidden": false, + "runType": "azureml.StepRun", + "runTypeV2": { + "orchestrator": "Execution", + "traits": [ + "azureml.StepRun", + "scriptRun", + "remote", + "AlmostCommonRuntime", + "OsType:Linux", + "CommonRuntime" + ], + "attribution": "Aether", + "computeType": "AmlcTrain" + }, + "properties": { + "azureml.DevPlatv2": "true", + "ContentSnapshotId": "f40668c2-1572-499f-864f-776f01547e68", + "StepType": "PythonScriptStep", + "ComputeTargetType": "AmlCompute", + "azureml.moduleid": "1bf47d41-9ae3-4f6c-ad73-9fb7b939f82e", + "azureml.moduleName": "azureml_anonymous", + "azureml.moduleVersion": "000000000000000000000", + "azureml.runsource": "azureml.StepRun", + "azureml.nodeid": "081ccb4b", + "azureml.pipelinerunid": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "azureml.pipeline": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "azureml.pipelineComponent": "masterescloud", + "_azureml.ComputeTargetType": "amlctrain", + "ProcessInfoFile": "azureml-logs/process_info.json", + "ProcessStatusFile": "azureml-logs/process_status.json" + }, + "parameters": {}, + "actionUris": { + "Cancel": "https://eastus2.api.azureml.ms/studioservice/apiv2/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/workspaces/00000/runs/7599d23f-8164-4644-808e-e4e13b1efe1d/Cancel", + "Diagnose": "" + }, + "scriptName": null, + "target": "cpu-cluster", + "uniqueChildRunComputeTargets": [], + "tags": { + "azureml.nodeid": "081ccb4b", + "azureml.pipeline": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "_aml_system_ComputeTargetStatus": "{\u0022AllocationState\u0022:\u0022resizing\u0022,\u0022PreparingNodeCount\u0022:0,\u0022RunningNodeCount\u0022:2,\u0022CurrentNodeCount\u0022:4}" + }, + "settings": {}, + "services": {}, + "inputDatasets": [], + "outputDatasets": [], + "runDefinition": null, + "jobSpecification": null, + "primaryMetricName": null, + "createdFrom": null, + "cancelUri": "https://eastus2.api.azureml.ms/studioservice/apiv2/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/workspaces/00000/runs/7599d23f-8164-4644-808e-e4e13b1efe1d/Cancel", + "completeUri": null, + "diagnosticsUri": "", + "computeRequest": { + "nodeCount": 1, + "gpuCount": 0 + }, + "compute": { + "target": "cpu-cluster", + "targetType": "amlcompute", + "vmSize": null, + "instanceType": null, + "instanceCount": 1, + "gpuCount": 0, + "priority": null, + "region": null + }, + "retainForLifetimeOfWorkspace": null, + "queueingInfo": null, + "inputs": null, + "outputs": null + } + }, + { + "RequestUri": "https://eastus2.api.azureml.ms/history/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/rundata", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "137", + "Content-Type": "application/json", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": { + "runId": "7599d23f-8164-4644-808e-e4e13b1efe1d", + "selectRunMetadata": true, + "selectRunDefinition": true, + "selectJobSpecification": true + }, + "StatusCode": 200, + "ResponseHeaders": { + "Connection": "keep-alive", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:34:31 GMT", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Strict-Transport-Security": "max-age=15724800; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-eastus2-02", + "X-Content-Type-Options": "nosniff", + "x-ms-response-type": "standard", + "x-request-time": "0.135" + }, + "ResponseBody": { + "runMetadata": { + "runNumber": 1663947141, + "rootRunId": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "createdUtc": "2022-09-23T15:32:21.3420873\u002B00:00", + "createdBy": { + "userObjectId": "dccfa7b6-87c6-4f1e-af43-555f876e37a7", + "userPuId": "10032001B4DCFEFF", + "userIdp": null, + "userAltSecId": null, + "userIss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "userTenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "userName": "Zhengfei Wang", + "upn": null + }, + "userId": "dccfa7b6-87c6-4f1e-af43-555f876e37a7", + "token": null, + "tokenExpiryTimeUtc": null, + "error": null, + "warnings": null, + "revision": 13, + "statusRevision": 1, + "runUuid": "49b6832f-425b-4b63-9872-78140e2fe715", + "parentRunUuid": "34bea007-3ac9-4fc7-a049-77a0b4df62ca", + "rootRunUuid": "34bea007-3ac9-4fc7-a049-77a0b4df62ca", + "lastStartTimeUtc": null, + "currentComputeTime": null, + "computeDuration": "00:01:00.2463078", + "effectiveStartTimeUtc": null, + "lastModifiedBy": { + "userObjectId": "dccfa7b6-87c6-4f1e-af43-555f876e37a7", + "userPuId": "10032001B4DCFEFF", + "userIdp": null, + "userAltSecId": null, + "userIss": "azureml", + "userTenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "userName": "Zhengfei Wang", + "upn": null + }, + "lastModifiedUtc": "2022-09-23T15:32:52.0654229\u002B00:00", + "duration": "00:01:00.2463078", + "cancelationReason": null, + "currentAttemptId": null, + "runId": "7599d23f-8164-4644-808e-e4e13b1efe1d", + "parentRunId": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "experimentId": "f15e492d-c1fc-4028-a8e4-96b267558b7d", + "status": "Completed", + "startTimeUtc": "2022-09-23T15:32:52.2831362\u002B00:00", + "endTimeUtc": "2022-09-23T15:33:52.529444\u002B00:00", + "scheduleId": null, + "displayName": "hello_world_inline_commandjob_1", + "name": "azureml_anonymous", + "dataContainerId": "dcid.7599d23f-8164-4644-808e-e4e13b1efe1d", + "description": null, + "hidden": false, + "runType": "azureml.StepRun", + "runTypeV2": { + "orchestrator": "Execution", + "traits": [ + "azureml.StepRun", + "scriptRun", + "remote", + "AlmostCommonRuntime", + "OsType:Linux", + "CommonRuntime" + ], + "attribution": "Aether", + "computeType": "AmlcTrain" + }, + "properties": { + "azureml.DevPlatv2": "true", + "ContentSnapshotId": "f40668c2-1572-499f-864f-776f01547e68", + "StepType": "PythonScriptStep", + "ComputeTargetType": "AmlCompute", + "azureml.moduleid": "1bf47d41-9ae3-4f6c-ad73-9fb7b939f82e", + "azureml.moduleName": "azureml_anonymous", + "azureml.moduleVersion": "000000000000000000000", + "azureml.runsource": "azureml.StepRun", + "azureml.nodeid": "081ccb4b", + "azureml.pipelinerunid": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "azureml.pipeline": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "azureml.pipelineComponent": "masterescloud", + "_azureml.ComputeTargetType": "amlctrain", + "ProcessInfoFile": "azureml-logs/process_info.json", + "ProcessStatusFile": "azureml-logs/process_status.json" + }, + "parameters": {}, + "actionUris": { + "Cancel": "https://eastus2.api.azureml.ms/studioservice/apiv2/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/workspaces/00000/runs/7599d23f-8164-4644-808e-e4e13b1efe1d/Cancel", + "Diagnose": "" + }, + "scriptName": null, + "target": "cpu-cluster", + "uniqueChildRunComputeTargets": [], + "tags": { + "azureml.nodeid": "081ccb4b", + "azureml.pipeline": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "_aml_system_ComputeTargetStatus": "{\u0022AllocationState\u0022:\u0022resizing\u0022,\u0022PreparingNodeCount\u0022:0,\u0022RunningNodeCount\u0022:2,\u0022CurrentNodeCount\u0022:4}" + }, + "settings": {}, + "services": {}, + "inputDatasets": [], + "outputDatasets": [], + "runDefinition": null, + "jobSpecification": null, + "primaryMetricName": null, + "createdFrom": null, + "cancelUri": "https://eastus2.api.azureml.ms/studioservice/apiv2/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/workspaces/00000/runs/7599d23f-8164-4644-808e-e4e13b1efe1d/Cancel", + "completeUri": null, + "diagnosticsUri": "", + "computeRequest": { + "nodeCount": 1, + "gpuCount": 0 + }, + "compute": { + "target": "cpu-cluster", + "targetType": "amlcompute", + "vmSize": null, + "instanceType": null, + "instanceCount": 1, + "gpuCount": 0, + "priority": null, + "region": null + }, + "retainForLifetimeOfWorkspace": null, + "queueingInfo": null, + "inputs": {}, + "outputs": { + "default": { + "assetId": "azureml://locations/eastus2/workspaces/e950f876-7257-4cf3-99a5-ff66812ac44c/data/azureml_7599d23f-8164-4644-808e-e4e13b1efe1d_output_data_default/versions/1", + "type": "UriFolder" + }, + "component_out_path_1": { + "assetId": "azureml://locations/eastus2/workspaces/e950f876-7257-4cf3-99a5-ff66812ac44c/data/azureml_7599d23f-8164-4644-808e-e4e13b1efe1d_output_data_component_out_path_1/versions/1", + "type": "UriFolder" + } + } + }, + "runDefinition": { + "script": null, + "command": "echo \u0022Hello World\u0022 \u003E DatasetOutputConfig:component_out_path_1/helloworld.txt", + "useAbsolutePath": false, + "arguments": [], + "sourceDirectoryDataStore": null, + "framework": "Python", + "communicator": "None", + "target": "cpu-cluster", + "dataReferences": {}, + "data": {}, + "outputData": { + "component_out_path_1": { + "outputLocation": { + "dataset": null, + "dataPath": null, + "uri": { + "path": "azureml://datastores/workspaceblobstore/paths/azureml/{name}/job_out_path_1/", + "isFile": false + }, + "type": "UriFolder" + }, + "mechanism": "Mount", + "additionalOptions": null, + "environmentVariableName": "AZURE_ML_OUTPUT_component_out_path_1" + } + }, + "datacaches": [], + "jobName": null, + "maxRunDurationSeconds": null, + "nodeCount": 1, + "instanceTypes": [], + "priority": null, + "credentialPassthrough": false, + "identity": null, + "environment": { + "name": "AzureML-sklearn-0.24-ubuntu18.04-py37-cpu", + "version": "1", + "assetId": "azureml://registries/azureml/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", + "autoRebuild": true, + "python": { + "interpreterPath": "python", + "userManagedDependencies": true, + "condaDependencies": { + "name": "project_environment", + "dependencies": [ + "python=3.6.2", + { + "pip": [ + "azureml-defaults" + ] + } + ], + "channels": [ + "anaconda", + "conda-forge" + ] + }, + "baseCondaEnvironment": null + }, + "environmentVariables": { + "EXAMPLE_ENV_VAR": "EXAMPLE_VALUE" + }, + "docker": { + "baseImage": null, + "platform": { + "os": "Linux", + "architecture": "amd64" + }, + "baseDockerfile": "FROM mcr.microsoft.com/azureml/openmpi3.1.2-ubuntu18.04:20210701.v1\n\nENV AZUREML_CONDA_ENVIRONMENT_PATH /azureml-envs/sklearn-0.24.1\n\n# Create conda environment\nRUN conda create -p $AZUREML_CONDA_ENVIRONMENT_PATH \\\n python=3.7 pip=20.2.4\n\n# Prepend path to AzureML conda environment\nENV PATH $AZUREML_CONDA_ENVIRONMENT_PATH/bin:$PATH\n\n# Install pip dependencies\nRUN pip install \u0027matplotlib\u003E=3.3,\u003C3.4\u0027 \\\n \u0027psutil\u003E=5.8,\u003C5.9\u0027 \\\n \u0027tqdm\u003E=4.59,\u003C4.60\u0027 \\\n \u0027pandas\u003E=1.1,\u003C1.2\u0027 \\\n \u0027scipy\u003E=1.5,\u003C1.6\u0027 \\\n \u0027numpy\u003E=1.10,\u003C1.20\u0027 \\\n \u0027azureml-core==1.32.0\u0027 \\\n \u0027azureml-defaults==1.32.0\u0027 \\\n \u0027azureml-mlflow==1.32.0\u0027 \\\n \u0027azureml-telemetry==1.32.0\u0027 \\\n \u0027scikit-learn==0.24.1\u0027\n\n# This is needed for mpi to locate libpython\nENV LD_LIBRARY_PATH $AZUREML_CONDA_ENVIRONMENT_PATH/lib:$LD_LIBRARY_PATH\n", + "baseImageRegistry": { + "address": null, + "username": null, + "password": null + }, + "enabled": false, + "arguments": [] + }, + "spark": { + "repositories": [], + "packages": [], + "precachePackages": true + }, + "inferencingStackVersion": null + }, + "history": { + "outputCollection": true, + "directoriesToWatch": [ + "logs" + ], + "enableMLflowTracking": false + }, + "spark": { + "configuration": {} + }, + "parallelTask": { + "maxRetriesPerWorker": 0, + "workerCountPerNode": 1, + "terminalExitCodes": null, + "configuration": {} + }, + "amlCompute": { + "name": null, + "vmSize": null, + "retainCluster": false, + "clusterMaxNodeCount": 1 + }, + "aiSuperComputer": { + "instanceType": "D2", + "imageVersion": "pytorch-1.7.0", + "location": null, + "aiSuperComputerStorageData": null, + "interactive": false, + "scalePolicy": null, + "virtualClusterArmId": null, + "tensorboardLogDirectory": null, + "sshPublicKey": null, + "sshPublicKeys": null, + "enableAzmlInt": true, + "priority": "Medium", + "slaTier": "Standard", + "userAlias": null + }, + "kubernetesCompute": { + "instanceType": null + }, + "tensorflow": { + "workerCount": 0, + "parameterServerCount": 0 + }, + "mpi": { + "processCountPerNode": 1 + }, + "pyTorch": { + "communicationBackend": null, + "processCount": null + }, + "hdi": { + "yarnDeployMode": "None" + }, + "containerInstance": { + "region": null, + "cpuCores": 2.0, + "memoryGb": 3.5 + }, + "exposedPorts": null, + "docker": { + "useDocker": true, + "sharedVolumes": true, + "shmSize": "2g", + "arguments": [] + }, + "cmk8sCompute": { + "configuration": {} + }, + "globalJobDispatcher": { + "myResourceOnly": false, + "lowPriorityVMTolerant": true + }, + "commandReturnCodeConfig": { + "returnCode": "Zero", + "successfulReturnCodes": [] + }, + "environmentVariables": { + "AZUREML_PARAMETER_Node_Count": "1" + }, + "applicationEndpoints": {}, + "parameters": [], + "dataBricks": { + "workers": 0, + "minimumWorkerCount": 0, + "maxMumWorkerCount": 0, + "sparkVersion": "4.0.x-scala2.11", + "nodeTypeId": "Standard_D3_v2", + "sparkConf": {}, + "sparkEnvVars": {}, + "instancePoolId": null, + "timeoutSeconds": 0, + "jarLibraries": [], + "eggLibraries": [], + "whlLibraries": [], + "pypiLibraries": [], + "rCranLibraries": [], + "mavenLibraries": [], + "linkedADBWorkspaceMetadata": null, + "databrickResourceId": null, + "autoScale": false + }, + "componentConfiguration": { + "componentIdentifier": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/id/e950f876-7257-4cf3-99a5-ff66812ac44c/components/id/1bf47d41-9ae3-4f6c-ad73-9fb7b939f82e" + } + }, + "jobSpecification": null, + "systemSettings": null + } + }, + { + "RequestUri": "https://eastus2.api.azureml.ms/data/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/dataversion/batchGetResolvedUris", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "172", + "Content-Type": "application/json", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": { + "values": [ + "azureml://locations/eastus2/workspaces/e950f876-7257-4cf3-99a5-ff66812ac44c/data/azureml_7599d23f-8164-4644-808e-e4e13b1efe1d_output_data_default/versions/1" + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "Connection": "keep-alive", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:34:33 GMT", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Strict-Transport-Security": "max-age=15724800; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-eastus2-02", + "X-Content-Type-Options": "nosniff", + "x-ms-response-type": "standard", + "x-request-time": "0.029" + }, + "ResponseBody": { + "values": { + "azureml://locations/eastus2/workspaces/e950f876-7257-4cf3-99a5-ff66812ac44c/data/azureml_7599d23f-8164-4644-808e-e4e13b1efe1d_output_data_default/versions/1": { + "uri": "azureml://subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000/datastores/workspaceartifactstore/paths/ExperimentRun/dcid.7599d23f-8164-4644-808e-e4e13b1efe1d/", + "type": "UriFolder", + "legacyDatasetType": null + } + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores?api-version=2022-05-01\u0026count=30\u0026isDefault=true\u0026orderByAsc=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:34:34 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-516edff1af66726aaabfa0a37f7f39ff-1dae670e826d3528-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-eastus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "936c9217-7db5-457b-a70d-37e27d73137f", + "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153434Z:936c9217-7db5-457b-a70d-37e27d73137f", + "x-request-time": "0.149" + }, + "ResponseBody": { + "value": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", + "name": "workspaceblobstore", + "type": "Microsoft.MachineLearningServices/workspaces/datastores", + "properties": { + "description": null, + "tags": null, + "properties": null, + "isDefault": true, + "credentials": { + "credentialsType": "AccountKey" + }, + "datastoreType": "AzureBlob", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", + "endpoint": "core.windows.net", + "protocol": "https", + "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" + }, + "systemData": { + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", + "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", + "createdByType": "Application", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", + "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", + "lastModifiedByType": "Application" + } + } + ] + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceartifactstore?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:34:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-9e522eed7d686504231599500f9ef3b1-f40c9691a95b2560-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-eastus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "b4910ed4-b3fb-45d3-83e1-64491c5099ba", + "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153435Z:b4910ed4-b3fb-45d3-83e1-64491c5099ba", + "x-request-time": "0.125" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceartifactstore", + "name": "workspaceartifactstore", + "type": "Microsoft.MachineLearningServices/workspaces/datastores", + "properties": { + "description": null, + "tags": null, + "properties": null, + "isDefault": false, + "credentials": { + "credentialsType": "AccountKey" + }, + "datastoreType": "AzureBlob", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml", + "endpoint": "core.windows.net", + "protocol": "https", + "serviceDataAccessAuthIdentity": "None" + }, + "systemData": { + "createdAt": "2022-09-22T03:07:29.4451889\u002B00:00", + "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", + "createdByType": "Application", + "lastModifiedAt": "2022-09-22T03:07:29.8968846\u002B00:00", + "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", + "lastModifiedByType": "Application" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceartifactstore/listSecrets?api-version=2022-05-01", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "0", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:34:35 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-8a6895f82c35d3bc4b1a401676549581-bffc8ab0fcb84ebb-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-eastus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "de8200a0-04b6-4243-889a-19e55e7a8e5a", + "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153436Z:de8200a0-04b6-4243-889a-19e55e7a8e5a", + "x-request-time": "0.192" + }, + "ResponseBody": { + "secretsType": "AccountKey", + "key": "dGhpcyBpcyBmYWtlIGtleQ==" + } + }, + { + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml?restype=container\u0026comp=list\u0026prefix=ExperimentRun%2Fdcid.7599d23f-8164-4644-808e-e4e13b1efe1d%2F\u0026include=metadata", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/xml", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:34:38 GMT", + "x-ms-version": "2021-08-06" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Type": "application/xml", + "Date": "Fri, 23 Sep 2022 15:34:38 GMT", + "Server": [ + "Windows-Azure-Blob/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Transfer-Encoding": "chunked", + "Vary": "Origin", + "x-ms-version": "2021-08-06" + }, + "ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CEnumerationResults ServiceEndpoint=\u0022https://sav6dhrxexwlv7g.blob.core.windows.net/\u0022 ContainerName=\u0022azureml\u0022\u003E\u003CPrefix\u003EExperimentRun/dcid.7599d23f-8164-4644-808e-e4e13b1efe1d/\u003C/Prefix\u003E\u003CBlobs\u003E\u003CBlob\u003E\u003CName\u003EExperimentRun/dcid.7599d23f-8164-4644-808e-e4e13b1efe1d/logs/azureml/executionlogs.txt\u003C/Name\u003E\u003CProperties\u003E\u003CCreation-Time\u003EFri, 23 Sep 2022 15:32:21 GMT\u003C/Creation-Time\u003E\u003CLast-Modified\u003EFri, 23 Sep 2022 15:33:53 GMT\u003C/Last-Modified\u003E\u003CEtag\u003E0x8DA9D7905659B93\u003C/Etag\u003E\u003CContent-Length\u003E2453\u003C/Content-Length\u003E\u003CContent-Type\u003Eapplication/octet-stream\u003C/Content-Type\u003E\u003CContent-Encoding /\u003E\u003CContent-Language /\u003E\u003CContent-CRC64 /\u003E\u003CContent-MD5 /\u003E\u003CCache-Control /\u003E\u003CContent-Disposition /\u003E\u003CBlobType\u003EAppendBlob\u003C/BlobType\u003E\u003CLeaseStatus\u003Eunlocked\u003C/LeaseStatus\u003E\u003CLeaseState\u003Eavailable\u003C/LeaseState\u003E\u003CServerEncrypted\u003Etrue\u003C/ServerEncrypted\u003E\u003C/Properties\u003E\u003CMetadata /\u003E\u003COrMetadata /\u003E\u003C/Blob\u003E\u003CBlob\u003E\u003CName\u003EExperimentRun/dcid.7599d23f-8164-4644-808e-e4e13b1efe1d/logs/azureml/stderrlogs.txt\u003C/Name\u003E\u003CProperties\u003E\u003CCreation-Time\u003EFri, 23 Sep 2022 15:32:21 GMT\u003C/Creation-Time\u003E\u003CLast-Modified\u003EFri, 23 Sep 2022 15:32:21 GMT\u003C/Last-Modified\u003E\u003CEtag\u003E0x8DA9D78CECD6F0B\u003C/Etag\u003E\u003CContent-Length\u003E0\u003C/Content-Length\u003E\u003CContent-Type\u003Eapplication/octet-stream\u003C/Content-Type\u003E\u003CContent-Encoding /\u003E\u003CContent-Language /\u003E\u003CContent-CRC64 /\u003E\u003CContent-MD5 /\u003E\u003CCache-Control /\u003E\u003CContent-Disposition /\u003E\u003CBlobType\u003EAppendBlob\u003C/BlobType\u003E\u003CLeaseStatus\u003Eunlocked\u003C/LeaseStatus\u003E\u003CLeaseState\u003Eavailable\u003C/LeaseState\u003E\u003CServerEncrypted\u003Etrue\u003C/ServerEncrypted\u003E\u003C/Properties\u003E\u003CMetadata /\u003E\u003COrMetadata /\u003E\u003C/Blob\u003E\u003CBlob\u003E\u003CName\u003EExperimentRun/dcid.7599d23f-8164-4644-808e-e4e13b1efe1d/logs/azureml/stdoutlogs.txt\u003C/Name\u003E\u003CProperties\u003E\u003CCreation-Time\u003EFri, 23 Sep 2022 15:32:21 GMT\u003C/Creation-Time\u003E\u003CLast-Modified\u003EFri, 23 Sep 2022 15:32:21 GMT\u003C/Last-Modified\u003E\u003CEtag\u003E0x8DA9D78CEBDE0E6\u003C/Etag\u003E\u003CContent-Length\u003E0\u003C/Content-Length\u003E\u003CContent-Type\u003Eapplication/octet-stream\u003C/Content-Type\u003E\u003CContent-Encoding /\u003E\u003CContent-Language /\u003E\u003CContent-CRC64 /\u003E\u003CContent-MD5 /\u003E\u003CCache-Control /\u003E\u003CContent-Disposition /\u003E\u003CBlobType\u003EAppendBlob\u003C/BlobType\u003E\u003CLeaseStatus\u003Eunlocked\u003C/LeaseStatus\u003E\u003CLeaseState\u003Eavailable\u003C/LeaseState\u003E\u003CServerEncrypted\u003Etrue\u003C/ServerEncrypted\u003E\u003C/Properties\u003E\u003CMetadata /\u003E\u003COrMetadata /\u003E\u003C/Blob\u003E\u003CBlob\u003E\u003CName\u003EExperimentRun/dcid.7599d23f-8164-4644-808e-e4e13b1efe1d/system_logs/cs_capability/cs-capability.log\u003C/Name\u003E\u003CProperties\u003E\u003CCreation-Time\u003EFri, 23 Sep 2022 15:33:23 GMT\u003C/Creation-Time\u003E\u003CLast-Modified\u003EFri, 23 Sep 2022 15:33:48 GMT\u003C/Last-Modified\u003E\u003CEtag\u003E0x8DA9D7902C86E1F\u003C/Etag\u003E\u003CContent-Length\u003E25658\u003C/Content-Length\u003E\u003CContent-Type\u003Eapplication/octet-stream\u003C/Content-Type\u003E\u003CContent-Encoding /\u003E\u003CContent-Language /\u003E\u003CContent-CRC64 /\u003E\u003CContent-MD5 /\u003E\u003CCache-Control /\u003E\u003CContent-Disposition /\u003E\u003CBlobType\u003EBlockBlob\u003C/BlobType\u003E\u003CAccessTier\u003EHot\u003C/AccessTier\u003E\u003CAccessTierInferred\u003Etrue\u003C/AccessTierInferred\u003E\u003CLeaseStatus\u003Eunlocked\u003C/LeaseStatus\u003E\u003CLeaseState\u003Eavailable\u003C/LeaseState\u003E\u003CServerEncrypted\u003Etrue\u003C/ServerEncrypted\u003E\u003C/Properties\u003E\u003CMetadata /\u003E\u003COrMetadata /\u003E\u003C/Blob\u003E\u003CBlob\u003E\u003CName\u003EExperimentRun/dcid.7599d23f-8164-4644-808e-e4e13b1efe1d/system_logs/data_capability/data-capability.log\u003C/Name\u003E\u003CProperties\u003E\u003CCreation-Time\u003EFri, 23 Sep 2022 15:33:48 GMT\u003C/Creation-Time\u003E\u003CLast-Modified\u003EFri, 23 Sep 2022 15:33:48 GMT\u003C/Last-Modified\u003E\u003CEtag\u003E0x8DA9D7902CDC486\u003C/Etag\u003E\u003CContent-Length\u003E48264\u003C/Content-Length\u003E\u003CContent-Type\u003Eapplication/octet-stream\u003C/Content-Type\u003E\u003CContent-Encoding /\u003E\u003CContent-Language /\u003E\u003CContent-CRC64 /\u003E\u003CContent-MD5 /\u003E\u003CCache-Control /\u003E\u003CContent-Disposition /\u003E\u003CBlobType\u003EBlockBlob\u003C/BlobType\u003E\u003CAccessTier\u003EHot\u003C/AccessTier\u003E\u003CAccessTierInferred\u003Etrue\u003C/AccessTierInferred\u003E\u003CLeaseStatus\u003Eunlocked\u003C/LeaseStatus\u003E\u003CLeaseState\u003Eavailable\u003C/LeaseState\u003E\u003CServerEncrypted\u003Etrue\u003C/ServerEncrypted\u003E\u003C/Properties\u003E\u003CMetadata /\u003E\u003COrMetadata /\u003E\u003C/Blob\u003E\u003CBlob\u003E\u003CName\u003EExperimentRun/dcid.7599d23f-8164-4644-808e-e4e13b1efe1d/system_logs/data_capability/rslex.log.2022-09-23-15\u003C/Name\u003E\u003CProperties\u003E\u003CCreation-Time\u003EFri, 23 Sep 2022 15:33:48 GMT\u003C/Creation-Time\u003E\u003CLast-Modified\u003EFri, 23 Sep 2022 15:33:49 GMT\u003C/Last-Modified\u003E\u003CEtag\u003E0x8DA9D7902CE60AC\u003C/Etag\u003E\u003CContent-Length\u003E5458\u003C/Content-Length\u003E\u003CContent-Type\u003Eapplication/octet-stream\u003C/Content-Type\u003E\u003CContent-Encoding /\u003E\u003CContent-Language /\u003E\u003CContent-CRC64 /\u003E\u003CContent-MD5 /\u003E\u003CCache-Control /\u003E\u003CContent-Disposition /\u003E\u003CBlobType\u003EBlockBlob\u003C/BlobType\u003E\u003CAccessTier\u003EHot\u003C/AccessTier\u003E\u003CAccessTierInferred\u003Etrue\u003C/AccessTierInferred\u003E\u003CLeaseStatus\u003Eunlocked\u003C/LeaseStatus\u003E\u003CLeaseState\u003Eavailable\u003C/LeaseState\u003E\u003CServerEncrypted\u003Etrue\u003C/ServerEncrypted\u003E\u003C/Properties\u003E\u003CMetadata /\u003E\u003COrMetadata /\u003E\u003C/Blob\u003E\u003CBlob\u003E\u003CName\u003EExperimentRun/dcid.7599d23f-8164-4644-808e-e4e13b1efe1d/system_logs/hosttools_capability/hosttools-capability.log\u003C/Name\u003E\u003CProperties\u003E\u003CCreation-Time\u003EFri, 23 Sep 2022 15:32:53 GMT\u003C/Creation-Time\u003E\u003CLast-Modified\u003EFri, 23 Sep 2022 15:33:48 GMT\u003C/Last-Modified\u003E\u003CEtag\u003E0x8DA9D7902A5F6F9\u003C/Etag\u003E\u003CContent-Length\u003E83301\u003C/Content-Length\u003E\u003CContent-Type\u003Eapplication/octet-stream\u003C/Content-Type\u003E\u003CContent-Encoding /\u003E\u003CContent-Language /\u003E\u003CContent-CRC64 /\u003E\u003CContent-MD5 /\u003E\u003CCache-Control /\u003E\u003CContent-Disposition /\u003E\u003CBlobType\u003EBlockBlob\u003C/BlobType\u003E\u003CAccessTier\u003EHot\u003C/AccessTier\u003E\u003CAccessTierInferred\u003Etrue\u003C/AccessTierInferred\u003E\u003CLeaseStatus\u003Eunlocked\u003C/LeaseStatus\u003E\u003CLeaseState\u003Eavailable\u003C/LeaseState\u003E\u003CServerEncrypted\u003Etrue\u003C/ServerEncrypted\u003E\u003C/Properties\u003E\u003CMetadata /\u003E\u003COrMetadata /\u003E\u003C/Blob\u003E\u003CBlob\u003E\u003CName\u003EExperimentRun/dcid.7599d23f-8164-4644-808e-e4e13b1efe1d/system_logs/lifecycler/execution-wrapper.log\u003C/Name\u003E\u003CProperties\u003E\u003CCreation-Time\u003EFri, 23 Sep 2022 15:33:48 GMT\u003C/Creation-Time\u003E\u003CLast-Modified\u003EFri, 23 Sep 2022 15:33:49 GMT\u003C/Last-Modified\u003E\u003CEtag\u003E0x8DA9D7902D19489\u003C/Etag\u003E\u003CContent-Length\u003E25216\u003C/Content-Length\u003E\u003CContent-Type\u003Eapplication/octet-stream\u003C/Content-Type\u003E\u003CContent-Encoding /\u003E\u003CContent-Language /\u003E\u003CContent-CRC64 /\u003E\u003CContent-MD5 /\u003E\u003CCache-Control /\u003E\u003CContent-Disposition /\u003E\u003CBlobType\u003EBlockBlob\u003C/BlobType\u003E\u003CAccessTier\u003EHot\u003C/AccessTier\u003E\u003CAccessTierInferred\u003Etrue\u003C/AccessTierInferred\u003E\u003CLeaseStatus\u003Eunlocked\u003C/LeaseStatus\u003E\u003CLeaseState\u003Eavailable\u003C/LeaseState\u003E\u003CServerEncrypted\u003Etrue\u003C/ServerEncrypted\u003E\u003C/Properties\u003E\u003CMetadata /\u003E\u003COrMetadata /\u003E\u003C/Blob\u003E\u003CBlob\u003E\u003CName\u003EExperimentRun/dcid.7599d23f-8164-4644-808e-e4e13b1efe1d/system_logs/lifecycler/lifecycler.log\u003C/Name\u003E\u003CProperties\u003E\u003CCreation-Time\u003EFri, 23 Sep 2022 15:32:53 GMT\u003C/Creation-Time\u003E\u003CLast-Modified\u003EFri, 23 Sep 2022 15:33:48 GMT\u003C/Last-Modified\u003E\u003CEtag\u003E0x8DA9D7902AB2651\u003C/Etag\u003E\u003CContent-Length\u003E40658\u003C/Content-Length\u003E\u003CContent-Type\u003Eapplication/octet-stream\u003C/Content-Type\u003E\u003CContent-Encoding /\u003E\u003CContent-Language /\u003E\u003CContent-CRC64 /\u003E\u003CContent-MD5 /\u003E\u003CCache-Control /\u003E\u003CContent-Disposition /\u003E\u003CBlobType\u003EBlockBlob\u003C/BlobType\u003E\u003CAccessTier\u003EHot\u003C/AccessTier\u003E\u003CAccessTierInferred\u003Etrue\u003C/AccessTierInferred\u003E\u003CLeaseStatus\u003Eunlocked\u003C/LeaseStatus\u003E\u003CLeaseState\u003Eavailable\u003C/LeaseState\u003E\u003CServerEncrypted\u003Etrue\u003C/ServerEncrypted\u003E\u003C/Properties\u003E\u003CMetadata /\u003E\u003COrMetadata /\u003E\u003C/Blob\u003E\u003CBlob\u003E\u003CName\u003EExperimentRun/dcid.7599d23f-8164-4644-808e-e4e13b1efe1d/system_logs/metrics_capability/metrics-capability.log\u003C/Name\u003E\u003CProperties\u003E\u003CCreation-Time\u003EFri, 23 Sep 2022 15:33:23 GMT\u003C/Creation-Time\u003E\u003CLast-Modified\u003EFri, 23 Sep 2022 15:33:48 GMT\u003C/Last-Modified\u003E\u003CEtag\u003E0x8DA9D7902A163BA\u003C/Etag\u003E\u003CContent-Length\u003E13743\u003C/Content-Length\u003E\u003CContent-Type\u003Eapplication/octet-stream\u003C/Content-Type\u003E\u003CContent-Encoding /\u003E\u003CContent-Language /\u003E\u003CContent-CRC64 /\u003E\u003CContent-MD5 /\u003E\u003CCache-Control /\u003E\u003CContent-Disposition /\u003E\u003CBlobType\u003EBlockBlob\u003C/BlobType\u003E\u003CAccessTier\u003EHot\u003C/AccessTier\u003E\u003CAccessTierInferred\u003Etrue\u003C/AccessTierInferred\u003E\u003CLeaseStatus\u003Eunlocked\u003C/LeaseStatus\u003E\u003CLeaseState\u003Eavailable\u003C/LeaseState\u003E\u003CServerEncrypted\u003Etrue\u003C/ServerEncrypted\u003E\u003C/Properties\u003E\u003CMetadata /\u003E\u003COrMetadata /\u003E\u003C/Blob\u003E\u003CBlob\u003E\u003CName\u003EExperimentRun/dcid.7599d23f-8164-4644-808e-e4e13b1efe1d/system_logs/snapshot_capability/snapshot-capability.log\u003C/Name\u003E\u003CProperties\u003E\u003CCreation-Time\u003EFri, 23 Sep 2022 15:33:23 GMT\u003C/Creation-Time\u003E\u003CLast-Modified\u003EFri, 23 Sep 2022 15:33:48 GMT\u003C/Last-Modified\u003E\u003CEtag\u003E0x8DA9D7902A0C79D\u003C/Etag\u003E\u003CContent-Length\u003E6081\u003C/Content-Length\u003E\u003CContent-Type\u003Eapplication/octet-stream\u003C/Content-Type\u003E\u003CContent-Encoding /\u003E\u003CContent-Language /\u003E\u003CContent-CRC64 /\u003E\u003CContent-MD5 /\u003E\u003CCache-Control /\u003E\u003CContent-Disposition /\u003E\u003CBlobType\u003EBlockBlob\u003C/BlobType\u003E\u003CAccessTier\u003EHot\u003C/AccessTier\u003E\u003CAccessTierInferred\u003Etrue\u003C/AccessTierInferred\u003E\u003CLeaseStatus\u003Eunlocked\u003C/LeaseStatus\u003E\u003CLeaseState\u003Eavailable\u003C/LeaseState\u003E\u003CServerEncrypted\u003Etrue\u003C/ServerEncrypted\u003E\u003C/Properties\u003E\u003CMetadata /\u003E\u003COrMetadata /\u003E\u003C/Blob\u003E\u003CBlob\u003E\u003CName\u003EExperimentRun/dcid.7599d23f-8164-4644-808e-e4e13b1efe1d/user_logs/std_log.txt\u003C/Name\u003E\u003CProperties\u003E\u003CCreation-Time\u003EFri, 23 Sep 2022 15:33:48 GMT\u003C/Creation-Time\u003E\u003CLast-Modified\u003EFri, 23 Sep 2022 15:33:48 GMT\u003C/Last-Modified\u003E\u003CEtag\u003E0x8DA9D7902C95858\u003C/Etag\u003E\u003CContent-Length\u003E0\u003C/Content-Length\u003E\u003CContent-Type\u003Eapplication/octet-stream\u003C/Content-Type\u003E\u003CContent-Encoding /\u003E\u003CContent-Language /\u003E\u003CContent-CRC64 /\u003E\u003CContent-MD5\u003E1B2M2Y8AsgTpgAmY7PhCfg==\u003C/Content-MD5\u003E\u003CCache-Control /\u003E\u003CContent-Disposition /\u003E\u003CBlobType\u003EBlockBlob\u003C/BlobType\u003E\u003CAccessTier\u003EHot\u003C/AccessTier\u003E\u003CAccessTierInferred\u003Etrue\u003C/AccessTierInferred\u003E\u003CLeaseStatus\u003Eunlocked\u003C/LeaseStatus\u003E\u003CLeaseState\u003Eavailable\u003C/LeaseState\u003E\u003CServerEncrypted\u003Etrue\u003C/ServerEncrypted\u003E\u003C/Properties\u003E\u003CMetadata /\u003E\u003COrMetadata /\u003E\u003C/Blob\u003E\u003C/Blobs\u003E\u003CNextMarker /\u003E\u003C/EnumerationResults\u003E" + }, + { + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml/ExperimentRun/dcid.7599d23f-8164-4644-808e-e4e13b1efe1d/logs/azureml/executionlogs.txt", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/xml", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:34:41 GMT", + "x-ms-range": "bytes=0-33554431", + "x-ms-version": "2021-08-06" + }, + "RequestBody": null, + "StatusCode": 206, + "ResponseHeaders": { + "Accept-Ranges": "bytes", + "Content-Length": "2453", + "Content-Range": "bytes 0-2452/2453", + "Content-Type": "application/octet-stream", + "Date": "Fri, 23 Sep 2022 15:34:39 GMT", + "ETag": "\u00220x8DA9D7905659B93\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:33:53 GMT", + "Server": [ + "Windows-Azure-Blob/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": "Origin", + "x-ms-blob-committed-block-count": "7", + "x-ms-blob-type": "AppendBlob", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:32:21 GMT", + "x-ms-lease-state": "available", + "x-ms-lease-status": "unlocked", + "x-ms-server-encrypted": "true", + "x-ms-version": "2021-08-06" + }, + "ResponseBody": "WzIwMjItMDktMjMgMTU6MzI6MjFaXSBSZXVzZUhhc2g6IGU5NTBmODc2LTcyNTctNGNmMy05OWE1LWZmNjY4MTJhYzQ0Y2tJdjBzaGRHOFpvZDdPUXJuQmowV29uTjdNTzdOUnR4dDNHMVJkVWY2bXc9LCBKb2JEZWZpbml0aW9uVG9IYXNoOiB7IkNvbmZpZ3VyYXRpb24iOnsiQ29tbWFuZCI6ImVjaG8gXCJIZWxsbyBXb3JsZFwiID4gRGF0YXNldE91dHB1dENvbmZpZzpjb21wb25lbnRfb3V0X3BhdGhfMS9oZWxsb3dvcmxkLnR4dCIsIlVzZUFic29sdXRlUGF0aCI6ZmFsc2UsIkZyYW1ld29yayI6IlB5dGhvbiIsIkNvbW11bmljYXRvciI6Ik5vbmUiLCJUYXJnZXQiOiJjcHUtY2x1c3RlciIsIk91dHB1dERhdGEiOnsia2V5cyI6WyJjb21wb25lbnRfb3V0X3BhdGhfMSJdLCJ2YWx1ZXMiOlt7Ik91dHB1dExvY2F0aW9uIjp7IlVyaSI6eyJQYXRoIjoiYXp1cmVtbDovL2RhdGFzdG9yZXMvd29ya3NwYWNlYmxvYnN0b3JlL3BhdGhzL2F6dXJlbWwve25hbWV9L2pvYl9vdXRfcGF0aF8xLyIsIklzRmlsZSI6ZmFsc2V9LCJUeXBlIjoiVXJpRm9sZGVyIn0sIk1lY2hhbmlzbSI6Ik1vdW50IiwiRW52aXJvbm1lbnRWYXJpYWJsZU5hbWUiOiJBWlVSRV9NTF9PVVRQVVRfY29tcG9uZW50X291dF9wYXRoXzEifV19LCJOb2RlQ291bnQiOjEsIkNyZWRlbnRpYWxQYXNzdGhyb3VnaCI6ZmFsc2UsIkVudmlyb25tZW50Ijp7Ik5hbWUiOiJBenVyZU1MLXNrbGVhcm4tMC4yNC11YnVudHUxOC4wNC1weTM3LWNwdSIsIlZlcnNpb24iOiIxIn0sIkhpc3RvcnkiOnsiT3V0cHV0Q29sbGVjdGlvbiI6dHJ1ZSwiRGlyZWN0b3JpZXNUb1dhdGNoIjpbImxvZ3MiXSwiRW5hYmxlTUxmbG93VHJhY2tpbmciOmZhbHNlfSwiUGFyYWxsZWxUYXNrIjp7Ik1heFJldHJpZXNQZXJXb3JrZXIiOjAsIldvcmtlckNvdW50UGVyTm9kZSI6MX0sIkJhdGNoQWkiOnsiTm9kZUNvdW50IjowfSwiQW1sQ29tcHV0ZSI6eyJSZXRhaW5DbHVzdGVyIjpmYWxzZSwiQ2x1c3Rlck1heE5vZGVDb3VudCI6MX0sIkFJU3VwZXJDb21wdXRlciI6eyJJbnN0YW5jZVR5cGUiOiJEMiIsIkltYWdlVmVyc2lvbiI6InB5dG9yY2gtMS43LjAiLCJJbnRlcmFjdGl2ZSI6ZmFsc2UsIkVuYWJsZUF6bWxJbnQiOnRydWUsIlNMQVRpZXIiOiJTdGFuZGFyZCJ9LCJUZW5zb3JmbG93Ijp7IldvcmtlckNvdW50IjowLCJQYXJhbWV0ZXJTZXJ2ZXJDb3VudCI6MH0sIk1waSI6eyJQcm9jZXNzQ291bnRQZXJOb2RlIjoxfSwiSGRpIjp7Illhcm5EZXBsb3lNb2RlIjoiTm9uZSJ9LCJDb250YWluZXJJbnN0YW5jZSI6eyJDcHVDb3JlcyI6Mi4wLCJNZW1vcnlHYiI6My41fSwiRG9ja2VyIjp7IlVzZURvY2tlciI6dHJ1ZSwiU2hhcmVkVm9sdW1lcyI6dHJ1ZSwiU2htU2l6ZSI6IjJnIn0sIkdsb2JhbEpvYkRpc3BhdGNoZXIiOnsiTXlSZXNvdXJjZU9ubHkiOmZhbHNlLCJMb3dQcmlvcml0eVZNVG9sZXJhbnQiOnRydWV9LCJDb21tYW5kUmV0dXJuQ29kZUNvbmZpZyI6eyJSZXR1cm5Db2RlIjoiWmVybyJ9LCJFbnZpcm9ubWVudFZhcmlhYmxlcyI6eyJBWlVSRU1MX1BBUkFNRVRFUl9Ob2RlX0NvdW50IjoiMSJ9LCJEYXRhQnJpY2tzIjp7IldvcmtlcnMiOjAsIk1pbmltdW1Xb3JrZXJDb3VudCI6MCwiTWF4TXVtV29ya2VyQ291bnQiOjAsIlNwYXJrVmVyc2lvbiI6IjQuMC54LXNjYWxhMi4xMSIsIk5vZGVUeXBlSWQiOiJTdGFuZGFyZF9EM192MiIsIlRpbWVvdXRTZWNvbmRzIjowfX0sIlNuYXBzaG90SWQiOiJmNDA2NjhjMi0xNTcyLTQ5OWYtODY0Zi03NzZmMDE1NDdlNjgifQpbMjAyMi0wOS0yMyAxNTozMjoyMVpdIFN0YXJ0aW5nIHJ1biBpbiBFeGVjdXRpb24gU2VydmljZQpbMjAyMi0wOS0yMyAxNTozMjoyMlpdIFJ1bklkOls3NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWRdIFBhcmVudFJ1bklkOltoZWxsb3dvcmxkX3BpcGVsaW5lX2pvYl9xdWlja193aXRoX291dHB1dF8yMDIyVzM4X3Rlc3RfcGlwZWxpbmVfam9iX2NoaWxkX3J1bl9kb3dubG9hZF0gQ29tcHV0ZVRhcmdldDpbQW1sQ29tcHV0ZV0KWzIwMjItMDktMjMgMTU6MzI6MjJaXSBKb2IgaXMgaW4gcHJvZ3Jlc3MuIEV4ZWN1dGlvbiBzdGF0dXM6IFByZXBhcmluZy4KWzIwMjItMDktMjMgMTU6MzI6MjNaXSBKb2IgaXMgaW4gcHJvZ3Jlc3MuIEV4ZWN1dGlvbiBzdGF0dXM6IFF1ZXVlZC4KWzIwMjItMDktMjMgMTU6MzI6MjRaXSBKb2IgaXMgaW4gcHJvZ3Jlc3MuIEV4ZWN1dGlvbiBzdGF0dXM6IFF1ZXVlZC4KWzIwMjItMDktMjMgMTU6MzI6NTJaXSBKb2IgaXMgaW4gcHJvZ3Jlc3MuIEV4ZWN1dGlvbiBzdGF0dXM6IFJ1bm5pbmcuClsyMDIyLTA5LTIzIDE1OjMzOjQ5Wl0gSm9iIGlzIGluIHByb2dyZXNzLiBFeGVjdXRpb24gc3RhdHVzOiBGaW5hbGl6aW5nLgpbMjAyMi0wOS0yMyAxNTozMzo1M1pdIEpvYiBmaW5pc2hlZCwgam9iIFJ1bklkIGlzIDc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZAo=" + }, + { + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml/ExperimentRun/dcid.7599d23f-8164-4644-808e-e4e13b1efe1d/logs/azureml/stderrlogs.txt", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/xml", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:34:41 GMT", + "x-ms-range": "bytes=0-33554431", + "x-ms-version": "2021-08-06" + }, + "RequestBody": null, + "StatusCode": 416, + "ResponseHeaders": { + "Content-Length": "249", + "Content-Range": "bytes */0", + "Content-Type": "application/xml", + "Date": "Fri, 23 Sep 2022 15:34:39 GMT", + "Server": [ + "Windows-Azure-Blob/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": "Origin", + "x-ms-error-code": "InvalidRange", + "x-ms-version": "2021-08-06" + }, + "ResponseBody": [ + "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CError\u003E\u003CCode\u003EInvalidRange\u003C/Code\u003E\u003CMessage\u003EThe range specified is invalid for the current size of the resource.\n", + "RequestId:ce9aa204-f01e-006a-2d61-cf922b000000\n", + "Time:2022-09-23T15:34:39.5871138Z\u003C/Message\u003E\u003C/Error\u003E" + ] + }, + { + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml/ExperimentRun/dcid.7599d23f-8164-4644-808e-e4e13b1efe1d/logs/azureml/stderrlogs.txt", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/xml", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:34:41 GMT", + "x-ms-version": "2021-08-06" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Accept-Ranges": "bytes", + "Content-Length": "0", + "Content-Type": "application/octet-stream", + "Date": "Fri, 23 Sep 2022 15:34:39 GMT", + "ETag": "\u00220x8DA9D78CECD6F0B\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:32:21 GMT", + "Server": [ + "Windows-Azure-Blob/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": "Origin", + "x-ms-blob-committed-block-count": "0", + "x-ms-blob-type": "AppendBlob", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:32:21 GMT", + "x-ms-lease-state": "available", + "x-ms-lease-status": "unlocked", + "x-ms-server-encrypted": "true", + "x-ms-version": "2021-08-06" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml/ExperimentRun/dcid.7599d23f-8164-4644-808e-e4e13b1efe1d/logs/azureml/stdoutlogs.txt", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/xml", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:34:42 GMT", + "x-ms-range": "bytes=0-33554431", + "x-ms-version": "2021-08-06" + }, + "RequestBody": null, + "StatusCode": 416, + "ResponseHeaders": { + "Content-Length": "249", + "Content-Range": "bytes */0", + "Content-Type": "application/xml", + "Date": "Fri, 23 Sep 2022 15:34:40 GMT", + "Server": [ + "Windows-Azure-Blob/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": "Origin", + "x-ms-error-code": "InvalidRange", + "x-ms-version": "2021-08-06" + }, + "ResponseBody": [ + "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CError\u003E\u003CCode\u003EInvalidRange\u003C/Code\u003E\u003CMessage\u003EThe range specified is invalid for the current size of the resource.\n", + "RequestId:ce9aa4da-f01e-006a-6261-cf922b000000\n", + "Time:2022-09-23T15:34:40.4615909Z\u003C/Message\u003E\u003C/Error\u003E" + ] + }, + { + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml/ExperimentRun/dcid.7599d23f-8164-4644-808e-e4e13b1efe1d/logs/azureml/stdoutlogs.txt", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/xml", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:34:42 GMT", + "x-ms-version": "2021-08-06" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Accept-Ranges": "bytes", + "Content-Length": "0", + "Content-Type": "application/octet-stream", + "Date": "Fri, 23 Sep 2022 15:34:40 GMT", + "ETag": "\u00220x8DA9D78CEBDE0E6\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:32:21 GMT", + "Server": [ + "Windows-Azure-Blob/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": "Origin", + "x-ms-blob-committed-block-count": "0", + "x-ms-blob-type": "AppendBlob", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:32:21 GMT", + "x-ms-lease-state": "available", + "x-ms-lease-status": "unlocked", + "x-ms-server-encrypted": "true", + "x-ms-version": "2021-08-06" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml/ExperimentRun/dcid.7599d23f-8164-4644-808e-e4e13b1efe1d/system_logs/cs_capability/cs-capability.log", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/xml", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:34:42 GMT", + "x-ms-range": "bytes=0-33554431", + "x-ms-version": "2021-08-06" + }, + "RequestBody": null, + "StatusCode": 206, + "ResponseHeaders": { + "Accept-Ranges": "bytes", + "Content-Disposition": "", + "Content-Length": "25658", + "Content-Range": "bytes 0-25657/25658", + "Content-Type": "application/octet-stream", + "Date": "Fri, 23 Sep 2022 15:34:40 GMT", + "ETag": "\u00220x8DA9D7902C86E1F\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:33:48 GMT", + "Server": [ + "Windows-Azure-Blob/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": "Origin", + "x-ms-blob-type": "BlockBlob", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:33:23 GMT", + "x-ms-lease-state": "available", + "x-ms-lease-status": "unlocked", + "x-ms-server-encrypted": "true", + "x-ms-version": "2021-08-06" + }, + "ResponseBody": "SU5GTyAyMDIyLTA5LTIzIDE1OjMyOjU1LDUyMyBpbml0aWFsaXplci5weTo1OSBbMV0gLSBqb2JfdGVsZW1ldHJ5X2luaXQgeydhcnRpZmFjdF90eXBlJzogJ2luc3RhbGxlZCcsICdjaV9udW1iZXInOiAnMjAyMjA5MTYuMScsICdjaV9uYW1lJzogJ0NvbW1vblJ1bnRpbWUtcHJvZC1idWlsZCcsICdidWlsZF90aW1lJzogJzIwMjItMDktMTYgMTA6MzU6NDMuMzAzNDcwJywgJ3N1YnNjcmlwdGlvbl9pZCc6ICc5NmFlZGUxMi0yZjczLTQxY2ItYjk4My02ZDExYTkwNDgzOWInLCAncmVzb3VyY2VfZ3JvdXAnOiAnemhlbmdmZWktdGVzdC1lYXN0dXMyJywgJ3dvcmtzcGFjZV9uYW1lJzogJ3Nka192bmV4dF9jbGknLCAnd29ya3NwYWNlX2xvY2F0aW9uJzogJ2Vhc3R1czInLCAnZXhwZXJpbWVudF9uYW1lJzogJ2F6dXJlLWFpLW1sJywgJ25vZGVfcmFuayc6ICdOb25lJywgJ25vZGVfaWQnOiAndHZtcHNfMGQ4MDZjMjBlZTkxNDcwMDFhMjZiZDM0MDViOTk1YTcxYTEwMzA5OGUyYzgxNzhhNTA2NjQxZDIyNTVlMDJjMV9kJywgJ3Jvb3RfcnVuX2lkJzogJ2hlbGxvd29ybGRfcGlwZWxpbmVfam9iX3F1aWNrX3dpdGhfb3V0cHV0XzIwMjJXMzhfdGVzdF9waXBlbGluZV9qb2JfY2hpbGRfcnVuX2Rvd25sb2FkJywgJ3J1bl9pZCc6ICc3NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQnLCAnY29ycmVsYXRpb25faWQnOiAnNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkJywgJ3NvdXJjZSc6ICdjb21tb25fcnVudGltZS5jcy1jYXBhYmlsaXR5JywgJ3Nlc3Npb25faWQnOiAnMGE2NTA2MTEtMWYyOC00ZDEwLWFmZmQtYTdhYjRkZjNmMGNlJywgJ3ZlcnNpb24nOiAnMC4wLjEuMjAyMjA5MTYuMScsICdjb21taXQnOiAnMWY0ODlkZScsICdicmFuY2gnOiAnb3JpZ2luLzFmNDg5ZGVjNGY1NzExNGQ3NjczNjRkMDJlZDk1MmE1MjNlOGViYmInLCAnY3VzdG9tX2RpbWVuc2lvbnMnOiB7J2FydGlmYWN0X3R5cGUnOiAnaW5zdGFsbGVkJywgJ2NpX251bWJlcic6ICcyMDIyMDkxNi4xJywgJ2NpX25hbWUnOiAnQ29tbW9uUnVudGltZS1wcm9kLWJ1aWxkJywgJ2J1aWxkX3RpbWUnOiAnMjAyMi0wOS0xNiAxMDozNTo0My4zMDM0NzAnLCAnc3Vic2NyaXB0aW9uX2lkJzogJzk2YWVkZTEyLTJmNzMtNDFjYi1iOTgzLTZkMTFhOTA0ODM5YicsICdyZXNvdXJjZV9ncm91cCc6ICd6aGVuZ2ZlaS10ZXN0LWVhc3R1czInLCAnd29ya3NwYWNlX25hbWUnOiAnc2RrX3ZuZXh0X2NsaScsICd3b3Jrc3BhY2VfbG9jYXRpb24nOiAnZWFzdHVzMicsICdleHBlcmltZW50X25hbWUnOiAnYXp1cmUtYWktbWwnLCAnbm9kZV9yYW5rJzogJ05vbmUnLCAnbm9kZV9pZCc6ICd0dm1wc18wZDgwNmMyMGVlOTE0NzAwMWEyNmJkMzQwNWI5OTVhNzFhMTAzMDk4ZTJjODE3OGE1MDY2NDFkMjI1NWUwMmMxX2QnLCAncm9vdF9ydW5faWQnOiAnaGVsbG93b3JsZF9waXBlbGluZV9qb2JfcXVpY2tfd2l0aF9vdXRwdXRfMjAyMlczOF90ZXN0X3BpcGVsaW5lX2pvYl9jaGlsZF9ydW5fZG93bmxvYWQnLCAncnVuX2lkJzogJzc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCcsICdjb3JyZWxhdGlvbl9pZCc6ICc3NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQnLCAnc291cmNlJzogJ2NvbW1vbl9ydW50aW1lLmNzLWNhcGFiaWxpdHknLCAnc2Vzc2lvbl9pZCc6ICcwYTY1MDYxMS0xZjI4LTRkMTAtYWZmZC1hN2FiNGRmM2YwY2UnLCAndmVyc2lvbic6ICcwLjAuMS4yMDIyMDkxNi4xJywgJ2NvbW1pdCc6ICcxZjQ4OWRlJywgJ2JyYW5jaCc6ICdvcmlnaW4vMWY0ODlkZWM0ZjU3MTE0ZDc2NzM2NGQwMmVkOTUyYTUyM2U4ZWJiYid9fQpJTkZPIDIwMjItMDktMjMgMTU6MzI6NTUsNTIzIHRyYWNlci5weTozMCBbMV0gLSBTZXR0aW5nIHVwIHRyYWNlciB7J2NvbXBvbmVudF9uYW1lJzogJ2NzLWNhcGFiaWxpdHknLCAndGVsZW1ldHJ5X2NvbmZpZyc6ICd7ImNvbGxlY3RvciI6IHsicmVjZWl2ZXIiOiBudWxsLCAiZXhwb3J0ZXIiOiB7ImFwcGluc2lnaHRzIjogeyJpbnN0cnVtZW50YXRpb25fa2V5IjogImQyZWU4OWM5LTIyYjEtNGIwNy04NGZkLWFkN2E4N2ZkNzE1ZCJ9LCAiamFlZ2VyIjogbnVsbCwgInByb21ldGhldXMiOiBudWxsLCAidGltZW91dF9taWxsaXMiOiBudWxsLCAibGV2ZWwiOiBudWxsfX0sICJsb2dnZXIiOiB7ImNvbnNvbGUiOiBudWxsLCAiYXBwaW5zaWdodHMiOiB7Imluc3RydW1lbnRhdGlvbl9rZXkiOiAiZDJlZTg5YzktMjJiMS00YjA3LTg0ZmQtYWQ3YTg3ZmQ3MTVkIiwgImxldmVsIjogImluZm8iLCAiZW5hYmxlZCI6IHRydWV9LCAiZmlsZSI6IHsiZXh0ZW5zaW9uIjogImxvZyIsICJsZXZlbCI6ICJpbmZvIiwgImVuYWJsZWQiOiB0cnVlfX0sICJub2RlX3JhbmsiOiBudWxsLCAibm9kZV9pZCI6ICJ0dm1wc18wZDgwNmMyMGVlOTE0NzAwMWEyNmJkMzQwNWI5OTVhNzFhMTAzMDk4ZTJjODE3OGE1MDY2NDFkMjI1NWUwMmMxX2QiLCAiZGlzYWJsZV9zZW5zaXRpdmVfc2NydWIiOiBudWxsfScsICdzdWJzY3JpcHRpb25faWQnOiAnOTZhZWRlMTItMmY3My00MWNiLWI5ODMtNmQxMWE5MDQ4MzliJywgJ3Jlc291cmNlX2dyb3VwJzogJ3poZW5nZmVpLXRlc3QtZWFzdHVzMicsICd3b3Jrc3BhY2VfbmFtZSc6ICdzZGtfdm5leHRfY2xpJywgJ3dvcmtzcGFjZV9sb2NhdGlvbic6ICdlYXN0dXMyJywgJ2V4cGVyaW1lbnRfbmFtZSc6ICdhenVyZS1haS1tbCcsICdub2RlX3JhbmsnOiAnTm9uZScsICdub2RlX2lkJzogJ3R2bXBzXzBkODA2YzIwZWU5MTQ3MDAxYTI2YmQzNDA1Yjk5NWE3MWExMDMwOThlMmM4MTc4YTUwNjY0MWQyMjU1ZTAyYzFfZCcsICdyb290X3J1bl9pZCc6ICdoZWxsb3dvcmxkX3BpcGVsaW5lX2pvYl9xdWlja193aXRoX291dHB1dF8yMDIyVzM4X3Rlc3RfcGlwZWxpbmVfam9iX2NoaWxkX3J1bl9kb3dubG9hZCcsICdydW5faWQnOiAnNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkJywgJ2NvcnJlbGF0aW9uX2lkJzogJzc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCcsICdzb3VyY2UnOiAnY29tbW9uX3J1bnRpbWUuY3MtY2FwYWJpbGl0eScsICdzZXNzaW9uX2lkJzogJzBhNjUwNjExLTFmMjgtNGQxMC1hZmZkLWE3YWI0ZGYzZjBjZScsICd2ZXJzaW9uJzogJzAuMC4xLjIwMjIwOTE2LjEnLCAnY29tbWl0JzogJzFmNDg5ZGUnLCAnYnJhbmNoJzogJ29yaWdpbi8xZjQ4OWRlYzRmNTcxMTRkNzY3MzY0ZDAyZWQ5NTJhNTIzZThlYmJiJywgJ2N1c3RvbV9kaW1lbnNpb25zJzogeydjb21wb25lbnRfbmFtZSc6ICdjcy1jYXBhYmlsaXR5JywgJ3RlbGVtZXRyeV9jb25maWcnOiAneyJjb2xsZWN0b3IiOiB7InJlY2VpdmVyIjogbnVsbCwgImV4cG9ydGVyIjogeyJhcHBpbnNpZ2h0cyI6IHsiaW5zdHJ1bWVudGF0aW9uX2tleSI6ICJkMmVlODljOS0yMmIxLTRiMDctODRmZC1hZDdhODdmZDcxNWQifSwgImphZWdlciI6IG51bGwsICJwcm9tZXRoZXVzIjogbnVsbCwgInRpbWVvdXRfbWlsbGlzIjogbnVsbCwgImxldmVsIjogbnVsbH19LCAibG9nZ2VyIjogeyJjb25zb2xlIjogbnVsbCwgImFwcGluc2lnaHRzIjogeyJpbnN0cnVtZW50YXRpb25fa2V5IjogImQyZWU4OWM5LTIyYjEtNGIwNy04NGZkLWFkN2E4N2ZkNzE1ZCIsICJsZXZlbCI6ICJpbmZvIiwgImVuYWJsZWQiOiB0cnVlfSwgImZpbGUiOiB7ImV4dGVuc2lvbiI6ICJsb2ciLCAibGV2ZWwiOiAiaW5mbyIsICJlbmFibGVkIjogdHJ1ZX19LCAibm9kZV9yYW5rIjogbnVsbCwgIm5vZGVfaWQiOiAidHZtcHNfMGQ4MDZjMjBlZTkxNDcwMDFhMjZiZDM0MDViOTk1YTcxYTEwMzA5OGUyYzgxNzhhNTA2NjQxZDIyNTVlMDJjMV9kIiwgImRpc2FibGVfc2Vuc2l0aXZlX3NjcnViIjogbnVsbH0nLCAnc3Vic2NyaXB0aW9uX2lkJzogJzk2YWVkZTEyLTJmNzMtNDFjYi1iOTgzLTZkMTFhOTA0ODM5YicsICdyZXNvdXJjZV9ncm91cCc6ICd6aGVuZ2ZlaS10ZXN0LWVhc3R1czInLCAnd29ya3NwYWNlX25hbWUnOiAnc2RrX3ZuZXh0X2NsaScsICd3b3Jrc3BhY2VfbG9jYXRpb24nOiAnZWFzdHVzMicsICdleHBlcmltZW50X25hbWUnOiAnYXp1cmUtYWktbWwnLCAnbm9kZV9yYW5rJzogJ05vbmUnLCAnbm9kZV9pZCc6ICd0dm1wc18wZDgwNmMyMGVlOTE0NzAwMWEyNmJkMzQwNWI5OTVhNzFhMTAzMDk4ZTJjODE3OGE1MDY2NDFkMjI1NWUwMmMxX2QnLCAncm9vdF9ydW5faWQnOiAnaGVsbG93b3JsZF9waXBlbGluZV9qb2JfcXVpY2tfd2l0aF9vdXRwdXRfMjAyMlczOF90ZXN0X3BpcGVsaW5lX2pvYl9jaGlsZF9ydW5fZG93bmxvYWQnLCAncnVuX2lkJzogJzc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCcsICdjb3JyZWxhdGlvbl9pZCc6ICc3NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQnLCAnc291cmNlJzogJ2NvbW1vbl9ydW50aW1lLmNzLWNhcGFiaWxpdHknLCAnc2Vzc2lvbl9pZCc6ICcwYTY1MDYxMS0xZjI4LTRkMTAtYWZmZC1hN2FiNGRmM2YwY2UnLCAndmVyc2lvbic6ICcwLjAuMS4yMDIyMDkxNi4xJywgJ2NvbW1pdCc6ICcxZjQ4OWRlJywgJ2JyYW5jaCc6ICdvcmlnaW4vMWY0ODlkZWM0ZjU3MTE0ZDc2NzM2NGQwMmVkOTUyYTUyM2U4ZWJiYid9fQpJTkZPIDIwMjItMDktMjMgMTU6MzI6NTUsNTIzIHRyYWNlci5weTo1NSBbMV0gLSBTZXR0aW5nIHVwIGFwcGluc2lnaHRzIGV4cG9ydGVyIHsnc3Vic2NyaXB0aW9uX2lkJzogJzk2YWVkZTEyLTJmNzMtNDFjYi1iOTgzLTZkMTFhOTA0ODM5YicsICdyZXNvdXJjZV9ncm91cCc6ICd6aGVuZ2ZlaS10ZXN0LWVhc3R1czInLCAnd29ya3NwYWNlX25hbWUnOiAnc2RrX3ZuZXh0X2NsaScsICd3b3Jrc3BhY2VfbG9jYXRpb24nOiAnZWFzdHVzMicsICdleHBlcmltZW50X25hbWUnOiAnYXp1cmUtYWktbWwnLCAnbm9kZV9yYW5rJzogJ05vbmUnLCAnbm9kZV9pZCc6ICd0dm1wc18wZDgwNmMyMGVlOTE0NzAwMWEyNmJkMzQwNWI5OTVhNzFhMTAzMDk4ZTJjODE3OGE1MDY2NDFkMjI1NWUwMmMxX2QnLCAncm9vdF9ydW5faWQnOiAnaGVsbG93b3JsZF9waXBlbGluZV9qb2JfcXVpY2tfd2l0aF9vdXRwdXRfMjAyMlczOF90ZXN0X3BpcGVsaW5lX2pvYl9jaGlsZF9ydW5fZG93bmxvYWQnLCAncnVuX2lkJzogJzc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCcsICdjb3JyZWxhdGlvbl9pZCc6ICc3NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQnLCAnc291cmNlJzogJ2NvbW1vbl9ydW50aW1lLmNzLWNhcGFiaWxpdHknLCAnc2Vzc2lvbl9pZCc6ICcwYTY1MDYxMS0xZjI4LTRkMTAtYWZmZC1hN2FiNGRmM2YwY2UnLCAndmVyc2lvbic6ICcwLjAuMS4yMDIyMDkxNi4xJywgJ2NvbW1pdCc6ICcxZjQ4OWRlJywgJ2JyYW5jaCc6ICdvcmlnaW4vMWY0ODlkZWM0ZjU3MTE0ZDc2NzM2NGQwMmVkOTUyYTUyM2U4ZWJiYicsICdjdXN0b21fZGltZW5zaW9ucyc6IHsnc3Vic2NyaXB0aW9uX2lkJzogJzk2YWVkZTEyLTJmNzMtNDFjYi1iOTgzLTZkMTFhOTA0ODM5YicsICdyZXNvdXJjZV9ncm91cCc6ICd6aGVuZ2ZlaS10ZXN0LWVhc3R1czInLCAnd29ya3NwYWNlX25hbWUnOiAnc2RrX3ZuZXh0X2NsaScsICd3b3Jrc3BhY2VfbG9jYXRpb24nOiAnZWFzdHVzMicsICdleHBlcmltZW50X25hbWUnOiAnYXp1cmUtYWktbWwnLCAnbm9kZV9yYW5rJzogJ05vbmUnLCAnbm9kZV9pZCc6ICd0dm1wc18wZDgwNmMyMGVlOTE0NzAwMWEyNmJkMzQwNWI5OTVhNzFhMTAzMDk4ZTJjODE3OGE1MDY2NDFkMjI1NWUwMmMxX2QnLCAncm9vdF9ydW5faWQnOiAnaGVsbG93b3JsZF9waXBlbGluZV9qb2JfcXVpY2tfd2l0aF9vdXRwdXRfMjAyMlczOF90ZXN0X3BpcGVsaW5lX2pvYl9jaGlsZF9ydW5fZG93bmxvYWQnLCAncnVuX2lkJzogJzc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCcsICdjb3JyZWxhdGlvbl9pZCc6ICc3NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQnLCAnc291cmNlJzogJ2NvbW1vbl9ydW50aW1lLmNzLWNhcGFiaWxpdHknLCAnc2Vzc2lvbl9pZCc6ICcwYTY1MDYxMS0xZjI4LTRkMTAtYWZmZC1hN2FiNGRmM2YwY2UnLCAndmVyc2lvbic6ICcwLjAuMS4yMDIyMDkxNi4xJywgJ2NvbW1pdCc6ICcxZjQ4OWRlJywgJ2JyYW5jaCc6ICdvcmlnaW4vMWY0ODlkZWM0ZjU3MTE0ZDc2NzM2NGQwMmVkOTUyYTUyM2U4ZWJiYid9fQpJTkZPIDIwMjItMDktMjMgMTU6MzI6NTUsNTM3IGluaXRpYWxpemVyLnB5OjY5IFsxXSAtIFRyYWNlciBpbml0aWFsaXplZCB7J2FydGlmYWN0X3R5cGUnOiAnaW5zdGFsbGVkJywgJ2NpX251bWJlcic6ICcyMDIyMDkxNi4xJywgJ2NpX25hbWUnOiAnQ29tbW9uUnVudGltZS1wcm9kLWJ1aWxkJywgJ2J1aWxkX3RpbWUnOiAnMjAyMi0wOS0xNiAxMDozNTo0My4zMDM0NzAnLCAnc3Vic2NyaXB0aW9uX2lkJzogJzk2YWVkZTEyLTJmNzMtNDFjYi1iOTgzLTZkMTFhOTA0ODM5YicsICdyZXNvdXJjZV9ncm91cCc6ICd6aGVuZ2ZlaS10ZXN0LWVhc3R1czInLCAnd29ya3NwYWNlX25hbWUnOiAnc2RrX3ZuZXh0X2NsaScsICd3b3Jrc3BhY2VfbG9jYXRpb24nOiAnZWFzdHVzMicsICdleHBlcmltZW50X25hbWUnOiAnYXp1cmUtYWktbWwnLCAnbm9kZV9yYW5rJzogJ05vbmUnLCAnbm9kZV9pZCc6ICd0dm1wc18wZDgwNmMyMGVlOTE0NzAwMWEyNmJkMzQwNWI5OTVhNzFhMTAzMDk4ZTJjODE3OGE1MDY2NDFkMjI1NWUwMmMxX2QnLCAncm9vdF9ydW5faWQnOiAnaGVsbG93b3JsZF9waXBlbGluZV9qb2JfcXVpY2tfd2l0aF9vdXRwdXRfMjAyMlczOF90ZXN0X3BpcGVsaW5lX2pvYl9jaGlsZF9ydW5fZG93bmxvYWQnLCAncnVuX2lkJzogJzc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCcsICdjb3JyZWxhdGlvbl9pZCc6ICc3NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQnLCAnc291cmNlJzogJ2NvbW1vbl9ydW50aW1lLmNzLWNhcGFiaWxpdHknLCAnc2Vzc2lvbl9pZCc6ICcwYTY1MDYxMS0xZjI4LTRkMTAtYWZmZC1hN2FiNGRmM2YwY2UnLCAndmVyc2lvbic6ICcwLjAuMS4yMDIyMDkxNi4xJywgJ2NvbW1pdCc6ICcxZjQ4OWRlJywgJ2JyYW5jaCc6ICdvcmlnaW4vMWY0ODlkZWM0ZjU3MTE0ZDc2NzM2NGQwMmVkOTUyYTUyM2U4ZWJiYicsICdjdXN0b21fZGltZW5zaW9ucyc6IHsnYXJ0aWZhY3RfdHlwZSc6ICdpbnN0YWxsZWQnLCAnY2lfbnVtYmVyJzogJzIwMjIwOTE2LjEnLCAnY2lfbmFtZSc6ICdDb21tb25SdW50aW1lLXByb2QtYnVpbGQnLCAnYnVpbGRfdGltZSc6ICcyMDIyLTA5LTE2IDEwOjM1OjQzLjMwMzQ3MCcsICdzdWJzY3JpcHRpb25faWQnOiAnOTZhZWRlMTItMmY3My00MWNiLWI5ODMtNmQxMWE5MDQ4MzliJywgJ3Jlc291cmNlX2dyb3VwJzogJ3poZW5nZmVpLXRlc3QtZWFzdHVzMicsICd3b3Jrc3BhY2VfbmFtZSc6ICdzZGtfdm5leHRfY2xpJywgJ3dvcmtzcGFjZV9sb2NhdGlvbic6ICdlYXN0dXMyJywgJ2V4cGVyaW1lbnRfbmFtZSc6ICdhenVyZS1haS1tbCcsICdub2RlX3JhbmsnOiAnTm9uZScsICdub2RlX2lkJzogJ3R2bXBzXzBkODA2YzIwZWU5MTQ3MDAxYTI2YmQzNDA1Yjk5NWE3MWExMDMwOThlMmM4MTc4YTUwNjY0MWQyMjU1ZTAyYzFfZCcsICdyb290X3J1bl9pZCc6ICdoZWxsb3dvcmxkX3BpcGVsaW5lX2pvYl9xdWlja193aXRoX291dHB1dF8yMDIyVzM4X3Rlc3RfcGlwZWxpbmVfam9iX2NoaWxkX3J1bl9kb3dubG9hZCcsICdydW5faWQnOiAnNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkJywgJ2NvcnJlbGF0aW9uX2lkJzogJzc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCcsICdzb3VyY2UnOiAnY29tbW9uX3J1bnRpbWUuY3MtY2FwYWJpbGl0eScsICdzZXNzaW9uX2lkJzogJzBhNjUwNjExLTFmMjgtNGQxMC1hZmZkLWE3YWI0ZGYzZjBjZScsICd2ZXJzaW9uJzogJzAuMC4xLjIwMjIwOTE2LjEnLCAnY29tbWl0JzogJzFmNDg5ZGUnLCAnYnJhbmNoJzogJ29yaWdpbi8xZjQ4OWRlYzRmNTcxMTRkNzY3MzY0ZDAyZWQ5NTJhNTIzZThlYmJiJ319CklORk8gMjAyMi0wOS0yMyAxNTozMjo1NSw1MzcgdHJhY2VyLnB5OjEwNSBbMV0gLSBbdHJhY2VyXVtnZXRfYW1iaWVudF9wYXJlbnRfY3R4XSBwYXJlbnQgY3R4OiB7J2N1cnJlbnQtc3Bhbic6IE5vblJlY29yZGluZ1NwYW4oU3BhbkNvbnRleHQodHJhY2VfaWQ9MHg3NGUyMDIyMzgxZmY3YTZkYWM0ZmJhZjI3NWU1NTVlOCwgc3Bhbl9pZD0weGY4ZDliMDEyMjhiODg0Y2MsIHRyYWNlX2ZsYWdzPTB4MDEsIHRyYWNlX3N0YXRlPVtdLCBpc19yZW1vdGU9VHJ1ZSkpfSB7J3N1YnNjcmlwdGlvbl9pZCc6ICc5NmFlZGUxMi0yZjczLTQxY2ItYjk4My02ZDExYTkwNDgzOWInLCAncmVzb3VyY2VfZ3JvdXAnOiAnemhlbmdmZWktdGVzdC1lYXN0dXMyJywgJ3dvcmtzcGFjZV9uYW1lJzogJ3Nka192bmV4dF9jbGknLCAnd29ya3NwYWNlX2xvY2F0aW9uJzogJ2Vhc3R1czInLCAnZXhwZXJpbWVudF9uYW1lJzogJ2F6dXJlLWFpLW1sJywgJ25vZGVfcmFuayc6ICdOb25lJywgJ25vZGVfaWQnOiAndHZtcHNfMGQ4MDZjMjBlZTkxNDcwMDFhMjZiZDM0MDViOTk1YTcxYTEwMzA5OGUyYzgxNzhhNTA2NjQxZDIyNTVlMDJjMV9kJywgJ3Jvb3RfcnVuX2lkJzogJ2hlbGxvd29ybGRfcGlwZWxpbmVfam9iX3F1aWNrX3dpdGhfb3V0cHV0XzIwMjJXMzhfdGVzdF9waXBlbGluZV9qb2JfY2hpbGRfcnVuX2Rvd25sb2FkJywgJ3J1bl9pZCc6ICc3NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQnLCAnY29ycmVsYXRpb25faWQnOiAnNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkJywgJ3NvdXJjZSc6ICdjb21tb25fcnVudGltZS5jcy1jYXBhYmlsaXR5JywgJ3Nlc3Npb25faWQnOiAnMGE2NTA2MTEtMWYyOC00ZDEwLWFmZmQtYTdhYjRkZjNmMGNlJywgJ3ZlcnNpb24nOiAnMC4wLjEuMjAyMjA5MTYuMScsICdjb21taXQnOiAnMWY0ODlkZScsICdicmFuY2gnOiAnb3JpZ2luLzFmNDg5ZGVjNGY1NzExNGQ3NjczNjRkMDJlZDk1MmE1MjNlOGViYmInLCAnY3VzdG9tX2RpbWVuc2lvbnMnOiB7J3N1YnNjcmlwdGlvbl9pZCc6ICc5NmFlZGUxMi0yZjczLTQxY2ItYjk4My02ZDExYTkwNDgzOWInLCAncmVzb3VyY2VfZ3JvdXAnOiAnemhlbmdmZWktdGVzdC1lYXN0dXMyJywgJ3dvcmtzcGFjZV9uYW1lJzogJ3Nka192bmV4dF9jbGknLCAnd29ya3NwYWNlX2xvY2F0aW9uJzogJ2Vhc3R1czInLCAnZXhwZXJpbWVudF9uYW1lJzogJ2F6dXJlLWFpLW1sJywgJ25vZGVfcmFuayc6ICdOb25lJywgJ25vZGVfaWQnOiAndHZtcHNfMGQ4MDZjMjBlZTkxNDcwMDFhMjZiZDM0MDViOTk1YTcxYTEwMzA5OGUyYzgxNzhhNTA2NjQxZDIyNTVlMDJjMV9kJywgJ3Jvb3RfcnVuX2lkJzogJ2hlbGxvd29ybGRfcGlwZWxpbmVfam9iX3F1aWNrX3dpdGhfb3V0cHV0XzIwMjJXMzhfdGVzdF9waXBlbGluZV9qb2JfY2hpbGRfcnVuX2Rvd25sb2FkJywgJ3J1bl9pZCc6ICc3NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQnLCAnY29ycmVsYXRpb25faWQnOiAnNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkJywgJ3NvdXJjZSc6ICdjb21tb25fcnVudGltZS5jcy1jYXBhYmlsaXR5JywgJ3Nlc3Npb25faWQnOiAnMGE2NTA2MTEtMWYyOC00ZDEwLWFmZmQtYTdhYjRkZjNmMGNlJywgJ3ZlcnNpb24nOiAnMC4wLjEuMjAyMjA5MTYuMScsICdjb21taXQnOiAnMWY0ODlkZScsICdicmFuY2gnOiAnb3JpZ2luLzFmNDg5ZGVjNGY1NzExNGQ3NjczNjRkMDJlZDk1MmE1MjNlOGViYmInfX0KSU5GTyAyMDIyLTA5LTIzIDE1OjMyOjU1LDU0MCBzZXJ2aWNlLnB5OjMwMyBbMV0gLSBbc3RhcnRfc2VydmljZXNdOiBzdGFydGluZyBzZXJ2aWNlIHsnYWRkcmVzcyc6ICd1bml4Oi8vL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvLmdycGMvY3MtY2FwYWJpbGl0eTowJywgJ21heF93b3JrZXJzJzogMiwgJ3N1YnNjcmlwdGlvbl9pZCc6ICc5NmFlZGUxMi0yZjczLTQxY2ItYjk4My02ZDExYTkwNDgzOWInLCAncmVzb3VyY2VfZ3JvdXAnOiAnemhlbmdmZWktdGVzdC1lYXN0dXMyJywgJ3dvcmtzcGFjZV9uYW1lJzogJ3Nka192bmV4dF9jbGknLCAnd29ya3NwYWNlX2xvY2F0aW9uJzogJ2Vhc3R1czInLCAnZXhwZXJpbWVudF9uYW1lJzogJ2F6dXJlLWFpLW1sJywgJ25vZGVfcmFuayc6ICdOb25lJywgJ25vZGVfaWQnOiAndHZtcHNfMGQ4MDZjMjBlZTkxNDcwMDFhMjZiZDM0MDViOTk1YTcxYTEwMzA5OGUyYzgxNzhhNTA2NjQxZDIyNTVlMDJjMV9kJywgJ3Jvb3RfcnVuX2lkJzogJ2hlbGxvd29ybGRfcGlwZWxpbmVfam9iX3F1aWNrX3dpdGhfb3V0cHV0XzIwMjJXMzhfdGVzdF9waXBlbGluZV9qb2JfY2hpbGRfcnVuX2Rvd25sb2FkJywgJ3J1bl9pZCc6ICc3NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQnLCAnY29ycmVsYXRpb25faWQnOiAnNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkJywgJ3NvdXJjZSc6ICdjb21tb25fcnVudGltZS5jcy1jYXBhYmlsaXR5JywgJ3Nlc3Npb25faWQnOiAnMGE2NTA2MTEtMWYyOC00ZDEwLWFmZmQtYTdhYjRkZjNmMGNlJywgJ3ZlcnNpb24nOiAnMC4wLjEuMjAyMjA5MTYuMScsICdjb21taXQnOiAnMWY0ODlkZScsICdicmFuY2gnOiAnb3JpZ2luLzFmNDg5ZGVjNGY1NzExNGQ3NjczNjRkMDJlZDk1MmE1MjNlOGViYmInLCAnVHJhY2VJZCc6ICc3NGUyMDIyMzgxZmY3YTZkYWM0ZmJhZjI3NWU1NTVlOCcsICdTcGFuSWQnOiAnZDUxMjUyOGFlYWUzMTZhZCcsICdUcmFjZUZsYWdzJzogJzAxJywgJ3RyYWNlSWQnOiAnNzRlMjAyMjM4MWZmN2E2ZGFjNGZiYWYyNzVlNTU1ZTgnLCAnc3BhbklkJzogJ2Q1MTI1MjhhZWFlMzE2YWQnLCAnY3VzdG9tX2RpbWVuc2lvbnMnOiB7J2FkZHJlc3MnOiAndW5peDovLy9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1Ly5ncnBjL2NzLWNhcGFiaWxpdHk6MCcsICdtYXhfd29ya2Vycyc6IDIsICdzdWJzY3JpcHRpb25faWQnOiAnOTZhZWRlMTItMmY3My00MWNiLWI5ODMtNmQxMWE5MDQ4MzliJywgJ3Jlc291cmNlX2dyb3VwJzogJ3poZW5nZmVpLXRlc3QtZWFzdHVzMicsICd3b3Jrc3BhY2VfbmFtZSc6ICdzZGtfdm5leHRfY2xpJywgJ3dvcmtzcGFjZV9sb2NhdGlvbic6ICdlYXN0dXMyJywgJ2V4cGVyaW1lbnRfbmFtZSc6ICdhenVyZS1haS1tbCcsICdub2RlX3JhbmsnOiAnTm9uZScsICdub2RlX2lkJzogJ3R2bXBzXzBkODA2YzIwZWU5MTQ3MDAxYTI2YmQzNDA1Yjk5NWE3MWExMDMwOThlMmM4MTc4YTUwNjY0MWQyMjU1ZTAyYzFfZCcsICdyb290X3J1bl9pZCc6ICdoZWxsb3dvcmxkX3BpcGVsaW5lX2pvYl9xdWlja193aXRoX291dHB1dF8yMDIyVzM4X3Rlc3RfcGlwZWxpbmVfam9iX2NoaWxkX3J1bl9kb3dubG9hZCcsICdydW5faWQnOiAnNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkJywgJ2NvcnJlbGF0aW9uX2lkJzogJzc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCcsICdzb3VyY2UnOiAnY29tbW9uX3J1bnRpbWUuY3MtY2FwYWJpbGl0eScsICdzZXNzaW9uX2lkJzogJzBhNjUwNjExLTFmMjgtNGQxMC1hZmZkLWE3YWI0ZGYzZjBjZScsICd2ZXJzaW9uJzogJzAuMC4xLjIwMjIwOTE2LjEnLCAnY29tbWl0JzogJzFmNDg5ZGUnLCAnYnJhbmNoJzogJ29yaWdpbi8xZjQ4OWRlYzRmNTcxMTRkNzY3MzY0ZDAyZWQ5NTJhNTIzZThlYmJiJywgJ1RyYWNlSWQnOiAnNzRlMjAyMjM4MWZmN2E2ZGFjNGZiYWYyNzVlNTU1ZTgnLCAnU3BhbklkJzogJ2Q1MTI1MjhhZWFlMzE2YWQnLCAnVHJhY2VGbGFncyc6ICcwMScsICd0cmFjZUlkJzogJzc0ZTIwMjIzODFmZjdhNmRhYzRmYmFmMjc1ZTU1NWU4JywgJ3NwYW5JZCc6ICdkNTEyNTI4YWVhZTMxNmFkJ319CklORk8gMjAyMi0wOS0yMyAxNTozMjo1NSw1NjQgc2VydmljZS5weTozMzUgWzFdIC0gW3N0YXJ0X3NlcnZpY2VzXTogd2FpdGluZyBvbiBlbmRfZXZlbnQgeydzZXJ2ZXJfc3RhcnRfYXR0ZW1wdCc6IDAsICdtYXhfYXR0ZW1wdHMnOiAzLCAncmV0cnlfZGVsYXlfc2Vjcyc6IDUsICdzdWJzY3JpcHRpb25faWQnOiAnOTZhZWRlMTItMmY3My00MWNiLWI5ODMtNmQxMWE5MDQ4MzliJywgJ3Jlc291cmNlX2dyb3VwJzogJ3poZW5nZmVpLXRlc3QtZWFzdHVzMicsICd3b3Jrc3BhY2VfbmFtZSc6ICdzZGtfdm5leHRfY2xpJywgJ3dvcmtzcGFjZV9sb2NhdGlvbic6ICdlYXN0dXMyJywgJ2V4cGVyaW1lbnRfbmFtZSc6ICdhenVyZS1haS1tbCcsICdub2RlX3JhbmsnOiAnTm9uZScsICdub2RlX2lkJzogJ3R2bXBzXzBkODA2YzIwZWU5MTQ3MDAxYTI2YmQzNDA1Yjk5NWE3MWExMDMwOThlMmM4MTc4YTUwNjY0MWQyMjU1ZTAyYzFfZCcsICdyb290X3J1bl9pZCc6ICdoZWxsb3dvcmxkX3BpcGVsaW5lX2pvYl9xdWlja193aXRoX291dHB1dF8yMDIyVzM4X3Rlc3RfcGlwZWxpbmVfam9iX2NoaWxkX3J1bl9kb3dubG9hZCcsICdydW5faWQnOiAnNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkJywgJ2NvcnJlbGF0aW9uX2lkJzogJzc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCcsICdzb3VyY2UnOiAnY29tbW9uX3J1bnRpbWUuY3MtY2FwYWJpbGl0eScsICdzZXNzaW9uX2lkJzogJzBhNjUwNjExLTFmMjgtNGQxMC1hZmZkLWE3YWI0ZGYzZjBjZScsICd2ZXJzaW9uJzogJzAuMC4xLjIwMjIwOTE2LjEnLCAnY29tbWl0JzogJzFmNDg5ZGUnLCAnYnJhbmNoJzogJ29yaWdpbi8xZjQ4OWRlYzRmNTcxMTRkNzY3MzY0ZDAyZWQ5NTJhNTIzZThlYmJiJywgJ1RyYWNlSWQnOiAnNzRlMjAyMjM4MWZmN2E2ZGFjNGZiYWYyNzVlNTU1ZTgnLCAnU3BhbklkJzogJ2Q1MTI1MjhhZWFlMzE2YWQnLCAnVHJhY2VGbGFncyc6ICcwMScsICd0cmFjZUlkJzogJzc0ZTIwMjIzODFmZjdhNmRhYzRmYmFmMjc1ZTU1NWU4JywgJ3NwYW5JZCc6ICdkNTEyNTI4YWVhZTMxNmFkJywgJ2N1c3RvbV9kaW1lbnNpb25zJzogeydzZXJ2ZXJfc3RhcnRfYXR0ZW1wdCc6IDAsICdtYXhfYXR0ZW1wdHMnOiAzLCAncmV0cnlfZGVsYXlfc2Vjcyc6IDUsICdzdWJzY3JpcHRpb25faWQnOiAnOTZhZWRlMTItMmY3My00MWNiLWI5ODMtNmQxMWE5MDQ4MzliJywgJ3Jlc291cmNlX2dyb3VwJzogJ3poZW5nZmVpLXRlc3QtZWFzdHVzMicsICd3b3Jrc3BhY2VfbmFtZSc6ICdzZGtfdm5leHRfY2xpJywgJ3dvcmtzcGFjZV9sb2NhdGlvbic6ICdlYXN0dXMyJywgJ2V4cGVyaW1lbnRfbmFtZSc6ICdhenVyZS1haS1tbCcsICdub2RlX3JhbmsnOiAnTm9uZScsICdub2RlX2lkJzogJ3R2bXBzXzBkODA2YzIwZWU5MTQ3MDAxYTI2YmQzNDA1Yjk5NWE3MWExMDMwOThlMmM4MTc4YTUwNjY0MWQyMjU1ZTAyYzFfZCcsICdyb290X3J1bl9pZCc6ICdoZWxsb3dvcmxkX3BpcGVsaW5lX2pvYl9xdWlja193aXRoX291dHB1dF8yMDIyVzM4X3Rlc3RfcGlwZWxpbmVfam9iX2NoaWxkX3J1bl9kb3dubG9hZCcsICdydW5faWQnOiAnNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkJywgJ2NvcnJlbGF0aW9uX2lkJzogJzc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCcsICdzb3VyY2UnOiAnY29tbW9uX3J1bnRpbWUuY3MtY2FwYWJpbGl0eScsICdzZXNzaW9uX2lkJzogJzBhNjUwNjExLTFmMjgtNGQxMC1hZmZkLWE3YWI0ZGYzZjBjZScsICd2ZXJzaW9uJzogJzAuMC4xLjIwMjIwOTE2LjEnLCAnY29tbWl0JzogJzFmNDg5ZGUnLCAnYnJhbmNoJzogJ29yaWdpbi8xZjQ4OWRlYzRmNTcxMTRkNzY3MzY0ZDAyZWQ5NTJhNTIzZThlYmJiJywgJ1RyYWNlSWQnOiAnNzRlMjAyMjM4MWZmN2E2ZGFjNGZiYWYyNzVlNTU1ZTgnLCAnU3BhbklkJzogJ2Q1MTI1MjhhZWFlMzE2YWQnLCAnVHJhY2VGbGFncyc6ICcwMScsICd0cmFjZUlkJzogJzc0ZTIwMjIzODFmZjdhNmRhYzRmYmFmMjc1ZTU1NWU4JywgJ3NwYW5JZCc6ICdkNTEyNTI4YWVhZTMxNmFkJ319CklORk8gMjAyMi0wOS0yMyAxNTozMzo0MCw2NjEgc2VydmljZS5weTo1NSBbMV0gLSBbc3RhcnRdIEV4dHJhY3RpbmcgU25hcHNob3RzOiBOb25lIHsnc25hcHNob3QnOiBOb25lLCAnc3Vic2NyaXB0aW9uX2lkJzogJzk2YWVkZTEyLTJmNzMtNDFjYi1iOTgzLTZkMTFhOTA0ODM5YicsICdyZXNvdXJjZV9ncm91cCc6ICd6aGVuZ2ZlaS10ZXN0LWVhc3R1czInLCAnd29ya3NwYWNlX25hbWUnOiAnc2RrX3ZuZXh0X2NsaScsICd3b3Jrc3BhY2VfbG9jYXRpb24nOiAnZWFzdHVzMicsICdleHBlcmltZW50X25hbWUnOiAnYXp1cmUtYWktbWwnLCAnbm9kZV9yYW5rJzogJ05vbmUnLCAnbm9kZV9pZCc6ICd0dm1wc18wZDgwNmMyMGVlOTE0NzAwMWEyNmJkMzQwNWI5OTVhNzFhMTAzMDk4ZTJjODE3OGE1MDY2NDFkMjI1NWUwMmMxX2QnLCAncm9vdF9ydW5faWQnOiAnaGVsbG93b3JsZF9waXBlbGluZV9qb2JfcXVpY2tfd2l0aF9vdXRwdXRfMjAyMlczOF90ZXN0X3BpcGVsaW5lX2pvYl9jaGlsZF9ydW5fZG93bmxvYWQnLCAncnVuX2lkJzogJzc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCcsICdjb3JyZWxhdGlvbl9pZCc6ICc3NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQnLCAnc291cmNlJzogJ2NvbW1vbl9ydW50aW1lLmNzLWNhcGFiaWxpdHknLCAnc2Vzc2lvbl9pZCc6ICcwYTY1MDYxMS0xZjI4LTRkMTAtYWZmZC1hN2FiNGRmM2YwY2UnLCAndmVyc2lvbic6ICcwLjAuMS4yMDIyMDkxNi4xJywgJ2NvbW1pdCc6ICcxZjQ4OWRlJywgJ2JyYW5jaCc6ICdvcmlnaW4vMWY0ODlkZWM0ZjU3MTE0ZDc2NzM2NGQwMmVkOTUyYTUyM2U4ZWJiYicsICdUcmFjZUlkJzogJzA3MzIxZDQzMjNlYzY2YjBlNGE2OTlkMzVjNThkZGQ4JywgJ1NwYW5JZCc6ICc4M2QyZGM5OGViYmU3ZmUxJywgJ1RyYWNlRmxhZ3MnOiAnMDEnLCAndHJhY2VJZCc6ICcwNzMyMWQ0MzIzZWM2NmIwZTRhNjk5ZDM1YzU4ZGRkOCcsICdzcGFuSWQnOiAnODNkMmRjOThlYmJlN2ZlMScsICdjdXN0b21fZGltZW5zaW9ucyc6IHsnc25hcHNob3QnOiBOb25lLCAnc3Vic2NyaXB0aW9uX2lkJzogJzk2YWVkZTEyLTJmNzMtNDFjYi1iOTgzLTZkMTFhOTA0ODM5YicsICdyZXNvdXJjZV9ncm91cCc6ICd6aGVuZ2ZlaS10ZXN0LWVhc3R1czInLCAnd29ya3NwYWNlX25hbWUnOiAnc2RrX3ZuZXh0X2NsaScsICd3b3Jrc3BhY2VfbG9jYXRpb24nOiAnZWFzdHVzMicsICdleHBlcmltZW50X25hbWUnOiAnYXp1cmUtYWktbWwnLCAnbm9kZV9yYW5rJzogJ05vbmUnLCAnbm9kZV9pZCc6ICd0dm1wc18wZDgwNmMyMGVlOTE0NzAwMWEyNmJkMzQwNWI5OTVhNzFhMTAzMDk4ZTJjODE3OGE1MDY2NDFkMjI1NWUwMmMxX2QnLCAncm9vdF9ydW5faWQnOiAnaGVsbG93b3JsZF9waXBlbGluZV9qb2JfcXVpY2tfd2l0aF9vdXRwdXRfMjAyMlczOF90ZXN0X3BpcGVsaW5lX2pvYl9jaGlsZF9ydW5fZG93bmxvYWQnLCAncnVuX2lkJzogJzc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCcsICdjb3JyZWxhdGlvbl9pZCc6ICc3NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQnLCAnc291cmNlJzogJ2NvbW1vbl9ydW50aW1lLmNzLWNhcGFiaWxpdHknLCAnc2Vzc2lvbl9pZCc6ICcwYTY1MDYxMS0xZjI4LTRkMTAtYWZmZC1hN2FiNGRmM2YwY2UnLCAndmVyc2lvbic6ICcwLjAuMS4yMDIyMDkxNi4xJywgJ2NvbW1pdCc6ICcxZjQ4OWRlJywgJ2JyYW5jaCc6ICdvcmlnaW4vMWY0ODlkZWM0ZjU3MTE0ZDc2NzM2NGQwMmVkOTUyYTUyM2U4ZWJiYicsICdUcmFjZUlkJzogJzA3MzIxZDQzMjNlYzY2YjBlNGE2OTlkMzVjNThkZGQ4JywgJ1NwYW5JZCc6ICc4M2QyZGM5OGViYmU3ZmUxJywgJ1RyYWNlRmxhZ3MnOiAnMDEnLCAndHJhY2VJZCc6ICcwNzMyMWQ0MzIzZWM2NmIwZTRhNjk5ZDM1YzU4ZGRkOCcsICdzcGFuSWQnOiAnODNkMmRjOThlYmJlN2ZlMSd9fQpJTkZPIDIwMjItMDktMjMgMTU6MzM6NDAsNjY1IHNlcnZpY2UucHk6ODUgWzFdIC0gW3N0YXJ0XSBFbnRlcmluZyBjb250ZXh0IG1hbmFnZXJzIHsnY29udGV4dF9tYW5hZ2Vycyc6IFtdLCAnc3Vic2NyaXB0aW9uX2lkJzogJzk2YWVkZTEyLTJmNzMtNDFjYi1iOTgzLTZkMTFhOTA0ODM5YicsICdyZXNvdXJjZV9ncm91cCc6ICd6aGVuZ2ZlaS10ZXN0LWVhc3R1czInLCAnd29ya3NwYWNlX25hbWUnOiAnc2RrX3ZuZXh0X2NsaScsICd3b3Jrc3BhY2VfbG9jYXRpb24nOiAnZWFzdHVzMicsICdleHBlcmltZW50X25hbWUnOiAnYXp1cmUtYWktbWwnLCAnbm9kZV9yYW5rJzogJ05vbmUnLCAnbm9kZV9pZCc6ICd0dm1wc18wZDgwNmMyMGVlOTE0NzAwMWEyNmJkMzQwNWI5OTVhNzFhMTAzMDk4ZTJjODE3OGE1MDY2NDFkMjI1NWUwMmMxX2QnLCAncm9vdF9ydW5faWQnOiAnaGVsbG93b3JsZF9waXBlbGluZV9qb2JfcXVpY2tfd2l0aF9vdXRwdXRfMjAyMlczOF90ZXN0X3BpcGVsaW5lX2pvYl9jaGlsZF9ydW5fZG93bmxvYWQnLCAncnVuX2lkJzogJzc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCcsICdjb3JyZWxhdGlvbl9pZCc6ICc3NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQnLCAnc291cmNlJzogJ2NvbW1vbl9ydW50aW1lLmNzLWNhcGFiaWxpdHknLCAnc2Vzc2lvbl9pZCc6ICcwYTY1MDYxMS0xZjI4LTRkMTAtYWZmZC1hN2FiNGRmM2YwY2UnLCAndmVyc2lvbic6ICcwLjAuMS4yMDIyMDkxNi4xJywgJ2NvbW1pdCc6ICcxZjQ4OWRlJywgJ2JyYW5jaCc6ICdvcmlnaW4vMWY0ODlkZWM0ZjU3MTE0ZDc2NzM2NGQwMmVkOTUyYTUyM2U4ZWJiYicsICdUcmFjZUlkJzogJzA3MzIxZDQzMjNlYzY2YjBlNGE2OTlkMzVjNThkZGQ4JywgJ1NwYW5JZCc6ICc4M2QyZGM5OGViYmU3ZmUxJywgJ1RyYWNlRmxhZ3MnOiAnMDEnLCAndHJhY2VJZCc6ICcwNzMyMWQ0MzIzZWM2NmIwZTRhNjk5ZDM1YzU4ZGRkOCcsICdzcGFuSWQnOiAnODNkMmRjOThlYmJlN2ZlMScsICdjdXN0b21fZGltZW5zaW9ucyc6IHsnY29udGV4dF9tYW5hZ2Vycyc6IFtdLCAnc3Vic2NyaXB0aW9uX2lkJzogJzk2YWVkZTEyLTJmNzMtNDFjYi1iOTgzLTZkMTFhOTA0ODM5YicsICdyZXNvdXJjZV9ncm91cCc6ICd6aGVuZ2ZlaS10ZXN0LWVhc3R1czInLCAnd29ya3NwYWNlX25hbWUnOiAnc2RrX3ZuZXh0X2NsaScsICd3b3Jrc3BhY2VfbG9jYXRpb24nOiAnZWFzdHVzMicsICdleHBlcmltZW50X25hbWUnOiAnYXp1cmUtYWktbWwnLCAnbm9kZV9yYW5rJzogJ05vbmUnLCAnbm9kZV9pZCc6ICd0dm1wc18wZDgwNmMyMGVlOTE0NzAwMWEyNmJkMzQwNWI5OTVhNzFhMTAzMDk4ZTJjODE3OGE1MDY2NDFkMjI1NWUwMmMxX2QnLCAncm9vdF9ydW5faWQnOiAnaGVsbG93b3JsZF9waXBlbGluZV9qb2JfcXVpY2tfd2l0aF9vdXRwdXRfMjAyMlczOF90ZXN0X3BpcGVsaW5lX2pvYl9jaGlsZF9ydW5fZG93bmxvYWQnLCAncnVuX2lkJzogJzc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCcsICdjb3JyZWxhdGlvbl9pZCc6ICc3NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQnLCAnc291cmNlJzogJ2NvbW1vbl9ydW50aW1lLmNzLWNhcGFiaWxpdHknLCAnc2Vzc2lvbl9pZCc6ICcwYTY1MDYxMS0xZjI4LTRkMTAtYWZmZC1hN2FiNGRmM2YwY2UnLCAndmVyc2lvbic6ICcwLjAuMS4yMDIyMDkxNi4xJywgJ2NvbW1pdCc6ICcxZjQ4OWRlJywgJ2JyYW5jaCc6ICdvcmlnaW4vMWY0ODlkZWM0ZjU3MTE0ZDc2NzM2NGQwMmVkOTUyYTUyM2U4ZWJiYicsICdUcmFjZUlkJzogJzA3MzIxZDQzMjNlYzY2YjBlNGE2OTlkMzVjNThkZGQ4JywgJ1NwYW5JZCc6ICc4M2QyZGM5OGViYmU3ZmUxJywgJ1RyYWNlRmxhZ3MnOiAnMDEnLCAndHJhY2VJZCc6ICcwNzMyMWQ0MzIzZWM2NmIwZTRhNjk5ZDM1YzU4ZGRkOCcsICdzcGFuSWQnOiAnODNkMmRjOThlYmJlN2ZlMSd9fQpJTkZPIDIwMjItMDktMjMgMTU6MzM6NDAsNjY2IGNvbnRleHRfbWFuYWdlci5weTo3MSBbMV0gLSBlbnRlcl9jb250ZXh0cyB7J3N1Y2Nlc3MnOiBUcnVlLCAnc3Vic2NyaXB0aW9uX2lkJzogJzk2YWVkZTEyLTJmNzMtNDFjYi1iOTgzLTZkMTFhOTA0ODM5YicsICdyZXNvdXJjZV9ncm91cCc6ICd6aGVuZ2ZlaS10ZXN0LWVhc3R1czInLCAnd29ya3NwYWNlX25hbWUnOiAnc2RrX3ZuZXh0X2NsaScsICd3b3Jrc3BhY2VfbG9jYXRpb24nOiAnZWFzdHVzMicsICdleHBlcmltZW50X25hbWUnOiAnYXp1cmUtYWktbWwnLCAnbm9kZV9yYW5rJzogJ05vbmUnLCAnbm9kZV9pZCc6ICd0dm1wc18wZDgwNmMyMGVlOTE0NzAwMWEyNmJkMzQwNWI5OTVhNzFhMTAzMDk4ZTJjODE3OGE1MDY2NDFkMjI1NWUwMmMxX2QnLCAncm9vdF9ydW5faWQnOiAnaGVsbG93b3JsZF9waXBlbGluZV9qb2JfcXVpY2tfd2l0aF9vdXRwdXRfMjAyMlczOF90ZXN0X3BpcGVsaW5lX2pvYl9jaGlsZF9ydW5fZG93bmxvYWQnLCAncnVuX2lkJzogJzc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCcsICdjb3JyZWxhdGlvbl9pZCc6ICc3NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQnLCAnc291cmNlJzogJ2NvbW1vbl9ydW50aW1lLmNzLWNhcGFiaWxpdHknLCAnc2Vzc2lvbl9pZCc6ICcwYTY1MDYxMS0xZjI4LTRkMTAtYWZmZC1hN2FiNGRmM2YwY2UnLCAndmVyc2lvbic6ICcwLjAuMS4yMDIyMDkxNi4xJywgJ2NvbW1pdCc6ICcxZjQ4OWRlJywgJ2JyYW5jaCc6ICdvcmlnaW4vMWY0ODlkZWM0ZjU3MTE0ZDc2NzM2NGQwMmVkOTUyYTUyM2U4ZWJiYicsICdUcmFjZUlkJzogJzA3MzIxZDQzMjNlYzY2YjBlNGE2OTlkMzVjNThkZGQ4JywgJ1NwYW5JZCc6ICc4M2QyZGM5OGViYmU3ZmUxJywgJ1RyYWNlRmxhZ3MnOiAnMDEnLCAndHJhY2VJZCc6ICcwNzMyMWQ0MzIzZWM2NmIwZTRhNjk5ZDM1YzU4ZGRkOCcsICdzcGFuSWQnOiAnODNkMmRjOThlYmJlN2ZlMScsICdjdXN0b21fZGltZW5zaW9ucyc6IHsnc3VjY2Vzcyc6IFRydWUsICdzdWJzY3JpcHRpb25faWQnOiAnOTZhZWRlMTItMmY3My00MWNiLWI5ODMtNmQxMWE5MDQ4MzliJywgJ3Jlc291cmNlX2dyb3VwJzogJ3poZW5nZmVpLXRlc3QtZWFzdHVzMicsICd3b3Jrc3BhY2VfbmFtZSc6ICdzZGtfdm5leHRfY2xpJywgJ3dvcmtzcGFjZV9sb2NhdGlvbic6ICdlYXN0dXMyJywgJ2V4cGVyaW1lbnRfbmFtZSc6ICdhenVyZS1haS1tbCcsICdub2RlX3JhbmsnOiAnTm9uZScsICdub2RlX2lkJzogJ3R2bXBzXzBkODA2YzIwZWU5MTQ3MDAxYTI2YmQzNDA1Yjk5NWE3MWExMDMwOThlMmM4MTc4YTUwNjY0MWQyMjU1ZTAyYzFfZCcsICdyb290X3J1bl9pZCc6ICdoZWxsb3dvcmxkX3BpcGVsaW5lX2pvYl9xdWlja193aXRoX291dHB1dF8yMDIyVzM4X3Rlc3RfcGlwZWxpbmVfam9iX2NoaWxkX3J1bl9kb3dubG9hZCcsICdydW5faWQnOiAnNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkJywgJ2NvcnJlbGF0aW9uX2lkJzogJzc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCcsICdzb3VyY2UnOiAnY29tbW9uX3J1bnRpbWUuY3MtY2FwYWJpbGl0eScsICdzZXNzaW9uX2lkJzogJzBhNjUwNjExLTFmMjgtNGQxMC1hZmZkLWE3YWI0ZGYzZjBjZScsICd2ZXJzaW9uJzogJzAuMC4xLjIwMjIwOTE2LjEnLCAnY29tbWl0JzogJzFmNDg5ZGUnLCAnYnJhbmNoJzogJ29yaWdpbi8xZjQ4OWRlYzRmNTcxMTRkNzY3MzY0ZDAyZWQ5NTJhNTIzZThlYmJiJywgJ1RyYWNlSWQnOiAnMDczMjFkNDMyM2VjNjZiMGU0YTY5OWQzNWM1OGRkZDgnLCAnU3BhbklkJzogJzgzZDJkYzk4ZWJiZTdmZTEnLCAnVHJhY2VGbGFncyc6ICcwMScsICd0cmFjZUlkJzogJzA3MzIxZDQzMjNlYzY2YjBlNGE2OTlkMzVjNThkZGQ4JywgJ3NwYW5JZCc6ICc4M2QyZGM5OGViYmU3ZmUxJ319CklORk8gMjAyMi0wOS0yMyAxNTozMzo0OCw2Mjkgc2VydmljZS5weToxMjIgWzFdIC0gW2VuZF0gbG9nZ2luZyBydW4gZmluYWxpemluZyB7J3N1YnNjcmlwdGlvbl9pZCc6ICc5NmFlZGUxMi0yZjczLTQxY2ItYjk4My02ZDExYTkwNDgzOWInLCAncmVzb3VyY2VfZ3JvdXAnOiAnemhlbmdmZWktdGVzdC1lYXN0dXMyJywgJ3dvcmtzcGFjZV9uYW1lJzogJ3Nka192bmV4dF9jbGknLCAnd29ya3NwYWNlX2xvY2F0aW9uJzogJ2Vhc3R1czInLCAnZXhwZXJpbWVudF9uYW1lJzogJ2F6dXJlLWFpLW1sJywgJ25vZGVfcmFuayc6ICdOb25lJywgJ25vZGVfaWQnOiAndHZtcHNfMGQ4MDZjMjBlZTkxNDcwMDFhMjZiZDM0MDViOTk1YTcxYTEwMzA5OGUyYzgxNzhhNTA2NjQxZDIyNTVlMDJjMV9kJywgJ3Jvb3RfcnVuX2lkJzogJ2hlbGxvd29ybGRfcGlwZWxpbmVfam9iX3F1aWNrX3dpdGhfb3V0cHV0XzIwMjJXMzhfdGVzdF9waXBlbGluZV9qb2JfY2hpbGRfcnVuX2Rvd25sb2FkJywgJ3J1bl9pZCc6ICc3NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQnLCAnY29ycmVsYXRpb25faWQnOiAnNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkJywgJ3NvdXJjZSc6ICdjb21tb25fcnVudGltZS5jcy1jYXBhYmlsaXR5JywgJ3Nlc3Npb25faWQnOiAnMGE2NTA2MTEtMWYyOC00ZDEwLWFmZmQtYTdhYjRkZjNmMGNlJywgJ3ZlcnNpb24nOiAnMC4wLjEuMjAyMjA5MTYuMScsICdjb21taXQnOiAnMWY0ODlkZScsICdicmFuY2gnOiAnb3JpZ2luLzFmNDg5ZGVjNGY1NzExNGQ3NjczNjRkMDJlZDk1MmE1MjNlOGViYmInLCAnVHJhY2VJZCc6ICdiYzZjNmM1YzljZDgzZTQzYjU3MmE3ZmNmNDc2OWFmNCcsICdTcGFuSWQnOiAnOGFkN2M3NjA1MjE0MjE2NicsICdUcmFjZUZsYWdzJzogJzAxJywgJ3RyYWNlSWQnOiAnYmM2YzZjNWM5Y2Q4M2U0M2I1NzJhN2ZjZjQ3NjlhZjQnLCAnc3BhbklkJzogJzhhZDdjNzYwNTIxNDIxNjYnLCAnY3VzdG9tX2RpbWVuc2lvbnMnOiB7J3N1YnNjcmlwdGlvbl9pZCc6ICc5NmFlZGUxMi0yZjczLTQxY2ItYjk4My02ZDExYTkwNDgzOWInLCAncmVzb3VyY2VfZ3JvdXAnOiAnemhlbmdmZWktdGVzdC1lYXN0dXMyJywgJ3dvcmtzcGFjZV9uYW1lJzogJ3Nka192bmV4dF9jbGknLCAnd29ya3NwYWNlX2xvY2F0aW9uJzogJ2Vhc3R1czInLCAnZXhwZXJpbWVudF9uYW1lJzogJ2F6dXJlLWFpLW1sJywgJ25vZGVfcmFuayc6ICdOb25lJywgJ25vZGVfaWQnOiAndHZtcHNfMGQ4MDZjMjBlZTkxNDcwMDFhMjZiZDM0MDViOTk1YTcxYTEwMzA5OGUyYzgxNzhhNTA2NjQxZDIyNTVlMDJjMV9kJywgJ3Jvb3RfcnVuX2lkJzogJ2hlbGxvd29ybGRfcGlwZWxpbmVfam9iX3F1aWNrX3dpdGhfb3V0cHV0XzIwMjJXMzhfdGVzdF9waXBlbGluZV9qb2JfY2hpbGRfcnVuX2Rvd25sb2FkJywgJ3J1bl9pZCc6ICc3NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQnLCAnY29ycmVsYXRpb25faWQnOiAnNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkJywgJ3NvdXJjZSc6ICdjb21tb25fcnVudGltZS5jcy1jYXBhYmlsaXR5JywgJ3Nlc3Npb25faWQnOiAnMGE2NTA2MTEtMWYyOC00ZDEwLWFmZmQtYTdhYjRkZjNmMGNlJywgJ3ZlcnNpb24nOiAnMC4wLjEuMjAyMjA5MTYuMScsICdjb21taXQnOiAnMWY0ODlkZScsICdicmFuY2gnOiAnb3JpZ2luLzFmNDg5ZGVjNGY1NzExNGQ3NjczNjRkMDJlZDk1MmE1MjNlOGViYmInLCAnVHJhY2VJZCc6ICdiYzZjNmM1YzljZDgzZTQzYjU3MmE3ZmNmNDc2OWFmNCcsICdTcGFuSWQnOiAnOGFkN2M3NjA1MjE0MjE2NicsICdUcmFjZUZsYWdzJzogJzAxJywgJ3RyYWNlSWQnOiAnYmM2YzZjNWM5Y2Q4M2U0M2I1NzJhN2ZjZjQ3NjlhZjQnLCAnc3BhbklkJzogJzhhZDdjNzYwNTIxNDIxNjYnfX0KSU5GTyAyMDIyLTA5LTIzIDE1OjMzOjQ4LDcyNyBjb250ZXh0X21hbmFnZXIucHk6OTMgWzFdIC0gZXhpdF9jb250ZXh0cyB7J3N1YnNjcmlwdGlvbl9pZCc6ICc5NmFlZGUxMi0yZjczLTQxY2ItYjk4My02ZDExYTkwNDgzOWInLCAncmVzb3VyY2VfZ3JvdXAnOiAnemhlbmdmZWktdGVzdC1lYXN0dXMyJywgJ3dvcmtzcGFjZV9uYW1lJzogJ3Nka192bmV4dF9jbGknLCAnd29ya3NwYWNlX2xvY2F0aW9uJzogJ2Vhc3R1czInLCAnZXhwZXJpbWVudF9uYW1lJzogJ2F6dXJlLWFpLW1sJywgJ25vZGVfcmFuayc6ICdOb25lJywgJ25vZGVfaWQnOiAndHZtcHNfMGQ4MDZjMjBlZTkxNDcwMDFhMjZiZDM0MDViOTk1YTcxYTEwMzA5OGUyYzgxNzhhNTA2NjQxZDIyNTVlMDJjMV9kJywgJ3Jvb3RfcnVuX2lkJzogJ2hlbGxvd29ybGRfcGlwZWxpbmVfam9iX3F1aWNrX3dpdGhfb3V0cHV0XzIwMjJXMzhfdGVzdF9waXBlbGluZV9qb2JfY2hpbGRfcnVuX2Rvd25sb2FkJywgJ3J1bl9pZCc6ICc3NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQnLCAnY29ycmVsYXRpb25faWQnOiAnNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkJywgJ3NvdXJjZSc6ICdjb21tb25fcnVudGltZS5jcy1jYXBhYmlsaXR5JywgJ3Nlc3Npb25faWQnOiAnMGE2NTA2MTEtMWYyOC00ZDEwLWFmZmQtYTdhYjRkZjNmMGNlJywgJ3ZlcnNpb24nOiAnMC4wLjEuMjAyMjA5MTYuMScsICdjb21taXQnOiAnMWY0ODlkZScsICdicmFuY2gnOiAnb3JpZ2luLzFmNDg5ZGVjNGY1NzExNGQ3NjczNjRkMDJlZDk1MmE1MjNlOGViYmInLCAnVHJhY2VJZCc6ICdiYzZjNmM1YzljZDgzZTQzYjU3MmE3ZmNmNDc2OWFmNCcsICdTcGFuSWQnOiAnOGFkN2M3NjA1MjE0MjE2NicsICdUcmFjZUZsYWdzJzogJzAxJywgJ3RyYWNlSWQnOiAnYmM2YzZjNWM5Y2Q4M2U0M2I1NzJhN2ZjZjQ3NjlhZjQnLCAnc3BhbklkJzogJzhhZDdjNzYwNTIxNDIxNjYnLCAnY3VzdG9tX2RpbWVuc2lvbnMnOiB7J3N1YnNjcmlwdGlvbl9pZCc6ICc5NmFlZGUxMi0yZjczLTQxY2ItYjk4My02ZDExYTkwNDgzOWInLCAncmVzb3VyY2VfZ3JvdXAnOiAnemhlbmdmZWktdGVzdC1lYXN0dXMyJywgJ3dvcmtzcGFjZV9uYW1lJzogJ3Nka192bmV4dF9jbGknLCAnd29ya3NwYWNlX2xvY2F0aW9uJzogJ2Vhc3R1czInLCAnZXhwZXJpbWVudF9uYW1lJzogJ2F6dXJlLWFpLW1sJywgJ25vZGVfcmFuayc6ICdOb25lJywgJ25vZGVfaWQnOiAndHZtcHNfMGQ4MDZjMjBlZTkxNDcwMDFhMjZiZDM0MDViOTk1YTcxYTEwMzA5OGUyYzgxNzhhNTA2NjQxZDIyNTVlMDJjMV9kJywgJ3Jvb3RfcnVuX2lkJzogJ2hlbGxvd29ybGRfcGlwZWxpbmVfam9iX3F1aWNrX3dpdGhfb3V0cHV0XzIwMjJXMzhfdGVzdF9waXBlbGluZV9qb2JfY2hpbGRfcnVuX2Rvd25sb2FkJywgJ3J1bl9pZCc6ICc3NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQnLCAnY29ycmVsYXRpb25faWQnOiAnNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkJywgJ3NvdXJjZSc6ICdjb21tb25fcnVudGltZS5jcy1jYXBhYmlsaXR5JywgJ3Nlc3Npb25faWQnOiAnMGE2NTA2MTEtMWYyOC00ZDEwLWFmZmQtYTdhYjRkZjNmMGNlJywgJ3ZlcnNpb24nOiAnMC4wLjEuMjAyMjA5MTYuMScsICdjb21taXQnOiAnMWY0ODlkZScsICdicmFuY2gnOiAnb3JpZ2luLzFmNDg5ZGVjNGY1NzExNGQ3NjczNjRkMDJlZDk1MmE1MjNlOGViYmInLCAnVHJhY2VJZCc6ICdiYzZjNmM1YzljZDgzZTQzYjU3MmE3ZmNmNDc2OWFmNCcsICdTcGFuSWQnOiAnOGFkN2M3NjA1MjE0MjE2NicsICdUcmFjZUZsYWdzJzogJzAxJywgJ3RyYWNlSWQnOiAnYmM2YzZjNWM5Y2Q4M2U0M2I1NzJhN2ZjZjQ3NjlhZjQnLCAnc3BhbklkJzogJzhhZDdjNzYwNTIxNDIxNjYnfX0KSU5GTyAyMDIyLTA5LTIzIDE1OjMzOjQ4LDcyOCBjb250ZXh0X21hbmFnZXIucHk6MTAwIFsxXSAtIGV4aXRfY29udGV4dHMgeydzdWNjZXNzJzogVHJ1ZSwgJ3N1YnNjcmlwdGlvbl9pZCc6ICc5NmFlZGUxMi0yZjczLTQxY2ItYjk4My02ZDExYTkwNDgzOWInLCAncmVzb3VyY2VfZ3JvdXAnOiAnemhlbmdmZWktdGVzdC1lYXN0dXMyJywgJ3dvcmtzcGFjZV9uYW1lJzogJ3Nka192bmV4dF9jbGknLCAnd29ya3NwYWNlX2xvY2F0aW9uJzogJ2Vhc3R1czInLCAnZXhwZXJpbWVudF9uYW1lJzogJ2F6dXJlLWFpLW1sJywgJ25vZGVfcmFuayc6ICdOb25lJywgJ25vZGVfaWQnOiAndHZtcHNfMGQ4MDZjMjBlZTkxNDcwMDFhMjZiZDM0MDViOTk1YTcxYTEwMzA5OGUyYzgxNzhhNTA2NjQxZDIyNTVlMDJjMV9kJywgJ3Jvb3RfcnVuX2lkJzogJ2hlbGxvd29ybGRfcGlwZWxpbmVfam9iX3F1aWNrX3dpdGhfb3V0cHV0XzIwMjJXMzhfdGVzdF9waXBlbGluZV9qb2JfY2hpbGRfcnVuX2Rvd25sb2FkJywgJ3J1bl9pZCc6ICc3NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQnLCAnY29ycmVsYXRpb25faWQnOiAnNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkJywgJ3NvdXJjZSc6ICdjb21tb25fcnVudGltZS5jcy1jYXBhYmlsaXR5JywgJ3Nlc3Npb25faWQnOiAnMGE2NTA2MTEtMWYyOC00ZDEwLWFmZmQtYTdhYjRkZjNmMGNlJywgJ3ZlcnNpb24nOiAnMC4wLjEuMjAyMjA5MTYuMScsICdjb21taXQnOiAnMWY0ODlkZScsICdicmFuY2gnOiAnb3JpZ2luLzFmNDg5ZGVjNGY1NzExNGQ3NjczNjRkMDJlZDk1MmE1MjNlOGViYmInLCAnVHJhY2VJZCc6ICdiYzZjNmM1YzljZDgzZTQzYjU3MmE3ZmNmNDc2OWFmNCcsICdTcGFuSWQnOiAnOGFkN2M3NjA1MjE0MjE2NicsICdUcmFjZUZsYWdzJzogJzAxJywgJ3RyYWNlSWQnOiAnYmM2YzZjNWM5Y2Q4M2U0M2I1NzJhN2ZjZjQ3NjlhZjQnLCAnc3BhbklkJzogJzhhZDdjNzYwNTIxNDIxNjYnLCAnY3VzdG9tX2RpbWVuc2lvbnMnOiB7J3N1Y2Nlc3MnOiBUcnVlLCAnc3Vic2NyaXB0aW9uX2lkJzogJzk2YWVkZTEyLTJmNzMtNDFjYi1iOTgzLTZkMTFhOTA0ODM5YicsICdyZXNvdXJjZV9ncm91cCc6ICd6aGVuZ2ZlaS10ZXN0LWVhc3R1czInLCAnd29ya3NwYWNlX25hbWUnOiAnc2RrX3ZuZXh0X2NsaScsICd3b3Jrc3BhY2VfbG9jYXRpb24nOiAnZWFzdHVzMicsICdleHBlcmltZW50X25hbWUnOiAnYXp1cmUtYWktbWwnLCAnbm9kZV9yYW5rJzogJ05vbmUnLCAnbm9kZV9pZCc6ICd0dm1wc18wZDgwNmMyMGVlOTE0NzAwMWEyNmJkMzQwNWI5OTVhNzFhMTAzMDk4ZTJjODE3OGE1MDY2NDFkMjI1NWUwMmMxX2QnLCAncm9vdF9ydW5faWQnOiAnaGVsbG93b3JsZF9waXBlbGluZV9qb2JfcXVpY2tfd2l0aF9vdXRwdXRfMjAyMlczOF90ZXN0X3BpcGVsaW5lX2pvYl9jaGlsZF9ydW5fZG93bmxvYWQnLCAncnVuX2lkJzogJzc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCcsICdjb3JyZWxhdGlvbl9pZCc6ICc3NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQnLCAnc291cmNlJzogJ2NvbW1vbl9ydW50aW1lLmNzLWNhcGFiaWxpdHknLCAnc2Vzc2lvbl9pZCc6ICcwYTY1MDYxMS0xZjI4LTRkMTAtYWZmZC1hN2FiNGRmM2YwY2UnLCAndmVyc2lvbic6ICcwLjAuMS4yMDIyMDkxNi4xJywgJ2NvbW1pdCc6ICcxZjQ4OWRlJywgJ2JyYW5jaCc6ICdvcmlnaW4vMWY0ODlkZWM0ZjU3MTE0ZDc2NzM2NGQwMmVkOTUyYTUyM2U4ZWJiYicsICdUcmFjZUlkJzogJ2JjNmM2YzVjOWNkODNlNDNiNTcyYTdmY2Y0NzY5YWY0JywgJ1NwYW5JZCc6ICc4YWQ3Yzc2MDUyMTQyMTY2JywgJ1RyYWNlRmxhZ3MnOiAnMDEnLCAndHJhY2VJZCc6ICdiYzZjNmM1YzljZDgzZTQzYjU3MmE3ZmNmNDc2OWFmNCcsICdzcGFuSWQnOiAnOGFkN2M3NjA1MjE0MjE2Nid9fQo=" + }, + { + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml/ExperimentRun/dcid.7599d23f-8164-4644-808e-e4e13b1efe1d/system_logs/data_capability/data-capability.log", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/xml", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:34:43 GMT", + "x-ms-range": "bytes=0-33554431", + "x-ms-version": "2021-08-06" + }, + "RequestBody": null, + "StatusCode": 206, + "ResponseHeaders": { + "Accept-Ranges": "bytes", + "Content-Disposition": "", + "Content-Length": "48264", + "Content-Range": "bytes 0-48263/48264", + "Content-Type": "application/octet-stream", + "Date": "Fri, 23 Sep 2022 15:34:41 GMT", + "ETag": "\u00220x8DA9D7902CDC486\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:33:48 GMT", + "Server": [ + "Windows-Azure-Blob/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": "Origin", + "x-ms-blob-type": "BlockBlob", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:33:48 GMT", + "x-ms-lease-state": "available", + "x-ms-lease-status": "unlocked", + "x-ms-server-encrypted": "true", + "x-ms-version": "2021-08-06" + }, + "ResponseBody": "SU5GTyAyMDIyLTA5LTIzIDE1OjMzOjQwLDI5MCBpbml0aWFsaXplci5weTo1OSBbMjldIC0gam9iX3RlbGVtZXRyeV9pbml0IHsnYXJ0aWZhY3RfdHlwZSc6ICdpbnN0YWxsZWQnLCAnY2lfbnVtYmVyJzogJzIwMjIwOTE2LjEnLCAnY2lfbmFtZSc6ICdDb21tb25SdW50aW1lLXByb2QtYnVpbGQnLCAnYnVpbGRfdGltZSc6ICcyMDIyLTA5LTE2IDEwOjM1OjQ2Ljg3MjEyNCcsICdzdWJzY3JpcHRpb25faWQnOiAnOTZhZWRlMTItMmY3My00MWNiLWI5ODMtNmQxMWE5MDQ4MzliJywgJ3Jlc291cmNlX2dyb3VwJzogJ3poZW5nZmVpLXRlc3QtZWFzdHVzMicsICd3b3Jrc3BhY2VfbmFtZSc6ICdzZGtfdm5leHRfY2xpJywgJ3dvcmtzcGFjZV9sb2NhdGlvbic6ICdlYXN0dXMyJywgJ2V4cGVyaW1lbnRfbmFtZSc6ICdhenVyZS1haS1tbCcsICdub2RlX3JhbmsnOiAnTm9uZScsICdub2RlX2lkJzogJ3R2bXBzXzBkODA2YzIwZWU5MTQ3MDAxYTI2YmQzNDA1Yjk5NWE3MWExMDMwOThlMmM4MTc4YTUwNjY0MWQyMjU1ZTAyYzFfZCcsICdyb290X3J1bl9pZCc6ICdoZWxsb3dvcmxkX3BpcGVsaW5lX2pvYl9xdWlja193aXRoX291dHB1dF8yMDIyVzM4X3Rlc3RfcGlwZWxpbmVfam9iX2NoaWxkX3J1bl9kb3dubG9hZCcsICdydW5faWQnOiAnNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkJywgJ2NvcnJlbGF0aW9uX2lkJzogJzc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCcsICdzb3VyY2UnOiAnY29tbW9uX3J1bnRpbWUuZGF0YS1jYXBhYmlsaXR5JywgJ3Nlc3Npb25faWQnOiAnNmIwYzBiOWUtMGFiNi00NWUwLWIyNTEtOGMxNjg3YTRkMjU2JywgJ3ZlcnNpb24nOiAnMC4wLjEuMjAyMjA5MTYuMScsICdjb21taXQnOiAnMWY0ODlkZScsICdicmFuY2gnOiAnb3JpZ2luLzFmNDg5ZGVjNGY1NzExNGQ3NjczNjRkMDJlZDk1MmE1MjNlOGViYmInLCAnY3VzdG9tX2RpbWVuc2lvbnMnOiB7J2FydGlmYWN0X3R5cGUnOiAnaW5zdGFsbGVkJywgJ2NpX251bWJlcic6ICcyMDIyMDkxNi4xJywgJ2NpX25hbWUnOiAnQ29tbW9uUnVudGltZS1wcm9kLWJ1aWxkJywgJ2J1aWxkX3RpbWUnOiAnMjAyMi0wOS0xNiAxMDozNTo0Ni44NzIxMjQnLCAnc3Vic2NyaXB0aW9uX2lkJzogJzk2YWVkZTEyLTJmNzMtNDFjYi1iOTgzLTZkMTFhOTA0ODM5YicsICdyZXNvdXJjZV9ncm91cCc6ICd6aGVuZ2ZlaS10ZXN0LWVhc3R1czInLCAnd29ya3NwYWNlX25hbWUnOiAnc2RrX3ZuZXh0X2NsaScsICd3b3Jrc3BhY2VfbG9jYXRpb24nOiAnZWFzdHVzMicsICdleHBlcmltZW50X25hbWUnOiAnYXp1cmUtYWktbWwnLCAnbm9kZV9yYW5rJzogJ05vbmUnLCAnbm9kZV9pZCc6ICd0dm1wc18wZDgwNmMyMGVlOTE0NzAwMWEyNmJkMzQwNWI5OTVhNzFhMTAzMDk4ZTJjODE3OGE1MDY2NDFkMjI1NWUwMmMxX2QnLCAncm9vdF9ydW5faWQnOiAnaGVsbG93b3JsZF9waXBlbGluZV9qb2JfcXVpY2tfd2l0aF9vdXRwdXRfMjAyMlczOF90ZXN0X3BpcGVsaW5lX2pvYl9jaGlsZF9ydW5fZG93bmxvYWQnLCAncnVuX2lkJzogJzc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCcsICdjb3JyZWxhdGlvbl9pZCc6ICc3NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQnLCAnc291cmNlJzogJ2NvbW1vbl9ydW50aW1lLmRhdGEtY2FwYWJpbGl0eScsICdzZXNzaW9uX2lkJzogJzZiMGMwYjllLTBhYjYtNDVlMC1iMjUxLThjMTY4N2E0ZDI1NicsICd2ZXJzaW9uJzogJzAuMC4xLjIwMjIwOTE2LjEnLCAnY29tbWl0JzogJzFmNDg5ZGUnLCAnYnJhbmNoJzogJ29yaWdpbi8xZjQ4OWRlYzRmNTcxMTRkNzY3MzY0ZDAyZWQ5NTJhNTIzZThlYmJiJ319CklORk8gMjAyMi0wOS0yMyAxNTozMzo0MCwyOTEgdHJhY2VyLnB5OjMwIFsyOV0gLSBTZXR0aW5nIHVwIHRyYWNlciB7J2NvbXBvbmVudF9uYW1lJzogJ2RhdGEtY2FwYWJpbGl0eScsICd0ZWxlbWV0cnlfY29uZmlnJzogJ3siY29sbGVjdG9yIjogeyJyZWNlaXZlciI6IG51bGwsICJleHBvcnRlciI6IHsiYXBwaW5zaWdodHMiOiB7Imluc3RydW1lbnRhdGlvbl9rZXkiOiAiZDJlZTg5YzktMjJiMS00YjA3LTg0ZmQtYWQ3YTg3ZmQ3MTVkIn0sICJqYWVnZXIiOiBudWxsLCAicHJvbWV0aGV1cyI6IG51bGwsICJ0aW1lb3V0X21pbGxpcyI6IG51bGwsICJsZXZlbCI6IG51bGx9fSwgImxvZ2dlciI6IHsiY29uc29sZSI6IG51bGwsICJhcHBpbnNpZ2h0cyI6IHsiaW5zdHJ1bWVudGF0aW9uX2tleSI6ICJkMmVlODljOS0yMmIxLTRiMDctODRmZC1hZDdhODdmZDcxNWQiLCAibGV2ZWwiOiAiaW5mbyIsICJlbmFibGVkIjogdHJ1ZX0sICJmaWxlIjogeyJleHRlbnNpb24iOiAibG9nIiwgImxldmVsIjogImluZm8iLCAiZW5hYmxlZCI6IHRydWV9fSwgIm5vZGVfcmFuayI6IG51bGwsICJub2RlX2lkIjogInR2bXBzXzBkODA2YzIwZWU5MTQ3MDAxYTI2YmQzNDA1Yjk5NWE3MWExMDMwOThlMmM4MTc4YTUwNjY0MWQyMjU1ZTAyYzFfZCIsICJkaXNhYmxlX3NlbnNpdGl2ZV9zY3J1YiI6IG51bGx9JywgJ3N1YnNjcmlwdGlvbl9pZCc6ICc5NmFlZGUxMi0yZjczLTQxY2ItYjk4My02ZDExYTkwNDgzOWInLCAncmVzb3VyY2VfZ3JvdXAnOiAnemhlbmdmZWktdGVzdC1lYXN0dXMyJywgJ3dvcmtzcGFjZV9uYW1lJzogJ3Nka192bmV4dF9jbGknLCAnd29ya3NwYWNlX2xvY2F0aW9uJzogJ2Vhc3R1czInLCAnZXhwZXJpbWVudF9uYW1lJzogJ2F6dXJlLWFpLW1sJywgJ25vZGVfcmFuayc6ICdOb25lJywgJ25vZGVfaWQnOiAndHZtcHNfMGQ4MDZjMjBlZTkxNDcwMDFhMjZiZDM0MDViOTk1YTcxYTEwMzA5OGUyYzgxNzhhNTA2NjQxZDIyNTVlMDJjMV9kJywgJ3Jvb3RfcnVuX2lkJzogJ2hlbGxvd29ybGRfcGlwZWxpbmVfam9iX3F1aWNrX3dpdGhfb3V0cHV0XzIwMjJXMzhfdGVzdF9waXBlbGluZV9qb2JfY2hpbGRfcnVuX2Rvd25sb2FkJywgJ3J1bl9pZCc6ICc3NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQnLCAnY29ycmVsYXRpb25faWQnOiAnNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkJywgJ3NvdXJjZSc6ICdjb21tb25fcnVudGltZS5kYXRhLWNhcGFiaWxpdHknLCAnc2Vzc2lvbl9pZCc6ICc2YjBjMGI5ZS0wYWI2LTQ1ZTAtYjI1MS04YzE2ODdhNGQyNTYnLCAndmVyc2lvbic6ICcwLjAuMS4yMDIyMDkxNi4xJywgJ2NvbW1pdCc6ICcxZjQ4OWRlJywgJ2JyYW5jaCc6ICdvcmlnaW4vMWY0ODlkZWM0ZjU3MTE0ZDc2NzM2NGQwMmVkOTUyYTUyM2U4ZWJiYicsICdjdXN0b21fZGltZW5zaW9ucyc6IHsnY29tcG9uZW50X25hbWUnOiAnZGF0YS1jYXBhYmlsaXR5JywgJ3RlbGVtZXRyeV9jb25maWcnOiAneyJjb2xsZWN0b3IiOiB7InJlY2VpdmVyIjogbnVsbCwgImV4cG9ydGVyIjogeyJhcHBpbnNpZ2h0cyI6IHsiaW5zdHJ1bWVudGF0aW9uX2tleSI6ICJkMmVlODljOS0yMmIxLTRiMDctODRmZC1hZDdhODdmZDcxNWQifSwgImphZWdlciI6IG51bGwsICJwcm9tZXRoZXVzIjogbnVsbCwgInRpbWVvdXRfbWlsbGlzIjogbnVsbCwgImxldmVsIjogbnVsbH19LCAibG9nZ2VyIjogeyJjb25zb2xlIjogbnVsbCwgImFwcGluc2lnaHRzIjogeyJpbnN0cnVtZW50YXRpb25fa2V5IjogImQyZWU4OWM5LTIyYjEtNGIwNy04NGZkLWFkN2E4N2ZkNzE1ZCIsICJsZXZlbCI6ICJpbmZvIiwgImVuYWJsZWQiOiB0cnVlfSwgImZpbGUiOiB7ImV4dGVuc2lvbiI6ICJsb2ciLCAibGV2ZWwiOiAiaW5mbyIsICJlbmFibGVkIjogdHJ1ZX19LCAibm9kZV9yYW5rIjogbnVsbCwgIm5vZGVfaWQiOiAidHZtcHNfMGQ4MDZjMjBlZTkxNDcwMDFhMjZiZDM0MDViOTk1YTcxYTEwMzA5OGUyYzgxNzhhNTA2NjQxZDIyNTVlMDJjMV9kIiwgImRpc2FibGVfc2Vuc2l0aXZlX3NjcnViIjogbnVsbH0nLCAnc3Vic2NyaXB0aW9uX2lkJzogJzk2YWVkZTEyLTJmNzMtNDFjYi1iOTgzLTZkMTFhOTA0ODM5YicsICdyZXNvdXJjZV9ncm91cCc6ICd6aGVuZ2ZlaS10ZXN0LWVhc3R1czInLCAnd29ya3NwYWNlX25hbWUnOiAnc2RrX3ZuZXh0X2NsaScsICd3b3Jrc3BhY2VfbG9jYXRpb24nOiAnZWFzdHVzMicsICdleHBlcmltZW50X25hbWUnOiAnYXp1cmUtYWktbWwnLCAnbm9kZV9yYW5rJzogJ05vbmUnLCAnbm9kZV9pZCc6ICd0dm1wc18wZDgwNmMyMGVlOTE0NzAwMWEyNmJkMzQwNWI5OTVhNzFhMTAzMDk4ZTJjODE3OGE1MDY2NDFkMjI1NWUwMmMxX2QnLCAncm9vdF9ydW5faWQnOiAnaGVsbG93b3JsZF9waXBlbGluZV9qb2JfcXVpY2tfd2l0aF9vdXRwdXRfMjAyMlczOF90ZXN0X3BpcGVsaW5lX2pvYl9jaGlsZF9ydW5fZG93bmxvYWQnLCAncnVuX2lkJzogJzc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCcsICdjb3JyZWxhdGlvbl9pZCc6ICc3NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQnLCAnc291cmNlJzogJ2NvbW1vbl9ydW50aW1lLmRhdGEtY2FwYWJpbGl0eScsICdzZXNzaW9uX2lkJzogJzZiMGMwYjllLTBhYjYtNDVlMC1iMjUxLThjMTY4N2E0ZDI1NicsICd2ZXJzaW9uJzogJzAuMC4xLjIwMjIwOTE2LjEnLCAnY29tbWl0JzogJzFmNDg5ZGUnLCAnYnJhbmNoJzogJ29yaWdpbi8xZjQ4OWRlYzRmNTcxMTRkNzY3MzY0ZDAyZWQ5NTJhNTIzZThlYmJiJ319CklORk8gMjAyMi0wOS0yMyAxNTozMzo0MCwyOTEgdHJhY2VyLnB5OjU1IFsyOV0gLSBTZXR0aW5nIHVwIGFwcGluc2lnaHRzIGV4cG9ydGVyIHsnc3Vic2NyaXB0aW9uX2lkJzogJzk2YWVkZTEyLTJmNzMtNDFjYi1iOTgzLTZkMTFhOTA0ODM5YicsICdyZXNvdXJjZV9ncm91cCc6ICd6aGVuZ2ZlaS10ZXN0LWVhc3R1czInLCAnd29ya3NwYWNlX25hbWUnOiAnc2RrX3ZuZXh0X2NsaScsICd3b3Jrc3BhY2VfbG9jYXRpb24nOiAnZWFzdHVzMicsICdleHBlcmltZW50X25hbWUnOiAnYXp1cmUtYWktbWwnLCAnbm9kZV9yYW5rJzogJ05vbmUnLCAnbm9kZV9pZCc6ICd0dm1wc18wZDgwNmMyMGVlOTE0NzAwMWEyNmJkMzQwNWI5OTVhNzFhMTAzMDk4ZTJjODE3OGE1MDY2NDFkMjI1NWUwMmMxX2QnLCAncm9vdF9ydW5faWQnOiAnaGVsbG93b3JsZF9waXBlbGluZV9qb2JfcXVpY2tfd2l0aF9vdXRwdXRfMjAyMlczOF90ZXN0X3BpcGVsaW5lX2pvYl9jaGlsZF9ydW5fZG93bmxvYWQnLCAncnVuX2lkJzogJzc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCcsICdjb3JyZWxhdGlvbl9pZCc6ICc3NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQnLCAnc291cmNlJzogJ2NvbW1vbl9ydW50aW1lLmRhdGEtY2FwYWJpbGl0eScsICdzZXNzaW9uX2lkJzogJzZiMGMwYjllLTBhYjYtNDVlMC1iMjUxLThjMTY4N2E0ZDI1NicsICd2ZXJzaW9uJzogJzAuMC4xLjIwMjIwOTE2LjEnLCAnY29tbWl0JzogJzFmNDg5ZGUnLCAnYnJhbmNoJzogJ29yaWdpbi8xZjQ4OWRlYzRmNTcxMTRkNzY3MzY0ZDAyZWQ5NTJhNTIzZThlYmJiJywgJ2N1c3RvbV9kaW1lbnNpb25zJzogeydzdWJzY3JpcHRpb25faWQnOiAnOTZhZWRlMTItMmY3My00MWNiLWI5ODMtNmQxMWE5MDQ4MzliJywgJ3Jlc291cmNlX2dyb3VwJzogJ3poZW5nZmVpLXRlc3QtZWFzdHVzMicsICd3b3Jrc3BhY2VfbmFtZSc6ICdzZGtfdm5leHRfY2xpJywgJ3dvcmtzcGFjZV9sb2NhdGlvbic6ICdlYXN0dXMyJywgJ2V4cGVyaW1lbnRfbmFtZSc6ICdhenVyZS1haS1tbCcsICdub2RlX3JhbmsnOiAnTm9uZScsICdub2RlX2lkJzogJ3R2bXBzXzBkODA2YzIwZWU5MTQ3MDAxYTI2YmQzNDA1Yjk5NWE3MWExMDMwOThlMmM4MTc4YTUwNjY0MWQyMjU1ZTAyYzFfZCcsICdyb290X3J1bl9pZCc6ICdoZWxsb3dvcmxkX3BpcGVsaW5lX2pvYl9xdWlja193aXRoX291dHB1dF8yMDIyVzM4X3Rlc3RfcGlwZWxpbmVfam9iX2NoaWxkX3J1bl9kb3dubG9hZCcsICdydW5faWQnOiAnNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkJywgJ2NvcnJlbGF0aW9uX2lkJzogJzc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCcsICdzb3VyY2UnOiAnY29tbW9uX3J1bnRpbWUuZGF0YS1jYXBhYmlsaXR5JywgJ3Nlc3Npb25faWQnOiAnNmIwYzBiOWUtMGFiNi00NWUwLWIyNTEtOGMxNjg3YTRkMjU2JywgJ3ZlcnNpb24nOiAnMC4wLjEuMjAyMjA5MTYuMScsICdjb21taXQnOiAnMWY0ODlkZScsICdicmFuY2gnOiAnb3JpZ2luLzFmNDg5ZGVjNGY1NzExNGQ3NjczNjRkMDJlZDk1MmE1MjNlOGViYmInfX0KSU5GTyAyMDIyLTA5LTIzIDE1OjMzOjQwLDI5MiBpbml0aWFsaXplci5weTo2OSBbMjldIC0gVHJhY2VyIGluaXRpYWxpemVkIHsnYXJ0aWZhY3RfdHlwZSc6ICdpbnN0YWxsZWQnLCAnY2lfbnVtYmVyJzogJzIwMjIwOTE2LjEnLCAnY2lfbmFtZSc6ICdDb21tb25SdW50aW1lLXByb2QtYnVpbGQnLCAnYnVpbGRfdGltZSc6ICcyMDIyLTA5LTE2IDEwOjM1OjQ2Ljg3MjEyNCcsICdzdWJzY3JpcHRpb25faWQnOiAnOTZhZWRlMTItMmY3My00MWNiLWI5ODMtNmQxMWE5MDQ4MzliJywgJ3Jlc291cmNlX2dyb3VwJzogJ3poZW5nZmVpLXRlc3QtZWFzdHVzMicsICd3b3Jrc3BhY2VfbmFtZSc6ICdzZGtfdm5leHRfY2xpJywgJ3dvcmtzcGFjZV9sb2NhdGlvbic6ICdlYXN0dXMyJywgJ2V4cGVyaW1lbnRfbmFtZSc6ICdhenVyZS1haS1tbCcsICdub2RlX3JhbmsnOiAnTm9uZScsICdub2RlX2lkJzogJ3R2bXBzXzBkODA2YzIwZWU5MTQ3MDAxYTI2YmQzNDA1Yjk5NWE3MWExMDMwOThlMmM4MTc4YTUwNjY0MWQyMjU1ZTAyYzFfZCcsICdyb290X3J1bl9pZCc6ICdoZWxsb3dvcmxkX3BpcGVsaW5lX2pvYl9xdWlja193aXRoX291dHB1dF8yMDIyVzM4X3Rlc3RfcGlwZWxpbmVfam9iX2NoaWxkX3J1bl9kb3dubG9hZCcsICdydW5faWQnOiAnNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkJywgJ2NvcnJlbGF0aW9uX2lkJzogJzc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCcsICdzb3VyY2UnOiAnY29tbW9uX3J1bnRpbWUuZGF0YS1jYXBhYmlsaXR5JywgJ3Nlc3Npb25faWQnOiAnNmIwYzBiOWUtMGFiNi00NWUwLWIyNTEtOGMxNjg3YTRkMjU2JywgJ3ZlcnNpb24nOiAnMC4wLjEuMjAyMjA5MTYuMScsICdjb21taXQnOiAnMWY0ODlkZScsICdicmFuY2gnOiAnb3JpZ2luLzFmNDg5ZGVjNGY1NzExNGQ3NjczNjRkMDJlZDk1MmE1MjNlOGViYmInLCAnY3VzdG9tX2RpbWVuc2lvbnMnOiB7J2FydGlmYWN0X3R5cGUnOiAnaW5zdGFsbGVkJywgJ2NpX251bWJlcic6ICcyMDIyMDkxNi4xJywgJ2NpX25hbWUnOiAnQ29tbW9uUnVudGltZS1wcm9kLWJ1aWxkJywgJ2J1aWxkX3RpbWUnOiAnMjAyMi0wOS0xNiAxMDozNTo0Ni44NzIxMjQnLCAnc3Vic2NyaXB0aW9uX2lkJzogJzk2YWVkZTEyLTJmNzMtNDFjYi1iOTgzLTZkMTFhOTA0ODM5YicsICdyZXNvdXJjZV9ncm91cCc6ICd6aGVuZ2ZlaS10ZXN0LWVhc3R1czInLCAnd29ya3NwYWNlX25hbWUnOiAnc2RrX3ZuZXh0X2NsaScsICd3b3Jrc3BhY2VfbG9jYXRpb24nOiAnZWFzdHVzMicsICdleHBlcmltZW50X25hbWUnOiAnYXp1cmUtYWktbWwnLCAnbm9kZV9yYW5rJzogJ05vbmUnLCAnbm9kZV9pZCc6ICd0dm1wc18wZDgwNmMyMGVlOTE0NzAwMWEyNmJkMzQwNWI5OTVhNzFhMTAzMDk4ZTJjODE3OGE1MDY2NDFkMjI1NWUwMmMxX2QnLCAncm9vdF9ydW5faWQnOiAnaGVsbG93b3JsZF9waXBlbGluZV9qb2JfcXVpY2tfd2l0aF9vdXRwdXRfMjAyMlczOF90ZXN0X3BpcGVsaW5lX2pvYl9jaGlsZF9ydW5fZG93bmxvYWQnLCAncnVuX2lkJzogJzc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCcsICdjb3JyZWxhdGlvbl9pZCc6ICc3NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQnLCAnc291cmNlJzogJ2NvbW1vbl9ydW50aW1lLmRhdGEtY2FwYWJpbGl0eScsICdzZXNzaW9uX2lkJzogJzZiMGMwYjllLTBhYjYtNDVlMC1iMjUxLThjMTY4N2E0ZDI1NicsICd2ZXJzaW9uJzogJzAuMC4xLjIwMjIwOTE2LjEnLCAnY29tbWl0JzogJzFmNDg5ZGUnLCAnYnJhbmNoJzogJ29yaWdpbi8xZjQ4OWRlYzRmNTcxMTRkNzY3MzY0ZDAyZWQ5NTJhNTIzZThlYmJiJ319CklORk8gMjAyMi0wOS0yMyAxNTozMzo0MCwzMTMgY3JfdXRpbGl0aWVzLnB5OjQzMCBbMjldIC0gSW5zdGFsbGVkIHB5dGhvbiBwYWNrYWdlIHZlcnNpb25zLiB7J2F6dXJlbWxfY29yZSc6ICcxLjQ1LjAucG9zdDEnLCAnYXp1cmVtbF9kYXRhcHJlcCc6ICc0LjQuMCcsICdhenVyZW1sX2RhdGFwcmVwX3JzbGV4JzogJzIuMTAuMCcsICdzdWJzY3JpcHRpb25faWQnOiAnOTZhZWRlMTItMmY3My00MWNiLWI5ODMtNmQxMWE5MDQ4MzliJywgJ3Jlc291cmNlX2dyb3VwJzogJ3poZW5nZmVpLXRlc3QtZWFzdHVzMicsICd3b3Jrc3BhY2VfbmFtZSc6ICdzZGtfdm5leHRfY2xpJywgJ3dvcmtzcGFjZV9sb2NhdGlvbic6ICdlYXN0dXMyJywgJ2V4cGVyaW1lbnRfbmFtZSc6ICdhenVyZS1haS1tbCcsICdub2RlX3JhbmsnOiAnTm9uZScsICdub2RlX2lkJzogJ3R2bXBzXzBkODA2YzIwZWU5MTQ3MDAxYTI2YmQzNDA1Yjk5NWE3MWExMDMwOThlMmM4MTc4YTUwNjY0MWQyMjU1ZTAyYzFfZCcsICdyb290X3J1bl9pZCc6ICdoZWxsb3dvcmxkX3BpcGVsaW5lX2pvYl9xdWlja193aXRoX291dHB1dF8yMDIyVzM4X3Rlc3RfcGlwZWxpbmVfam9iX2NoaWxkX3J1bl9kb3dubG9hZCcsICdydW5faWQnOiAnNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkJywgJ2NvcnJlbGF0aW9uX2lkJzogJzc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCcsICdzb3VyY2UnOiAnY29tbW9uX3J1bnRpbWUuZGF0YS1jYXBhYmlsaXR5JywgJ3Nlc3Npb25faWQnOiAnNmIwYzBiOWUtMGFiNi00NWUwLWIyNTEtOGMxNjg3YTRkMjU2JywgJ3ZlcnNpb24nOiAnMC4wLjEuMjAyMjA5MTYuMScsICdjb21taXQnOiAnMWY0ODlkZScsICdicmFuY2gnOiAnb3JpZ2luLzFmNDg5ZGVjNGY1NzExNGQ3NjczNjRkMDJlZDk1MmE1MjNlOGViYmInLCAnY3VzdG9tX2RpbWVuc2lvbnMnOiB7J2F6dXJlbWxfY29yZSc6ICcxLjQ1LjAucG9zdDEnLCAnYXp1cmVtbF9kYXRhcHJlcCc6ICc0LjQuMCcsICdhenVyZW1sX2RhdGFwcmVwX3JzbGV4JzogJzIuMTAuMCcsICdzdWJzY3JpcHRpb25faWQnOiAnOTZhZWRlMTItMmY3My00MWNiLWI5ODMtNmQxMWE5MDQ4MzliJywgJ3Jlc291cmNlX2dyb3VwJzogJ3poZW5nZmVpLXRlc3QtZWFzdHVzMicsICd3b3Jrc3BhY2VfbmFtZSc6ICdzZGtfdm5leHRfY2xpJywgJ3dvcmtzcGFjZV9sb2NhdGlvbic6ICdlYXN0dXMyJywgJ2V4cGVyaW1lbnRfbmFtZSc6ICdhenVyZS1haS1tbCcsICdub2RlX3JhbmsnOiAnTm9uZScsICdub2RlX2lkJzogJ3R2bXBzXzBkODA2YzIwZWU5MTQ3MDAxYTI2YmQzNDA1Yjk5NWE3MWExMDMwOThlMmM4MTc4YTUwNjY0MWQyMjU1ZTAyYzFfZCcsICdyb290X3J1bl9pZCc6ICdoZWxsb3dvcmxkX3BpcGVsaW5lX2pvYl9xdWlja193aXRoX291dHB1dF8yMDIyVzM4X3Rlc3RfcGlwZWxpbmVfam9iX2NoaWxkX3J1bl9kb3dubG9hZCcsICdydW5faWQnOiAnNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkJywgJ2NvcnJlbGF0aW9uX2lkJzogJzc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCcsICdzb3VyY2UnOiAnY29tbW9uX3J1bnRpbWUuZGF0YS1jYXBhYmlsaXR5JywgJ3Nlc3Npb25faWQnOiAnNmIwYzBiOWUtMGFiNi00NWUwLWIyNTEtOGMxNjg3YTRkMjU2JywgJ3ZlcnNpb24nOiAnMC4wLjEuMjAyMjA5MTYuMScsICdjb21taXQnOiAnMWY0ODlkZScsICdicmFuY2gnOiAnb3JpZ2luLzFmNDg5ZGVjNGY1NzExNGQ3NjczNjRkMDJlZDk1MmE1MjNlOGViYmInfX0KSU5GTyAyMDIyLTA5LTIzIDE1OjMzOjQwLDMxMyB0cmFjZXIucHk6MTA1IFsyOV0gLSBbdHJhY2VyXVtnZXRfYW1iaWVudF9wYXJlbnRfY3R4XSBwYXJlbnQgY3R4OiB7J2N1cnJlbnQtc3Bhbic6IE5vblJlY29yZGluZ1NwYW4oU3BhbkNvbnRleHQodHJhY2VfaWQ9MHg3NGUyMDIyMzgxZmY3YTZkYWM0ZmJhZjI3NWU1NTVlOCwgc3Bhbl9pZD0weDUxNWQ2NjYwMGMwMGE2NTMsIHRyYWNlX2ZsYWdzPTB4MDEsIHRyYWNlX3N0YXRlPVtdLCBpc19yZW1vdGU9VHJ1ZSkpfSB7J3N1YnNjcmlwdGlvbl9pZCc6ICc5NmFlZGUxMi0yZjczLTQxY2ItYjk4My02ZDExYTkwNDgzOWInLCAncmVzb3VyY2VfZ3JvdXAnOiAnemhlbmdmZWktdGVzdC1lYXN0dXMyJywgJ3dvcmtzcGFjZV9uYW1lJzogJ3Nka192bmV4dF9jbGknLCAnd29ya3NwYWNlX2xvY2F0aW9uJzogJ2Vhc3R1czInLCAnZXhwZXJpbWVudF9uYW1lJzogJ2F6dXJlLWFpLW1sJywgJ25vZGVfcmFuayc6ICdOb25lJywgJ25vZGVfaWQnOiAndHZtcHNfMGQ4MDZjMjBlZTkxNDcwMDFhMjZiZDM0MDViOTk1YTcxYTEwMzA5OGUyYzgxNzhhNTA2NjQxZDIyNTVlMDJjMV9kJywgJ3Jvb3RfcnVuX2lkJzogJ2hlbGxvd29ybGRfcGlwZWxpbmVfam9iX3F1aWNrX3dpdGhfb3V0cHV0XzIwMjJXMzhfdGVzdF9waXBlbGluZV9qb2JfY2hpbGRfcnVuX2Rvd25sb2FkJywgJ3J1bl9pZCc6ICc3NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQnLCAnY29ycmVsYXRpb25faWQnOiAnNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkJywgJ3NvdXJjZSc6ICdjb21tb25fcnVudGltZS5kYXRhLWNhcGFiaWxpdHknLCAnc2Vzc2lvbl9pZCc6ICc2YjBjMGI5ZS0wYWI2LTQ1ZTAtYjI1MS04YzE2ODdhNGQyNTYnLCAndmVyc2lvbic6ICcwLjAuMS4yMDIyMDkxNi4xJywgJ2NvbW1pdCc6ICcxZjQ4OWRlJywgJ2JyYW5jaCc6ICdvcmlnaW4vMWY0ODlkZWM0ZjU3MTE0ZDc2NzM2NGQwMmVkOTUyYTUyM2U4ZWJiYicsICdjdXN0b21fZGltZW5zaW9ucyc6IHsnc3Vic2NyaXB0aW9uX2lkJzogJzk2YWVkZTEyLTJmNzMtNDFjYi1iOTgzLTZkMTFhOTA0ODM5YicsICdyZXNvdXJjZV9ncm91cCc6ICd6aGVuZ2ZlaS10ZXN0LWVhc3R1czInLCAnd29ya3NwYWNlX25hbWUnOiAnc2RrX3ZuZXh0X2NsaScsICd3b3Jrc3BhY2VfbG9jYXRpb24nOiAnZWFzdHVzMicsICdleHBlcmltZW50X25hbWUnOiAnYXp1cmUtYWktbWwnLCAnbm9kZV9yYW5rJzogJ05vbmUnLCAnbm9kZV9pZCc6ICd0dm1wc18wZDgwNmMyMGVlOTE0NzAwMWEyNmJkMzQwNWI5OTVhNzFhMTAzMDk4ZTJjODE3OGE1MDY2NDFkMjI1NWUwMmMxX2QnLCAncm9vdF9ydW5faWQnOiAnaGVsbG93b3JsZF9waXBlbGluZV9qb2JfcXVpY2tfd2l0aF9vdXRwdXRfMjAyMlczOF90ZXN0X3BpcGVsaW5lX2pvYl9jaGlsZF9ydW5fZG93bmxvYWQnLCAncnVuX2lkJzogJzc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCcsICdjb3JyZWxhdGlvbl9pZCc6ICc3NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQnLCAnc291cmNlJzogJ2NvbW1vbl9ydW50aW1lLmRhdGEtY2FwYWJpbGl0eScsICdzZXNzaW9uX2lkJzogJzZiMGMwYjllLTBhYjYtNDVlMC1iMjUxLThjMTY4N2E0ZDI1NicsICd2ZXJzaW9uJzogJzAuMC4xLjIwMjIwOTE2LjEnLCAnY29tbWl0JzogJzFmNDg5ZGUnLCAnYnJhbmNoJzogJ29yaWdpbi8xZjQ4OWRlYzRmNTcxMTRkNzY3MzY0ZDAyZWQ5NTJhNTIzZThlYmJiJ319CklORk8gMjAyMi0wOS0yMyAxNTozMzo0MCwzMTkgY29uZmlnX3BhcnNlci5weTozMjAgWzI5XSAtIFBhcnNpbmcgb3V0cHV0OiB7CiAgInRvIjogIjxSRURBQ1RFRD4iLAogICJuYW1lIjogImNvbXBvbmVudF9vdXRfcGF0aF8xIiwKICAibW9kZSI6ICJtb3VudCIsCiAgImVudmlyb25tZW50X25hbWVzIjogWwogICAgIjxSRURBQ1RFRD4iCiAgXSwKICAib3B0aW9ucyI6IHsKICAgICJpc19zaW5nbGVfZmlsZSI6IGZhbHNlLAogICAgInJlZ2lzdGVyX2RhdGFzZXQiOiB7CiAgICAgICJhc3NldF90eXBlIjogIlVyaUZvbGRlciIKICAgIH0sCiAgICAibW91bnQiOiB7CiAgICAgICJlbmFibGVfcnNsZXhfbW91bnQiOiB0cnVlLAogICAgICAiYWxsb3dfb3RoZXIiOiB0cnVlCiAgICB9CiAgfQp9IHsnY29uZmlnJzogJ3tcbiAgInRvIjogIjxSRURBQ1RFRD4iLFxuICAibmFtZSI6ICJjb21wb25lbnRfb3V0X3BhdGhfMSIsXG4gICJtb2RlIjogIm1vdW50IixcbiAgImVudmlyb25tZW50X25hbWVzIjogW1xuICAgICI8UkVEQUNURUQ\u002BIlxuICBdLFxuICAib3B0aW9ucyI6IHtcbiAgICAiaXNfc2luZ2xlX2ZpbGUiOiBmYWxzZSxcbiAgICAicmVnaXN0ZXJfZGF0YXNldCI6IHtcbiAgICAgICJhc3NldF90eXBlIjogIlVyaUZvbGRlciJcbiAgICB9LFxuICAgICJtb3VudCI6IHtcbiAgICAgICJlbmFibGVfcnNsZXhfbW91bnQiOiB0cnVlLFxuICAgICAgImFsbG93X290aGVyIjogdHJ1ZVxuICAgIH1cbiAgfVxufScsICdzdWJzY3JpcHRpb25faWQnOiAnOTZhZWRlMTItMmY3My00MWNiLWI5ODMtNmQxMWE5MDQ4MzliJywgJ3Jlc291cmNlX2dyb3VwJzogJ3poZW5nZmVpLXRlc3QtZWFzdHVzMicsICd3b3Jrc3BhY2VfbmFtZSc6ICdzZGtfdm5leHRfY2xpJywgJ3dvcmtzcGFjZV9sb2NhdGlvbic6ICdlYXN0dXMyJywgJ2V4cGVyaW1lbnRfbmFtZSc6ICdhenVyZS1haS1tbCcsICdub2RlX3JhbmsnOiAnTm9uZScsICdub2RlX2lkJzogJ3R2bXBzXzBkODA2YzIwZWU5MTQ3MDAxYTI2YmQzNDA1Yjk5NWE3MWExMDMwOThlMmM4MTc4YTUwNjY0MWQyMjU1ZTAyYzFfZCcsICdyb290X3J1bl9pZCc6ICdoZWxsb3dvcmxkX3BpcGVsaW5lX2pvYl9xdWlja193aXRoX291dHB1dF8yMDIyVzM4X3Rlc3RfcGlwZWxpbmVfam9iX2NoaWxkX3J1bl9kb3dubG9hZCcsICdydW5faWQnOiAnNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkJywgJ2NvcnJlbGF0aW9uX2lkJzogJzc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCcsICdzb3VyY2UnOiAnY29tbW9uX3J1bnRpbWUuZGF0YS1jYXBhYmlsaXR5JywgJ3Nlc3Npb25faWQnOiAnNmIwYzBiOWUtMGFiNi00NWUwLWIyNTEtOGMxNjg3YTRkMjU2JywgJ3ZlcnNpb24nOiAnMC4wLjEuMjAyMjA5MTYuMScsICdjb21taXQnOiAnMWY0ODlkZScsICdicmFuY2gnOiAnb3JpZ2luLzFmNDg5ZGVjNGY1NzExNGQ3NjczNjRkMDJlZDk1MmE1MjNlOGViYmInLCAnVHJhY2VJZCc6ICc3NGUyMDIyMzgxZmY3YTZkYWM0ZmJhZjI3NWU1NTVlOCcsICdTcGFuSWQnOiAnOWY5MmY2ZGZjYThiMmU1YycsICdUcmFjZUZsYWdzJzogJzAxJywgJ3RyYWNlSWQnOiAnNzRlMjAyMjM4MWZmN2E2ZGFjNGZiYWYyNzVlNTU1ZTgnLCAnc3BhbklkJzogJzlmOTJmNmRmY2E4YjJlNWMnLCAnY3VzdG9tX2RpbWVuc2lvbnMnOiB7J2NvbmZpZyc6ICd7XG4gICJ0byI6ICI8UkVEQUNURUQ\u002BIixcbiAgIm5hbWUiOiAiY29tcG9uZW50X291dF9wYXRoXzEiLFxuICAibW9kZSI6ICJtb3VudCIsXG4gICJlbnZpcm9ubWVudF9uYW1lcyI6IFtcbiAgICAiPFJFREFDVEVEPiJcbiAgXSxcbiAgIm9wdGlvbnMiOiB7XG4gICAgImlzX3NpbmdsZV9maWxlIjogZmFsc2UsXG4gICAgInJlZ2lzdGVyX2RhdGFzZXQiOiB7XG4gICAgICAiYXNzZXRfdHlwZSI6ICJVcmlGb2xkZXIiXG4gICAgfSxcbiAgICAibW91bnQiOiB7XG4gICAgICAiZW5hYmxlX3JzbGV4X21vdW50IjogdHJ1ZSxcbiAgICAgICJhbGxvd19vdGhlciI6IHRydWVcbiAgICB9XG4gIH1cbn0nLCAnc3Vic2NyaXB0aW9uX2lkJzogJzk2YWVkZTEyLTJmNzMtNDFjYi1iOTgzLTZkMTFhOTA0ODM5YicsICdyZXNvdXJjZV9ncm91cCc6ICd6aGVuZ2ZlaS10ZXN0LWVhc3R1czInLCAnd29ya3NwYWNlX25hbWUnOiAnc2RrX3ZuZXh0X2NsaScsICd3b3Jrc3BhY2VfbG9jYXRpb24nOiAnZWFzdHVzMicsICdleHBlcmltZW50X25hbWUnOiAnYXp1cmUtYWktbWwnLCAnbm9kZV9yYW5rJzogJ05vbmUnLCAnbm9kZV9pZCc6ICd0dm1wc18wZDgwNmMyMGVlOTE0NzAwMWEyNmJkMzQwNWI5OTVhNzFhMTAzMDk4ZTJjODE3OGE1MDY2NDFkMjI1NWUwMmMxX2QnLCAncm9vdF9ydW5faWQnOiAnaGVsbG93b3JsZF9waXBlbGluZV9qb2JfcXVpY2tfd2l0aF9vdXRwdXRfMjAyMlczOF90ZXN0X3BpcGVsaW5lX2pvYl9jaGlsZF9ydW5fZG93bmxvYWQnLCAncnVuX2lkJzogJzc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCcsICdjb3JyZWxhdGlvbl9pZCc6ICc3NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQnLCAnc291cmNlJzogJ2NvbW1vbl9ydW50aW1lLmRhdGEtY2FwYWJpbGl0eScsICdzZXNzaW9uX2lkJzogJzZiMGMwYjllLTBhYjYtNDVlMC1iMjUxLThjMTY4N2E0ZDI1NicsICd2ZXJzaW9uJzogJzAuMC4xLjIwMjIwOTE2LjEnLCAnY29tbWl0JzogJzFmNDg5ZGUnLCAnYnJhbmNoJzogJ29yaWdpbi8xZjQ4OWRlYzRmNTcxMTRkNzY3MzY0ZDAyZWQ5NTJhNTIzZThlYmJiJywgJ1RyYWNlSWQnOiAnNzRlMjAyMjM4MWZmN2E2ZGFjNGZiYWYyNzVlNTU1ZTgnLCAnU3BhbklkJzogJzlmOTJmNmRmY2E4YjJlNWMnLCAnVHJhY2VGbGFncyc6ICcwMScsICd0cmFjZUlkJzogJzc0ZTIwMjIzODFmZjdhNmRhYzRmYmFmMjc1ZTU1NWU4JywgJ3NwYW5JZCc6ICc5ZjkyZjZkZmNhOGIyZTVjJ319CklORk8gMjAyMi0wOS0yMyAxNTozMzo0MCw1ODMgZGF0YV9zZXJ2aWNlcy5weToxMDUgWzI5XSAtIFtzdGFydF9zZXJ2aWNlc106IHN0YXJ0aW5nIHNlcnZpY2UgeydhZGRyZXNzJzogJ3VuaXg6Ly8vbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS8uZ3JwYy9kYXRhLWNhcGFiaWxpdHk6MCcsICdtYXhfd29ya2Vycyc6IDEwLCAnc3Vic2NyaXB0aW9uX2lkJzogJzk2YWVkZTEyLTJmNzMtNDFjYi1iOTgzLTZkMTFhOTA0ODM5YicsICdyZXNvdXJjZV9ncm91cCc6ICd6aGVuZ2ZlaS10ZXN0LWVhc3R1czInLCAnd29ya3NwYWNlX25hbWUnOiAnc2RrX3ZuZXh0X2NsaScsICd3b3Jrc3BhY2VfbG9jYXRpb24nOiAnZWFzdHVzMicsICdleHBlcmltZW50X25hbWUnOiAnYXp1cmUtYWktbWwnLCAnbm9kZV9yYW5rJzogJ05vbmUnLCAnbm9kZV9pZCc6ICd0dm1wc18wZDgwNmMyMGVlOTE0NzAwMWEyNmJkMzQwNWI5OTVhNzFhMTAzMDk4ZTJjODE3OGE1MDY2NDFkMjI1NWUwMmMxX2QnLCAncm9vdF9ydW5faWQnOiAnaGVsbG93b3JsZF9waXBlbGluZV9qb2JfcXVpY2tfd2l0aF9vdXRwdXRfMjAyMlczOF90ZXN0X3BpcGVsaW5lX2pvYl9jaGlsZF9ydW5fZG93bmxvYWQnLCAncnVuX2lkJzogJzc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCcsICdjb3JyZWxhdGlvbl9pZCc6ICc3NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQnLCAnc291cmNlJzogJ2NvbW1vbl9ydW50aW1lLmRhdGEtY2FwYWJpbGl0eScsICdzZXNzaW9uX2lkJzogJzZiMGMwYjllLTBhYjYtNDVlMC1iMjUxLThjMTY4N2E0ZDI1NicsICd2ZXJzaW9uJzogJzAuMC4xLjIwMjIwOTE2LjEnLCAnY29tbWl0JzogJzFmNDg5ZGUnLCAnYnJhbmNoJzogJ29yaWdpbi8xZjQ4OWRlYzRmNTcxMTRkNzY3MzY0ZDAyZWQ5NTJhNTIzZThlYmJiJywgJ1RyYWNlSWQnOiAnNzRlMjAyMjM4MWZmN2E2ZGFjNGZiYWYyNzVlNTU1ZTgnLCAnU3BhbklkJzogJzFlM2JiNDBkNjQ4M2EzNGEnLCAnVHJhY2VGbGFncyc6ICcwMScsICd0cmFjZUlkJzogJzc0ZTIwMjIzODFmZjdhNmRhYzRmYmFmMjc1ZTU1NWU4JywgJ3NwYW5JZCc6ICcxZTNiYjQwZDY0ODNhMzRhJywgJ2N1c3RvbV9kaW1lbnNpb25zJzogeydhZGRyZXNzJzogJ3VuaXg6Ly8vbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS8uZ3JwYy9kYXRhLWNhcGFiaWxpdHk6MCcsICdtYXhfd29ya2Vycyc6IDEwLCAnc3Vic2NyaXB0aW9uX2lkJzogJzk2YWVkZTEyLTJmNzMtNDFjYi1iOTgzLTZkMTFhOTA0ODM5YicsICdyZXNvdXJjZV9ncm91cCc6ICd6aGVuZ2ZlaS10ZXN0LWVhc3R1czInLCAnd29ya3NwYWNlX25hbWUnOiAnc2RrX3ZuZXh0X2NsaScsICd3b3Jrc3BhY2VfbG9jYXRpb24nOiAnZWFzdHVzMicsICdleHBlcmltZW50X25hbWUnOiAnYXp1cmUtYWktbWwnLCAnbm9kZV9yYW5rJzogJ05vbmUnLCAnbm9kZV9pZCc6ICd0dm1wc18wZDgwNmMyMGVlOTE0NzAwMWEyNmJkMzQwNWI5OTVhNzFhMTAzMDk4ZTJjODE3OGE1MDY2NDFkMjI1NWUwMmMxX2QnLCAncm9vdF9ydW5faWQnOiAnaGVsbG93b3JsZF9waXBlbGluZV9qb2JfcXVpY2tfd2l0aF9vdXRwdXRfMjAyMlczOF90ZXN0X3BpcGVsaW5lX2pvYl9jaGlsZF9ydW5fZG93bmxvYWQnLCAncnVuX2lkJzogJzc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCcsICdjb3JyZWxhdGlvbl9pZCc6ICc3NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQnLCAnc291cmNlJzogJ2NvbW1vbl9ydW50aW1lLmRhdGEtY2FwYWJpbGl0eScsICdzZXNzaW9uX2lkJzogJzZiMGMwYjllLTBhYjYtNDVlMC1iMjUxLThjMTY4N2E0ZDI1NicsICd2ZXJzaW9uJzogJzAuMC4xLjIwMjIwOTE2LjEnLCAnY29tbWl0JzogJzFmNDg5ZGUnLCAnYnJhbmNoJzogJ29yaWdpbi8xZjQ4OWRlYzRmNTcxMTRkNzY3MzY0ZDAyZWQ5NTJhNTIzZThlYmJiJywgJ1RyYWNlSWQnOiAnNzRlMjAyMjM4MWZmN2E2ZGFjNGZiYWYyNzVlNTU1ZTgnLCAnU3BhbklkJzogJzFlM2JiNDBkNjQ4M2EzNGEnLCAnVHJhY2VGbGFncyc6ICcwMScsICd0cmFjZUlkJzogJzc0ZTIwMjIzODFmZjdhNmRhYzRmYmFmMjc1ZTU1NWU4JywgJ3NwYW5JZCc6ICcxZTNiYjQwZDY0ODNhMzRhJ319CklORk8gMjAyMi0wOS0yMyAxNTozMzo0MCw2MzAgZGF0YV9zZXJ2aWNlcy5weTozMiBbMjldIC0gW0RhdGFDYXBhYmlsaXR5U2VydmljZV1bU3RhcnRdIGVudGVyZWQgeydzdWJzY3JpcHRpb25faWQnOiAnOTZhZWRlMTItMmY3My00MWNiLWI5ODMtNmQxMWE5MDQ4MzliJywgJ3Jlc291cmNlX2dyb3VwJzogJ3poZW5nZmVpLXRlc3QtZWFzdHVzMicsICd3b3Jrc3BhY2VfbmFtZSc6ICdzZGtfdm5leHRfY2xpJywgJ3dvcmtzcGFjZV9sb2NhdGlvbic6ICdlYXN0dXMyJywgJ2V4cGVyaW1lbnRfbmFtZSc6ICdhenVyZS1haS1tbCcsICdub2RlX3JhbmsnOiAnTm9uZScsICdub2RlX2lkJzogJ3R2bXBzXzBkODA2YzIwZWU5MTQ3MDAxYTI2YmQzNDA1Yjk5NWE3MWExMDMwOThlMmM4MTc4YTUwNjY0MWQyMjU1ZTAyYzFfZCcsICdyb290X3J1bl9pZCc6ICdoZWxsb3dvcmxkX3BpcGVsaW5lX2pvYl9xdWlja193aXRoX291dHB1dF8yMDIyVzM4X3Rlc3RfcGlwZWxpbmVfam9iX2NoaWxkX3J1bl9kb3dubG9hZCcsICdydW5faWQnOiAnNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkJywgJ2NvcnJlbGF0aW9uX2lkJzogJzc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCcsICdzb3VyY2UnOiAnY29tbW9uX3J1bnRpbWUuZGF0YS1jYXBhYmlsaXR5JywgJ3Nlc3Npb25faWQnOiAnNmIwYzBiOWUtMGFiNi00NWUwLWIyNTEtOGMxNjg3YTRkMjU2JywgJ3ZlcnNpb24nOiAnMC4wLjEuMjAyMjA5MTYuMScsICdjb21taXQnOiAnMWY0ODlkZScsICdicmFuY2gnOiAnb3JpZ2luLzFmNDg5ZGVjNGY1NzExNGQ3NjczNjRkMDJlZDk1MmE1MjNlOGViYmInLCAnVHJhY2VJZCc6ICcyNDQ5YzQ0ZGE4ZGRkYTM1ZmNiYTAyN2NlNGVlZDMxYycsICdTcGFuSWQnOiAnNGNkZjFmYjk3MDY3MDA4YycsICdUcmFjZUZsYWdzJzogJzAxJywgJ3RyYWNlSWQnOiAnMjQ0OWM0NGRhOGRkZGEzNWZjYmEwMjdjZTRlZWQzMWMnLCAnc3BhbklkJzogJzRjZGYxZmI5NzA2NzAwOGMnLCAnY3VzdG9tX2RpbWVuc2lvbnMnOiB7J3N1YnNjcmlwdGlvbl9pZCc6ICc5NmFlZGUxMi0yZjczLTQxY2ItYjk4My02ZDExYTkwNDgzOWInLCAncmVzb3VyY2VfZ3JvdXAnOiAnemhlbmdmZWktdGVzdC1lYXN0dXMyJywgJ3dvcmtzcGFjZV9uYW1lJzogJ3Nka192bmV4dF9jbGknLCAnd29ya3NwYWNlX2xvY2F0aW9uJzogJ2Vhc3R1czInLCAnZXhwZXJpbWVudF9uYW1lJzogJ2F6dXJlLWFpLW1sJywgJ25vZGVfcmFuayc6ICdOb25lJywgJ25vZGVfaWQnOiAndHZtcHNfMGQ4MDZjMjBlZTkxNDcwMDFhMjZiZDM0MDViOTk1YTcxYTEwMzA5OGUyYzgxNzhhNTA2NjQxZDIyNTVlMDJjMV9kJywgJ3Jvb3RfcnVuX2lkJzogJ2hlbGxvd29ybGRfcGlwZWxpbmVfam9iX3F1aWNrX3dpdGhfb3V0cHV0XzIwMjJXMzhfdGVzdF9waXBlbGluZV9qb2JfY2hpbGRfcnVuX2Rvd25sb2FkJywgJ3J1bl9pZCc6ICc3NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQnLCAnY29ycmVsYXRpb25faWQnOiAnNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkJywgJ3NvdXJjZSc6ICdjb21tb25fcnVudGltZS5kYXRhLWNhcGFiaWxpdHknLCAnc2Vzc2lvbl9pZCc6ICc2YjBjMGI5ZS0wYWI2LTQ1ZTAtYjI1MS04YzE2ODdhNGQyNTYnLCAndmVyc2lvbic6ICcwLjAuMS4yMDIyMDkxNi4xJywgJ2NvbW1pdCc6ICcxZjQ4OWRlJywgJ2JyYW5jaCc6ICdvcmlnaW4vMWY0ODlkZWM0ZjU3MTE0ZDc2NzM2NGQwMmVkOTUyYTUyM2U4ZWJiYicsICdUcmFjZUlkJzogJzI0NDljNDRkYThkZGRhMzVmY2JhMDI3Y2U0ZWVkMzFjJywgJ1NwYW5JZCc6ICc0Y2RmMWZiOTcwNjcwMDhjJywgJ1RyYWNlRmxhZ3MnOiAnMDEnLCAndHJhY2VJZCc6ICcyNDQ5YzQ0ZGE4ZGRkYTM1ZmNiYTAyN2NlNGVlZDMxYycsICdzcGFuSWQnOiAnNGNkZjFmYjk3MDY3MDA4Yyd9fQpJTkZPIDIwMjItMDktMjMgMTU6MzM6NDAsNjczIGRhdGFfc2Vzc2lvbnMucHk6NjE3IFsyOV0gLSBbQXNzZXRNb3VudE91dHB1dFNlc3Npb25dW3N0YXJ0XSBzdGFydGluZyBtb3VudCBzZXNzaW9uIHsnc3Vic2NyaXB0aW9uX2lkJzogJzk2YWVkZTEyLTJmNzMtNDFjYi1iOTgzLTZkMTFhOTA0ODM5YicsICdyZXNvdXJjZV9ncm91cCc6ICd6aGVuZ2ZlaS10ZXN0LWVhc3R1czInLCAnd29ya3NwYWNlX25hbWUnOiAnc2RrX3ZuZXh0X2NsaScsICd3b3Jrc3BhY2VfbG9jYXRpb24nOiAnZWFzdHVzMicsICdleHBlcmltZW50X25hbWUnOiAnYXp1cmUtYWktbWwnLCAnbm9kZV9yYW5rJzogJ05vbmUnLCAnbm9kZV9pZCc6ICd0dm1wc18wZDgwNmMyMGVlOTE0NzAwMWEyNmJkMzQwNWI5OTVhNzFhMTAzMDk4ZTJjODE3OGE1MDY2NDFkMjI1NWUwMmMxX2QnLCAncm9vdF9ydW5faWQnOiAnaGVsbG93b3JsZF9waXBlbGluZV9qb2JfcXVpY2tfd2l0aF9vdXRwdXRfMjAyMlczOF90ZXN0X3BpcGVsaW5lX2pvYl9jaGlsZF9ydW5fZG93bmxvYWQnLCAncnVuX2lkJzogJzc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCcsICdjb3JyZWxhdGlvbl9pZCc6ICc3NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQnLCAnc291cmNlJzogJ2NvbW1vbl9ydW50aW1lLmRhdGEtY2FwYWJpbGl0eScsICdzZXNzaW9uX2lkJzogJzZiMGMwYjllLTBhYjYtNDVlMC1iMjUxLThjMTY4N2E0ZDI1NicsICd2ZXJzaW9uJzogJzAuMC4xLjIwMjIwOTE2LjEnLCAnY29tbWl0JzogJzFmNDg5ZGUnLCAnYnJhbmNoJzogJ29yaWdpbi8xZjQ4OWRlYzRmNTcxMTRkNzY3MzY0ZDAyZWQ5NTJhNTIzZThlYmJiJywgJ1RyYWNlSWQnOiAnMjQ0OWM0NGRhOGRkZGEzNWZjYmEwMjdjZTRlZWQzMWMnLCAnU3BhbklkJzogJzJkODE3MzE0MGY2ZmY4YTknLCAnVHJhY2VGbGFncyc6ICcwMScsICd0cmFjZUlkJzogJzI0NDljNDRkYThkZGRhMzVmY2JhMDI3Y2U0ZWVkMzFjJywgJ3NwYW5JZCc6ICcyZDgxNzMxNDBmNmZmOGE5JywgJ2N1c3RvbV9kaW1lbnNpb25zJzogeydzdWJzY3JpcHRpb25faWQnOiAnOTZhZWRlMTItMmY3My00MWNiLWI5ODMtNmQxMWE5MDQ4MzliJywgJ3Jlc291cmNlX2dyb3VwJzogJ3poZW5nZmVpLXRlc3QtZWFzdHVzMicsICd3b3Jrc3BhY2VfbmFtZSc6ICdzZGtfdm5leHRfY2xpJywgJ3dvcmtzcGFjZV9sb2NhdGlvbic6ICdlYXN0dXMyJywgJ2V4cGVyaW1lbnRfbmFtZSc6ICdhenVyZS1haS1tbCcsICdub2RlX3JhbmsnOiAnTm9uZScsICdub2RlX2lkJzogJ3R2bXBzXzBkODA2YzIwZWU5MTQ3MDAxYTI2YmQzNDA1Yjk5NWE3MWExMDMwOThlMmM4MTc4YTUwNjY0MWQyMjU1ZTAyYzFfZCcsICdyb290X3J1bl9pZCc6ICdoZWxsb3dvcmxkX3BpcGVsaW5lX2pvYl9xdWlja193aXRoX291dHB1dF8yMDIyVzM4X3Rlc3RfcGlwZWxpbmVfam9iX2NoaWxkX3J1bl9kb3dubG9hZCcsICdydW5faWQnOiAnNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkJywgJ2NvcnJlbGF0aW9uX2lkJzogJzc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCcsICdzb3VyY2UnOiAnY29tbW9uX3J1bnRpbWUuZGF0YS1jYXBhYmlsaXR5JywgJ3Nlc3Npb25faWQnOiAnNmIwYzBiOWUtMGFiNi00NWUwLWIyNTEtOGMxNjg3YTRkMjU2JywgJ3ZlcnNpb24nOiAnMC4wLjEuMjAyMjA5MTYuMScsICdjb21taXQnOiAnMWY0ODlkZScsICdicmFuY2gnOiAnb3JpZ2luLzFmNDg5ZGVjNGY1NzExNGQ3NjczNjRkMDJlZDk1MmE1MjNlOGViYmInLCAnVHJhY2VJZCc6ICcyNDQ5YzQ0ZGE4ZGRkYTM1ZmNiYTAyN2NlNGVlZDMxYycsICdTcGFuSWQnOiAnMmQ4MTczMTQwZjZmZjhhOScsICdUcmFjZUZsYWdzJzogJzAxJywgJ3RyYWNlSWQnOiAnMjQ0OWM0NGRhOGRkZGEzNWZjYmEwMjdjZTRlZWQzMWMnLCAnc3BhbklkJzogJzJkODE3MzE0MGY2ZmY4YTknfX0KSU5GTyAyMDIyLTA5LTIzIDE1OjMzOjQwLDY3NCBkYXRhX3Nlc3Npb25zLnB5OjkzNCBbMjldIC0gY3JlYXRlIGRpciBmb3IgL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvY2FwL2RhdGEtY2FwYWJpbGl0eS93ZC9jb21wb25lbnRfb3V0X3BhdGhfMSB7J3N1YnNjcmlwdGlvbl9pZCc6ICc5NmFlZGUxMi0yZjczLTQxY2ItYjk4My02ZDExYTkwNDgzOWInLCAncmVzb3VyY2VfZ3JvdXAnOiAnemhlbmdmZWktdGVzdC1lYXN0dXMyJywgJ3dvcmtzcGFjZV9uYW1lJzogJ3Nka192bmV4dF9jbGknLCAnd29ya3NwYWNlX2xvY2F0aW9uJzogJ2Vhc3R1czInLCAnZXhwZXJpbWVudF9uYW1lJzogJ2F6dXJlLWFpLW1sJywgJ25vZGVfcmFuayc6ICdOb25lJywgJ25vZGVfaWQnOiAndHZtcHNfMGQ4MDZjMjBlZTkxNDcwMDFhMjZiZDM0MDViOTk1YTcxYTEwMzA5OGUyYzgxNzhhNTA2NjQxZDIyNTVlMDJjMV9kJywgJ3Jvb3RfcnVuX2lkJzogJ2hlbGxvd29ybGRfcGlwZWxpbmVfam9iX3F1aWNrX3dpdGhfb3V0cHV0XzIwMjJXMzhfdGVzdF9waXBlbGluZV9qb2JfY2hpbGRfcnVuX2Rvd25sb2FkJywgJ3J1bl9pZCc6ICc3NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQnLCAnY29ycmVsYXRpb25faWQnOiAnNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkJywgJ3NvdXJjZSc6ICdjb21tb25fcnVudGltZS5kYXRhLWNhcGFiaWxpdHknLCAnc2Vzc2lvbl9pZCc6ICc2YjBjMGI5ZS0wYWI2LTQ1ZTAtYjI1MS04YzE2ODdhNGQyNTYnLCAndmVyc2lvbic6ICcwLjAuMS4yMDIyMDkxNi4xJywgJ2NvbW1pdCc6ICcxZjQ4OWRlJywgJ2JyYW5jaCc6ICdvcmlnaW4vMWY0ODlkZWM0ZjU3MTE0ZDc2NzM2NGQwMmVkOTUyYTUyM2U4ZWJiYicsICdUcmFjZUlkJzogJzI0NDljNDRkYThkZGRhMzVmY2JhMDI3Y2U0ZWVkMzFjJywgJ1NwYW5JZCc6ICcyZDgxNzMxNDBmNmZmOGE5JywgJ1RyYWNlRmxhZ3MnOiAnMDEnLCAndHJhY2VJZCc6ICcyNDQ5YzQ0ZGE4ZGRkYTM1ZmNiYTAyN2NlNGVlZDMxYycsICdzcGFuSWQnOiAnMmQ4MTczMTQwZjZmZjhhOScsICdjdXN0b21fZGltZW5zaW9ucyc6IHsnc3Vic2NyaXB0aW9uX2lkJzogJzk2YWVkZTEyLTJmNzMtNDFjYi1iOTgzLTZkMTFhOTA0ODM5YicsICdyZXNvdXJjZV9ncm91cCc6ICd6aGVuZ2ZlaS10ZXN0LWVhc3R1czInLCAnd29ya3NwYWNlX25hbWUnOiAnc2RrX3ZuZXh0X2NsaScsICd3b3Jrc3BhY2VfbG9jYXRpb24nOiAnZWFzdHVzMicsICdleHBlcmltZW50X25hbWUnOiAnYXp1cmUtYWktbWwnLCAnbm9kZV9yYW5rJzogJ05vbmUnLCAnbm9kZV9pZCc6ICd0dm1wc18wZDgwNmMyMGVlOTE0NzAwMWEyNmJkMzQwNWI5OTVhNzFhMTAzMDk4ZTJjODE3OGE1MDY2NDFkMjI1NWUwMmMxX2QnLCAncm9vdF9ydW5faWQnOiAnaGVsbG93b3JsZF9waXBlbGluZV9qb2JfcXVpY2tfd2l0aF9vdXRwdXRfMjAyMlczOF90ZXN0X3BpcGVsaW5lX2pvYl9jaGlsZF9ydW5fZG93bmxvYWQnLCAncnVuX2lkJzogJzc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCcsICdjb3JyZWxhdGlvbl9pZCc6ICc3NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQnLCAnc291cmNlJzogJ2NvbW1vbl9ydW50aW1lLmRhdGEtY2FwYWJpbGl0eScsICdzZXNzaW9uX2lkJzogJzZiMGMwYjllLTBhYjYtNDVlMC1iMjUxLThjMTY4N2E0ZDI1NicsICd2ZXJzaW9uJzogJzAuMC4xLjIwMjIwOTE2LjEnLCAnY29tbWl0JzogJzFmNDg5ZGUnLCAnYnJhbmNoJzogJ29yaWdpbi8xZjQ4OWRlYzRmNTcxMTRkNzY3MzY0ZDAyZWQ5NTJhNTIzZThlYmJiJywgJ1RyYWNlSWQnOiAnMjQ0OWM0NGRhOGRkZGEzNWZjYmEwMjdjZTRlZWQzMWMnLCAnU3BhbklkJzogJzJkODE3MzE0MGY2ZmY4YTknLCAnVHJhY2VGbGFncyc6ICcwMScsICd0cmFjZUlkJzogJzI0NDljNDRkYThkZGRhMzVmY2JhMDI3Y2U0ZWVkMzFjJywgJ3NwYW5JZCc6ICcyZDgxNzMxNDBmNmZmOGE5J319CklORk8gMjAyMi0wOS0yMyAxNTozMzo0MSw5MDYgZGF0YV9zZXNzaW9ucy5weTo2MzMgWzI5XSAtIFtBc3NldE1vdW50T3V0cHV0U2Vzc2lvbl1bc3RhcnRdIG1vdW50IHN0YXJ0ZWQuIHsnc3Vic2NyaXB0aW9uX2lkJzogJzk2YWVkZTEyLTJmNzMtNDFjYi1iOTgzLTZkMTFhOTA0ODM5YicsICdyZXNvdXJjZV9ncm91cCc6ICd6aGVuZ2ZlaS10ZXN0LWVhc3R1czInLCAnd29ya3NwYWNlX25hbWUnOiAnc2RrX3ZuZXh0X2NsaScsICd3b3Jrc3BhY2VfbG9jYXRpb24nOiAnZWFzdHVzMicsICdleHBlcmltZW50X25hbWUnOiAnYXp1cmUtYWktbWwnLCAnbm9kZV9yYW5rJzogJ05vbmUnLCAnbm9kZV9pZCc6ICd0dm1wc18wZDgwNmMyMGVlOTE0NzAwMWEyNmJkMzQwNWI5OTVhNzFhMTAzMDk4ZTJjODE3OGE1MDY2NDFkMjI1NWUwMmMxX2QnLCAncm9vdF9ydW5faWQnOiAnaGVsbG93b3JsZF9waXBlbGluZV9qb2JfcXVpY2tfd2l0aF9vdXRwdXRfMjAyMlczOF90ZXN0X3BpcGVsaW5lX2pvYl9jaGlsZF9ydW5fZG93bmxvYWQnLCAncnVuX2lkJzogJzc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCcsICdjb3JyZWxhdGlvbl9pZCc6ICc3NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQnLCAnc291cmNlJzogJ2NvbW1vbl9ydW50aW1lLmRhdGEtY2FwYWJpbGl0eScsICdzZXNzaW9uX2lkJzogJzZiMGMwYjllLTBhYjYtNDVlMC1iMjUxLThjMTY4N2E0ZDI1NicsICd2ZXJzaW9uJzogJzAuMC4xLjIwMjIwOTE2LjEnLCAnY29tbWl0JzogJzFmNDg5ZGUnLCAnYnJhbmNoJzogJ29yaWdpbi8xZjQ4OWRlYzRmNTcxMTRkNzY3MzY0ZDAyZWQ5NTJhNTIzZThlYmJiJywgJ1RyYWNlSWQnOiAnMjQ0OWM0NGRhOGRkZGEzNWZjYmEwMjdjZTRlZWQzMWMnLCAnU3BhbklkJzogJzJkODE3MzE0MGY2ZmY4YTknLCAnVHJhY2VGbGFncyc6ICcwMScsICd0cmFjZUlkJzogJzI0NDljNDRkYThkZGRhMzVmY2JhMDI3Y2U0ZWVkMzFjJywgJ3NwYW5JZCc6ICcyZDgxNzMxNDBmNmZmOGE5JywgJ2N1c3RvbV9kaW1lbnNpb25zJzogeydzdWJzY3JpcHRpb25faWQnOiAnOTZhZWRlMTItMmY3My00MWNiLWI5ODMtNmQxMWE5MDQ4MzliJywgJ3Jlc291cmNlX2dyb3VwJzogJ3poZW5nZmVpLXRlc3QtZWFzdHVzMicsICd3b3Jrc3BhY2VfbmFtZSc6ICdzZGtfdm5leHRfY2xpJywgJ3dvcmtzcGFjZV9sb2NhdGlvbic6ICdlYXN0dXMyJywgJ2V4cGVyaW1lbnRfbmFtZSc6ICdhenVyZS1haS1tbCcsICdub2RlX3JhbmsnOiAnTm9uZScsICdub2RlX2lkJzogJ3R2bXBzXzBkODA2YzIwZWU5MTQ3MDAxYTI2YmQzNDA1Yjk5NWE3MWExMDMwOThlMmM4MTc4YTUwNjY0MWQyMjU1ZTAyYzFfZCcsICdyb290X3J1bl9pZCc6ICdoZWxsb3dvcmxkX3BpcGVsaW5lX2pvYl9xdWlja193aXRoX291dHB1dF8yMDIyVzM4X3Rlc3RfcGlwZWxpbmVfam9iX2NoaWxkX3J1bl9kb3dubG9hZCcsICdydW5faWQnOiAnNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkJywgJ2NvcnJlbGF0aW9uX2lkJzogJzc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCcsICdzb3VyY2UnOiAnY29tbW9uX3J1bnRpbWUuZGF0YS1jYXBhYmlsaXR5JywgJ3Nlc3Npb25faWQnOiAnNmIwYzBiOWUtMGFiNi00NWUwLWIyNTEtOGMxNjg3YTRkMjU2JywgJ3ZlcnNpb24nOiAnMC4wLjEuMjAyMjA5MTYuMScsICdjb21taXQnOiAnMWY0ODlkZScsICdicmFuY2gnOiAnb3JpZ2luLzFmNDg5ZGVjNGY1NzExNGQ3NjczNjRkMDJlZDk1MmE1MjNlOGViYmInLCAnVHJhY2VJZCc6ICcyNDQ5YzQ0ZGE4ZGRkYTM1ZmNiYTAyN2NlNGVlZDMxYycsICdTcGFuSWQnOiAnMmQ4MTczMTQwZjZmZjhhOScsICdUcmFjZUZsYWdzJzogJzAxJywgJ3RyYWNlSWQnOiAnMjQ0OWM0NGRhOGRkZGEzNWZjYmEwMjdjZTRlZWQzMWMnLCAnc3BhbklkJzogJzJkODE3MzE0MGY2ZmY4YTknfX0KSU5GTyAyMDIyLTA5LTIzIDE1OjMzOjQxLDkwNiBjYXBhYmlsaXR5X3Nlc3Npb24ucHk6OTEgWzI5XSAtIFtDYXBhYmlsaXR5U2Vzc2lvbl1bc3RhcnRdIERhdGEgc2Vzc2lvbiBzdGFydGVkIHsnc2Vzc2lvbl9uYW1lJzogJ2NvbXBvbmVudF9vdXRfcGF0aF8xJywgJ2Vudl92YXJzJzogeydjb21wb25lbnRfb3V0X3BhdGhfMSc6ICcvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS9jYXAvZGF0YS1jYXBhYmlsaXR5L3dkL2NvbXBvbmVudF9vdXRfcGF0aF8xJywgJ0NPTVBPTkVOVF9PVVRfUEFUSF8xJzogJy9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2NhcC9kYXRhLWNhcGFiaWxpdHkvd2QvY29tcG9uZW50X291dF9wYXRoXzEnLCAnQVpVUkVfTUxfT1VUUFVUX2NvbXBvbmVudF9vdXRfcGF0aF8xJzogJy9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2NhcC9kYXRhLWNhcGFiaWxpdHkvd2QvY29tcG9uZW50X291dF9wYXRoXzEnLCAnYXp1cmVfbWxfb3V0cHV0X2NvbXBvbmVudF9vdXRfcGF0aF8xJzogJy9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2NhcC9kYXRhLWNhcGFiaWxpdHkvd2QvY29tcG9uZW50X291dF9wYXRoXzEnLCAnQVpVUkVfTUxfT1VUUFVUX0NPTVBPTkVOVF9PVVRfUEFUSF8xJzogJy9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2NhcC9kYXRhLWNhcGFiaWxpdHkvd2QvY29tcG9uZW50X291dF9wYXRoXzEnfSwgJ3N1YnNjcmlwdGlvbl9pZCc6ICc5NmFlZGUxMi0yZjczLTQxY2ItYjk4My02ZDExYTkwNDgzOWInLCAncmVzb3VyY2VfZ3JvdXAnOiAnemhlbmdmZWktdGVzdC1lYXN0dXMyJywgJ3dvcmtzcGFjZV9uYW1lJzogJ3Nka192bmV4dF9jbGknLCAnd29ya3NwYWNlX2xvY2F0aW9uJzogJ2Vhc3R1czInLCAnZXhwZXJpbWVudF9uYW1lJzogJ2F6dXJlLWFpLW1sJywgJ25vZGVfcmFuayc6ICdOb25lJywgJ25vZGVfaWQnOiAndHZtcHNfMGQ4MDZjMjBlZTkxNDcwMDFhMjZiZDM0MDViOTk1YTcxYTEwMzA5OGUyYzgxNzhhNTA2NjQxZDIyNTVlMDJjMV9kJywgJ3Jvb3RfcnVuX2lkJzogJ2hlbGxvd29ybGRfcGlwZWxpbmVfam9iX3F1aWNrX3dpdGhfb3V0cHV0XzIwMjJXMzhfdGVzdF9waXBlbGluZV9qb2JfY2hpbGRfcnVuX2Rvd25sb2FkJywgJ3J1bl9pZCc6ICc3NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQnLCAnY29ycmVsYXRpb25faWQnOiAnNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkJywgJ3NvdXJjZSc6ICdjb21tb25fcnVudGltZS5kYXRhLWNhcGFiaWxpdHknLCAnc2Vzc2lvbl9pZCc6ICc2YjBjMGI5ZS0wYWI2LTQ1ZTAtYjI1MS04YzE2ODdhNGQyNTYnLCAndmVyc2lvbic6ICcwLjAuMS4yMDIyMDkxNi4xJywgJ2NvbW1pdCc6ICcxZjQ4OWRlJywgJ2JyYW5jaCc6ICdvcmlnaW4vMWY0ODlkZWM0ZjU3MTE0ZDc2NzM2NGQwMmVkOTUyYTUyM2U4ZWJiYicsICdUcmFjZUlkJzogJzI0NDljNDRkYThkZGRhMzVmY2JhMDI3Y2U0ZWVkMzFjJywgJ1NwYW5JZCc6ICdmMjI2MWI2ODZjNTJhMDBlJywgJ1RyYWNlRmxhZ3MnOiAnMDEnLCAndHJhY2VJZCc6ICcyNDQ5YzQ0ZGE4ZGRkYTM1ZmNiYTAyN2NlNGVlZDMxYycsICdzcGFuSWQnOiAnZjIyNjFiNjg2YzUyYTAwZScsICdjdXN0b21fZGltZW5zaW9ucyc6IHsnc2Vzc2lvbl9uYW1lJzogJ2NvbXBvbmVudF9vdXRfcGF0aF8xJywgJ2Vudl92YXJzJzogeydjb21wb25lbnRfb3V0X3BhdGhfMSc6ICcvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS9jYXAvZGF0YS1jYXBhYmlsaXR5L3dkL2NvbXBvbmVudF9vdXRfcGF0aF8xJywgJ0NPTVBPTkVOVF9PVVRfUEFUSF8xJzogJy9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2NhcC9kYXRhLWNhcGFiaWxpdHkvd2QvY29tcG9uZW50X291dF9wYXRoXzEnLCAnQVpVUkVfTUxfT1VUUFVUX2NvbXBvbmVudF9vdXRfcGF0aF8xJzogJy9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2NhcC9kYXRhLWNhcGFiaWxpdHkvd2QvY29tcG9uZW50X291dF9wYXRoXzEnLCAnYXp1cmVfbWxfb3V0cHV0X2NvbXBvbmVudF9vdXRfcGF0aF8xJzogJy9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2NhcC9kYXRhLWNhcGFiaWxpdHkvd2QvY29tcG9uZW50X291dF9wYXRoXzEnLCAnQVpVUkVfTUxfT1VUUFVUX0NPTVBPTkVOVF9PVVRfUEFUSF8xJzogJy9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2NhcC9kYXRhLWNhcGFiaWxpdHkvd2QvY29tcG9uZW50X291dF9wYXRoXzEnfSwgJ3N1YnNjcmlwdGlvbl9pZCc6ICc5NmFlZGUxMi0yZjczLTQxY2ItYjk4My02ZDExYTkwNDgzOWInLCAncmVzb3VyY2VfZ3JvdXAnOiAnemhlbmdmZWktdGVzdC1lYXN0dXMyJywgJ3dvcmtzcGFjZV9uYW1lJzogJ3Nka192bmV4dF9jbGknLCAnd29ya3NwYWNlX2xvY2F0aW9uJzogJ2Vhc3R1czInLCAnZXhwZXJpbWVudF9uYW1lJzogJ2F6dXJlLWFpLW1sJywgJ25vZGVfcmFuayc6ICdOb25lJywgJ25vZGVfaWQnOiAndHZtcHNfMGQ4MDZjMjBlZTkxNDcwMDFhMjZiZDM0MDViOTk1YTcxYTEwMzA5OGUyYzgxNzhhNTA2NjQxZDIyNTVlMDJjMV9kJywgJ3Jvb3RfcnVuX2lkJzogJ2hlbGxvd29ybGRfcGlwZWxpbmVfam9iX3F1aWNrX3dpdGhfb3V0cHV0XzIwMjJXMzhfdGVzdF9waXBlbGluZV9qb2JfY2hpbGRfcnVuX2Rvd25sb2FkJywgJ3J1bl9pZCc6ICc3NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQnLCAnY29ycmVsYXRpb25faWQnOiAnNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkJywgJ3NvdXJjZSc6ICdjb21tb25fcnVudGltZS5kYXRhLWNhcGFiaWxpdHknLCAnc2Vzc2lvbl9pZCc6ICc2YjBjMGI5ZS0wYWI2LTQ1ZTAtYjI1MS04YzE2ODdhNGQyNTYnLCAndmVyc2lvbic6ICcwLjAuMS4yMDIyMDkxNi4xJywgJ2NvbW1pdCc6ICcxZjQ4OWRlJywgJ2JyYW5jaCc6ICdvcmlnaW4vMWY0ODlkZWM0ZjU3MTE0ZDc2NzM2NGQwMmVkOTUyYTUyM2U4ZWJiYicsICdUcmFjZUlkJzogJzI0NDljNDRkYThkZGRhMzVmY2JhMDI3Y2U0ZWVkMzFjJywgJ1NwYW5JZCc6ICdmMjI2MWI2ODZjNTJhMDBlJywgJ1RyYWNlRmxhZ3MnOiAnMDEnLCAndHJhY2VJZCc6ICcyNDQ5YzQ0ZGE4ZGRkYTM1ZmNiYTAyN2NlNGVlZDMxYycsICdzcGFuSWQnOiAnZjIyNjFiNjg2YzUyYTAwZSd9fQpJTkZPIDIwMjItMDktMjMgMTU6MzM6NDEsOTA2IGRhdGFfc2VydmljZXMucHk6NDAgWzI5XSAtIFtEYXRhQ2FwYWJpbGl0eVNlcnZpY2VdW1N0YXJ0XSBzdWNjZWVkZWQgeydzdWJzY3JpcHRpb25faWQnOiAnOTZhZWRlMTItMmY3My00MWNiLWI5ODMtNmQxMWE5MDQ4MzliJywgJ3Jlc291cmNlX2dyb3VwJzogJ3poZW5nZmVpLXRlc3QtZWFzdHVzMicsICd3b3Jrc3BhY2VfbmFtZSc6ICdzZGtfdm5leHRfY2xpJywgJ3dvcmtzcGFjZV9sb2NhdGlvbic6ICdlYXN0dXMyJywgJ2V4cGVyaW1lbnRfbmFtZSc6ICdhenVyZS1haS1tbCcsICdub2RlX3JhbmsnOiAnTm9uZScsICdub2RlX2lkJzogJ3R2bXBzXzBkODA2YzIwZWU5MTQ3MDAxYTI2YmQzNDA1Yjk5NWE3MWExMDMwOThlMmM4MTc4YTUwNjY0MWQyMjU1ZTAyYzFfZCcsICdyb290X3J1bl9pZCc6ICdoZWxsb3dvcmxkX3BpcGVsaW5lX2pvYl9xdWlja193aXRoX291dHB1dF8yMDIyVzM4X3Rlc3RfcGlwZWxpbmVfam9iX2NoaWxkX3J1bl9kb3dubG9hZCcsICdydW5faWQnOiAnNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkJywgJ2NvcnJlbGF0aW9uX2lkJzogJzc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCcsICdzb3VyY2UnOiAnY29tbW9uX3J1bnRpbWUuZGF0YS1jYXBhYmlsaXR5JywgJ3Nlc3Npb25faWQnOiAnNmIwYzBiOWUtMGFiNi00NWUwLWIyNTEtOGMxNjg3YTRkMjU2JywgJ3ZlcnNpb24nOiAnMC4wLjEuMjAyMjA5MTYuMScsICdjb21taXQnOiAnMWY0ODlkZScsICdicmFuY2gnOiAnb3JpZ2luLzFmNDg5ZGVjNGY1NzExNGQ3NjczNjRkMDJlZDk1MmE1MjNlOGViYmInLCAnVHJhY2VJZCc6ICcyNDQ5YzQ0ZGE4ZGRkYTM1ZmNiYTAyN2NlNGVlZDMxYycsICdTcGFuSWQnOiAnNGNkZjFmYjk3MDY3MDA4YycsICdUcmFjZUZsYWdzJzogJzAxJywgJ3RyYWNlSWQnOiAnMjQ0OWM0NGRhOGRkZGEzNWZjYmEwMjdjZTRlZWQzMWMnLCAnc3BhbklkJzogJzRjZGYxZmI5NzA2NzAwOGMnLCAnY3VzdG9tX2RpbWVuc2lvbnMnOiB7J3N1YnNjcmlwdGlvbl9pZCc6ICc5NmFlZGUxMi0yZjczLTQxY2ItYjk4My02ZDExYTkwNDgzOWInLCAncmVzb3VyY2VfZ3JvdXAnOiAnemhlbmdmZWktdGVzdC1lYXN0dXMyJywgJ3dvcmtzcGFjZV9uYW1lJzogJ3Nka192bmV4dF9jbGknLCAnd29ya3NwYWNlX2xvY2F0aW9uJzogJ2Vhc3R1czInLCAnZXhwZXJpbWVudF9uYW1lJzogJ2F6dXJlLWFpLW1sJywgJ25vZGVfcmFuayc6ICdOb25lJywgJ25vZGVfaWQnOiAndHZtcHNfMGQ4MDZjMjBlZTkxNDcwMDFhMjZiZDM0MDViOTk1YTcxYTEwMzA5OGUyYzgxNzhhNTA2NjQxZDIyNTVlMDJjMV9kJywgJ3Jvb3RfcnVuX2lkJzogJ2hlbGxvd29ybGRfcGlwZWxpbmVfam9iX3F1aWNrX3dpdGhfb3V0cHV0XzIwMjJXMzhfdGVzdF9waXBlbGluZV9qb2JfY2hpbGRfcnVuX2Rvd25sb2FkJywgJ3J1bl9pZCc6ICc3NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQnLCAnY29ycmVsYXRpb25faWQnOiAnNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkJywgJ3NvdXJjZSc6ICdjb21tb25fcnVudGltZS5kYXRhLWNhcGFiaWxpdHknLCAnc2Vzc2lvbl9pZCc6ICc2YjBjMGI5ZS0wYWI2LTQ1ZTAtYjI1MS04YzE2ODdhNGQyNTYnLCAndmVyc2lvbic6ICcwLjAuMS4yMDIyMDkxNi4xJywgJ2NvbW1pdCc6ICcxZjQ4OWRlJywgJ2JyYW5jaCc6ICdvcmlnaW4vMWY0ODlkZWM0ZjU3MTE0ZDc2NzM2NGQwMmVkOTUyYTUyM2U4ZWJiYicsICdUcmFjZUlkJzogJzI0NDljNDRkYThkZGRhMzVmY2JhMDI3Y2U0ZWVkMzFjJywgJ1NwYW5JZCc6ICc0Y2RmMWZiOTcwNjcwMDhjJywgJ1RyYWNlRmxhZ3MnOiAnMDEnLCAndHJhY2VJZCc6ICcyNDQ5YzQ0ZGE4ZGRkYTM1ZmNiYTAyN2NlNGVlZDMxYycsICdzcGFuSWQnOiAnNGNkZjFmYjk3MDY3MDA4Yyd9fQpJTkZPIDIwMjItMDktMjMgMTU6MzM6NDgsNjQ2IGRhdGFfc2VydmljZXMucHk6NTYgWzI5XSAtIFtEYXRhQ2FwYWJpbGl0eVNlcnZpY2VdW0VuZF0gZW50ZXJlZCB7J3N1YnNjcmlwdGlvbl9pZCc6ICc5NmFlZGUxMi0yZjczLTQxY2ItYjk4My02ZDExYTkwNDgzOWInLCAncmVzb3VyY2VfZ3JvdXAnOiAnemhlbmdmZWktdGVzdC1lYXN0dXMyJywgJ3dvcmtzcGFjZV9uYW1lJzogJ3Nka192bmV4dF9jbGknLCAnd29ya3NwYWNlX2xvY2F0aW9uJzogJ2Vhc3R1czInLCAnZXhwZXJpbWVudF9uYW1lJzogJ2F6dXJlLWFpLW1sJywgJ25vZGVfcmFuayc6ICdOb25lJywgJ25vZGVfaWQnOiAndHZtcHNfMGQ4MDZjMjBlZTkxNDcwMDFhMjZiZDM0MDViOTk1YTcxYTEwMzA5OGUyYzgxNzhhNTA2NjQxZDIyNTVlMDJjMV9kJywgJ3Jvb3RfcnVuX2lkJzogJ2hlbGxvd29ybGRfcGlwZWxpbmVfam9iX3F1aWNrX3dpdGhfb3V0cHV0XzIwMjJXMzhfdGVzdF9waXBlbGluZV9qb2JfY2hpbGRfcnVuX2Rvd25sb2FkJywgJ3J1bl9pZCc6ICc3NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQnLCAnY29ycmVsYXRpb25faWQnOiAnNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkJywgJ3NvdXJjZSc6ICdjb21tb25fcnVudGltZS5kYXRhLWNhcGFiaWxpdHknLCAnc2Vzc2lvbl9pZCc6ICc2YjBjMGI5ZS0wYWI2LTQ1ZTAtYjI1MS04YzE2ODdhNGQyNTYnLCAndmVyc2lvbic6ICcwLjAuMS4yMDIyMDkxNi4xJywgJ2NvbW1pdCc6ICcxZjQ4OWRlJywgJ2JyYW5jaCc6ICdvcmlnaW4vMWY0ODlkZWM0ZjU3MTE0ZDc2NzM2NGQwMmVkOTUyYTUyM2U4ZWJiYicsICdUcmFjZUlkJzogJzAwODM1ODUyMGFjOWExNDZkOGNjOWIzZWQyNGZhYzUxJywgJ1NwYW5JZCc6ICdlNTJlNmZhNTU2ZWIxMTE1JywgJ1RyYWNlRmxhZ3MnOiAnMDEnLCAndHJhY2VJZCc6ICcwMDgzNTg1MjBhYzlhMTQ2ZDhjYzliM2VkMjRmYWM1MScsICdzcGFuSWQnOiAnZTUyZTZmYTU1NmViMTExNScsICdjdXN0b21fZGltZW5zaW9ucyc6IHsnc3Vic2NyaXB0aW9uX2lkJzogJzk2YWVkZTEyLTJmNzMtNDFjYi1iOTgzLTZkMTFhOTA0ODM5YicsICdyZXNvdXJjZV9ncm91cCc6ICd6aGVuZ2ZlaS10ZXN0LWVhc3R1czInLCAnd29ya3NwYWNlX25hbWUnOiAnc2RrX3ZuZXh0X2NsaScsICd3b3Jrc3BhY2VfbG9jYXRpb24nOiAnZWFzdHVzMicsICdleHBlcmltZW50X25hbWUnOiAnYXp1cmUtYWktbWwnLCAnbm9kZV9yYW5rJzogJ05vbmUnLCAnbm9kZV9pZCc6ICd0dm1wc18wZDgwNmMyMGVlOTE0NzAwMWEyNmJkMzQwNWI5OTVhNzFhMTAzMDk4ZTJjODE3OGE1MDY2NDFkMjI1NWUwMmMxX2QnLCAncm9vdF9ydW5faWQnOiAnaGVsbG93b3JsZF9waXBlbGluZV9qb2JfcXVpY2tfd2l0aF9vdXRwdXRfMjAyMlczOF90ZXN0X3BpcGVsaW5lX2pvYl9jaGlsZF9ydW5fZG93bmxvYWQnLCAncnVuX2lkJzogJzc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCcsICdjb3JyZWxhdGlvbl9pZCc6ICc3NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQnLCAnc291cmNlJzogJ2NvbW1vbl9ydW50aW1lLmRhdGEtY2FwYWJpbGl0eScsICdzZXNzaW9uX2lkJzogJzZiMGMwYjllLTBhYjYtNDVlMC1iMjUxLThjMTY4N2E0ZDI1NicsICd2ZXJzaW9uJzogJzAuMC4xLjIwMjIwOTE2LjEnLCAnY29tbWl0JzogJzFmNDg5ZGUnLCAnYnJhbmNoJzogJ29yaWdpbi8xZjQ4OWRlYzRmNTcxMTRkNzY3MzY0ZDAyZWQ5NTJhNTIzZThlYmJiJywgJ1RyYWNlSWQnOiAnMDA4MzU4NTIwYWM5YTE0NmQ4Y2M5YjNlZDI0ZmFjNTEnLCAnU3BhbklkJzogJ2U1MmU2ZmE1NTZlYjExMTUnLCAnVHJhY2VGbGFncyc6ICcwMScsICd0cmFjZUlkJzogJzAwODM1ODUyMGFjOWExNDZkOGNjOWIzZWQyNGZhYzUxJywgJ3NwYW5JZCc6ICdlNTJlNmZhNTU2ZWIxMTE1J319CklORk8gMjAyMi0wOS0yMyAxNTozMzo0OCw2NDcgY2FwYWJpbGl0eV9zZXNzaW9uLnB5OjExMSBbMjldIC0gW0NhcGFiaWxpdHlTZXNzaW9uXVtlbmRdIERhdGEgc2Vzc2lvbiBlbmRlZCB7J3Nlc3Npb25fbmFtZSc6ICdjb21wb25lbnRfb3V0X3BhdGhfMScsICdjb21taXQnOiAnMWY0ODlkZScsICdzdWJzY3JpcHRpb25faWQnOiAnOTZhZWRlMTItMmY3My00MWNiLWI5ODMtNmQxMWE5MDQ4MzliJywgJ3Jlc291cmNlX2dyb3VwJzogJ3poZW5nZmVpLXRlc3QtZWFzdHVzMicsICd3b3Jrc3BhY2VfbmFtZSc6ICdzZGtfdm5leHRfY2xpJywgJ3dvcmtzcGFjZV9sb2NhdGlvbic6ICdlYXN0dXMyJywgJ2V4cGVyaW1lbnRfbmFtZSc6ICdhenVyZS1haS1tbCcsICdub2RlX3JhbmsnOiAnTm9uZScsICdub2RlX2lkJzogJ3R2bXBzXzBkODA2YzIwZWU5MTQ3MDAxYTI2YmQzNDA1Yjk5NWE3MWExMDMwOThlMmM4MTc4YTUwNjY0MWQyMjU1ZTAyYzFfZCcsICdyb290X3J1bl9pZCc6ICdoZWxsb3dvcmxkX3BpcGVsaW5lX2pvYl9xdWlja193aXRoX291dHB1dF8yMDIyVzM4X3Rlc3RfcGlwZWxpbmVfam9iX2NoaWxkX3J1bl9kb3dubG9hZCcsICdydW5faWQnOiAnNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkJywgJ2NvcnJlbGF0aW9uX2lkJzogJzc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCcsICdzb3VyY2UnOiAnY29tbW9uX3J1bnRpbWUuZGF0YS1jYXBhYmlsaXR5JywgJ3Nlc3Npb25faWQnOiAnNmIwYzBiOWUtMGFiNi00NWUwLWIyNTEtOGMxNjg3YTRkMjU2JywgJ3ZlcnNpb24nOiAnMC4wLjEuMjAyMjA5MTYuMScsICdicmFuY2gnOiAnb3JpZ2luLzFmNDg5ZGVjNGY1NzExNGQ3NjczNjRkMDJlZDk1MmE1MjNlOGViYmInLCAnVHJhY2VJZCc6ICcwMDgzNTg1MjBhYzlhMTQ2ZDhjYzliM2VkMjRmYWM1MScsICdTcGFuSWQnOiAnYTIyYTI1Njg5YmRmZmRkNScsICdUcmFjZUZsYWdzJzogJzAxJywgJ3RyYWNlSWQnOiAnMDA4MzU4NTIwYWM5YTE0NmQ4Y2M5YjNlZDI0ZmFjNTEnLCAnc3BhbklkJzogJ2EyMmEyNTY4OWJkZmZkZDUnLCAnY3VzdG9tX2RpbWVuc2lvbnMnOiB7J3Nlc3Npb25fbmFtZSc6ICdjb21wb25lbnRfb3V0X3BhdGhfMScsICdjb21taXQnOiAnMWY0ODlkZScsICdzdWJzY3JpcHRpb25faWQnOiAnOTZhZWRlMTItMmY3My00MWNiLWI5ODMtNmQxMWE5MDQ4MzliJywgJ3Jlc291cmNlX2dyb3VwJzogJ3poZW5nZmVpLXRlc3QtZWFzdHVzMicsICd3b3Jrc3BhY2VfbmFtZSc6ICdzZGtfdm5leHRfY2xpJywgJ3dvcmtzcGFjZV9sb2NhdGlvbic6ICdlYXN0dXMyJywgJ2V4cGVyaW1lbnRfbmFtZSc6ICdhenVyZS1haS1tbCcsICdub2RlX3JhbmsnOiAnTm9uZScsICdub2RlX2lkJzogJ3R2bXBzXzBkODA2YzIwZWU5MTQ3MDAxYTI2YmQzNDA1Yjk5NWE3MWExMDMwOThlMmM4MTc4YTUwNjY0MWQyMjU1ZTAyYzFfZCcsICdyb290X3J1bl9pZCc6ICdoZWxsb3dvcmxkX3BpcGVsaW5lX2pvYl9xdWlja193aXRoX291dHB1dF8yMDIyVzM4X3Rlc3RfcGlwZWxpbmVfam9iX2NoaWxkX3J1bl9kb3dubG9hZCcsICdydW5faWQnOiAnNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkJywgJ2NvcnJlbGF0aW9uX2lkJzogJzc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCcsICdzb3VyY2UnOiAnY29tbW9uX3J1bnRpbWUuZGF0YS1jYXBhYmlsaXR5JywgJ3Nlc3Npb25faWQnOiAnNmIwYzBiOWUtMGFiNi00NWUwLWIyNTEtOGMxNjg3YTRkMjU2JywgJ3ZlcnNpb24nOiAnMC4wLjEuMjAyMjA5MTYuMScsICdicmFuY2gnOiAnb3JpZ2luLzFmNDg5ZGVjNGY1NzExNGQ3NjczNjRkMDJlZDk1MmE1MjNlOGViYmInLCAnVHJhY2VJZCc6ICcwMDgzNTg1MjBhYzlhMTQ2ZDhjYzliM2VkMjRmYWM1MScsICdTcGFuSWQnOiAnYTIyYTI1Njg5YmRmZmRkNScsICdUcmFjZUZsYWdzJzogJzAxJywgJ3RyYWNlSWQnOiAnMDA4MzU4NTIwYWM5YTE0NmQ4Y2M5YjNlZDI0ZmFjNTEnLCAnc3BhbklkJzogJ2EyMmEyNTY4OWJkZmZkZDUnfX0KSU5GTyAyMDIyLTA5LTIzIDE1OjMzOjQ4LDY1MSBkYXRhX3Nlc3Npb25zLnB5OjY0MCBbMjldIC0gW0Fzc2V0TW91bnRPdXRwdXRTZXNzaW9uXVtzdGFydF0gZW5kaW5nIG1vdW50IHNlc3Npb24geydzdWJzY3JpcHRpb25faWQnOiAnOTZhZWRlMTItMmY3My00MWNiLWI5ODMtNmQxMWE5MDQ4MzliJywgJ3Jlc291cmNlX2dyb3VwJzogJ3poZW5nZmVpLXRlc3QtZWFzdHVzMicsICd3b3Jrc3BhY2VfbmFtZSc6ICdzZGtfdm5leHRfY2xpJywgJ3dvcmtzcGFjZV9sb2NhdGlvbic6ICdlYXN0dXMyJywgJ2V4cGVyaW1lbnRfbmFtZSc6ICdhenVyZS1haS1tbCcsICdub2RlX3JhbmsnOiAnTm9uZScsICdub2RlX2lkJzogJ3R2bXBzXzBkODA2YzIwZWU5MTQ3MDAxYTI2YmQzNDA1Yjk5NWE3MWExMDMwOThlMmM4MTc4YTUwNjY0MWQyMjU1ZTAyYzFfZCcsICdyb290X3J1bl9pZCc6ICdoZWxsb3dvcmxkX3BpcGVsaW5lX2pvYl9xdWlja193aXRoX291dHB1dF8yMDIyVzM4X3Rlc3RfcGlwZWxpbmVfam9iX2NoaWxkX3J1bl9kb3dubG9hZCcsICdydW5faWQnOiAnNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkJywgJ2NvcnJlbGF0aW9uX2lkJzogJzc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCcsICdzb3VyY2UnOiAnY29tbW9uX3J1bnRpbWUuZGF0YS1jYXBhYmlsaXR5JywgJ3Nlc3Npb25faWQnOiAnNmIwYzBiOWUtMGFiNi00NWUwLWIyNTEtOGMxNjg3YTRkMjU2JywgJ3ZlcnNpb24nOiAnMC4wLjEuMjAyMjA5MTYuMScsICdjb21taXQnOiAnMWY0ODlkZScsICdicmFuY2gnOiAnb3JpZ2luLzFmNDg5ZGVjNGY1NzExNGQ3NjczNjRkMDJlZDk1MmE1MjNlOGViYmInLCAnVHJhY2VJZCc6ICcwMDgzNTg1MjBhYzlhMTQ2ZDhjYzliM2VkMjRmYWM1MScsICdTcGFuSWQnOiAnNjA1ZDRiMTYxZjVlMjU5YScsICdUcmFjZUZsYWdzJzogJzAxJywgJ3RyYWNlSWQnOiAnMDA4MzU4NTIwYWM5YTE0NmQ4Y2M5YjNlZDI0ZmFjNTEnLCAnc3BhbklkJzogJzYwNWQ0YjE2MWY1ZTI1OWEnLCAnY3VzdG9tX2RpbWVuc2lvbnMnOiB7J3N1YnNjcmlwdGlvbl9pZCc6ICc5NmFlZGUxMi0yZjczLTQxY2ItYjk4My02ZDExYTkwNDgzOWInLCAncmVzb3VyY2VfZ3JvdXAnOiAnemhlbmdmZWktdGVzdC1lYXN0dXMyJywgJ3dvcmtzcGFjZV9uYW1lJzogJ3Nka192bmV4dF9jbGknLCAnd29ya3NwYWNlX2xvY2F0aW9uJzogJ2Vhc3R1czInLCAnZXhwZXJpbWVudF9uYW1lJzogJ2F6dXJlLWFpLW1sJywgJ25vZGVfcmFuayc6ICdOb25lJywgJ25vZGVfaWQnOiAndHZtcHNfMGQ4MDZjMjBlZTkxNDcwMDFhMjZiZDM0MDViOTk1YTcxYTEwMzA5OGUyYzgxNzhhNTA2NjQxZDIyNTVlMDJjMV9kJywgJ3Jvb3RfcnVuX2lkJzogJ2hlbGxvd29ybGRfcGlwZWxpbmVfam9iX3F1aWNrX3dpdGhfb3V0cHV0XzIwMjJXMzhfdGVzdF9waXBlbGluZV9qb2JfY2hpbGRfcnVuX2Rvd25sb2FkJywgJ3J1bl9pZCc6ICc3NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQnLCAnY29ycmVsYXRpb25faWQnOiAnNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkJywgJ3NvdXJjZSc6ICdjb21tb25fcnVudGltZS5kYXRhLWNhcGFiaWxpdHknLCAnc2Vzc2lvbl9pZCc6ICc2YjBjMGI5ZS0wYWI2LTQ1ZTAtYjI1MS04YzE2ODdhNGQyNTYnLCAndmVyc2lvbic6ICcwLjAuMS4yMDIyMDkxNi4xJywgJ2NvbW1pdCc6ICcxZjQ4OWRlJywgJ2JyYW5jaCc6ICdvcmlnaW4vMWY0ODlkZWM0ZjU3MTE0ZDc2NzM2NGQwMmVkOTUyYTUyM2U4ZWJiYicsICdUcmFjZUlkJzogJzAwODM1ODUyMGFjOWExNDZkOGNjOWIzZWQyNGZhYzUxJywgJ1NwYW5JZCc6ICc2MDVkNGIxNjFmNWUyNTlhJywgJ1RyYWNlRmxhZ3MnOiAnMDEnLCAndHJhY2VJZCc6ICcwMDgzNTg1MjBhYzlhMTQ2ZDhjYzliM2VkMjRmYWM1MScsICdzcGFuSWQnOiAnNjA1ZDRiMTYxZjVlMjU5YSd9fQpJTkZPIDIwMjItMDktMjMgMTU6MzM6NDgsNjUyIGRhdGFfc2Vzc2lvbnMucHk6MTA0MCBbMjldIC0gUmVnaXN0ZXIgb3V0cHV0IGxpbmVhZ2UgZnJvbSBsZWFkZXIgbm9kZS4geydzZXNzaW9uX25hbWUnOiAnY29tcG9uZW50X291dF9wYXRoXzEnLCAnc3Vic2NyaXB0aW9uX2lkJzogJzk2YWVkZTEyLTJmNzMtNDFjYi1iOTgzLTZkMTFhOTA0ODM5YicsICdyZXNvdXJjZV9ncm91cCc6ICd6aGVuZ2ZlaS10ZXN0LWVhc3R1czInLCAnd29ya3NwYWNlX25hbWUnOiAnc2RrX3ZuZXh0X2NsaScsICd3b3Jrc3BhY2VfbG9jYXRpb24nOiAnZWFzdHVzMicsICdleHBlcmltZW50X25hbWUnOiAnYXp1cmUtYWktbWwnLCAnbm9kZV9yYW5rJzogJ05vbmUnLCAnbm9kZV9pZCc6ICd0dm1wc18wZDgwNmMyMGVlOTE0NzAwMWEyNmJkMzQwNWI5OTVhNzFhMTAzMDk4ZTJjODE3OGE1MDY2NDFkMjI1NWUwMmMxX2QnLCAncm9vdF9ydW5faWQnOiAnaGVsbG93b3JsZF9waXBlbGluZV9qb2JfcXVpY2tfd2l0aF9vdXRwdXRfMjAyMlczOF90ZXN0X3BpcGVsaW5lX2pvYl9jaGlsZF9ydW5fZG93bmxvYWQnLCAncnVuX2lkJzogJzc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCcsICdjb3JyZWxhdGlvbl9pZCc6ICc3NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQnLCAnc291cmNlJzogJ2NvbW1vbl9ydW50aW1lLmRhdGEtY2FwYWJpbGl0eScsICdzZXNzaW9uX2lkJzogJzZiMGMwYjllLTBhYjYtNDVlMC1iMjUxLThjMTY4N2E0ZDI1NicsICd2ZXJzaW9uJzogJzAuMC4xLjIwMjIwOTE2LjEnLCAnY29tbWl0JzogJzFmNDg5ZGUnLCAnYnJhbmNoJzogJ29yaWdpbi8xZjQ4OWRlYzRmNTcxMTRkNzY3MzY0ZDAyZWQ5NTJhNTIzZThlYmJiJywgJ1RyYWNlSWQnOiAnMDA4MzU4NTIwYWM5YTE0NmQ4Y2M5YjNlZDI0ZmFjNTEnLCAnU3BhbklkJzogJzYwNWQ0YjE2MWY1ZTI1OWEnLCAnVHJhY2VGbGFncyc6ICcwMScsICd0cmFjZUlkJzogJzAwODM1ODUyMGFjOWExNDZkOGNjOWIzZWQyNGZhYzUxJywgJ3NwYW5JZCc6ICc2MDVkNGIxNjFmNWUyNTlhJywgJ2N1c3RvbV9kaW1lbnNpb25zJzogeydzZXNzaW9uX25hbWUnOiAnY29tcG9uZW50X291dF9wYXRoXzEnLCAnc3Vic2NyaXB0aW9uX2lkJzogJzk2YWVkZTEyLTJmNzMtNDFjYi1iOTgzLTZkMTFhOTA0ODM5YicsICdyZXNvdXJjZV9ncm91cCc6ICd6aGVuZ2ZlaS10ZXN0LWVhc3R1czInLCAnd29ya3NwYWNlX25hbWUnOiAnc2RrX3ZuZXh0X2NsaScsICd3b3Jrc3BhY2VfbG9jYXRpb24nOiAnZWFzdHVzMicsICdleHBlcmltZW50X25hbWUnOiAnYXp1cmUtYWktbWwnLCAnbm9kZV9yYW5rJzogJ05vbmUnLCAnbm9kZV9pZCc6ICd0dm1wc18wZDgwNmMyMGVlOTE0NzAwMWEyNmJkMzQwNWI5OTVhNzFhMTAzMDk4ZTJjODE3OGE1MDY2NDFkMjI1NWUwMmMxX2QnLCAncm9vdF9ydW5faWQnOiAnaGVsbG93b3JsZF9waXBlbGluZV9qb2JfcXVpY2tfd2l0aF9vdXRwdXRfMjAyMlczOF90ZXN0X3BpcGVsaW5lX2pvYl9jaGlsZF9ydW5fZG93bmxvYWQnLCAncnVuX2lkJzogJzc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCcsICdjb3JyZWxhdGlvbl9pZCc6ICc3NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQnLCAnc291cmNlJzogJ2NvbW1vbl9ydW50aW1lLmRhdGEtY2FwYWJpbGl0eScsICdzZXNzaW9uX2lkJzogJzZiMGMwYjllLTBhYjYtNDVlMC1iMjUxLThjMTY4N2E0ZDI1NicsICd2ZXJzaW9uJzogJzAuMC4xLjIwMjIwOTE2LjEnLCAnY29tbWl0JzogJzFmNDg5ZGUnLCAnYnJhbmNoJzogJ29yaWdpbi8xZjQ4OWRlYzRmNTcxMTRkNzY3MzY0ZDAyZWQ5NTJhNTIzZThlYmJiJywgJ1RyYWNlSWQnOiAnMDA4MzU4NTIwYWM5YTE0NmQ4Y2M5YjNlZDI0ZmFjNTEnLCAnU3BhbklkJzogJzYwNWQ0YjE2MWY1ZTI1OWEnLCAnVHJhY2VGbGFncyc6ICcwMScsICd0cmFjZUlkJzogJzAwODM1ODUyMGFjOWExNDZkOGNjOWIzZWQyNGZhYzUxJywgJ3NwYW5JZCc6ICc2MDVkNGIxNjFmNWUyNTlhJ319CklORk8gMjAyMi0wOS0yMyAxNTozMzo0OCw2NTQgYXp1cmVtbF9pbnRlZ3JhdGlvbi5weToxMjMgWzI5XSAtIENyZWF0aW5nIGFzc2V0IGZvciBvdXRwdXQgeydvdXRwdXRfbmFtZSc6ICdjb21wb25lbnRfb3V0X3BhdGhfMScsICdhc3NldF90eXBlJzogJ1VyaUZvbGRlcicsICdzdWJzY3JpcHRpb25faWQnOiAnOTZhZWRlMTItMmY3My00MWNiLWI5ODMtNmQxMWE5MDQ4MzliJywgJ3Jlc291cmNlX2dyb3VwJzogJ3poZW5nZmVpLXRlc3QtZWFzdHVzMicsICd3b3Jrc3BhY2VfbmFtZSc6ICdzZGtfdm5leHRfY2xpJywgJ3dvcmtzcGFjZV9sb2NhdGlvbic6ICdlYXN0dXMyJywgJ2V4cGVyaW1lbnRfbmFtZSc6ICdhenVyZS1haS1tbCcsICdub2RlX3JhbmsnOiAnTm9uZScsICdub2RlX2lkJzogJ3R2bXBzXzBkODA2YzIwZWU5MTQ3MDAxYTI2YmQzNDA1Yjk5NWE3MWExMDMwOThlMmM4MTc4YTUwNjY0MWQyMjU1ZTAyYzFfZCcsICdyb290X3J1bl9pZCc6ICdoZWxsb3dvcmxkX3BpcGVsaW5lX2pvYl9xdWlja193aXRoX291dHB1dF8yMDIyVzM4X3Rlc3RfcGlwZWxpbmVfam9iX2NoaWxkX3J1bl9kb3dubG9hZCcsICdydW5faWQnOiAnNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkJywgJ2NvcnJlbGF0aW9uX2lkJzogJzc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCcsICdzb3VyY2UnOiAnY29tbW9uX3J1bnRpbWUuZGF0YS1jYXBhYmlsaXR5JywgJ3Nlc3Npb25faWQnOiAnNmIwYzBiOWUtMGFiNi00NWUwLWIyNTEtOGMxNjg3YTRkMjU2JywgJ3ZlcnNpb24nOiAnMC4wLjEuMjAyMjA5MTYuMScsICdjb21taXQnOiAnMWY0ODlkZScsICdicmFuY2gnOiAnb3JpZ2luLzFmNDg5ZGVjNGY1NzExNGQ3NjczNjRkMDJlZDk1MmE1MjNlOGViYmInLCAnVHJhY2VJZCc6ICcwMDgzNTg1MjBhYzlhMTQ2ZDhjYzliM2VkMjRmYWM1MScsICdTcGFuSWQnOiAnMTMyNTZjYTgzMTViYWEwMCcsICdUcmFjZUZsYWdzJzogJzAxJywgJ3RyYWNlSWQnOiAnMDA4MzU4NTIwYWM5YTE0NmQ4Y2M5YjNlZDI0ZmFjNTEnLCAnc3BhbklkJzogJzEzMjU2Y2E4MzE1YmFhMDAnLCAnY3VzdG9tX2RpbWVuc2lvbnMnOiB7J291dHB1dF9uYW1lJzogJ2NvbXBvbmVudF9vdXRfcGF0aF8xJywgJ2Fzc2V0X3R5cGUnOiAnVXJpRm9sZGVyJywgJ3N1YnNjcmlwdGlvbl9pZCc6ICc5NmFlZGUxMi0yZjczLTQxY2ItYjk4My02ZDExYTkwNDgzOWInLCAncmVzb3VyY2VfZ3JvdXAnOiAnemhlbmdmZWktdGVzdC1lYXN0dXMyJywgJ3dvcmtzcGFjZV9uYW1lJzogJ3Nka192bmV4dF9jbGknLCAnd29ya3NwYWNlX2xvY2F0aW9uJzogJ2Vhc3R1czInLCAnZXhwZXJpbWVudF9uYW1lJzogJ2F6dXJlLWFpLW1sJywgJ25vZGVfcmFuayc6ICdOb25lJywgJ25vZGVfaWQnOiAndHZtcHNfMGQ4MDZjMjBlZTkxNDcwMDFhMjZiZDM0MDViOTk1YTcxYTEwMzA5OGUyYzgxNzhhNTA2NjQxZDIyNTVlMDJjMV9kJywgJ3Jvb3RfcnVuX2lkJzogJ2hlbGxvd29ybGRfcGlwZWxpbmVfam9iX3F1aWNrX3dpdGhfb3V0cHV0XzIwMjJXMzhfdGVzdF9waXBlbGluZV9qb2JfY2hpbGRfcnVuX2Rvd25sb2FkJywgJ3J1bl9pZCc6ICc3NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQnLCAnY29ycmVsYXRpb25faWQnOiAnNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkJywgJ3NvdXJjZSc6ICdjb21tb25fcnVudGltZS5kYXRhLWNhcGFiaWxpdHknLCAnc2Vzc2lvbl9pZCc6ICc2YjBjMGI5ZS0wYWI2LTQ1ZTAtYjI1MS04YzE2ODdhNGQyNTYnLCAndmVyc2lvbic6ICcwLjAuMS4yMDIyMDkxNi4xJywgJ2NvbW1pdCc6ICcxZjQ4OWRlJywgJ2JyYW5jaCc6ICdvcmlnaW4vMWY0ODlkZWM0ZjU3MTE0ZDc2NzM2NGQwMmVkOTUyYTUyM2U4ZWJiYicsICdUcmFjZUlkJzogJzAwODM1ODUyMGFjOWExNDZkOGNjOWIzZWQyNGZhYzUxJywgJ1NwYW5JZCc6ICcxMzI1NmNhODMxNWJhYTAwJywgJ1RyYWNlRmxhZ3MnOiAnMDEnLCAndHJhY2VJZCc6ICcwMDgzNTg1MjBhYzlhMTQ2ZDhjYzliM2VkMjRmYWM1MScsICdzcGFuSWQnOiAnMTMyNTZjYTgzMTViYWEwMCd9fQpJTkZPIDIwMjItMDktMjMgMTU6MzM6NDgsNzgyIGF6dXJlbWxfaW50ZWdyYXRpb24ucHk6MjI5IFsyOV0gLSBzYXZpbmcgYXNzZXQgb3V0cHV0IGxpbmVhZ2UgZm9yIG91dHB1dCB7J291dHB1dF9uYW1lJzogJ2NvbXBvbmVudF9vdXRfcGF0aF8xJywgJ2Fzc2V0LmlkJzogJ2F6dXJlbWw6Ly9sb2NhdGlvbnMvZWFzdHVzMi93b3Jrc3BhY2VzL2U5NTBmODc2LTcyNTctNGNmMy05OWE1LWZmNjY4MTJhYzQ0Yy9kYXRhL2F6dXJlbWxfNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkX291dHB1dF9kYXRhX2NvbXBvbmVudF9vdXRfcGF0aF8xL3ZlcnNpb25zLzEnLCAnYXNzZXQudHlwZSc6ICdVcmlGb2xkZXInLCAnc3Vic2NyaXB0aW9uX2lkJzogJzk2YWVkZTEyLTJmNzMtNDFjYi1iOTgzLTZkMTFhOTA0ODM5YicsICdyZXNvdXJjZV9ncm91cCc6ICd6aGVuZ2ZlaS10ZXN0LWVhc3R1czInLCAnd29ya3NwYWNlX25hbWUnOiAnc2RrX3ZuZXh0X2NsaScsICd3b3Jrc3BhY2VfbG9jYXRpb24nOiAnZWFzdHVzMicsICdleHBlcmltZW50X25hbWUnOiAnYXp1cmUtYWktbWwnLCAnbm9kZV9yYW5rJzogJ05vbmUnLCAnbm9kZV9pZCc6ICd0dm1wc18wZDgwNmMyMGVlOTE0NzAwMWEyNmJkMzQwNWI5OTVhNzFhMTAzMDk4ZTJjODE3OGE1MDY2NDFkMjI1NWUwMmMxX2QnLCAncm9vdF9ydW5faWQnOiAnaGVsbG93b3JsZF9waXBlbGluZV9qb2JfcXVpY2tfd2l0aF9vdXRwdXRfMjAyMlczOF90ZXN0X3BpcGVsaW5lX2pvYl9jaGlsZF9ydW5fZG93bmxvYWQnLCAncnVuX2lkJzogJzc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCcsICdjb3JyZWxhdGlvbl9pZCc6ICc3NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQnLCAnc291cmNlJzogJ2NvbW1vbl9ydW50aW1lLmRhdGEtY2FwYWJpbGl0eScsICdzZXNzaW9uX2lkJzogJzZiMGMwYjllLTBhYjYtNDVlMC1iMjUxLThjMTY4N2E0ZDI1NicsICd2ZXJzaW9uJzogJzAuMC4xLjIwMjIwOTE2LjEnLCAnY29tbWl0JzogJzFmNDg5ZGUnLCAnYnJhbmNoJzogJ29yaWdpbi8xZjQ4OWRlYzRmNTcxMTRkNzY3MzY0ZDAyZWQ5NTJhNTIzZThlYmJiJywgJ1RyYWNlSWQnOiAnMDA4MzU4NTIwYWM5YTE0NmQ4Y2M5YjNlZDI0ZmFjNTEnLCAnU3BhbklkJzogJ2UzYTA0NTM1MWYzNzE3MjAnLCAnVHJhY2VGbGFncyc6ICcwMScsICd0cmFjZUlkJzogJzAwODM1ODUyMGFjOWExNDZkOGNjOWIzZWQyNGZhYzUxJywgJ3NwYW5JZCc6ICdlM2EwNDUzNTFmMzcxNzIwJywgJ2N1c3RvbV9kaW1lbnNpb25zJzogeydvdXRwdXRfbmFtZSc6ICdjb21wb25lbnRfb3V0X3BhdGhfMScsICdhc3NldC5pZCc6ICdhenVyZW1sOi8vbG9jYXRpb25zL2Vhc3R1czIvd29ya3NwYWNlcy9lOTUwZjg3Ni03MjU3LTRjZjMtOTlhNS1mZjY2ODEyYWM0NGMvZGF0YS9henVyZW1sXzc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZF9vdXRwdXRfZGF0YV9jb21wb25lbnRfb3V0X3BhdGhfMS92ZXJzaW9ucy8xJywgJ2Fzc2V0LnR5cGUnOiAnVXJpRm9sZGVyJywgJ3N1YnNjcmlwdGlvbl9pZCc6ICc5NmFlZGUxMi0yZjczLTQxY2ItYjk4My02ZDExYTkwNDgzOWInLCAncmVzb3VyY2VfZ3JvdXAnOiAnemhlbmdmZWktdGVzdC1lYXN0dXMyJywgJ3dvcmtzcGFjZV9uYW1lJzogJ3Nka192bmV4dF9jbGknLCAnd29ya3NwYWNlX2xvY2F0aW9uJzogJ2Vhc3R1czInLCAnZXhwZXJpbWVudF9uYW1lJzogJ2F6dXJlLWFpLW1sJywgJ25vZGVfcmFuayc6ICdOb25lJywgJ25vZGVfaWQnOiAndHZtcHNfMGQ4MDZjMjBlZTkxNDcwMDFhMjZiZDM0MDViOTk1YTcxYTEwMzA5OGUyYzgxNzhhNTA2NjQxZDIyNTVlMDJjMV9kJywgJ3Jvb3RfcnVuX2lkJzogJ2hlbGxvd29ybGRfcGlwZWxpbmVfam9iX3F1aWNrX3dpdGhfb3V0cHV0XzIwMjJXMzhfdGVzdF9waXBlbGluZV9qb2JfY2hpbGRfcnVuX2Rvd25sb2FkJywgJ3J1bl9pZCc6ICc3NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQnLCAnY29ycmVsYXRpb25faWQnOiAnNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkJywgJ3NvdXJjZSc6ICdjb21tb25fcnVudGltZS5kYXRhLWNhcGFiaWxpdHknLCAnc2Vzc2lvbl9pZCc6ICc2YjBjMGI5ZS0wYWI2LTQ1ZTAtYjI1MS04YzE2ODdhNGQyNTYnLCAndmVyc2lvbic6ICcwLjAuMS4yMDIyMDkxNi4xJywgJ2NvbW1pdCc6ICcxZjQ4OWRlJywgJ2JyYW5jaCc6ICdvcmlnaW4vMWY0ODlkZWM0ZjU3MTE0ZDc2NzM2NGQwMmVkOTUyYTUyM2U4ZWJiYicsICdUcmFjZUlkJzogJzAwODM1ODUyMGFjOWExNDZkOGNjOWIzZWQyNGZhYzUxJywgJ1NwYW5JZCc6ICdlM2EwNDUzNTFmMzcxNzIwJywgJ1RyYWNlRmxhZ3MnOiAnMDEnLCAndHJhY2VJZCc6ICcwMDgzNTg1MjBhYzlhMTQ2ZDhjYzliM2VkMjRmYWM1MScsICdzcGFuSWQnOiAnZTNhMDQ1MzUxZjM3MTcyMCd9fQpJTkZPIDIwMjItMDktMjMgMTU6MzM6NDgsODM0IGRhdGFfc2Vzc2lvbnMucHk6NjQ0IFsyOV0gLSBbQXNzZXRNb3VudE91dHB1dFNlc3Npb25dW3N0YXJ0XSBtb3VudCBlbmRlZC4geydzdWJzY3JpcHRpb25faWQnOiAnOTZhZWRlMTItMmY3My00MWNiLWI5ODMtNmQxMWE5MDQ4MzliJywgJ3Jlc291cmNlX2dyb3VwJzogJ3poZW5nZmVpLXRlc3QtZWFzdHVzMicsICd3b3Jrc3BhY2VfbmFtZSc6ICdzZGtfdm5leHRfY2xpJywgJ3dvcmtzcGFjZV9sb2NhdGlvbic6ICdlYXN0dXMyJywgJ2V4cGVyaW1lbnRfbmFtZSc6ICdhenVyZS1haS1tbCcsICdub2RlX3JhbmsnOiAnTm9uZScsICdub2RlX2lkJzogJ3R2bXBzXzBkODA2YzIwZWU5MTQ3MDAxYTI2YmQzNDA1Yjk5NWE3MWExMDMwOThlMmM4MTc4YTUwNjY0MWQyMjU1ZTAyYzFfZCcsICdyb290X3J1bl9pZCc6ICdoZWxsb3dvcmxkX3BpcGVsaW5lX2pvYl9xdWlja193aXRoX291dHB1dF8yMDIyVzM4X3Rlc3RfcGlwZWxpbmVfam9iX2NoaWxkX3J1bl9kb3dubG9hZCcsICdydW5faWQnOiAnNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkJywgJ2NvcnJlbGF0aW9uX2lkJzogJzc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCcsICdzb3VyY2UnOiAnY29tbW9uX3J1bnRpbWUuZGF0YS1jYXBhYmlsaXR5JywgJ3Nlc3Npb25faWQnOiAnNmIwYzBiOWUtMGFiNi00NWUwLWIyNTEtOGMxNjg3YTRkMjU2JywgJ3ZlcnNpb24nOiAnMC4wLjEuMjAyMjA5MTYuMScsICdjb21taXQnOiAnMWY0ODlkZScsICdicmFuY2gnOiAnb3JpZ2luLzFmNDg5ZGVjNGY1NzExNGQ3NjczNjRkMDJlZDk1MmE1MjNlOGViYmInLCAnVHJhY2VJZCc6ICcwMDgzNTg1MjBhYzlhMTQ2ZDhjYzliM2VkMjRmYWM1MScsICdTcGFuSWQnOiAnNjA1ZDRiMTYxZjVlMjU5YScsICdUcmFjZUZsYWdzJzogJzAxJywgJ3RyYWNlSWQnOiAnMDA4MzU4NTIwYWM5YTE0NmQ4Y2M5YjNlZDI0ZmFjNTEnLCAnc3BhbklkJzogJzYwNWQ0YjE2MWY1ZTI1OWEnLCAnY3VzdG9tX2RpbWVuc2lvbnMnOiB7J3N1YnNjcmlwdGlvbl9pZCc6ICc5NmFlZGUxMi0yZjczLTQxY2ItYjk4My02ZDExYTkwNDgzOWInLCAncmVzb3VyY2VfZ3JvdXAnOiAnemhlbmdmZWktdGVzdC1lYXN0dXMyJywgJ3dvcmtzcGFjZV9uYW1lJzogJ3Nka192bmV4dF9jbGknLCAnd29ya3NwYWNlX2xvY2F0aW9uJzogJ2Vhc3R1czInLCAnZXhwZXJpbWVudF9uYW1lJzogJ2F6dXJlLWFpLW1sJywgJ25vZGVfcmFuayc6ICdOb25lJywgJ25vZGVfaWQnOiAndHZtcHNfMGQ4MDZjMjBlZTkxNDcwMDFhMjZiZDM0MDViOTk1YTcxYTEwMzA5OGUyYzgxNzhhNTA2NjQxZDIyNTVlMDJjMV9kJywgJ3Jvb3RfcnVuX2lkJzogJ2hlbGxvd29ybGRfcGlwZWxpbmVfam9iX3F1aWNrX3dpdGhfb3V0cHV0XzIwMjJXMzhfdGVzdF9waXBlbGluZV9qb2JfY2hpbGRfcnVuX2Rvd25sb2FkJywgJ3J1bl9pZCc6ICc3NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQnLCAnY29ycmVsYXRpb25faWQnOiAnNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkJywgJ3NvdXJjZSc6ICdjb21tb25fcnVudGltZS5kYXRhLWNhcGFiaWxpdHknLCAnc2Vzc2lvbl9pZCc6ICc2YjBjMGI5ZS0wYWI2LTQ1ZTAtYjI1MS04YzE2ODdhNGQyNTYnLCAndmVyc2lvbic6ICcwLjAuMS4yMDIyMDkxNi4xJywgJ2NvbW1pdCc6ICcxZjQ4OWRlJywgJ2JyYW5jaCc6ICdvcmlnaW4vMWY0ODlkZWM0ZjU3MTE0ZDc2NzM2NGQwMmVkOTUyYTUyM2U4ZWJiYicsICdUcmFjZUlkJzogJzAwODM1ODUyMGFjOWExNDZkOGNjOWIzZWQyNGZhYzUxJywgJ1NwYW5JZCc6ICc2MDVkNGIxNjFmNWUyNTlhJywgJ1RyYWNlRmxhZ3MnOiAnMDEnLCAndHJhY2VJZCc6ICcwMDgzNTg1MjBhYzlhMTQ2ZDhjYzliM2VkMjRmYWM1MScsICdzcGFuSWQnOiAnNjA1ZDRiMTYxZjVlMjU5YSd9fQpJTkZPIDIwMjItMDktMjMgMTU6MzM6NDgsODM2IGNhcGFiaWxpdHlfc2Vzc2lvbi5weToxMTcgWzI5XSAtIFtDYXBhYmlsaXR5U2Vzc2lvbl1bZW5kXSBEYXRhIHNlc3Npb24gZW5kZWQgc3VjY2Vzc2Z1bGx5IHsnc2Vzc2lvbl9uYW1lJzogJ2NvbXBvbmVudF9vdXRfcGF0aF8xJywgJ3N1YnNjcmlwdGlvbl9pZCc6ICc5NmFlZGUxMi0yZjczLTQxY2ItYjk4My02ZDExYTkwNDgzOWInLCAncmVzb3VyY2VfZ3JvdXAnOiAnemhlbmdmZWktdGVzdC1lYXN0dXMyJywgJ3dvcmtzcGFjZV9uYW1lJzogJ3Nka192bmV4dF9jbGknLCAnd29ya3NwYWNlX2xvY2F0aW9uJzogJ2Vhc3R1czInLCAnZXhwZXJpbWVudF9uYW1lJzogJ2F6dXJlLWFpLW1sJywgJ25vZGVfcmFuayc6ICdOb25lJywgJ25vZGVfaWQnOiAndHZtcHNfMGQ4MDZjMjBlZTkxNDcwMDFhMjZiZDM0MDViOTk1YTcxYTEwMzA5OGUyYzgxNzhhNTA2NjQxZDIyNTVlMDJjMV9kJywgJ3Jvb3RfcnVuX2lkJzogJ2hlbGxvd29ybGRfcGlwZWxpbmVfam9iX3F1aWNrX3dpdGhfb3V0cHV0XzIwMjJXMzhfdGVzdF9waXBlbGluZV9qb2JfY2hpbGRfcnVuX2Rvd25sb2FkJywgJ3J1bl9pZCc6ICc3NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQnLCAnY29ycmVsYXRpb25faWQnOiAnNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkJywgJ3NvdXJjZSc6ICdjb21tb25fcnVudGltZS5kYXRhLWNhcGFiaWxpdHknLCAnc2Vzc2lvbl9pZCc6ICc2YjBjMGI5ZS0wYWI2LTQ1ZTAtYjI1MS04YzE2ODdhNGQyNTYnLCAndmVyc2lvbic6ICcwLjAuMS4yMDIyMDkxNi4xJywgJ2NvbW1pdCc6ICcxZjQ4OWRlJywgJ2JyYW5jaCc6ICdvcmlnaW4vMWY0ODlkZWM0ZjU3MTE0ZDc2NzM2NGQwMmVkOTUyYTUyM2U4ZWJiYicsICdUcmFjZUlkJzogJzAwODM1ODUyMGFjOWExNDZkOGNjOWIzZWQyNGZhYzUxJywgJ1NwYW5JZCc6ICdhMjJhMjU2ODliZGZmZGQ1JywgJ1RyYWNlRmxhZ3MnOiAnMDEnLCAndHJhY2VJZCc6ICcwMDgzNTg1MjBhYzlhMTQ2ZDhjYzliM2VkMjRmYWM1MScsICdzcGFuSWQnOiAnYTIyYTI1Njg5YmRmZmRkNScsICdjdXN0b21fZGltZW5zaW9ucyc6IHsnc2Vzc2lvbl9uYW1lJzogJ2NvbXBvbmVudF9vdXRfcGF0aF8xJywgJ3N1YnNjcmlwdGlvbl9pZCc6ICc5NmFlZGUxMi0yZjczLTQxY2ItYjk4My02ZDExYTkwNDgzOWInLCAncmVzb3VyY2VfZ3JvdXAnOiAnemhlbmdmZWktdGVzdC1lYXN0dXMyJywgJ3dvcmtzcGFjZV9uYW1lJzogJ3Nka192bmV4dF9jbGknLCAnd29ya3NwYWNlX2xvY2F0aW9uJzogJ2Vhc3R1czInLCAnZXhwZXJpbWVudF9uYW1lJzogJ2F6dXJlLWFpLW1sJywgJ25vZGVfcmFuayc6ICdOb25lJywgJ25vZGVfaWQnOiAndHZtcHNfMGQ4MDZjMjBlZTkxNDcwMDFhMjZiZDM0MDViOTk1YTcxYTEwMzA5OGUyYzgxNzhhNTA2NjQxZDIyNTVlMDJjMV9kJywgJ3Jvb3RfcnVuX2lkJzogJ2hlbGxvd29ybGRfcGlwZWxpbmVfam9iX3F1aWNrX3dpdGhfb3V0cHV0XzIwMjJXMzhfdGVzdF9waXBlbGluZV9qb2JfY2hpbGRfcnVuX2Rvd25sb2FkJywgJ3J1bl9pZCc6ICc3NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQnLCAnY29ycmVsYXRpb25faWQnOiAnNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkJywgJ3NvdXJjZSc6ICdjb21tb25fcnVudGltZS5kYXRhLWNhcGFiaWxpdHknLCAnc2Vzc2lvbl9pZCc6ICc2YjBjMGI5ZS0wYWI2LTQ1ZTAtYjI1MS04YzE2ODdhNGQyNTYnLCAndmVyc2lvbic6ICcwLjAuMS4yMDIyMDkxNi4xJywgJ2NvbW1pdCc6ICcxZjQ4OWRlJywgJ2JyYW5jaCc6ICdvcmlnaW4vMWY0ODlkZWM0ZjU3MTE0ZDc2NzM2NGQwMmVkOTUyYTUyM2U4ZWJiYicsICdUcmFjZUlkJzogJzAwODM1ODUyMGFjOWExNDZkOGNjOWIzZWQyNGZhYzUxJywgJ1NwYW5JZCc6ICdhMjJhMjU2ODliZGZmZGQ1JywgJ1RyYWNlRmxhZ3MnOiAnMDEnLCAndHJhY2VJZCc6ICcwMDgzNTg1MjBhYzlhMTQ2ZDhjYzliM2VkMjRmYWM1MScsICdzcGFuSWQnOiAnYTIyYTI1Njg5YmRmZmRkNSd9fQpJTkZPIDIwMjItMDktMjMgMTU6MzM6NDgsODM2IGRhdGFfc2VydmljZXMucHk6NjcgWzI5XSAtIFtEYXRhQ2FwYWJpbGl0eVNlcnZpY2VdW0VuZF0gc3VjY2VlZGVkIHsnc3Vic2NyaXB0aW9uX2lkJzogJzk2YWVkZTEyLTJmNzMtNDFjYi1iOTgzLTZkMTFhOTA0ODM5YicsICdyZXNvdXJjZV9ncm91cCc6ICd6aGVuZ2ZlaS10ZXN0LWVhc3R1czInLCAnd29ya3NwYWNlX25hbWUnOiAnc2RrX3ZuZXh0X2NsaScsICd3b3Jrc3BhY2VfbG9jYXRpb24nOiAnZWFzdHVzMicsICdleHBlcmltZW50X25hbWUnOiAnYXp1cmUtYWktbWwnLCAnbm9kZV9yYW5rJzogJ05vbmUnLCAnbm9kZV9pZCc6ICd0dm1wc18wZDgwNmMyMGVlOTE0NzAwMWEyNmJkMzQwNWI5OTVhNzFhMTAzMDk4ZTJjODE3OGE1MDY2NDFkMjI1NWUwMmMxX2QnLCAncm9vdF9ydW5faWQnOiAnaGVsbG93b3JsZF9waXBlbGluZV9qb2JfcXVpY2tfd2l0aF9vdXRwdXRfMjAyMlczOF90ZXN0X3BpcGVsaW5lX2pvYl9jaGlsZF9ydW5fZG93bmxvYWQnLCAncnVuX2lkJzogJzc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCcsICdjb3JyZWxhdGlvbl9pZCc6ICc3NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQnLCAnc291cmNlJzogJ2NvbW1vbl9ydW50aW1lLmRhdGEtY2FwYWJpbGl0eScsICdzZXNzaW9uX2lkJzogJzZiMGMwYjllLTBhYjYtNDVlMC1iMjUxLThjMTY4N2E0ZDI1NicsICd2ZXJzaW9uJzogJzAuMC4xLjIwMjIwOTE2LjEnLCAnY29tbWl0JzogJzFmNDg5ZGUnLCAnYnJhbmNoJzogJ29yaWdpbi8xZjQ4OWRlYzRmNTcxMTRkNzY3MzY0ZDAyZWQ5NTJhNTIzZThlYmJiJywgJ1RyYWNlSWQnOiAnMDA4MzU4NTIwYWM5YTE0NmQ4Y2M5YjNlZDI0ZmFjNTEnLCAnU3BhbklkJzogJ2U1MmU2ZmE1NTZlYjExMTUnLCAnVHJhY2VGbGFncyc6ICcwMScsICd0cmFjZUlkJzogJzAwODM1ODUyMGFjOWExNDZkOGNjOWIzZWQyNGZhYzUxJywgJ3NwYW5JZCc6ICdlNTJlNmZhNTU2ZWIxMTE1JywgJ2N1c3RvbV9kaW1lbnNpb25zJzogeydzdWJzY3JpcHRpb25faWQnOiAnOTZhZWRlMTItMmY3My00MWNiLWI5ODMtNmQxMWE5MDQ4MzliJywgJ3Jlc291cmNlX2dyb3VwJzogJ3poZW5nZmVpLXRlc3QtZWFzdHVzMicsICd3b3Jrc3BhY2VfbmFtZSc6ICdzZGtfdm5leHRfY2xpJywgJ3dvcmtzcGFjZV9sb2NhdGlvbic6ICdlYXN0dXMyJywgJ2V4cGVyaW1lbnRfbmFtZSc6ICdhenVyZS1haS1tbCcsICdub2RlX3JhbmsnOiAnTm9uZScsICdub2RlX2lkJzogJ3R2bXBzXzBkODA2YzIwZWU5MTQ3MDAxYTI2YmQzNDA1Yjk5NWE3MWExMDMwOThlMmM4MTc4YTUwNjY0MWQyMjU1ZTAyYzFfZCcsICdyb290X3J1bl9pZCc6ICdoZWxsb3dvcmxkX3BpcGVsaW5lX2pvYl9xdWlja193aXRoX291dHB1dF8yMDIyVzM4X3Rlc3RfcGlwZWxpbmVfam9iX2NoaWxkX3J1bl9kb3dubG9hZCcsICdydW5faWQnOiAnNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkJywgJ2NvcnJlbGF0aW9uX2lkJzogJzc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCcsICdzb3VyY2UnOiAnY29tbW9uX3J1bnRpbWUuZGF0YS1jYXBhYmlsaXR5JywgJ3Nlc3Npb25faWQnOiAnNmIwYzBiOWUtMGFiNi00NWUwLWIyNTEtOGMxNjg3YTRkMjU2JywgJ3ZlcnNpb24nOiAnMC4wLjEuMjAyMjA5MTYuMScsICdjb21taXQnOiAnMWY0ODlkZScsICdicmFuY2gnOiAnb3JpZ2luLzFmNDg5ZGVjNGY1NzExNGQ3NjczNjRkMDJlZDk1MmE1MjNlOGViYmInLCAnVHJhY2VJZCc6ICcwMDgzNTg1MjBhYzlhMTQ2ZDhjYzliM2VkMjRmYWM1MScsICdTcGFuSWQnOiAnZTUyZTZmYTU1NmViMTExNScsICdUcmFjZUZsYWdzJzogJzAxJywgJ3RyYWNlSWQnOiAnMDA4MzU4NTIwYWM5YTE0NmQ4Y2M5YjNlZDI0ZmFjNTEnLCAnc3BhbklkJzogJ2U1MmU2ZmE1NTZlYjExMTUnfX0K" + }, + { + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml/ExperimentRun/dcid.7599d23f-8164-4644-808e-e4e13b1efe1d/system_logs/data_capability/rslex.log.2022-09-23-15", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/xml", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:34:43 GMT", + "x-ms-range": "bytes=0-33554431", + "x-ms-version": "2021-08-06" + }, + "RequestBody": null, + "StatusCode": 206, + "ResponseHeaders": { + "Accept-Ranges": "bytes", + "Content-Disposition": "", + "Content-Length": "5458", + "Content-Range": "bytes 0-5457/5458", + "Content-Type": "application/octet-stream", + "Date": "Fri, 23 Sep 2022 15:34:41 GMT", + "ETag": "\u00220x8DA9D7902CE60AC\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:33:49 GMT", + "Server": [ + "Windows-Azure-Blob/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": "Origin", + "x-ms-blob-type": "BlockBlob", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:33:48 GMT", + "x-ms-lease-state": "available", + "x-ms-lease-status": "unlocked", + "x-ms-server-encrypted": "true", + "x-ms-version": "2021-08-06" + }, + "ResponseBody": "MjAyMi0wOS0yM1QxNTozMzo0MC42Nzk3ODNaICBJTkZPIHJzbGV4X2Z1c2U6OmRpcmVjdF92b2x1bWVfbW91bnQ6Om9wdGlvbnM6IFtyc2xleC1mdXNlOjpEaXJlY3RWb2x1bWVPcHRpb25zXSBFbnZpcm9ubWVudCB2YXJpYWJsZSAiREFUQVNFVF9NT1VOVF9CTE9DS19CQVNFRF9DQUNIRV9FTkFCTEVEIiBoYXMgYmVlbiBzZXQgdG8gdHJ1ZSBlbnZfdmFyaWFibGVfbmFtZT0iREFUQVNFVF9NT1VOVF9CTE9DS19CQVNFRF9DQUNIRV9FTkFCTEVEIiBlbnZfdmFyaWFibGVfdmFsdWU9dHJ1ZSBkZXNjcmlwdG9yPSJyc2xleC1mdXNlOjpEaXJlY3RWb2x1bWVPcHRpb25zOjpjb25maWdfZW52X3NldCIKMjAyMi0wOS0yM1QxNTozMzo0MC44MzkyNjVaICBJTkZPIHJzbGV4X2F6dXJlbWw6OmRhdGFfc3RvcmU6OnJlc29sdmVyOiBbQ2FjaGVkUmVzb2x2ZXI6OnJlc29sdmUoKV0gZGF0YXN0b3JlIHJlc29sdmVkIGRhdGFzdG9yZV9uYW1lPVNvbWUoIndvcmtzcGFjZWJsb2JzdG9yZSIpIGRhdGFzdG9yZV90eXBlPVNvbWUoQXp1cmVCbG9iKQoyMDIyLTA5LTIzVDE1OjMzOjQwLjg2MzEzM1ogIFdBUk4gcnNsZXhfaHR0cF9zdHJlYW06Omh0dHBfc2VydmljZV9jbGllbnQ6OmVycm9yX21hcHBlZF9odHRwX3NlcnZpY2VfY2xpZW50OiBbcnNsZXgtaHR0cC1zdHJlYW06Omh0dHBfc2VydmljZV9jbGllbnRdIG5vbi1zdWNjZXNzZnVsIHJlc3BvbnNlIGhvc3Q9c2F2NmRocnhleHdsdjdnLmJsb2IuY29yZS53aW5kb3dzLm5ldCBtZXRob2Q9SEVBRCBlcnJvcj1IdHRwU2VydmljZUVycm9yIHsgc2VydmljZTogImF6dXJlX2Jsb2IiLCBpbm5lcl9lcnJvcjogVGhlIHNwZWNpZmllZCBibG9iIGRvZXMgbm90IGV4aXN0LiB9IHNlcnZpY2VfcmVxdWVzdF9pZD1Tb21lKCIwZjkwMDcxNy01MDFlLTAwMDEtMmY2MS1jZjE1ZGYwMDAwMDAiKQoyMDIyLTA5LTIzVDE1OjMzOjQwLjg2NzI2MFogIFdBUk4gcnNsZXhfZnVzZTo6ZGlyZWN0X3ZvbHVtZV9tb3VudDo6ZGlyZWN0X3ZvbHVtZV9tb3VudDogW3JzbGV4LWZ1c2U6OmRpcmVjdC12b2x1bWUtbW91bnQ6Om5ldygpXSByZWFkIHdyaXRlIHBhdGggbm90IGZvdW5kLCB0cnkgdG8gY3JlYXRlLiBtb3VudF9wb2ludD0vbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS9jYXAvZGF0YS1jYXBhYmlsaXR5L3dkL2NvbXBvbmVudF9vdXRfcGF0aF8xCjIwMjItMDktMjNUMTU6MzM6NDAuODk1Njc4WiAgSU5GTyByc2xleF9mdXNlOjpkaXJlY3Rfdm9sdW1lX21vdW50OjpkaXJlY3Rfdm9sdW1lX21vdW50OiBbcnNsZXgtZnVzZTo6RGlyZWN0Vm9sdW1lTW91bnQ6Om5ldygpXSBEaXJlY3Qgdm9sdW1lIG1vdW50IGNyZWF0ZWQuIG1vdW50X3BvaW50PS9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2NhcC9kYXRhLWNhcGFiaWxpdHkvd2QvY29tcG9uZW50X291dF9wYXRoXzEgaGFuZGxlcj1BbWxEYXRhc3RvcmUgb3B0aW9ucz1EaXJlY3RWb2x1bWVPcHRpb25zIHsgaXNfc2luZ2xlX2ZpbGU6IFNvbWUoZmFsc2UpLCBkZWZhdWx0X3Blcm1pc3Npb246IFNvbWUoNTExKSwgYXR0cmlidXRlX2NhY2hlX2VudHJ5X3R0bDogMTg0NDY3NDQwNzM3MDk1NTE2MTUuOTk5OTk5OTk5cywgZGlza19jYWNoZV9vcHRpb25zOiBEaXNrQ2FjaGVPcHRpb25zIHsgY2FjaGVfZGlyX3BhdGg6IE5vbmUsIHJlc2VydmVkX2ZyZWVfZGlza19zcGFjZTogMTU3Mjg2NDAwLCBjYWNoZV9saW1pdDogVW5saW1pdGVkLCBwcnVuZV90aHJlc2hvbGQ6IDEuMCwgcHJ1bmVfdGFyZ2V0OiAwLjcsIF9jYWNoZV9yZXNvdXJjZXNfcGhhbnRvbTogUGhhbnRvbURhdGEgfSwgc3RyZWFtaW5nX3JlYWRfb3B0aW9uczogU3RyZWFtaW5nUmVhZE9wdGlvbnMgeyBibG9ja19zaXplOiAyMDk3MTUyLCBidWZmZXJlZF9ibG9ja3NfY291bnQ6IDMyLCByZWFkaW5nX3RocmVhZHM6IDMyIH0sIGJsb2NrX2Jhc2VkX3JlYWRpbmdfb3B0aW9uczogU29tZShCbG9ja0Jhc2VkUmVhZGluZ09wdGlvbnMgeyBtZW1vcnlfY2FjaGVfb3B0aW9uczogU29tZShNZW1vcnlDYWNoZU9wdGlvbnMgeyBjYWNoZV9zaXplOiAxMzQyMTc3MjggfSksIGZpbGVfY2FjaGVfb3B0aW9uczogU29tZShCbG9ja0Jhc2VkRmlsZUNhY2hlV3JpdGVPcHRpb25zIHsgcGVuZGluZ193cml0ZXNfcXVldWVfc2l6ZTogNTM2ODcwOTEyLCB3cml0ZXJfdGhyZWFkczogMTYgfSkgfSksIG1vdW50X21vZGU6IENyZWF0ZUFuZFdyaXRlIH0KMjAyMi0wOS0yM1QxNTozMzo0MC44OTU4MjRaICBJTkZPIG5ld3tvcHRpb25zPU1vdW50T3B0aW9ucyB7IGFsbG93X290aGVyOiB0cnVlLCBmdXNlX2NhY2hlX3RpbWVvdXQ6IDYwMHMsIHVubW91bnRfdGltZW91dDogMzBzIH19OiByc2xleF9mdXNlOjpmdXNlX2ZzOjpmdXNlX21vdW50OiBjbG9zZSB0aW1lLmJ1c3k9MTguM8K1cyB0aW1lLmlkbGU9MTAuNMK1cwoyMDIyLTA5LTIzVDE1OjMzOjQwLjg5NjE5OVogIElORk8gcnNsZXhfZnVzZTo6ZnVzZV9mczo6ZnVzZV9tb3VudDogW3JzbGV4LWZ1c2U6OkZ1c2VNb3VudDo6bW91bnRdIG1vdW50aW5nIGZpbGVzeXN0ZW0gd2l0aCBtb3VudCBhcmd1bWVudHMgWyJkYXRhc2V0X3ZvbHVtZV9tb3VudCIsICItbyIsICJhbGxvd19vdGhlciIsICItbyIsICJhdHRyX3RpbWVvdXQ9MCIsICItbyIsICJlbnRyeV90aW1lb3V0PTYwMCIsICItbyIsICJiaWdfd3JpdGVzIiwgIi1vIiwgImZzbmFtZT1yc2xleF92b2x1bWVfbW91bnRbQW1sRGF0YXN0b3JlXSJdLiBMaWJmdXNlIHZlcnNpb24gMjggZnVzZV9hcmd1bWVudHM9WyJkYXRhc2V0X3ZvbHVtZV9tb3VudCIsICItbyIsICJhbGxvd19vdGhlciIsICItbyIsICJhdHRyX3RpbWVvdXQ9MCIsICItbyIsICJlbnRyeV90aW1lb3V0PTYwMCIsICItbyIsICJiaWdfd3JpdGVzIiwgIi1vIiwgImZzbmFtZT1yc2xleF92b2x1bWVfbW91bnRbQW1sRGF0YXN0b3JlXSJdIGZ1c2VfdmVyc2lvbj0yOCBwaWQ9MjkgbW91bnRfcG9pbnQ9L21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvY2FwL2RhdGEtY2FwYWJpbGl0eS93ZC9jb21wb25lbnRfb3V0X3BhdGhfMQoyMDIyLTA5LTIzVDE1OjMzOjQxLjkwNTYzN1ogIElORk8gcnNsZXhfZnVzZTo6ZnVzZV9mczo6ZnVzZV9tb3VudDogW3JzbGV4LWZ1c2U6OkZ1c2VNb3VudDo6bW91bnRdIGZpbGVzeXN0ZW0gbW91bnRlZCBwaWQ9MjkgbW91bnRfcG9pbnQ9L21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvY2FwL2RhdGEtY2FwYWJpbGl0eS93ZC9jb21wb25lbnRfb3V0X3BhdGhfMQoyMDIyLTA5LTIzVDE1OjMzOjQ4LjU3ODQyN1ogIFdBUk4gcnNsZXhfaHR0cF9zdHJlYW06Omh0dHBfc2VydmljZV9jbGllbnQ6OmVycm9yX21hcHBlZF9odHRwX3NlcnZpY2VfY2xpZW50OiBbcnNsZXgtaHR0cC1zdHJlYW06Omh0dHBfc2VydmljZV9jbGllbnRdIG5vbi1zdWNjZXNzZnVsIHJlc3BvbnNlIGhvc3Q9c2F2NmRocnhleHdsdjdnLmJsb2IuY29yZS53aW5kb3dzLm5ldCBtZXRob2Q9SEVBRCBlcnJvcj1IdHRwU2VydmljZUVycm9yIHsgc2VydmljZTogImF6dXJlX2Jsb2IiLCBpbm5lcl9lcnJvcjogVGhlIHNwZWNpZmllZCBibG9iIGRvZXMgbm90IGV4aXN0LiB9IHNlcnZpY2VfcmVxdWVzdF9pZD1Tb21lKCIwZjkwMThhOC01MDFlLTAwMDEtNjg2MS1jZjE1ZGYwMDAwMDAiKQoyMDIyLTA5LTIzVDE1OjMzOjQ4LjYyNDYwMVogIElORk8gY29weTpkb19zZXF1ZW50aWFsX2NvcHl7ZmlsZV9zaXplPTEyfTogcnNsZXhfY29yZTo6ZmlsZV9pbzo6c3RyZWFtX2NvcGllcjogY2xvc2UgdGltZS5idXN5PTI2LjBtcyB0aW1lLmlkbGU9NC41MMK1cwoyMDIyLTA5LTIzVDE1OjMzOjQ4LjYyNDYzNFogIElORk8gY29weTogcnNsZXhfY29yZTo6ZmlsZV9pbzo6c3RyZWFtX2NvcGllcjogW1N0cmVhbUNvcGllcjo6Y29weSgpXSBjb3BpZWQgZmlsZSBzaXplPTEyIGhhbmRsZXI9IkxvY2FsIiBkZXN0aW5hdGlvbj1oZWxsb3dvcmxkLnR4dCBkdXJhdGlvbj0wLjAyNjA2ODYyMyBzZXF1ZW50aWFsPXRydWUKMjAyMi0wOS0yM1QxNTozMzo0OC42MjQ2OTBaICBJTkZPIGNvcHk6IHJzbGV4X2NvcmU6OmZpbGVfaW86OnN0cmVhbV9jb3BpZXI6IGNsb3NlIHRpbWUuYnVzeT0yNi4xbXMgdGltZS5pZGxlPTExLjTCtXMKMjAyMi0wOS0yM1QxNTozMzo0OC44MjUxODhaICBJTkZPIHJzbGV4X2Z1c2U6OmZ1c2VfZnM6OmZ1c2VfbW91bnQ6IFtyc2xleC1mdXNlOjpGdXNlTW91bnQ6OnVubW91bnRdIHN0YXJ0aW5nIGZpbGVzeXN0ZW0gdW5tb3VudCBwaWQ9MjkgbW91bnRfcG9pbnQ9L21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvY2FwL2RhdGEtY2FwYWJpbGl0eS93ZC9jb21wb25lbnRfb3V0X3BhdGhfMQoyMDIyLTA5LTIzVDE1OjMzOjQ4LjgyNTYyNFogIElORk8gcnNsZXhfZnVzZTo6ZnVzZV9mczo6ZnVzZV9tb3VudDo6ZnNfb3BlcmF0aW9uczogW3JzbGV4LWZ1c2U6OkZ1c2VNb3VudDo6ZGVzdHJveV0gZGVzdHJveWluZyBmaWxlIHN5c3RlbQoyMDIyLTA5LTIzVDE1OjMzOjQ4LjgyNTY2NFogIElORk8gcnNsZXhfZnVzZTo6ZGlyZWN0X3ZvbHVtZV9tb3VudDo6ZGlyZWN0X3ZvbHVtZV9tb3VudDogW3JzbGV4LWZ1c2U6OkRpcmVjdFZvbHVtZU9wdGlvbnM6OmRlc3Ryb3koKV0gZGVzdHJveWluZyBmaWxlc3lzdGVtIGhhbmRsZXI9QW1sRGF0YXN0b3JlIHBpZD0yOSBvcGVuZWRfZmlsZV9oYW5kbGVzPS0xIG1vdW50X3BvaW50PS9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2NhcC9kYXRhLWNhcGFiaWxpdHkvd2QvY29tcG9uZW50X291dF9wYXRoXzEKMjAyMi0wOS0yM1QxNTozMzo0OC44MjgyNjlaICBJTkZPIHJzbGV4X2Z1c2U6OmZ1c2VfZnM6OmZ1c2VfbW91bnQ6IFtyc2xleC1mdXNlOjpGdXNlTW91bnQ6OnVubW91bnRdIHN0YXJ0aW5nIGZpbGVzeXN0ZW0gdW5tb3VudCBwaWQ9MjkgbW91bnRfcG9pbnQ9L21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvY2FwL2RhdGEtY2FwYWJpbGl0eS93ZC9jb21wb25lbnRfb3V0X3BhdGhfMQoyMDIyLTA5LTIzVDE1OjMzOjQ4LjgzMjkzNlogIFdBUk4gcnNsZXhfZnVzZTo6ZnVzZV9mczo6ZnVzZV9tb3VudDogW3JzbGV4LWZ1c2U6OkZ1c2VNb3VudDo6dW5tb3VudF0gYXR0ZW1wdGVkIHRvIHVubW91bnQgbm90IG1vdW50ZWQgZmlsZSBzeXN0ZW0gcGlkPTI5IG1vdW50X3BvaW50PS9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2NhcC9kYXRhLWNhcGFiaWxpdHkvd2QvY29tcG9uZW50X291dF9wYXRoXzEKMjAyMi0wOS0yM1QxNTozMzo0OC44MzI5NjJaICBJTkZPIHJzbGV4X2Z1c2U6OmZ1c2VfZnM6OmZ1c2VfbW91bnQ6IFtyc2xleC1mdXNlOjpGdXNlRnM6OmRyb3BdCg==" + }, + { + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml/ExperimentRun/dcid.7599d23f-8164-4644-808e-e4e13b1efe1d/system_logs/hosttools_capability/hosttools-capability.log", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/xml", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:34:44 GMT", + "x-ms-range": "bytes=0-33554431", + "x-ms-version": "2021-08-06" + }, + "RequestBody": null, + "StatusCode": 206, + "ResponseHeaders": { + "Accept-Ranges": "bytes", + "Content-Disposition": "", + "Content-Length": "83301", + "Content-Range": "bytes 0-83300/83301", + "Content-Type": "application/octet-stream", + "Date": "Fri, 23 Sep 2022 15:34:41 GMT", + "ETag": "\u00220x8DA9D7902A5F6F9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:33:48 GMT", + "Server": [ + "Windows-Azure-Blob/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": "Origin", + "x-ms-blob-type": "BlockBlob", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:32:53 GMT", + "x-ms-lease-state": "available", + "x-ms-lease-status": "unlocked", + "x-ms-server-encrypted": "true", + "x-ms-version": "2021-08-06" + }, + "ResponseBody": "MjAyMi0wOS0yM1QxNTozMjo1Mi45NTU0MzVaICBJTkZPIHRlbGVtZXRyeTogam9iX3RlbGVtZXRyeV9pbml0IGFydGlmYWN0X3R5cGU9aW5zdGFsbGVkIGJyYW5jaD1vcmlnaW4vMWY0ODlkZWM0ZjU3MTE0ZDc2NzM2NGQwMmVkOTUyYTUyM2U4ZWJiYiBjaV9udW1iZXI9MjAyMjA5MTYuMSBjaV9uYW1lPUNvbW1vblJ1bnRpbWUtcHJvZC1idWlsZCBidWlsZF90aW1lPTIwMjItMDktMTYgMTA6MzU6MDQuMjQ5MTE0CjIwMjItMDktMjNUMTU6MzI6NTIuOTU1NDk3WiAgSU5GTyBob3N0dG9vbHMtY2FwYWJpbGl0eTo6ZG9fbWFpbjogaG9zdHRvb2xzX2NhcGFiaWxpdHk6OnJlc291cmNlX2xpbWl0OiBDdXJyZW50IGxpbWl0IGZvciBudW1iZXIgb2Ygb3BlbiBmaWxlOiBzb2Z0PTI2MjE0NCwgaGFyZD0yNjIxNDQgc29mdF9saW1pdD0yNjIxNDQgaGFyZF9saW1pdD0yNjIxNDQKMjAyMi0wOS0yM1QxNTozMjo1Mi45NTU1NjBaICBJTkZPIGhvc3R0b29scy1jYXBhYmlsaXR5Ojpkb19tYWluOiBjcl9jb3JlOiBTdWNjZXNzZnVsbHkgY29uZmlndXJlZCBjdXJyZW50IHByb2Nlc3MgdG8gaWdub3JlIHRlcm1pbmF0aW9uIHNpZ25hbHMKMjAyMi0wOS0yM1QxNTozMjo1Mi45NTU1NzVaICBJTkZPIGhvc3R0b29scy1jYXBhYmlsaXR5Ojpkb19tYWluOiBob3N0dG9vbHNfY2FwYWJpbGl0eTogSG9zdHRvb2xzIGNhcCBjb25maWcgaHRfY2FwX2NvbmZpZz17ImRpcnMiOlt7InJlbGF0aXZlX3BhdGgiOiJ1c2VyX2xvZ3MiLCJlbnZpcm9ubWVudF9uYW1lIjoiQVpVUkVNTF9DUl9IVF9DQVBfdXNlcl9sb2dzX1BBVEgiLCJzdHJlYW1hYmxlIjp0cnVlfSx7InJlbGF0aXZlX3BhdGgiOiJhenVyZW1sLWxvZ3MiLCJlbnZpcm9ubWVudF9uYW1lIjoiQVpVUkVNTF9DUl9IVF9DQVBfYXp1cmVtbF9sb2dzX1BBVEgiLCJzdHJlYW1hYmxlIjp0cnVlfSx7InJlbGF0aXZlX3BhdGgiOiJvdXRwdXRzIiwiZW52aXJvbm1lbnRfbmFtZSI6IkFaVVJFTUxfQ1JfSFRfQ0FQX291dHB1dHNfUEFUSCIsInN0cmVhbWFibGUiOmZhbHNlfSx7InJlbGF0aXZlX3BhdGgiOiJsb2dzIiwiZW52aXJvbm1lbnRfbmFtZSI6IkFaVVJFTUxfQ1JfSFRfQ0FQX2xvZ3NfUEFUSCIsInN0cmVhbWFibGUiOnRydWV9XSwibWV0cmljcyI6eyJlbmFibGVkIjpmYWxzZSwicG9sbGluZ19pbnRlcnZhbF9zZWMiOjMwLCJzZW5kX3RvX2hpc3RvcnlfaW50ZXJ2YWxfc2VjIjo2MH0sInVzZV9ibG9ja19ibG9iX2luX2Jsb2Jfc3RyZWFtZXIiOnRydWUsImxvZ19maWx0ZXJpbmdfcG9saWN5IjpudWxsfQoyMDIyLTA5LTIzVDE1OjMyOjUyLjk1NTY1MFogIElORk8gaG9zdHRvb2xzLWNhcGFiaWxpdHk6OmRvX21haW46aG9zdHRvb2xzLWNhcGFiaWxpdHkucGFyc2VfY29uZmlnOiBjcl9jb3JlOjpjb25maWdfcGFyc2VyOiBGYWlsZWQgdG8gZ2V0IGRpc3RyaWJ1dGVkIGNvbmZpZyBmcm9tIGVudiBleGNlcHRpb249R2V0RW52VmFyRmFpbGVkKCJBWlVSRU1MX0NSX0RJU1RSSUJVVEVEX0NPTkZJRyIpCjIwMjItMDktMjNUMTU6MzI6NTIuOTU1ODA2WiAgSU5GTyBob3N0dG9vbHMtY2FwYWJpbGl0eTo6ZG9fbWFpbjpob3N0dG9vbHMtY2FwYWJpbGl0eS5wYXJzZV9jb25maWc6IGhvc3R0b29sc19jYXBhYmlsaXR5Ojpjb25maWdfcGFyc2VyOiBhcHBpbnNpZ2h0cyBpbnN0cnVtZW50YXRpb24ga2V5IGlzIHNldCBpbiB0ZWxlbWV0cnkgY29uZmlnCjIwMjItMDktMjNUMTU6MzI6NTIuOTU1ODgwWiAgSU5GTyBob3N0dG9vbHMtY2FwYWJpbGl0eTo6ZG9fbWFpbjpob3N0dG9vbHMtY2FwYWJpbGl0eS5wYXJzZV9jb25maWc6aG9zdHRvb2xzLWNhcGFiaWxpdHkuYWRkX2NlcnRfZW52X3ZhcnNfZnJvbV9maWxle3BhdGg9Ii9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2NhcC9ob3N0dG9vbHMtY2FwYWJpbGl0eS93ZC9jZXJ0X2luZm8udHh0In06IGhvc3R0b29sc19jYXBhYmlsaXR5Ojpjb25maWdfcGFyc2VyOiBDZXJ0IGVudnMgZnJvbSBjZXJ0X2ZpbGUgd2FzIHN1Y2Nlc3NmdWwKMjAyMi0wOS0yM1QxNTozMjo1Mi45NTU4OTZaICBJTkZPIGhvc3R0b29scy1jYXBhYmlsaXR5Ojpkb19tYWluOmhvc3R0b29scy1jYXBhYmlsaXR5LnBhcnNlX2NvbmZpZzpob3N0dG9vbHMtY2FwYWJpbGl0eS5hZGRfY2VydF9lbnZfdmFyc19mcm9tX2ZpbGV7cGF0aD0iL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvY2FwL2hvc3R0b29scy1jYXBhYmlsaXR5L3dkL2NlcnRfaW5mby50eHQifTogaG9zdHRvb2xzX2NhcGFiaWxpdHk6OmNvbmZpZ19wYXJzZXI6IGNsb3NlIHRpbWUuYnVzeT01OS4ywrVzIHRpbWUuaWRsZT05LjMwwrVzCjIwMjItMDktMjNUMTU6MzI6NTIuOTU1OTEzWiAgSU5GTyBob3N0dG9vbHMtY2FwYWJpbGl0eTo6ZG9fbWFpbjpob3N0dG9vbHMtY2FwYWJpbGl0eS5wYXJzZV9jb25maWc6IGhvc3R0b29sc19jYXBhYmlsaXR5Ojpjb25maWdfcGFyc2VyOiBjbG9zZSB0aW1lLmJ1c3k9MzE2wrVzIHRpbWUuaWRsZT00LjkwwrVzCjIwMjItMDktMjNUMTU6MzI6NTIuOTc2NTQ3WiAgSU5GTyBob3N0dG9vbHMtY2FwYWJpbGl0eTo6ZG9fbWFpbjpob3N0dG9vbHMtY2FwYWJpbGl0eS5zdGFydF9ob3N0dG9vbHN7dGFzaz0ib3V0cHV0TWFuYWdlciJ9OiBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBjaGlsZCBzcGF3bmVkIGNoaWxkPUNoaWxkIHsgY2hpbGQ6IENoaWxkKENoaWxkRHJvcEd1YXJkIHsgaW5uZXI6IENoaWxkIHsgcGlkOiAxMCB9LCBraWxsX29uX2Ryb3A6IGZhbHNlIH0pLCBzdGRpbjogTm9uZSwgc3Rkb3V0OiBTb21lKENoaWxkU3Rkb3V0IHsgaW5uZXI6IFBvbGxFdmVudGVkIHsgaW86IFNvbWUoUGlwZSB7IGZkOiBGaWxlIHsgZmQ6IDEwLCBwYXRoOiAicGlwZTpbMTQ1NDQyXSIsIHJlYWQ6IHRydWUsIHdyaXRlOiBmYWxzZSB9IH0pIH0gfSksIHN0ZGVycjogU29tZShDaGlsZFN0ZGVyciB7IGlubmVyOiBQb2xsRXZlbnRlZCB7IGlvOiBTb21lKFBpcGUgeyBmZDogRmlsZSB7IGZkOiAxMiwgcGF0aDogInBpcGU6WzE0NTQ0M10iLCByZWFkOiB0cnVlLCB3cml0ZTogZmFsc2UgfSB9KSB9IH0pIH0KMjAyMi0wOS0yM1QxNTozMjo1Mi45NzY4NjBaICBJTkZPIGhvc3R0b29scy1jYXBhYmlsaXR5Ojpkb19tYWluOmhvc3R0b29scy1jYXBhYmlsaXR5LnN0YXJ0X2hvc3R0b29sc3t0YXNrPSJvdXRwdXRNYW5hZ2VyIn06IGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IGNsb3NlIHRpbWUuYnVzeT0yMC44bXMgdGltZS5pZGxlPTUuNDDCtXMKMjAyMi0wOS0yM1QxNTozMjo1Mi45NzczNThaICBJTkZPIGhvc3R0b29scy1jYXBhYmlsaXR5Ojpkb19tYWluOiBob3N0dG9vbHNfY2FwYWJpbGl0eTogU3RhcnRpbmcgZ1JQQyBzZXJ2ZXIgYXQgc2VydmVyX2FkZHI9L21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvLmdycGMvaG9zdHRvb2xzLWNhcGFiaWxpdHk6MAoyMDIyLTA5LTIzVDE1OjMyOjUyLjk3NzM4MFogIElORk8gaG9zdHRvb2xzLWNhcGFiaWxpdHk6OmRvX21haW46IGhvc3R0b29sc19jYXBhYmlsaXR5OjpzZXJ2aWNlOiBzZXJ2aW5nIGNhcGFiaWxpdHkgc2VydmljZSBhdCBhZGRyZXNzPS9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1Ly5ncnBjL2hvc3R0b29scy1jYXBhYmlsaXR5OjAKMjAyMi0wOS0yM1QxNTozMjo1Mi45ODA5ODVaICBJTkZPIGhvc3R0b29scy1jYXBhYmlsaXR5Ojpkb19tYWluOnNlcnZlOiBncnBjX3V0aWxzOjplbmRwb2ludDo6c2VydmU6IHNlcnZpbmcgZ1JQQyBzZXJ2aWNlIGVuZHBvaW50PVVkcygiL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvLmdycGMvaG9zdHRvb2xzLWNhcGFiaWxpdHk6MCIpIHJldHJ5PUV4cG9uZW50aWFsQmFja29mZlJldHJ5IHsgcmV0cnlfZGVsYXlfc2VjczogMiwgZGVsYXlfZmFjdG9yOiAxMDAwLCBudW1fcmV0cmllczogMyB9CjIwMjItMDktMjNUMTU6MzI6NTMuMTQ2MDE2WiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6IDIwMjIvMDkvMjMgMTU6MzI6NTMgRXJyb3Igb3BlbmluZyBlbnYgZmlsZTogIG9wZW4gTFNfcm9vdC9qb2JzL2NvbmZpZy8uZHluYW1pY19jb25maWc6IG5vIHN1Y2ggZmlsZSBvciBkaXJlY3RvcnkgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIyMDIyLzA5LzIzIDE1OjMyOjUzIEVycm9yIG9wZW5pbmcgZW52IGZpbGU6ICBvcGVuIExTX3Jvb3Qvam9icy9jb25maWcvLmR5bmFtaWNfY29uZmlnOiBubyBzdWNoIGZpbGUgb3IgZGlyZWN0b3J5IgoyMDIyLTA5LTIzVDE1OjMyOjUzLjE1MDU2N1ogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAyMDIyLzA5LzIzIDE1OjMyOjUzIFNjcnViYmVyIGlzIG5vdCBpbml0aWFsaXplLCBTeXN0ZW0gTG9nIHdpbGwgYmUgZGlzYWJsZWQgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIyMDIyLzA5LzIzIDE1OjMyOjUzIFNjcnViYmVyIGlzIG5vdCBpbml0aWFsaXplLCBTeXN0ZW0gTG9nIHdpbGwgYmUgZGlzYWJsZWQiCjIwMjItMDktMjNUMTU6MzI6NTMuMTU4NTI0WiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6IDIwMjIvMDkvMjMgMTU6MzI6NTMgU3RhcnRpbmcgQXBwIEluc2lnaHQgTG9nZ2VyIGZvciB0YXNrOiAgb3V0cHV0TWFuYWdlciBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IjIwMjIvMDkvMjMgMTU6MzI6NTMgU3RhcnRpbmcgQXBwIEluc2lnaHQgTG9nZ2VyIGZvciB0YXNrOiAgb3V0cHV0TWFuYWdlciIKMjAyMi0wOS0yM1QxNTozMjo1My4xNTg2ODVaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogMjAyMi8wOS8yMyAxNTozMjo1MyBWZXJzaW9uOiAgQnJhbmNoOiAgQ29tbWl0OiAgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIyMDIyLzA5LzIzIDE1OjMyOjUzIFZlcnNpb246ICBCcmFuY2g6ICBDb21taXQ6ICIKMjAyMi0wOS0yM1QxNTozMjo1My4xNjQxMTRaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogMjAyMi8wOS8yMyAxNTozMjo1MyBJcyBsYXVuY2hlZCBmcm9tIGNvbW1vbiBydW50aW1lPzogdHJ1ZSBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IjIwMjIvMDkvMjMgMTU6MzI6NTMgSXMgbGF1bmNoZWQgZnJvbSBjb21tb24gcnVudGltZT86IHRydWUiCjIwMjItMDktMjNUMTU6MzI6NTMuMTY0OTkzWiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6IDIwMjIvMDkvMjMgMTU6MzI6NTMgU29mdCBybGltaXQgaXMgMjYyMTQ0IGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iMjAyMi8wOS8yMyAxNTozMjo1MyBTb2Z0IHJsaW1pdCBpcyAyNjIxNDQiCjIwMjItMDktMjNUMTU6MzI6NTMuMTY1MTAwWiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6IDIwMjIvMDkvMjMgMTU6MzI6NTMgU2V0dGluZyBzb2Z0IHJsaW1pdCB0byAxMDQ4NTc2IGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iMjAyMi8wOS8yMyAxNTozMjo1MyBTZXR0aW5nIHNvZnQgcmxpbWl0IHRvIDEwNDg1NzYiCjIwMjItMDktMjNUMTU6MzI6NTMuMTY1MjA4WiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6IDIwMjIvMDkvMjMgMTU6MzI6NTMgcmxpbWl0IGlzIG5vdyB7MjYyMTQ0IDI2MjE0NH0gY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIyMDIyLzA5LzIzIDE1OjMyOjUzIHJsaW1pdCBpcyBub3cgezI2MjE0NCAyNjIxNDR9IgoyMDIyLTA5LTIzVDE1OjMyOjUzLjE2NTQ0MlogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAyMDIyLzA5LzIzIDE1OjMyOjUzIEFaVVJFTUxfQ1JfSFRfT1VUUFVUX0RJUkVDVE9SSUVTOiBbeyJJZCI6InVzZXJfbG9ncyIsIlBhdGgiOiIvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS9leGUvd2QvdXNlcl9sb2dzIiwiU3RyZWFtYWJsZSI6dHJ1ZX0seyJJZCI6ImF6dXJlbWwtbG9ncyIsIlBhdGgiOiIvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS9leGUvd2QvYXp1cmVtbC1sb2dzIiwiU3RyZWFtYWJsZSI6dHJ1ZX0seyJJZCI6Im91dHB1dHMiLCJQYXRoIjoiL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvZXhlL3dkL291dHB1dHMiLCJTdHJlYW1hYmxlIjpmYWxzZX0seyJJZCI6ImxvZ3MiLCJQYXRoIjoiL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvZXhlL3dkL2xvZ3MiLCJTdHJlYW1hYmxlIjp0cnVlfSx7IklkIjoiZGF0YV9jYXBhYmlsaXR5IiwiUGF0aCI6Ii9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2NhcC9kYXRhLWNhcGFiaWxpdHkvd2QvLmF6dXJlbWxfY3JfbG9nIiwiU3RyZWFtYWJsZSI6dHJ1ZX0seyJJZCI6InNuYXBzaG90X2NhcGFiaWxpdHkiLCJQYXRoIjoiL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvY2FwL3NuYXBzaG90LWNhcGFiaWxpdHkvd2QvLmF6dXJlbWxfY3JfbG9nIiwiU3RyZWFtYWJsZSI6dHJ1ZX0seyJJZCI6ImxpZmVjeWNsZXIiLCJQYXRoIjoiL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvY2FwL2xpZmVjeWNsZXIvd2QvLmF6dXJlbWxfY3JfbG9nIiwiU3RyZWFtYWJsZSI6dHJ1ZX0seyJJZCI6Im1ldHJpY3NfY2FwYWJpbGl0eSIsIlBhdGgiOiIvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS9jYXAvbWV0cmljcy1jYXBhYmlsaXR5L3dkLy5henVyZW1sX2NyX2xvZyIsIlN0cmVhbWFibGUiOnRydWV9LHsiSWQiOiJjc19jYXBhYmlsaXR5IiwiUGF0aCI6Ii9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2NhcC9jcy1jYXBhYmlsaXR5L3dkLy5henVyZW1sX2NyX2xvZyIsIlN0cmVhbWFibGUiOnRydWV9LHsiSWQiOiJob3N0dG9vbHNfY2FwYWJpbGl0eSIsIlBhdGgiOiIvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS9jYXAvaG9zdHRvb2xzLWNhcGFiaWxpdHkvd2QvLmF6dXJlbWxfY3JfbG9nIiwiU3RyZWFtYWJsZSI6dHJ1ZX1dIGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iMjAyMi8wOS8yMyAxNTozMjo1MyBBWlVSRU1MX0NSX0hUX09VVFBVVF9ESVJFQ1RPUklFUzogW3tcIklkXCI6XCJ1c2VyX2xvZ3NcIixcIlBhdGhcIjpcIi9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2V4ZS93ZC91c2VyX2xvZ3NcIixcIlN0cmVhbWFibGVcIjp0cnVlfSx7XCJJZFwiOlwiYXp1cmVtbC1sb2dzXCIsXCJQYXRoXCI6XCIvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS9leGUvd2QvYXp1cmVtbC1sb2dzXCIsXCJTdHJlYW1hYmxlXCI6dHJ1ZX0se1wiSWRcIjpcIm91dHB1dHNcIixcIlBhdGhcIjpcIi9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2V4ZS93ZC9vdXRwdXRzXCIsXCJTdHJlYW1hYmxlXCI6ZmFsc2V9LHtcIklkXCI6XCJsb2dzXCIsXCJQYXRoXCI6XCIvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS9leGUvd2QvbG9nc1wiLFwiU3RyZWFtYWJsZVwiOnRydWV9LHtcIklkXCI6XCJkYXRhX2NhcGFiaWxpdHlcIixcIlBhdGhcIjpcIi9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2NhcC9kYXRhLWNhcGFiaWxpdHkvd2QvLmF6dXJlbWxfY3JfbG9nXCIsXCJTdHJlYW1hYmxlXCI6dHJ1ZX0se1wiSWRcIjpcInNuYXBzaG90X2NhcGFiaWxpdHlcIixcIlBhdGhcIjpcIi9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2NhcC9zbmFwc2hvdC1jYXBhYmlsaXR5L3dkLy5henVyZW1sX2NyX2xvZ1wiLFwiU3RyZWFtYWJsZVwiOnRydWV9LHtcIklkXCI6XCJsaWZlY3ljbGVyXCIsXCJQYXRoXCI6XCIvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS9jYXAvbGlmZWN5Y2xlci93ZC8uYXp1cmVtbF9jcl9sb2dcIixcIlN0cmVhbWFibGVcIjp0cnVlfSx7XCJJZFwiOlwibWV0cmljc19jYXBhYmlsaXR5XCIsXCJQYXRoXCI6XCIvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS9jYXAvbWV0cmljcy1jYXBhYmlsaXR5L3dkLy5henVyZW1sX2NyX2xvZ1wiLFwiU3RyZWFtYWJsZVwiOnRydWV9LHtcIklkXCI6XCJjc19jYXBhYmlsaXR5XCIsXCJQYXRoXCI6XCIvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS9jYXAvY3MtY2FwYWJpbGl0eS93ZC8uYXp1cmVtbF9jcl9sb2dcIixcIlN0cmVhbWFibGVcIjp0cnVlfSx7XCJJZFwiOlwiaG9zdHRvb2xzX2NhcGFiaWxpdHlcIixcIlBhdGhcIjpcIi9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2NhcC9ob3N0dG9vbHMtY2FwYWJpbGl0eS93ZC8uYXp1cmVtbF9jcl9sb2dcIixcIlN0cmVhbWFibGVcIjp0cnVlfV0iCjIwMjItMDktMjNUMTU6MzI6NTMuMTY1OTgzWiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6IDIwMjIvMDkvMjMgMTU6MzI6NTMgQVpVUkVNTF9DUl9IVF9PVVRQVVRfRElSRUNUT1JJRVM6IFt7IklkIjoidXNlcl9sb2dzIiwiUGF0aCI6Ii9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2V4ZS93ZC91c2VyX2xvZ3MiLCJTdHJlYW1hYmxlIjp0cnVlfSx7IklkIjoiYXp1cmVtbC1sb2dzIiwiUGF0aCI6Ii9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2V4ZS93ZC9henVyZW1sLWxvZ3MiLCJTdHJlYW1hYmxlIjp0cnVlfSx7IklkIjoib3V0cHV0cyIsIlBhdGgiOiIvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS9leGUvd2Qvb3V0cHV0cyIsIlN0cmVhbWFibGUiOmZhbHNlfSx7IklkIjoibG9ncyIsIlBhdGgiOiIvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS9leGUvd2QvbG9ncyIsIlN0cmVhbWFibGUiOnRydWV9LHsiSWQiOiJkYXRhX2NhcGFiaWxpdHkiLCJQYXRoIjoiL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvY2FwL2RhdGEtY2FwYWJpbGl0eS93ZC8uYXp1cmVtbF9jcl9sb2ciLCJTdHJlYW1hYmxlIjp0cnVlfSx7IklkIjoic25hcHNob3RfY2FwYWJpbGl0eSIsIlBhdGgiOiIvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS9jYXAvc25hcHNob3QtY2FwYWJpbGl0eS93ZC8uYXp1cmVtbF9jcl9sb2ciLCJTdHJlYW1hYmxlIjp0cnVlfSx7IklkIjoibGlmZWN5Y2xlciIsIlBhdGgiOiIvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS9jYXAvbGlmZWN5Y2xlci93ZC8uYXp1cmVtbF9jcl9sb2ciLCJTdHJlYW1hYmxlIjp0cnVlfSx7IklkIjoibWV0cmljc19jYXBhYmlsaXR5IiwiUGF0aCI6Ii9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2NhcC9tZXRyaWNzLWNhcGFiaWxpdHkvd2QvLmF6dXJlbWxfY3JfbG9nIiwiU3RyZWFtYWJsZSI6dHJ1ZX0seyJJZCI6ImNzX2NhcGFiaWxpdHkiLCJQYXRoIjoiL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvY2FwL2NzLWNhcGFiaWxpdHkvd2QvLmF6dXJlbWxfY3JfbG9nIiwiU3RyZWFtYWJsZSI6dHJ1ZX0seyJJZCI6Imhvc3R0b29sc19jYXBhYmlsaXR5IiwiUGF0aCI6Ii9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2NhcC9ob3N0dG9vbHMtY2FwYWJpbGl0eS93ZC8uYXp1cmVtbF9jcl9sb2ciLCJTdHJlYW1hYmxlIjp0cnVlfV0gY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIyMDIyLzA5LzIzIDE1OjMyOjUzIEFaVVJFTUxfQ1JfSFRfT1VUUFVUX0RJUkVDVE9SSUVTOiBbe1wiSWRcIjpcInVzZXJfbG9nc1wiLFwiUGF0aFwiOlwiL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvZXhlL3dkL3VzZXJfbG9nc1wiLFwiU3RyZWFtYWJsZVwiOnRydWV9LHtcIklkXCI6XCJhenVyZW1sLWxvZ3NcIixcIlBhdGhcIjpcIi9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2V4ZS93ZC9henVyZW1sLWxvZ3NcIixcIlN0cmVhbWFibGVcIjp0cnVlfSx7XCJJZFwiOlwib3V0cHV0c1wiLFwiUGF0aFwiOlwiL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvZXhlL3dkL291dHB1dHNcIixcIlN0cmVhbWFibGVcIjpmYWxzZX0se1wiSWRcIjpcImxvZ3NcIixcIlBhdGhcIjpcIi9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2V4ZS93ZC9sb2dzXCIsXCJTdHJlYW1hYmxlXCI6dHJ1ZX0se1wiSWRcIjpcImRhdGFfY2FwYWJpbGl0eVwiLFwiUGF0aFwiOlwiL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvY2FwL2RhdGEtY2FwYWJpbGl0eS93ZC8uYXp1cmVtbF9jcl9sb2dcIixcIlN0cmVhbWFibGVcIjp0cnVlfSx7XCJJZFwiOlwic25hcHNob3RfY2FwYWJpbGl0eVwiLFwiUGF0aFwiOlwiL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvY2FwL3NuYXBzaG90LWNhcGFiaWxpdHkvd2QvLmF6dXJlbWxfY3JfbG9nXCIsXCJTdHJlYW1hYmxlXCI6dHJ1ZX0se1wiSWRcIjpcImxpZmVjeWNsZXJcIixcIlBhdGhcIjpcIi9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2NhcC9saWZlY3ljbGVyL3dkLy5henVyZW1sX2NyX2xvZ1wiLFwiU3RyZWFtYWJsZVwiOnRydWV9LHtcIklkXCI6XCJtZXRyaWNzX2NhcGFiaWxpdHlcIixcIlBhdGhcIjpcIi9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2NhcC9tZXRyaWNzLWNhcGFiaWxpdHkvd2QvLmF6dXJlbWxfY3JfbG9nXCIsXCJTdHJlYW1hYmxlXCI6dHJ1ZX0se1wiSWRcIjpcImNzX2NhcGFiaWxpdHlcIixcIlBhdGhcIjpcIi9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2NhcC9jcy1jYXBhYmlsaXR5L3dkLy5henVyZW1sX2NyX2xvZ1wiLFwiU3RyZWFtYWJsZVwiOnRydWV9LHtcIklkXCI6XCJob3N0dG9vbHNfY2FwYWJpbGl0eVwiLFwiUGF0aFwiOlwiL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvY2FwL2hvc3R0b29scy1jYXBhYmlsaXR5L3dkLy5henVyZW1sX2NyX2xvZ1wiLFwiU3RyZWFtYWJsZVwiOnRydWV9XSIKMjAyMi0wOS0yM1QxNTozMjo1My4xNjc2ODFaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogMjAyMi8wOS8yMyAxNTozMjo1MyBBWlVSRU1MX0NSX0hUX0xPR19GSUxURVJJTkdfUE9MSUNZOiAgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIyMDIyLzA5LzIzIDE1OjMyOjUzIEFaVVJFTUxfQ1JfSFRfTE9HX0ZJTFRFUklOR19QT0xJQ1k6ICIKMjAyMi0wOS0yM1QxNTozMjo1My4xOTA5MjZaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogMjAyMi8wOS8yMyAxNTozMjo1MyBBWlVSRU1MX0NSX0hUX0xPR19GSUxURVJJTkdfUE9MSUNZOiAgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIyMDIyLzA5LzIzIDE1OjMyOjUzIEFaVVJFTUxfQ1JfSFRfTE9HX0ZJTFRFUklOR19QT0xJQ1k6ICIKMjAyMi0wOS0yM1QxNTozMjo1My4yMjI4MTlaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogMjAyMi8wOS8yMyAxNTozMjo1MyBGYWlsZWQgdG8gUGFyc2UgQm9vbCBvbiBjb21tb25zLklzRGVkaWNhdGVkQ29tcHV0ZSBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IjIwMjIvMDkvMjMgMTU6MzI6NTMgRmFpbGVkIHRvIFBhcnNlIEJvb2wgb24gY29tbW9ucy5Jc0RlZGljYXRlZENvbXB1dGUiCjIwMjItMDktMjNUMTU6MzI6NTMuMjI0ODQ0WiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6IDIwMjIvMDkvMjMgMTU6MzI6NTMgU2tpcCB3YXRjaGluZyBqb2IgdGVtcCBmdWxsIGxvZyBjYWNoZSBkaXIgYXMgY3VycmVudCBvdXRwdXQgbWFuYWdlciBpcyBsYXVuY2hlZCBieSBjb21tb24gcnVudGltZSBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IjIwMjIvMDkvMjMgMTU6MzI6NTMgU2tpcCB3YXRjaGluZyBqb2IgdGVtcCBmdWxsIGxvZyBjYWNoZSBkaXIgYXMgY3VycmVudCBvdXRwdXQgbWFuYWdlciBpcyBsYXVuY2hlZCBieSBjb21tb24gcnVudGltZSIKMjAyMi0wOS0yM1QxNTozMjo1My4yMjU5MjVaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogMjAyMi8wOS8yMyAxNTozMjo1MyBTa2lwcGluZyBkaXNrIGNoZWNrIGR1ZSB0byBlcnI6IEVwaGVtZXJhbCBEaXNrIHBhdGggbm90IHNldCBieSBCYXRjaC4gY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIyMDIyLzA5LzIzIDE1OjMyOjUzIFNraXBwaW5nIGRpc2sgY2hlY2sgZHVlIHRvIGVycjogRXBoZW1lcmFsIERpc2sgcGF0aCBub3Qgc2V0IGJ5IEJhdGNoLiIKMjAyMi0wOS0yM1QxNTozMjo1My4yMjYyNjlaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogMjAyMi8wOS8yMyAxNTozMjo1MyBzdGFydCB3YXRjaGluZyBkaXJlY3RvcnkgTFNfcm9vdC9qb2JzL3dkLy50bXAsIHN0cmVhbWFibGU6IHRydWUgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIyMDIyLzA5LzIzIDE1OjMyOjUzIHN0YXJ0IHdhdGNoaW5nIGRpcmVjdG9yeSBMU19yb290L2pvYnMvd2QvLnRtcCwgc3RyZWFtYWJsZTogdHJ1ZSIKMjAyMi0wOS0yM1QxNTozMjo1My4yMjYzNTdaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogMjAyMi8wOS8yMyAxNTozMjo1MyBXZSBoYXZlIHRvIHJlZnJlc2ggdGhlIGRpciBvbmUgbW9yZSB0aW1lIGJlZm9yZSB3ZSBzdG9wIHRoZSB3YXRjaCBEaXJlY3RvcnkgTFNfcm9vdC9qb2JzL3dkLy50bXAgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIyMDIyLzA5LzIzIDE1OjMyOjUzIFdlIGhhdmUgdG8gcmVmcmVzaCB0aGUgZGlyIG9uZSBtb3JlIHRpbWUgYmVmb3JlIHdlIHN0b3AgdGhlIHdhdGNoIERpcmVjdG9yeSBMU19yb290L2pvYnMvd2QvLnRtcCIKMjAyMi0wOS0yM1QxNTozMjo1My4yMjY0MzhaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogMjAyMi8wOS8yMyAxNTozMjo1MyBmaWxlIExTX3Jvb3Qvam9icy93ZC8udG1wIGRvZXMgbm90IGV4aXN0IGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iMjAyMi8wOS8yMyAxNTozMjo1MyBmaWxlIExTX3Jvb3Qvam9icy93ZC8udG1wIGRvZXMgbm90IGV4aXN0IgoyMDIyLTA5LTIzVDE1OjMyOjUzLjIyNjUxOFogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAyMDIyLzA5LzIzIDE1OjMyOjUzIHN0YXJ0IHdhdGNoaW5nIGRpcmVjdG9yeSAvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS9leGUvd2QvdXNlcl9sb2dzLCBzdHJlYW1hYmxlOiB0cnVlIGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iMjAyMi8wOS8yMyAxNTozMjo1MyBzdGFydCB3YXRjaGluZyBkaXJlY3RvcnkgL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvZXhlL3dkL3VzZXJfbG9ncywgc3RyZWFtYWJsZTogdHJ1ZSIKMjAyMi0wOS0yM1QxNTozMjo1My4yMjY4NjVaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogMjAyMi8wOS8yMyAxNTozMjo1MyBXZSBoYXZlIHRvIHJlZnJlc2ggdGhlIGRpciBvbmUgbW9yZSB0aW1lIGJlZm9yZSB3ZSBzdG9wIHRoZSB3YXRjaCBEaXJlY3RvcnkgL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvZXhlL3dkL3VzZXJfbG9ncyBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IjIwMjIvMDkvMjMgMTU6MzI6NTMgV2UgaGF2ZSB0byByZWZyZXNoIHRoZSBkaXIgb25lIG1vcmUgdGltZSBiZWZvcmUgd2Ugc3RvcCB0aGUgd2F0Y2ggRGlyZWN0b3J5IC9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2V4ZS93ZC91c2VyX2xvZ3MiCjIwMjItMDktMjNUMTU6MzI6NTMuMjI2OTI4WiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6IDIwMjIvMDkvMjMgMTU6MzI6NTMgc3RhcnQgd2F0Y2hpbmcgZGlyZWN0b3J5IC9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2V4ZS93ZC9henVyZW1sLWxvZ3MsIHN0cmVhbWFibGU6IHRydWUgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIyMDIyLzA5LzIzIDE1OjMyOjUzIHN0YXJ0IHdhdGNoaW5nIGRpcmVjdG9yeSAvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS9leGUvd2QvYXp1cmVtbC1sb2dzLCBzdHJlYW1hYmxlOiB0cnVlIgoyMDIyLTA5LTIzVDE1OjMyOjUzLjIyNjk3NVogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAyMDIyLzA5LzIzIDE1OjMyOjUzIFdlIGhhdmUgdG8gcmVmcmVzaCB0aGUgZGlyIG9uZSBtb3JlIHRpbWUgYmVmb3JlIHdlIHN0b3AgdGhlIHdhdGNoIERpcmVjdG9yeSAvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS9leGUvd2QvYXp1cmVtbC1sb2dzIGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iMjAyMi8wOS8yMyAxNTozMjo1MyBXZSBoYXZlIHRvIHJlZnJlc2ggdGhlIGRpciBvbmUgbW9yZSB0aW1lIGJlZm9yZSB3ZSBzdG9wIHRoZSB3YXRjaCBEaXJlY3RvcnkgL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvZXhlL3dkL2F6dXJlbWwtbG9ncyIKMjAyMi0wOS0yM1QxNTozMjo1My4yMjcwMjJaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogMjAyMi8wOS8yMyAxNTozMjo1MyBzdGFydCB3YXRjaGluZyBkaXJlY3RvcnkgL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvZXhlL3dkL291dHB1dHMsIHN0cmVhbWFibGU6IGZhbHNlIGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iMjAyMi8wOS8yMyAxNTozMjo1MyBzdGFydCB3YXRjaGluZyBkaXJlY3RvcnkgL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvZXhlL3dkL291dHB1dHMsIHN0cmVhbWFibGU6IGZhbHNlIgoyMDIyLTA5LTIzVDE1OjMyOjUzLjIyNzA2NlogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAyMDIyLzA5LzIzIDE1OjMyOjUzIFdlIGhhdmUgdG8gcmVmcmVzaCB0aGUgZGlyIG9uZSBtb3JlIHRpbWUgYmVmb3JlIHdlIHN0b3AgdGhlIHdhdGNoIERpcmVjdG9yeSAvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS9leGUvd2Qvb3V0cHV0cyBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IjIwMjIvMDkvMjMgMTU6MzI6NTMgV2UgaGF2ZSB0byByZWZyZXNoIHRoZSBkaXIgb25lIG1vcmUgdGltZSBiZWZvcmUgd2Ugc3RvcCB0aGUgd2F0Y2ggRGlyZWN0b3J5IC9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2V4ZS93ZC9vdXRwdXRzIgoyMDIyLTA5LTIzVDE1OjMyOjUzLjIyNzEyMlogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAyMDIyLzA5LzIzIDE1OjMyOjUzIHN0YXJ0IHdhdGNoaW5nIGRpcmVjdG9yeSAvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS9leGUvd2QvbG9ncywgc3RyZWFtYWJsZTogdHJ1ZSBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IjIwMjIvMDkvMjMgMTU6MzI6NTMgc3RhcnQgd2F0Y2hpbmcgZGlyZWN0b3J5IC9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2V4ZS93ZC9sb2dzLCBzdHJlYW1hYmxlOiB0cnVlIgoyMDIyLTA5LTIzVDE1OjMyOjUzLjIyNzE2NFogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAyMDIyLzA5LzIzIDE1OjMyOjUzIFdlIGhhdmUgdG8gcmVmcmVzaCB0aGUgZGlyIG9uZSBtb3JlIHRpbWUgYmVmb3JlIHdlIHN0b3AgdGhlIHdhdGNoIERpcmVjdG9yeSAvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS9leGUvd2QvbG9ncyBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IjIwMjIvMDkvMjMgMTU6MzI6NTMgV2UgaGF2ZSB0byByZWZyZXNoIHRoZSBkaXIgb25lIG1vcmUgdGltZSBiZWZvcmUgd2Ugc3RvcCB0aGUgd2F0Y2ggRGlyZWN0b3J5IC9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2V4ZS93ZC9sb2dzIgoyMDIyLTA5LTIzVDE1OjMyOjUzLjIyNzIwN1ogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAyMDIyLzA5LzIzIDE1OjMyOjUzIHN0YXJ0IHdhdGNoaW5nIGRpcmVjdG9yeSAvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS9jYXAvZGF0YS1jYXBhYmlsaXR5L3dkLy5henVyZW1sX2NyX2xvZywgc3RyZWFtYWJsZTogdHJ1ZSBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IjIwMjIvMDkvMjMgMTU6MzI6NTMgc3RhcnQgd2F0Y2hpbmcgZGlyZWN0b3J5IC9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2NhcC9kYXRhLWNhcGFiaWxpdHkvd2QvLmF6dXJlbWxfY3JfbG9nLCBzdHJlYW1hYmxlOiB0cnVlIgoyMDIyLTA5LTIzVDE1OjMyOjUzLjIyNzI0OVogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAyMDIyLzA5LzIzIDE1OjMyOjUzIFdlIGhhdmUgdG8gcmVmcmVzaCB0aGUgZGlyIG9uZSBtb3JlIHRpbWUgYmVmb3JlIHdlIHN0b3AgdGhlIHdhdGNoIERpcmVjdG9yeSAvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS9jYXAvZGF0YS1jYXBhYmlsaXR5L3dkLy5henVyZW1sX2NyX2xvZyBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IjIwMjIvMDkvMjMgMTU6MzI6NTMgV2UgaGF2ZSB0byByZWZyZXNoIHRoZSBkaXIgb25lIG1vcmUgdGltZSBiZWZvcmUgd2Ugc3RvcCB0aGUgd2F0Y2ggRGlyZWN0b3J5IC9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2NhcC9kYXRhLWNhcGFiaWxpdHkvd2QvLmF6dXJlbWxfY3JfbG9nIgoyMDIyLTA5LTIzVDE1OjMyOjUzLjIyNzI5OFogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAyMDIyLzA5LzIzIDE1OjMyOjUzIGZpbGUgL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvY2FwL2RhdGEtY2FwYWJpbGl0eS93ZC8uYXp1cmVtbF9jcl9sb2cgZG9lcyBub3QgZXhpc3QgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIyMDIyLzA5LzIzIDE1OjMyOjUzIGZpbGUgL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvY2FwL2RhdGEtY2FwYWJpbGl0eS93ZC8uYXp1cmVtbF9jcl9sb2cgZG9lcyBub3QgZXhpc3QiCjIwMjItMDktMjNUMTU6MzI6NTMuMjI4MTg5WiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6IDIwMjIvMDkvMjMgMTU6MzI6NTMgSW5pdGlhbCB0b2tlbiBleHBpcmVzIGF0ICAxOTcwLTAxLTAxIDAwOjAwOjAwICswMDAwIFVUQyBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IjIwMjIvMDkvMjMgMTU6MzI6NTMgSW5pdGlhbCB0b2tlbiBleHBpcmVzIGF0ICAxOTcwLTAxLTAxIDAwOjAwOjAwICswMDAwIFVUQyIKMjAyMi0wOS0yM1QxNTozMjo1My4yMjgzODhaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogMjAyMi8wOS8yMyAxNTozMjo1MyBSZWZyZXNoaW5nIFRva2VuIGZyb20gaGlzdG9yeSBzZXJ2ZXIgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIyMDIyLzA5LzIzIDE1OjMyOjUzIFJlZnJlc2hpbmcgVG9rZW4gZnJvbSBoaXN0b3J5IHNlcnZlciIKMjAyMi0wOS0yM1QxNTozMjo1My4yMjg2MDVaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogMjAyMi8wOS8yMyAxNTozMjo1MyBBdHRlbXB0IDEgb2YgaHR0cCBjYWxsIHRvIGh0dHBzOi8vZWFzdHVzMi5hcGkuYXp1cmVtbC5tcy9oaXN0b3J5L3YxLjAvc3Vic2NyaXB0aW9ucy85NmFlZGUxMi0yZjczLTQxY2ItYjk4My02ZDExYTkwNDgzOWIvcmVzb3VyY2VHcm91cHMvemhlbmdmZWktdGVzdC1lYXN0dXMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nU2VydmljZXMvd29ya3NwYWNlcy9zZGtfdm5leHRfY2xpL2V4cGVyaW1lbnRzL2F6dXJlLWFpLW1sL3J1bnMvNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkL3Rva2VuIGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iMjAyMi8wOS8yMyAxNTozMjo1MyBBdHRlbXB0IDEgb2YgaHR0cCBjYWxsIHRvIGh0dHBzOi8vZWFzdHVzMi5hcGkuYXp1cmVtbC5tcy9oaXN0b3J5L3YxLjAvc3Vic2NyaXB0aW9ucy85NmFlZGUxMi0yZjczLTQxY2ItYjk4My02ZDExYTkwNDgzOWIvcmVzb3VyY2VHcm91cHMvemhlbmdmZWktdGVzdC1lYXN0dXMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nU2VydmljZXMvd29ya3NwYWNlcy9zZGtfdm5leHRfY2xpL2V4cGVyaW1lbnRzL2F6dXJlLWFpLW1sL3J1bnMvNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkL3Rva2VuIgoyMDIyLTA5LTIzVDE1OjMyOjUzLjIyODc5N1ogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAyMDIyLzA5LzIzIDE1OjMyOjUzIHN0YXJ0IHdhdGNoaW5nIGRpcmVjdG9yeSAvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS9jYXAvbGlmZWN5Y2xlci93ZC8uYXp1cmVtbF9jcl9sb2csIHN0cmVhbWFibGU6IHRydWUgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIyMDIyLzA5LzIzIDE1OjMyOjUzIHN0YXJ0IHdhdGNoaW5nIGRpcmVjdG9yeSAvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS9jYXAvbGlmZWN5Y2xlci93ZC8uYXp1cmVtbF9jcl9sb2csIHN0cmVhbWFibGU6IHRydWUiCjIwMjItMDktMjNUMTU6MzI6NTMuMjMzMjA1WiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6IDIwMjIvMDkvMjMgMTU6MzI6NTMgV2UgaGF2ZSB0byByZWZyZXNoIHRoZSBkaXIgb25lIG1vcmUgdGltZSBiZWZvcmUgd2Ugc3RvcCB0aGUgd2F0Y2ggRGlyZWN0b3J5IC9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2NhcC9saWZlY3ljbGVyL3dkLy5henVyZW1sX2NyX2xvZyBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IjIwMjIvMDkvMjMgMTU6MzI6NTMgV2UgaGF2ZSB0byByZWZyZXNoIHRoZSBkaXIgb25lIG1vcmUgdGltZSBiZWZvcmUgd2Ugc3RvcCB0aGUgd2F0Y2ggRGlyZWN0b3J5IC9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2NhcC9saWZlY3ljbGVyL3dkLy5henVyZW1sX2NyX2xvZyIKMjAyMi0wOS0yM1QxNTozMjo1My4yNDkxMDBaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogMjAyMi8wOS8yMyAxNTozMjo1MyBzdGFydCB3YXRjaGluZyBkaXJlY3RvcnkgL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvY2FwL21ldHJpY3MtY2FwYWJpbGl0eS93ZC8uYXp1cmVtbF9jcl9sb2csIHN0cmVhbWFibGU6IHRydWUgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIyMDIyLzA5LzIzIDE1OjMyOjUzIHN0YXJ0IHdhdGNoaW5nIGRpcmVjdG9yeSAvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS9jYXAvbWV0cmljcy1jYXBhYmlsaXR5L3dkLy5henVyZW1sX2NyX2xvZywgc3RyZWFtYWJsZTogdHJ1ZSIKMjAyMi0wOS0yM1QxNTozMjo1My4yNDkyMDVaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogMjAyMi8wOS8yMyAxNTozMjo1MyBXZSBoYXZlIHRvIHJlZnJlc2ggdGhlIGRpciBvbmUgbW9yZSB0aW1lIGJlZm9yZSB3ZSBzdG9wIHRoZSB3YXRjaCBEaXJlY3RvcnkgL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvY2FwL21ldHJpY3MtY2FwYWJpbGl0eS93ZC8uYXp1cmVtbF9jcl9sb2cgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIyMDIyLzA5LzIzIDE1OjMyOjUzIFdlIGhhdmUgdG8gcmVmcmVzaCB0aGUgZGlyIG9uZSBtb3JlIHRpbWUgYmVmb3JlIHdlIHN0b3AgdGhlIHdhdGNoIERpcmVjdG9yeSAvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS9jYXAvbWV0cmljcy1jYXBhYmlsaXR5L3dkLy5henVyZW1sX2NyX2xvZyIKMjAyMi0wOS0yM1QxNTozMjo1My4yNDkzNThaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogMjAyMi8wOS8yMyAxNTozMjo1MyBmaWxlIC9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2NhcC9tZXRyaWNzLWNhcGFiaWxpdHkvd2QvLmF6dXJlbWxfY3JfbG9nIGRvZXMgbm90IGV4aXN0IGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iMjAyMi8wOS8yMyAxNTozMjo1MyBmaWxlIC9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2NhcC9tZXRyaWNzLWNhcGFiaWxpdHkvd2QvLmF6dXJlbWxfY3JfbG9nIGRvZXMgbm90IGV4aXN0IgoyMDIyLTA5LTIzVDE1OjMyOjUzLjI0OTQxN1ogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAyMDIyLzA5LzIzIDE1OjMyOjUzIHN0YXJ0IHdhdGNoaW5nIGRpcmVjdG9yeSAvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS9jYXAvY3MtY2FwYWJpbGl0eS93ZC8uYXp1cmVtbF9jcl9sb2csIHN0cmVhbWFibGU6IHRydWUgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIyMDIyLzA5LzIzIDE1OjMyOjUzIHN0YXJ0IHdhdGNoaW5nIGRpcmVjdG9yeSAvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS9jYXAvY3MtY2FwYWJpbGl0eS93ZC8uYXp1cmVtbF9jcl9sb2csIHN0cmVhbWFibGU6IHRydWUiCjIwMjItMDktMjNUMTU6MzI6NTMuMjQ5NTc1WiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6IDIwMjIvMDkvMjMgMTU6MzI6NTMgV2UgaGF2ZSB0byByZWZyZXNoIHRoZSBkaXIgb25lIG1vcmUgdGltZSBiZWZvcmUgd2Ugc3RvcCB0aGUgd2F0Y2ggRGlyZWN0b3J5IC9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2NhcC9jcy1jYXBhYmlsaXR5L3dkLy5henVyZW1sX2NyX2xvZyBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IjIwMjIvMDkvMjMgMTU6MzI6NTMgV2UgaGF2ZSB0byByZWZyZXNoIHRoZSBkaXIgb25lIG1vcmUgdGltZSBiZWZvcmUgd2Ugc3RvcCB0aGUgd2F0Y2ggRGlyZWN0b3J5IC9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2NhcC9jcy1jYXBhYmlsaXR5L3dkLy5henVyZW1sX2NyX2xvZyIKMjAyMi0wOS0yM1QxNTozMjo1My4yNDk2MzRaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogMjAyMi8wOS8yMyAxNTozMjo1MyBmaWxlIC9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2NhcC9jcy1jYXBhYmlsaXR5L3dkLy5henVyZW1sX2NyX2xvZyBkb2VzIG5vdCBleGlzdCBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IjIwMjIvMDkvMjMgMTU6MzI6NTMgZmlsZSAvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS9jYXAvY3MtY2FwYWJpbGl0eS93ZC8uYXp1cmVtbF9jcl9sb2cgZG9lcyBub3QgZXhpc3QiCjIwMjItMDktMjNUMTU6MzI6NTMuMjQ5NzE4WiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6IDIwMjIvMDkvMjMgMTU6MzI6NTMgc3RhcnQgd2F0Y2hpbmcgZGlyZWN0b3J5IC9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2NhcC9ob3N0dG9vbHMtY2FwYWJpbGl0eS93ZC8uYXp1cmVtbF9jcl9sb2csIHN0cmVhbWFibGU6IHRydWUgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIyMDIyLzA5LzIzIDE1OjMyOjUzIHN0YXJ0IHdhdGNoaW5nIGRpcmVjdG9yeSAvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS9jYXAvaG9zdHRvb2xzLWNhcGFiaWxpdHkvd2QvLmF6dXJlbWxfY3JfbG9nLCBzdHJlYW1hYmxlOiB0cnVlIgoyMDIyLTA5LTIzVDE1OjMyOjUzLjI0OTgxMlogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAyMDIyLzA5LzIzIDE1OjMyOjUzIFdlIGhhdmUgdG8gcmVmcmVzaCB0aGUgZGlyIG9uZSBtb3JlIHRpbWUgYmVmb3JlIHdlIHN0b3AgdGhlIHdhdGNoIERpcmVjdG9yeSAvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS9jYXAvaG9zdHRvb2xzLWNhcGFiaWxpdHkvd2QvLmF6dXJlbWxfY3JfbG9nIGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iMjAyMi8wOS8yMyAxNTozMjo1MyBXZSBoYXZlIHRvIHJlZnJlc2ggdGhlIGRpciBvbmUgbW9yZSB0aW1lIGJlZm9yZSB3ZSBzdG9wIHRoZSB3YXRjaCBEaXJlY3RvcnkgL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvY2FwL2hvc3R0b29scy1jYXBhYmlsaXR5L3dkLy5henVyZW1sX2NyX2xvZyIKMjAyMi0wOS0yM1QxNTozMjo1My4yNDk5NTdaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogMjAyMi8wOS8yMyAxNTozMjo1MyBOZXcgZmlsZSBkZXRlY3RlZDogL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvY2FwL2hvc3R0b29scy1jYXBhYmlsaXR5L3dkLy5henVyZW1sX2NyX2xvZy9ob3N0dG9vbHMtY2FwYWJpbGl0eS5sb2cgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIyMDIyLzA5LzIzIDE1OjMyOjUzIE5ldyBmaWxlIGRldGVjdGVkOiAvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS9jYXAvaG9zdHRvb2xzLWNhcGFiaWxpdHkvd2QvLmF6dXJlbWxfY3JfbG9nL2hvc3R0b29scy1jYXBhYmlsaXR5LmxvZyIKMjAyMi0wOS0yM1QxNTozMjo1My4yNTAwMjJaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogMjAyMi8wOS8yMyAxNTozMjo1MyBSZXF1ZXN0aW5nIFBPU1Q6IFt7c3lzdGVtX2xvZ3MvaG9zdHRvb2xzX2NhcGFiaWxpdHkvaG9zdHRvb2xzLWNhcGFiaWxpdHkubG9nfV0gY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIyMDIyLzA5LzIzIDE1OjMyOjUzIFJlcXVlc3RpbmcgUE9TVDogW3tzeXN0ZW1fbG9ncy9ob3N0dG9vbHNfY2FwYWJpbGl0eS9ob3N0dG9vbHMtY2FwYWJpbGl0eS5sb2d9XSIKMjAyMi0wOS0yM1QxNTozMjo1My4yNTAxMTdaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogMjAyMi8wOS8yMyAxNTozMjo1MyBBdHRlbXB0IDEgb2YgaHR0cCBjYWxsIHRvIGh0dHBzOi8vZWFzdHVzMi5hcGkuYXp1cmVtbC5tcy9hcnRpZmFjdC92Mi4wL3N1YnNjcmlwdGlvbnMvOTZhZWRlMTItMmY3My00MWNiLWI5ODMtNmQxMWE5MDQ4MzliL3Jlc291cmNlR3JvdXBzL3poZW5nZmVpLXRlc3QtZWFzdHVzMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZ1NlcnZpY2VzL3dvcmtzcGFjZXMvc2RrX3ZuZXh0X2NsaS9hcnRpZmFjdHMvYmF0Y2gvbWV0YWRhdGEvRXhwZXJpbWVudFJ1bi9kY2lkLjc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IjIwMjIvMDkvMjMgMTU6MzI6NTMgQXR0ZW1wdCAxIG9mIGh0dHAgY2FsbCB0byBodHRwczovL2Vhc3R1czIuYXBpLmF6dXJlbWwubXMvYXJ0aWZhY3QvdjIuMC9zdWJzY3JpcHRpb25zLzk2YWVkZTEyLTJmNzMtNDFjYi1iOTgzLTZkMTFhOTA0ODM5Yi9yZXNvdXJjZUdyb3Vwcy96aGVuZ2ZlaS10ZXN0LWVhc3R1czIvcHJvdmlkZXJzL01pY3Jvc29mdC5NYWNoaW5lTGVhcm5pbmdTZXJ2aWNlcy93b3Jrc3BhY2VzL3Nka192bmV4dF9jbGkvYXJ0aWZhY3RzL2JhdGNoL21ldGFkYXRhL0V4cGVyaW1lbnRSdW4vZGNpZC43NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQiCjIwMjItMDktMjNUMTU6MzI6NTMuMjYwNjgyWiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6IDIwMjIvMDkvMjMgMTU6MzI6NTMgc3RhcnQgd2F0Y2hpbmcgZGlyZWN0b3J5IC9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2NhcC9zbmFwc2hvdC1jYXBhYmlsaXR5L3dkLy5henVyZW1sX2NyX2xvZywgc3RyZWFtYWJsZTogdHJ1ZSBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IjIwMjIvMDkvMjMgMTU6MzI6NTMgc3RhcnQgd2F0Y2hpbmcgZGlyZWN0b3J5IC9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2NhcC9zbmFwc2hvdC1jYXBhYmlsaXR5L3dkLy5henVyZW1sX2NyX2xvZywgc3RyZWFtYWJsZTogdHJ1ZSIKMjAyMi0wOS0yM1QxNTozMjo1My4yNjY5MjlaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogMjAyMi8wOS8yMyAxNTozMjo1MyBXZSBoYXZlIHRvIHJlZnJlc2ggdGhlIGRpciBvbmUgbW9yZSB0aW1lIGJlZm9yZSB3ZSBzdG9wIHRoZSB3YXRjaCBEaXJlY3RvcnkgL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvY2FwL3NuYXBzaG90LWNhcGFiaWxpdHkvd2QvLmF6dXJlbWxfY3JfbG9nIGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iMjAyMi8wOS8yMyAxNTozMjo1MyBXZSBoYXZlIHRvIHJlZnJlc2ggdGhlIGRpciBvbmUgbW9yZSB0aW1lIGJlZm9yZSB3ZSBzdG9wIHRoZSB3YXRjaCBEaXJlY3RvcnkgL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvY2FwL3NuYXBzaG90LWNhcGFiaWxpdHkvd2QvLmF6dXJlbWxfY3JfbG9nIgoyMDIyLTA5LTIzVDE1OjMyOjUzLjI2Njk4MFogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAyMDIyLzA5LzIzIDE1OjMyOjUzIGZpbGUgL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvY2FwL3NuYXBzaG90LWNhcGFiaWxpdHkvd2QvLmF6dXJlbWxfY3JfbG9nIGRvZXMgbm90IGV4aXN0IGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iMjAyMi8wOS8yMyAxNTozMjo1MyBmaWxlIC9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2NhcC9zbmFwc2hvdC1jYXBhYmlsaXR5L3dkLy5henVyZW1sX2NyX2xvZyBkb2VzIG5vdCBleGlzdCIKMjAyMi0wOS0yM1QxNTozMjo1My4yNjgwMTBaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogMjAyMi8wOS8yMyAxNTozMjo1MyBOZXcgZmlsZSBkZXRlY3RlZDogL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvY2FwL2xpZmVjeWNsZXIvd2QvLmF6dXJlbWxfY3JfbG9nL2xpZmVjeWNsZXIubG9nIGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iMjAyMi8wOS8yMyAxNTozMjo1MyBOZXcgZmlsZSBkZXRlY3RlZDogL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvY2FwL2xpZmVjeWNsZXIvd2QvLmF6dXJlbWxfY3JfbG9nL2xpZmVjeWNsZXIubG9nIgoyMDIyLTA5LTIzVDE1OjMyOjUzLjI2ODE1NFogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAyMDIyLzA5LzIzIDE1OjMyOjUzIFJlcXVlc3RpbmcgUE9TVDogW3tzeXN0ZW1fbG9ncy9saWZlY3ljbGVyL2xpZmVjeWNsZXIubG9nfV0gY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIyMDIyLzA5LzIzIDE1OjMyOjUzIFJlcXVlc3RpbmcgUE9TVDogW3tzeXN0ZW1fbG9ncy9saWZlY3ljbGVyL2xpZmVjeWNsZXIubG9nfV0iCjIwMjItMDktMjNUMTU6MzI6NTMuMjY4MjM1WiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6IDIwMjIvMDkvMjMgMTU6MzI6NTMgQXR0ZW1wdCAxIG9mIGh0dHAgY2FsbCB0byBodHRwczovL2Vhc3R1czIuYXBpLmF6dXJlbWwubXMvYXJ0aWZhY3QvdjIuMC9zdWJzY3JpcHRpb25zLzk2YWVkZTEyLTJmNzMtNDFjYi1iOTgzLTZkMTFhOTA0ODM5Yi9yZXNvdXJjZUdyb3Vwcy96aGVuZ2ZlaS10ZXN0LWVhc3R1czIvcHJvdmlkZXJzL01pY3Jvc29mdC5NYWNoaW5lTGVhcm5pbmdTZXJ2aWNlcy93b3Jrc3BhY2VzL3Nka192bmV4dF9jbGkvYXJ0aWZhY3RzL2JhdGNoL21ldGFkYXRhL0V4cGVyaW1lbnRSdW4vZGNpZC43NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIyMDIyLzA5LzIzIDE1OjMyOjUzIEF0dGVtcHQgMSBvZiBodHRwIGNhbGwgdG8gaHR0cHM6Ly9lYXN0dXMyLmFwaS5henVyZW1sLm1zL2FydGlmYWN0L3YyLjAvc3Vic2NyaXB0aW9ucy85NmFlZGUxMi0yZjczLTQxY2ItYjk4My02ZDExYTkwNDgzOWIvcmVzb3VyY2VHcm91cHMvemhlbmdmZWktdGVzdC1lYXN0dXMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nU2VydmljZXMvd29ya3NwYWNlcy9zZGtfdm5leHRfY2xpL2FydGlmYWN0cy9iYXRjaC9tZXRhZGF0YS9FeHBlcmltZW50UnVuL2RjaWQuNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkIgoyMDIyLTA5LTIzVDE1OjMyOjUzLjY1NjQwOVogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAyMDIyLzA5LzIzIDE1OjMyOjUzIE5ldyB0b2tlbiBleHBpcmVzIGF0ICAyMDIyLTA5LTI0IDE1OjMyOjUzLjY1NTg4MzcgKzAwMDAgVVRDIGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iMjAyMi8wOS8yMyAxNTozMjo1MyBOZXcgdG9rZW4gZXhwaXJlcyBhdCAgMjAyMi0wOS0yNCAxNTozMjo1My42NTU4ODM3ICswMDAwIFVUQyIKMjAyMi0wOS0yM1QxNTozMjo1My43MDA4NDJaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogMjAyMi8wOS8yMyAxNTozMjo1MyBTdWNjZXNmdWxseSBQT1NUIGFydGlmYWN0czogW3tzeXN0ZW1fbG9ncy9saWZlY3ljbGVyL2xpZmVjeWNsZXIubG9nfV0gY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIyMDIyLzA5LzIzIDE1OjMyOjUzIFN1Y2Nlc2Z1bGx5IFBPU1QgYXJ0aWZhY3RzOiBbe3N5c3RlbV9sb2dzL2xpZmVjeWNsZXIvbGlmZWN5Y2xlci5sb2d9XSIKMjAyMi0wOS0yM1QxNTozMjo1My43MDA5MTVaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogMjAyMi8wOS8yMyAxNTozMjo1MyBTdWNjZXNmdWxseSBQT1NUIGFydGlmYWN0czogW3tzeXN0ZW1fbG9ncy9ob3N0dG9vbHNfY2FwYWJpbGl0eS9ob3N0dG9vbHMtY2FwYWJpbGl0eS5sb2d9XSBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IjIwMjIvMDkvMjMgMTU6MzI6NTMgU3VjY2VzZnVsbHkgUE9TVCBhcnRpZmFjdHM6IFt7c3lzdGVtX2xvZ3MvaG9zdHRvb2xzX2NhcGFiaWxpdHkvaG9zdHRvb2xzLWNhcGFiaWxpdHkubG9nfV0iCjIwMjItMDktMjNUMTU6MzI6NTMuNzAwOTM2WiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6IDIwMjIvMDkvMjMgMTU6MzI6NTMgUmVjZWl2ZWQgZnJvbSBhcnRpZmFjdCBzdmM6IHsgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIyMDIyLzA5LzIzIDE1OjMyOjUzIFJlY2VpdmVkIGZyb20gYXJ0aWZhY3Qgc3ZjOiB7IgoyMDIyLTA5LTIzVDE1OjMyOjUzLjcwMDk1MlogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAgICJhcnRpZmFjdHMiOiB7IGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iICBcImFydGlmYWN0c1wiOiB7IgoyMDIyLTA5LTIzVDE1OjMyOjUzLjcwMDk3N1ogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAgICAgInN5c3RlbV9sb2dzL2hvc3R0b29sc19jYXBhYmlsaXR5L2hvc3R0b29scy1jYXBhYmlsaXR5LmxvZyI6IHsgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIgICAgXCJzeXN0ZW1fbG9ncy9ob3N0dG9vbHNfY2FwYWJpbGl0eS9ob3N0dG9vbHMtY2FwYWJpbGl0eS5sb2dcIjogeyIKMjAyMi0wOS0yM1QxNTozMjo1My43MDA5OTNaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogICAgICAgImFydGlmYWN0SWQiOiAiRXhwZXJpbWVudFJ1bi9kY2lkLjc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZC9zeXN0ZW1fbG9ncy9ob3N0dG9vbHNfY2FwYWJpbGl0eS9ob3N0dG9vbHMtY2FwYWJpbGl0eS5sb2ciLCBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IiAgICAgIFwiYXJ0aWZhY3RJZFwiOiBcIkV4cGVyaW1lbnRSdW4vZGNpZC43NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQvc3lzdGVtX2xvZ3MvaG9zdHRvb2xzX2NhcGFiaWxpdHkvaG9zdHRvb2xzLWNhcGFiaWxpdHkubG9nXCIsIgoyMDIyLTA5LTIzVDE1OjMyOjUzLjcwMTAxMVogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAgICAgICAib3JpZ2luIjogIkV4cGVyaW1lbnRSdW4iLCBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IiAgICAgIFwib3JpZ2luXCI6IFwiRXhwZXJpbWVudFJ1blwiLCIKMjAyMi0wOS0yM1QxNTozMjo1My43MDEwMjdaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogICAgICAgImNvbnRhaW5lciI6ICJkY2lkLjc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCIsIGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iICAgICAgXCJjb250YWluZXJcIjogXCJkY2lkLjc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZFwiLCIKMjAyMi0wOS0yM1QxNTozMjo1My43MDEwNDJaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogICAgICAgInBhdGgiOiAic3lzdGVtX2xvZ3MvaG9zdHRvb2xzX2NhcGFiaWxpdHkvaG9zdHRvb2xzLWNhcGFiaWxpdHkubG9nIiwgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIgICAgICBcInBhdGhcIjogXCJzeXN0ZW1fbG9ncy9ob3N0dG9vbHNfY2FwYWJpbGl0eS9ob3N0dG9vbHMtY2FwYWJpbGl0eS5sb2dcIiwiCjIwMjItMDktMjNUMTU6MzI6NTMuNzAxMDU3WiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6ICAgICAgICJldGFnIjogIlwiZmUwYzBmNGYtMDAwMC0wMjAwLTAwMDAtNjMyZGQxYTUwMDAwXCIiLCBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IiAgICAgIFwiZXRhZ1wiOiBcIlxcXCJmZTBjMGY0Zi0wMDAwLTAyMDAtMDAwMC02MzJkZDFhNTAwMDBcXFwiXCIsIgoyMDIyLTA5LTIzVDE1OjMyOjUzLjcwMTA3MVogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAgICAgICAiY3JlYXRlZFRpbWUiOiAiMjAyMi0wOS0yM1QxNTozMjo1My42NTkxNzEzKzAwOjAwIiwgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIgICAgICBcImNyZWF0ZWRUaW1lXCI6IFwiMjAyMi0wOS0yM1QxNTozMjo1My42NTkxNzEzKzAwOjAwXCIsIgoyMDIyLTA5LTIzVDE1OjMyOjUzLjcwMTA4NVogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAgICAgICAiZGF0YVBhdGgiOiBudWxsLCBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IiAgICAgIFwiZGF0YVBhdGhcIjogbnVsbCwiCjIwMjItMDktMjNUMTU6MzI6NTMuNzAxMDk3WiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6ICAgICAgICJ0YWdzIjoge30gY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIgICAgICBcInRhZ3NcIjoge30iCjIwMjItMDktMjNUMTU6MzI6NTMuNzAxMTA5WiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6ICAgICB9IGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iICAgIH0iCjIwMjItMDktMjNUMTU6MzI6NTMuNzAxMTIxWiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6ICAgfSwgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIgIH0sIgoyMDIyLTA5LTIzVDE1OjMyOjUzLjcwMTEzMlogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAgICJhcnRpZmFjdENvbnRlbnRJbmZvcm1hdGlvbiI6IHsgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIgIFwiYXJ0aWZhY3RDb250ZW50SW5mb3JtYXRpb25cIjogeyIKMjAyMi0wOS0yM1QxNTozMjo1My43MDExNTFaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogICAgICJzeXN0ZW1fbG9ncy9ob3N0dG9vbHNfY2FwYWJpbGl0eS9ob3N0dG9vbHMtY2FwYWJpbGl0eS5sb2ciOiB7IGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iICAgIFwic3lzdGVtX2xvZ3MvaG9zdHRvb2xzX2NhcGFiaWxpdHkvaG9zdHRvb2xzLWNhcGFiaWxpdHkubG9nXCI6IHsiCjIwMjItMDktMjNUMTU6MzI6NTMuNzAxMTY1WiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6ICAgICAgICJjb250ZW50VXJpIjogImh0dHBzOi8vc2F2NmRocnhleHdsdjdnLmJsb2IuY29yZS53aW5kb3dzLm5ldC9henVyZW1sL0V4cGVyaW1lbnRSdW4vZGNpZC43NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQvc3lzdGVtX2xvZ3MvaG9zdHRvb2xzX2NhcGFiaWxpdHkvaG9zdHRvb2xzLWNhcGFiaWxpdHkubG9nP3N2PTIwMTktMDctMDcmc3I9YiZzaWc9RTJQSTVLcEw0akdFTkx5WUhjJTJGUDY3SE5LRzdjSWs2b3NUT1Q3NFd3VWhFJTNEJnNrb2lkPWNhZjRmYzNkLWFkMWMtNDMyOC05OGE5LTJjNjFlOTI1NmIzZCZza3RpZD03MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcmc2t0PTIwMjItMDktMjNUMTUlM0EwOSUzQTI5WiZza2U9MjAyMi0wOS0yNFQyMyUzQTE5JTNBMjlaJnNrcz1iJnNrdj0yMDE5LTA3LTA3JnN0PTIwMjItMDktMjNUMTUlM0EyMiUzQTUzWiZzZT0yMDIyLTA5LTI0VDE1JTNBMzIlM0E1M1omc3A9cmN3IiwgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIgICAgICBcImNvbnRlbnRVcmlcIjogXCJodHRwczovL3NhdjZkaHJ4ZXh3bHY3Zy5ibG9iLmNvcmUud2luZG93cy5uZXQvYXp1cmVtbC9FeHBlcmltZW50UnVuL2RjaWQuNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkL3N5c3RlbV9sb2dzL2hvc3R0b29sc19jYXBhYmlsaXR5L2hvc3R0b29scy1jYXBhYmlsaXR5LmxvZz9zdj0yMDE5LTA3LTA3JnNyPWImc2lnPUUyUEk1S3BMNGpHRU5MeVlIYyUyRlA2N0hOS0c3Y0lrNm9zVE9UNzRXd1VoRSUzRCZza29pZD1jYWY0ZmMzZC1hZDFjLTQzMjgtOThhOS0yYzYxZTkyNTZiM2Qmc2t0aWQ9NzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3JnNrdD0yMDIyLTA5LTIzVDE1JTNBMDklM0EyOVomc2tlPTIwMjItMDktMjRUMjMlM0ExOSUzQTI5WiZza3M9YiZza3Y9MjAxOS0wNy0wNyZzdD0yMDIyLTA5LTIzVDE1JTNBMjIlM0E1M1omc2U9MjAyMi0wOS0yNFQxNSUzQTMyJTNBNTNaJnNwPXJjd1wiLCIKMjAyMi0wOS0yM1QxNTozMjo1My43MDEyMDNaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogICAgICAgIm9yaWdpbiI6ICJFeHBlcmltZW50UnVuIiwgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIgICAgICBcIm9yaWdpblwiOiBcIkV4cGVyaW1lbnRSdW5cIiwiCjIwMjItMDktMjNUMTU6MzI6NTMuNzAxMjE1WiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6ICAgICAgICJjb250YWluZXIiOiAiZGNpZC43NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQiLCBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IiAgICAgIFwiY29udGFpbmVyXCI6IFwiZGNpZC43NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWRcIiwiCjIwMjItMDktMjNUMTU6MzI6NTMuNzAxMjMwWiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6ICAgICAgICJwYXRoIjogInN5c3RlbV9sb2dzL2hvc3R0b29sc19jYXBhYmlsaXR5L2hvc3R0b29scy1jYXBhYmlsaXR5LmxvZyIsIGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iICAgICAgXCJwYXRoXCI6IFwic3lzdGVtX2xvZ3MvaG9zdHRvb2xzX2NhcGFiaWxpdHkvaG9zdHRvb2xzLWNhcGFiaWxpdHkubG9nXCIsIgoyMDIyLTA5LTIzVDE1OjMyOjUzLjcwMTI0NFogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAgICAgICAidGFncyI6IHt9IGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iICAgICAgXCJ0YWdzXCI6IHt9IgoyMDIyLTA5LTIzVDE1OjMyOjUzLjcwMTI1NlogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAgICAgfSBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IiAgICB9IgoyMDIyLTA5LTIzVDE1OjMyOjUzLjcwMTI2N1ogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAgIH0sIGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iICB9LCIKMjAyMi0wOS0yM1QxNTozMjo1My43MDEyNzlaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogICAiZXJyb3JzIjoge30gY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIgIFwiZXJyb3JzXCI6IHt9IgoyMDIyLTA5LTIzVDE1OjMyOjUzLjcwMTI5MVogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiB9IGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0ifSIKMjAyMi0wOS0yM1QxNTozMjo1My43MDEzMDZaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogMjAyMi8wOS8yMyAxNTozMjo1MyBSZWNlaXZlZCBmcm9tIGFydGlmYWN0IHN2YzogeyBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IjIwMjIvMDkvMjMgMTU6MzI6NTMgUmVjZWl2ZWQgZnJvbSBhcnRpZmFjdCBzdmM6IHsiCjIwMjItMDktMjNUMTU6MzI6NTMuNzAxMzE5WiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6ICAgImFydGlmYWN0cyI6IHsgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIgIFwiYXJ0aWZhY3RzXCI6IHsiCjIwMjItMDktMjNUMTU6MzI6NTMuNzAxMzMyWiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6ICAgICAic3lzdGVtX2xvZ3MvbGlmZWN5Y2xlci9saWZlY3ljbGVyLmxvZyI6IHsgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIgICAgXCJzeXN0ZW1fbG9ncy9saWZlY3ljbGVyL2xpZmVjeWNsZXIubG9nXCI6IHsiCjIwMjItMDktMjNUMTU6MzI6NTMuNzAxMzQ1WiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6ICAgICAgICJhcnRpZmFjdElkIjogIkV4cGVyaW1lbnRSdW4vZGNpZC43NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQvc3lzdGVtX2xvZ3MvbGlmZWN5Y2xlci9saWZlY3ljbGVyLmxvZyIsIGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iICAgICAgXCJhcnRpZmFjdElkXCI6IFwiRXhwZXJpbWVudFJ1bi9kY2lkLjc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZC9zeXN0ZW1fbG9ncy9saWZlY3ljbGVyL2xpZmVjeWNsZXIubG9nXCIsIgoyMDIyLTA5LTIzVDE1OjMyOjUzLjcwMTM3MlogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAgICAgICAib3JpZ2luIjogIkV4cGVyaW1lbnRSdW4iLCBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IiAgICAgIFwib3JpZ2luXCI6IFwiRXhwZXJpbWVudFJ1blwiLCIKMjAyMi0wOS0yM1QxNTozMjo1My43MDEzODRaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogICAgICAgImNvbnRhaW5lciI6ICJkY2lkLjc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCIsIGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iICAgICAgXCJjb250YWluZXJcIjogXCJkY2lkLjc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZFwiLCIKMjAyMi0wOS0yM1QxNTozMjo1My43MDEzOThaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogICAgICAgInBhdGgiOiAic3lzdGVtX2xvZ3MvbGlmZWN5Y2xlci9saWZlY3ljbGVyLmxvZyIsIGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iICAgICAgXCJwYXRoXCI6IFwic3lzdGVtX2xvZ3MvbGlmZWN5Y2xlci9saWZlY3ljbGVyLmxvZ1wiLCIKMjAyMi0wOS0yM1QxNTozMjo1My43MDE0MTJaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogICAgICAgImV0YWciOiAiXCJmZTBjMGQ0Zi0wMDAwLTAyMDAtMDAwMC02MzJkZDFhNTAwMDBcIiIsIGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iICAgICAgXCJldGFnXCI6IFwiXFxcImZlMGMwZDRmLTAwMDAtMDIwMC0wMDAwLTYzMmRkMWE1MDAwMFxcXCJcIiwiCjIwMjItMDktMjNUMTU6MzI6NTMuNzAxNDI2WiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6ICAgICAgICJjcmVhdGVkVGltZSI6ICIyMDIyLTA5LTIzVDE1OjMyOjUzLjY1ODAzMDIrMDA6MDAiLCBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IiAgICAgIFwiY3JlYXRlZFRpbWVcIjogXCIyMDIyLTA5LTIzVDE1OjMyOjUzLjY1ODAzMDIrMDA6MDBcIiwiCjIwMjItMDktMjNUMTU6MzI6NTMuNzAxNDQyWiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6ICAgICAgICJkYXRhUGF0aCI6IG51bGwsIGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iICAgICAgXCJkYXRhUGF0aFwiOiBudWxsLCIKMjAyMi0wOS0yM1QxNTozMjo1My43MDE0NTRaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogICAgICAgInRhZ3MiOiB7fSBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IiAgICAgIFwidGFnc1wiOiB7fSIKMjAyMi0wOS0yM1QxNTozMjo1My43MDE0NjZaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogICAgIH0gY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIgICAgfSIKMjAyMi0wOS0yM1QxNTozMjo1My43MDE0NzhaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogICB9LCBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IiAgfSwiCjIwMjItMDktMjNUMTU6MzI6NTMuNzAxNDg5WiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6ICAgImFydGlmYWN0Q29udGVudEluZm9ybWF0aW9uIjogeyBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IiAgXCJhcnRpZmFjdENvbnRlbnRJbmZvcm1hdGlvblwiOiB7IgoyMDIyLTA5LTIzVDE1OjMyOjUzLjcwMTUwMlogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAgICAgInN5c3RlbV9sb2dzL2xpZmVjeWNsZXIvbGlmZWN5Y2xlci5sb2ciOiB7IGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iICAgIFwic3lzdGVtX2xvZ3MvbGlmZWN5Y2xlci9saWZlY3ljbGVyLmxvZ1wiOiB7IgoyMDIyLTA5LTIzVDE1OjMyOjUzLjcwMTUxNVogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAgICAgICAiY29udGVudFVyaSI6ICJodHRwczovL3NhdjZkaHJ4ZXh3bHY3Zy5ibG9iLmNvcmUud2luZG93cy5uZXQvYXp1cmVtbC9FeHBlcmltZW50UnVuL2RjaWQuNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkL3N5c3RlbV9sb2dzL2xpZmVjeWNsZXIvbGlmZWN5Y2xlci5sb2c/c3Y9MjAxOS0wNy0wNyZzcj1iJnNpZz1PYUNzdnFiQzBDOSUyRnBhbkp3SUpNckpaeGU5bGdXdCUyQjV6RzRMR2QzR1FTcyUzRCZza29pZD1jYWY0ZmMzZC1hZDFjLTQzMjgtOThhOS0yYzYxZTkyNTZiM2Qmc2t0aWQ9NzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3JnNrdD0yMDIyLTA5LTIzVDE1JTNBMDklM0EyOVomc2tlPTIwMjItMDktMjRUMjMlM0ExOSUzQTI5WiZza3M9YiZza3Y9MjAxOS0wNy0wNyZzdD0yMDIyLTA5LTIzVDE1JTNBMjIlM0E1M1omc2U9MjAyMi0wOS0yNFQxNSUzQTMyJTNBNTNaJnNwPXJjdyIsIGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iICAgICAgXCJjb250ZW50VXJpXCI6IFwiaHR0cHM6Ly9zYXY2ZGhyeGV4d2x2N2cuYmxvYi5jb3JlLndpbmRvd3MubmV0L2F6dXJlbWwvRXhwZXJpbWVudFJ1bi9kY2lkLjc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZC9zeXN0ZW1fbG9ncy9saWZlY3ljbGVyL2xpZmVjeWNsZXIubG9nP3N2PTIwMTktMDctMDcmc3I9YiZzaWc9T2FDc3ZxYkMwQzklMkZwYW5Kd0lKTXJKWnhlOWxnV3QlMkI1ekc0TEdkM0dRU3MlM0Qmc2tvaWQ9Y2FmNGZjM2QtYWQxYy00MzI4LTk4YTktMmM2MWU5MjU2YjNkJnNrdGlkPTcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0NyZza3Q9MjAyMi0wOS0yM1QxNSUzQTA5JTNBMjlaJnNrZT0yMDIyLTA5LTI0VDIzJTNBMTklM0EyOVomc2tzPWImc2t2PTIwMTktMDctMDcmc3Q9MjAyMi0wOS0yM1QxNSUzQTIyJTNBNTNaJnNlPTIwMjItMDktMjRUMTUlM0EzMiUzQTUzWiZzcD1yY3dcIiwiCjIwMjItMDktMjNUMTU6MzI6NTMuNzAxNTUxWiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6ICAgICAgICJvcmlnaW4iOiAiRXhwZXJpbWVudFJ1biIsIGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iICAgICAgXCJvcmlnaW5cIjogXCJFeHBlcmltZW50UnVuXCIsIgoyMDIyLTA5LTIzVDE1OjMyOjUzLjcwMTU2NFogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAgICAgICAiY29udGFpbmVyIjogImRjaWQuNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkIiwgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIgICAgICBcImNvbnRhaW5lclwiOiBcImRjaWQuNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkXCIsIgoyMDIyLTA5LTIzVDE1OjMyOjUzLjcwMTU4MlogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAgICAgICAicGF0aCI6ICJzeXN0ZW1fbG9ncy9saWZlY3ljbGVyL2xpZmVjeWNsZXIubG9nIiwgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIgICAgICBcInBhdGhcIjogXCJzeXN0ZW1fbG9ncy9saWZlY3ljbGVyL2xpZmVjeWNsZXIubG9nXCIsIgoyMDIyLTA5LTIzVDE1OjMyOjUzLjcwMTU5NVogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAgICAgICAidGFncyI6IHt9IGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iICAgICAgXCJ0YWdzXCI6IHt9IgoyMDIyLTA5LTIzVDE1OjMyOjUzLjcwMTYwNlogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAgICAgfSBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IiAgICB9IgoyMDIyLTA5LTIzVDE1OjMyOjUzLjcwMTYxN1ogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAgIH0sIGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iICB9LCIKMjAyMi0wOS0yM1QxNTozMjo1My43MDE2MjlaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogICAiZXJyb3JzIjoge30gY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIgIFwiZXJyb3JzXCI6IHt9IgoyMDIyLTA5LTIzVDE1OjMyOjUzLjcwMTY0MFogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiB9IGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0ifSIKMjAyMi0wOS0yM1QxNTozMjo1My44NjcxNjJaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogMjAyMi8wOS8yMyAxNTozMjo1MyBTdGFydCB0byBzdHJlYW0gc3lzdGVtX2xvZ3MvbGlmZWN5Y2xlci9saWZlY3ljbGVyLmxvZyB0byBCbG9ja0Jsb2IgIGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iMjAyMi8wOS8yMyAxNTozMjo1MyBTdGFydCB0byBzdHJlYW0gc3lzdGVtX2xvZ3MvbGlmZWN5Y2xlci9saWZlY3ljbGVyLmxvZyB0byBCbG9ja0Jsb2IgIgoyMDIyLTA5LTIzVDE1OjMyOjUzLjg3ODM1MVogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAyMDIyLzA5LzIzIDE1OjMyOjUzIFN0YXJ0IHRvIHN0cmVhbSBzeXN0ZW1fbG9ncy9ob3N0dG9vbHNfY2FwYWJpbGl0eS9ob3N0dG9vbHMtY2FwYWJpbGl0eS5sb2cgdG8gQmxvY2tCbG9iICBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IjIwMjIvMDkvMjMgMTU6MzI6NTMgU3RhcnQgdG8gc3RyZWFtIHN5c3RlbV9sb2dzL2hvc3R0b29sc19jYXBhYmlsaXR5L2hvc3R0b29scy1jYXBhYmlsaXR5LmxvZyB0byBCbG9ja0Jsb2IgIgoyMDIyLTA5LTIzVDE1OjMyOjU4LjE0OTg3N1ogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAyMDIyLzA5LzIzIDE1OjMyOjU4IE5vdCBleHBvcnRpbmcgdG8gUnVuSGlzdG9yeSBhcyB0aGUgZXhwb3J0ZXIgaXMgZWl0aGVyIHN0b3BwZWQgb3IgdGhlcmUgaXMgbm8gZGF0YS4gY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIyMDIyLzA5LzIzIDE1OjMyOjU4IE5vdCBleHBvcnRpbmcgdG8gUnVuSGlzdG9yeSBhcyB0aGUgZXhwb3J0ZXIgaXMgZWl0aGVyIHN0b3BwZWQgb3IgdGhlcmUgaXMgbm8gZGF0YS4iCjIwMjItMDktMjNUMTU6MzI6NTguMTQ5OTU5WiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6IFN0b3BwZWQ6IGZhbHNlIGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iU3RvcHBlZDogZmFsc2UiCjIwMjItMDktMjNUMTU6MzI6NTguMTQ5OTgxWiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6IE9yaWdpbmFsRGF0YTogOCBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9Ik9yaWdpbmFsRGF0YTogOCIKMjAyMi0wOS0yM1QxNTozMjo1OC4xNDk5OTJaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogRmlsdGVyZWREYXRhOiAwLiBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IkZpbHRlcmVkRGF0YTogMC4iCjIwMjItMDktMjNUMTU6MzM6MjMuMjI2ODg3WiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6IDIwMjIvMDkvMjMgMTU6MzM6MjMgZmlsZSBMU19yb290L2pvYnMvd2QvLnRtcCBkb2VzIG5vdCBleGlzdCBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IjIwMjIvMDkvMjMgMTU6MzM6MjMgZmlsZSBMU19yb290L2pvYnMvd2QvLnRtcCBkb2VzIG5vdCBleGlzdCIKMjAyMi0wOS0yM1QxNTozMzoyMy4yMjY5OTJaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogMjAyMi8wOS8yMyAxNTozMzoyMyBmaWxlIC9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2NhcC9kYXRhLWNhcGFiaWxpdHkvd2QvLmF6dXJlbWxfY3JfbG9nIGRvZXMgbm90IGV4aXN0IGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iMjAyMi8wOS8yMyAxNTozMzoyMyBmaWxlIC9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2NhcC9kYXRhLWNhcGFiaWxpdHkvd2QvLmF6dXJlbWxfY3JfbG9nIGRvZXMgbm90IGV4aXN0IgoyMDIyLTA5LTIzVDE1OjMzOjIzLjI1MDQ3M1ogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAyMDIyLzA5LzIzIDE1OjMzOjIzIE5ldyBmaWxlIGRldGVjdGVkOiAvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS9jYXAvbWV0cmljcy1jYXBhYmlsaXR5L3dkLy5henVyZW1sX2NyX2xvZy9tZXRyaWNzLWNhcGFiaWxpdHkubG9nIGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iMjAyMi8wOS8yMyAxNTozMzoyMyBOZXcgZmlsZSBkZXRlY3RlZDogL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvY2FwL21ldHJpY3MtY2FwYWJpbGl0eS93ZC8uYXp1cmVtbF9jcl9sb2cvbWV0cmljcy1jYXBhYmlsaXR5LmxvZyIKMjAyMi0wOS0yM1QxNTozMzoyMy4yNTE2MTBaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogMjAyMi8wOS8yMyAxNTozMzoyMyBSZXF1ZXN0aW5nIFBPU1Q6IFt7c3lzdGVtX2xvZ3MvbWV0cmljc19jYXBhYmlsaXR5L21ldHJpY3MtY2FwYWJpbGl0eS5sb2d9XSBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IjIwMjIvMDkvMjMgMTU6MzM6MjMgUmVxdWVzdGluZyBQT1NUOiBbe3N5c3RlbV9sb2dzL21ldHJpY3NfY2FwYWJpbGl0eS9tZXRyaWNzLWNhcGFiaWxpdHkubG9nfV0iCjIwMjItMDktMjNUMTU6MzM6MjMuMjUxNjYxWiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6IDIwMjIvMDkvMjMgMTU6MzM6MjMgQXR0ZW1wdCAxIG9mIGh0dHAgY2FsbCB0byBodHRwczovL2Vhc3R1czIuYXBpLmF6dXJlbWwubXMvYXJ0aWZhY3QvdjIuMC9zdWJzY3JpcHRpb25zLzk2YWVkZTEyLTJmNzMtNDFjYi1iOTgzLTZkMTFhOTA0ODM5Yi9yZXNvdXJjZUdyb3Vwcy96aGVuZ2ZlaS10ZXN0LWVhc3R1czIvcHJvdmlkZXJzL01pY3Jvc29mdC5NYWNoaW5lTGVhcm5pbmdTZXJ2aWNlcy93b3Jrc3BhY2VzL3Nka192bmV4dF9jbGkvYXJ0aWZhY3RzL2JhdGNoL21ldGFkYXRhL0V4cGVyaW1lbnRSdW4vZGNpZC43NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIyMDIyLzA5LzIzIDE1OjMzOjIzIEF0dGVtcHQgMSBvZiBodHRwIGNhbGwgdG8gaHR0cHM6Ly9lYXN0dXMyLmFwaS5henVyZW1sLm1zL2FydGlmYWN0L3YyLjAvc3Vic2NyaXB0aW9ucy85NmFlZGUxMi0yZjczLTQxY2ItYjk4My02ZDExYTkwNDgzOWIvcmVzb3VyY2VHcm91cHMvemhlbmdmZWktdGVzdC1lYXN0dXMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nU2VydmljZXMvd29ya3NwYWNlcy9zZGtfdm5leHRfY2xpL2FydGlmYWN0cy9iYXRjaC9tZXRhZGF0YS9FeHBlcmltZW50UnVuL2RjaWQuNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkIgoyMDIyLTA5LTIzVDE1OjMzOjIzLjI1MjEzOFogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAyMDIyLzA5LzIzIDE1OjMzOjIzIE5ldyBmaWxlIGRldGVjdGVkOiAvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS9jYXAvY3MtY2FwYWJpbGl0eS93ZC8uYXp1cmVtbF9jcl9sb2cvY3MtY2FwYWJpbGl0eS5sb2cgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIyMDIyLzA5LzIzIDE1OjMzOjIzIE5ldyBmaWxlIGRldGVjdGVkOiAvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS9jYXAvY3MtY2FwYWJpbGl0eS93ZC8uYXp1cmVtbF9jcl9sb2cvY3MtY2FwYWJpbGl0eS5sb2ciCjIwMjItMDktMjNUMTU6MzM6MjMuMjUyNTgxWiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6IDIwMjIvMDkvMjMgMTU6MzM6MjMgUmVxdWVzdGluZyBQT1NUOiBbe3N5c3RlbV9sb2dzL2NzX2NhcGFiaWxpdHkvY3MtY2FwYWJpbGl0eS5sb2d9XSBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IjIwMjIvMDkvMjMgMTU6MzM6MjMgUmVxdWVzdGluZyBQT1NUOiBbe3N5c3RlbV9sb2dzL2NzX2NhcGFiaWxpdHkvY3MtY2FwYWJpbGl0eS5sb2d9XSIKMjAyMi0wOS0yM1QxNTozMzoyMy4yNTI2MjVaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogMjAyMi8wOS8yMyAxNTozMzoyMyBBdHRlbXB0IDEgb2YgaHR0cCBjYWxsIHRvIGh0dHBzOi8vZWFzdHVzMi5hcGkuYXp1cmVtbC5tcy9hcnRpZmFjdC92Mi4wL3N1YnNjcmlwdGlvbnMvOTZhZWRlMTItMmY3My00MWNiLWI5ODMtNmQxMWE5MDQ4MzliL3Jlc291cmNlR3JvdXBzL3poZW5nZmVpLXRlc3QtZWFzdHVzMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZ1NlcnZpY2VzL3dvcmtzcGFjZXMvc2RrX3ZuZXh0X2NsaS9hcnRpZmFjdHMvYmF0Y2gvbWV0YWRhdGEvRXhwZXJpbWVudFJ1bi9kY2lkLjc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IjIwMjIvMDkvMjMgMTU6MzM6MjMgQXR0ZW1wdCAxIG9mIGh0dHAgY2FsbCB0byBodHRwczovL2Vhc3R1czIuYXBpLmF6dXJlbWwubXMvYXJ0aWZhY3QvdjIuMC9zdWJzY3JpcHRpb25zLzk2YWVkZTEyLTJmNzMtNDFjYi1iOTgzLTZkMTFhOTA0ODM5Yi9yZXNvdXJjZUdyb3Vwcy96aGVuZ2ZlaS10ZXN0LWVhc3R1czIvcHJvdmlkZXJzL01pY3Jvc29mdC5NYWNoaW5lTGVhcm5pbmdTZXJ2aWNlcy93b3Jrc3BhY2VzL3Nka192bmV4dF9jbGkvYXJ0aWZhY3RzL2JhdGNoL21ldGFkYXRhL0V4cGVyaW1lbnRSdW4vZGNpZC43NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQiCjIwMjItMDktMjNUMTU6MzM6MjMuMjU3MjQ0WiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6IDIwMjIvMDkvMjMgMTU6MzM6MjMgTmV3IGZpbGUgZGV0ZWN0ZWQ6IC9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2NhcC9zbmFwc2hvdC1jYXBhYmlsaXR5L3dkLy5henVyZW1sX2NyX2xvZy9zbmFwc2hvdC1jYXBhYmlsaXR5LmxvZyBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IjIwMjIvMDkvMjMgMTU6MzM6MjMgTmV3IGZpbGUgZGV0ZWN0ZWQ6IC9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2NhcC9zbmFwc2hvdC1jYXBhYmlsaXR5L3dkLy5henVyZW1sX2NyX2xvZy9zbmFwc2hvdC1jYXBhYmlsaXR5LmxvZyIKMjAyMi0wOS0yM1QxNTozMzoyMy4yNTcyODRaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogMjAyMi8wOS8yMyAxNTozMzoyMyBSZXF1ZXN0aW5nIFBPU1Q6IFt7c3lzdGVtX2xvZ3Mvc25hcHNob3RfY2FwYWJpbGl0eS9zbmFwc2hvdC1jYXBhYmlsaXR5LmxvZ31dIGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iMjAyMi8wOS8yMyAxNTozMzoyMyBSZXF1ZXN0aW5nIFBPU1Q6IFt7c3lzdGVtX2xvZ3Mvc25hcHNob3RfY2FwYWJpbGl0eS9zbmFwc2hvdC1jYXBhYmlsaXR5LmxvZ31dIgoyMDIyLTA5LTIzVDE1OjMzOjIzLjI1NzMwMVogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAyMDIyLzA5LzIzIDE1OjMzOjIzIEF0dGVtcHQgMSBvZiBodHRwIGNhbGwgdG8gaHR0cHM6Ly9lYXN0dXMyLmFwaS5henVyZW1sLm1zL2FydGlmYWN0L3YyLjAvc3Vic2NyaXB0aW9ucy85NmFlZGUxMi0yZjczLTQxY2ItYjk4My02ZDExYTkwNDgzOWIvcmVzb3VyY2VHcm91cHMvemhlbmdmZWktdGVzdC1lYXN0dXMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nU2VydmljZXMvd29ya3NwYWNlcy9zZGtfdm5leHRfY2xpL2FydGlmYWN0cy9iYXRjaC9tZXRhZGF0YS9FeHBlcmltZW50UnVuL2RjaWQuNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkIGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iMjAyMi8wOS8yMyAxNTozMzoyMyBBdHRlbXB0IDEgb2YgaHR0cCBjYWxsIHRvIGh0dHBzOi8vZWFzdHVzMi5hcGkuYXp1cmVtbC5tcy9hcnRpZmFjdC92Mi4wL3N1YnNjcmlwdGlvbnMvOTZhZWRlMTItMmY3My00MWNiLWI5ODMtNmQxMWE5MDQ4MzliL3Jlc291cmNlR3JvdXBzL3poZW5nZmVpLXRlc3QtZWFzdHVzMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZ1NlcnZpY2VzL3dvcmtzcGFjZXMvc2RrX3ZuZXh0X2NsaS9hcnRpZmFjdHMvYmF0Y2gvbWV0YWRhdGEvRXhwZXJpbWVudFJ1bi9kY2lkLjc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCIKMjAyMi0wOS0yM1QxNTozMzoyMy4zNTc1MTdaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogMjAyMi8wOS8yMyAxNTozMzoyMyBTdWNjZXNmdWxseSBQT1NUIGFydGlmYWN0czogW3tzeXN0ZW1fbG9ncy9zbmFwc2hvdF9jYXBhYmlsaXR5L3NuYXBzaG90LWNhcGFiaWxpdHkubG9nfV0gY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIyMDIyLzA5LzIzIDE1OjMzOjIzIFN1Y2Nlc2Z1bGx5IFBPU1QgYXJ0aWZhY3RzOiBbe3N5c3RlbV9sb2dzL3NuYXBzaG90X2NhcGFiaWxpdHkvc25hcHNob3QtY2FwYWJpbGl0eS5sb2d9XSIKMjAyMi0wOS0yM1QxNTozMzoyMy4zNTc2MzJaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogMjAyMi8wOS8yMyAxNTozMzoyMyBSZWNlaXZlZCBmcm9tIGFydGlmYWN0IHN2YzogeyBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IjIwMjIvMDkvMjMgMTU6MzM6MjMgUmVjZWl2ZWQgZnJvbSBhcnRpZmFjdCBzdmM6IHsiCjIwMjItMDktMjNUMTU6MzM6MjMuMzU3NjU2WiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6ICAgImFydGlmYWN0cyI6IHsgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIgIFwiYXJ0aWZhY3RzXCI6IHsiCjIwMjItMDktMjNUMTU6MzM6MjMuMzU3Njc4WiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6ICAgICAic3lzdGVtX2xvZ3Mvc25hcHNob3RfY2FwYWJpbGl0eS9zbmFwc2hvdC1jYXBhYmlsaXR5LmxvZyI6IHsgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIgICAgXCJzeXN0ZW1fbG9ncy9zbmFwc2hvdF9jYXBhYmlsaXR5L3NuYXBzaG90LWNhcGFiaWxpdHkubG9nXCI6IHsiCjIwMjItMDktMjNUMTU6MzM6MjMuMzU3NzAwWiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6ICAgICAgICJhcnRpZmFjdElkIjogIkV4cGVyaW1lbnRSdW4vZGNpZC43NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQvc3lzdGVtX2xvZ3Mvc25hcHNob3RfY2FwYWJpbGl0eS9zbmFwc2hvdC1jYXBhYmlsaXR5LmxvZyIsIGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iICAgICAgXCJhcnRpZmFjdElkXCI6IFwiRXhwZXJpbWVudFJ1bi9kY2lkLjc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZC9zeXN0ZW1fbG9ncy9zbmFwc2hvdF9jYXBhYmlsaXR5L3NuYXBzaG90LWNhcGFiaWxpdHkubG9nXCIsIgoyMDIyLTA5LTIzVDE1OjMzOjIzLjM1NzcxNlogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAgICAgICAib3JpZ2luIjogIkV4cGVyaW1lbnRSdW4iLCBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IiAgICAgIFwib3JpZ2luXCI6IFwiRXhwZXJpbWVudFJ1blwiLCIKMjAyMi0wOS0yM1QxNTozMzoyMy4zNTc3NDZaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogICAgICAgImNvbnRhaW5lciI6ICJkY2lkLjc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCIsIGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iICAgICAgXCJjb250YWluZXJcIjogXCJkY2lkLjc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZFwiLCIKMjAyMi0wOS0yM1QxNTozMzoyMy4zNTc3NzRaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogICAgICAgInBhdGgiOiAic3lzdGVtX2xvZ3Mvc25hcHNob3RfY2FwYWJpbGl0eS9zbmFwc2hvdC1jYXBhYmlsaXR5LmxvZyIsIGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iICAgICAgXCJwYXRoXCI6IFwic3lzdGVtX2xvZ3Mvc25hcHNob3RfY2FwYWJpbGl0eS9zbmFwc2hvdC1jYXBhYmlsaXR5LmxvZ1wiLCIKMjAyMi0wOS0yM1QxNTozMzoyMy4zNTc3ODlaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogICAgICAgImV0YWciOiAiXCJmZTBjYTQ2My0wMDAwLTAyMDAtMDAwMC02MzJkZDFjMzAwMDBcIiIsIGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iICAgICAgXCJldGFnXCI6IFwiXFxcImZlMGNhNDYzLTAwMDAtMDIwMC0wMDAwLTYzMmRkMWMzMDAwMFxcXCJcIiwiCjIwMjItMDktMjNUMTU6MzM6MjMuMzU3ODA3WiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6ICAgICAgICJjcmVhdGVkVGltZSI6ICIyMDIyLTA5LTIzVDE1OjMzOjIzLjMwNDU0ODMrMDA6MDAiLCBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IiAgICAgIFwiY3JlYXRlZFRpbWVcIjogXCIyMDIyLTA5LTIzVDE1OjMzOjIzLjMwNDU0ODMrMDA6MDBcIiwiCjIwMjItMDktMjNUMTU6MzM6MjMuMzU3ODI5WiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6ICAgICAgICJkYXRhUGF0aCI6IG51bGwsIGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iICAgICAgXCJkYXRhUGF0aFwiOiBudWxsLCIKMjAyMi0wOS0yM1QxNTozMzoyMy4zNTc4NDdaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogICAgICAgInRhZ3MiOiB7fSBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IiAgICAgIFwidGFnc1wiOiB7fSIKMjAyMi0wOS0yM1QxNTozMzoyMy4zNTc4NjNaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogICAgIH0gY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIgICAgfSIKMjAyMi0wOS0yM1QxNTozMzoyMy4zNTc4NzlaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogICB9LCBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IiAgfSwiCjIwMjItMDktMjNUMTU6MzM6MjMuMzU3OTAwWiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6ICAgImFydGlmYWN0Q29udGVudEluZm9ybWF0aW9uIjogeyBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IiAgXCJhcnRpZmFjdENvbnRlbnRJbmZvcm1hdGlvblwiOiB7IgoyMDIyLTA5LTIzVDE1OjMzOjIzLjM1NzkxOFogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAgICAgInN5c3RlbV9sb2dzL3NuYXBzaG90X2NhcGFiaWxpdHkvc25hcHNob3QtY2FwYWJpbGl0eS5sb2ciOiB7IGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iICAgIFwic3lzdGVtX2xvZ3Mvc25hcHNob3RfY2FwYWJpbGl0eS9zbmFwc2hvdC1jYXBhYmlsaXR5LmxvZ1wiOiB7IgoyMDIyLTA5LTIzVDE1OjMzOjIzLjM1Nzk0M1ogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAgICAgICAiY29udGVudFVyaSI6ICJodHRwczovL3NhdjZkaHJ4ZXh3bHY3Zy5ibG9iLmNvcmUud2luZG93cy5uZXQvYXp1cmVtbC9FeHBlcmltZW50UnVuL2RjaWQuNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkL3N5c3RlbV9sb2dzL3NuYXBzaG90X2NhcGFiaWxpdHkvc25hcHNob3QtY2FwYWJpbGl0eS5sb2c/c3Y9MjAxOS0wNy0wNyZzcj1iJnNpZz1UNjNuVEd2YlBmaUl0ZXRKU21lT2RXbXJhUmFYbHBjSFpwcmJXcXhNRjBnJTNEJnNrb2lkPWNhZjRmYzNkLWFkMWMtNDMyOC05OGE5LTJjNjFlOTI1NmIzZCZza3RpZD03MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcmc2t0PTIwMjItMDktMjNUMTUlM0EwOSUzQTI5WiZza2U9MjAyMi0wOS0yNFQyMyUzQTE5JTNBMjlaJnNrcz1iJnNrdj0yMDE5LTA3LTA3JnN0PTIwMjItMDktMjNUMTUlM0EyMyUzQTIzWiZzZT0yMDIyLTA5LTI0VDE1JTNBMzMlM0EyM1omc3A9cmN3IiwgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIgICAgICBcImNvbnRlbnRVcmlcIjogXCJodHRwczovL3NhdjZkaHJ4ZXh3bHY3Zy5ibG9iLmNvcmUud2luZG93cy5uZXQvYXp1cmVtbC9FeHBlcmltZW50UnVuL2RjaWQuNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkL3N5c3RlbV9sb2dzL3NuYXBzaG90X2NhcGFiaWxpdHkvc25hcHNob3QtY2FwYWJpbGl0eS5sb2c/c3Y9MjAxOS0wNy0wNyZzcj1iJnNpZz1UNjNuVEd2YlBmaUl0ZXRKU21lT2RXbXJhUmFYbHBjSFpwcmJXcXhNRjBnJTNEJnNrb2lkPWNhZjRmYzNkLWFkMWMtNDMyOC05OGE5LTJjNjFlOTI1NmIzZCZza3RpZD03MmY5ODhiZi04NmYxLTQxYWYtOTFhYi0yZDdjZDAxMWRiNDcmc2t0PTIwMjItMDktMjNUMTUlM0EwOSUzQTI5WiZza2U9MjAyMi0wOS0yNFQyMyUzQTE5JTNBMjlaJnNrcz1iJnNrdj0yMDE5LTA3LTA3JnN0PTIwMjItMDktMjNUMTUlM0EyMyUzQTIzWiZzZT0yMDIyLTA5LTI0VDE1JTNBMzMlM0EyM1omc3A9cmN3XCIsIgoyMDIyLTA5LTIzVDE1OjMzOjIzLjM1Nzk4N1ogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAgICAgICAib3JpZ2luIjogIkV4cGVyaW1lbnRSdW4iLCBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IiAgICAgIFwib3JpZ2luXCI6IFwiRXhwZXJpbWVudFJ1blwiLCIKMjAyMi0wOS0yM1QxNTozMzoyMy4zNTgwMDlaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogICAgICAgImNvbnRhaW5lciI6ICJkY2lkLjc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCIsIGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iICAgICAgXCJjb250YWluZXJcIjogXCJkY2lkLjc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZFwiLCIKMjAyMi0wOS0yM1QxNTozMzoyMy4zNTgwMjZaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogICAgICAgInBhdGgiOiAic3lzdGVtX2xvZ3Mvc25hcHNob3RfY2FwYWJpbGl0eS9zbmFwc2hvdC1jYXBhYmlsaXR5LmxvZyIsIGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iICAgICAgXCJwYXRoXCI6IFwic3lzdGVtX2xvZ3Mvc25hcHNob3RfY2FwYWJpbGl0eS9zbmFwc2hvdC1jYXBhYmlsaXR5LmxvZ1wiLCIKMjAyMi0wOS0yM1QxNTozMzoyMy4zNTgwNTFaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogICAgICAgInRhZ3MiOiB7fSBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IiAgICAgIFwidGFnc1wiOiB7fSIKMjAyMi0wOS0yM1QxNTozMzoyMy4zNTgwNjZaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogICAgIH0gY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIgICAgfSIKMjAyMi0wOS0yM1QxNTozMzoyMy4zNTgwNzhaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogICB9LCBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IiAgfSwiCjIwMjItMDktMjNUMTU6MzM6MjMuMzU4MDg5WiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6ICAgImVycm9ycyI6IHt9IGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iICBcImVycm9yc1wiOiB7fSIKMjAyMi0wOS0yM1QxNTozMzoyMy4zNTgxMDFaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogfSBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9In0iCjIwMjItMDktMjNUMTU6MzM6MjMuMzYyODgzWiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6IDIwMjIvMDkvMjMgMTU6MzM6MjMgU3VjY2VzZnVsbHkgUE9TVCBhcnRpZmFjdHM6IFt7c3lzdGVtX2xvZ3MvY3NfY2FwYWJpbGl0eS9jcy1jYXBhYmlsaXR5LmxvZ31dIGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iMjAyMi8wOS8yMyAxNTozMzoyMyBTdWNjZXNmdWxseSBQT1NUIGFydGlmYWN0czogW3tzeXN0ZW1fbG9ncy9jc19jYXBhYmlsaXR5L2NzLWNhcGFiaWxpdHkubG9nfV0iCjIwMjItMDktMjNUMTU6MzM6MjMuMzYyOTY0WiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6IDIwMjIvMDkvMjMgMTU6MzM6MjMgUmVjZWl2ZWQgZnJvbSBhcnRpZmFjdCBzdmM6IHsgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIyMDIyLzA5LzIzIDE1OjMzOjIzIFJlY2VpdmVkIGZyb20gYXJ0aWZhY3Qgc3ZjOiB7IgoyMDIyLTA5LTIzVDE1OjMzOjIzLjM2Mjk4MFogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAgICJhcnRpZmFjdHMiOiB7IGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iICBcImFydGlmYWN0c1wiOiB7IgoyMDIyLTA5LTIzVDE1OjMzOjIzLjM2Mjk5NFogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAgICAgInN5c3RlbV9sb2dzL2NzX2NhcGFiaWxpdHkvY3MtY2FwYWJpbGl0eS5sb2ciOiB7IGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iICAgIFwic3lzdGVtX2xvZ3MvY3NfY2FwYWJpbGl0eS9jcy1jYXBhYmlsaXR5LmxvZ1wiOiB7IgoyMDIyLTA5LTIzVDE1OjMzOjIzLjM2MzAwOVogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAgICAgICAiYXJ0aWZhY3RJZCI6ICJFeHBlcmltZW50UnVuL2RjaWQuNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkL3N5c3RlbV9sb2dzL2NzX2NhcGFiaWxpdHkvY3MtY2FwYWJpbGl0eS5sb2ciLCBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IiAgICAgIFwiYXJ0aWZhY3RJZFwiOiBcIkV4cGVyaW1lbnRSdW4vZGNpZC43NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQvc3lzdGVtX2xvZ3MvY3NfY2FwYWJpbGl0eS9jcy1jYXBhYmlsaXR5LmxvZ1wiLCIKMjAyMi0wOS0yM1QxNTozMzoyMy4zNjMwMjhaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogICAgICAgIm9yaWdpbiI6ICJFeHBlcmltZW50UnVuIiwgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIgICAgICBcIm9yaWdpblwiOiBcIkV4cGVyaW1lbnRSdW5cIiwiCjIwMjItMDktMjNUMTU6MzM6MjMuMzYzMDQ0WiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6ICAgICAgICJjb250YWluZXIiOiAiZGNpZC43NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQiLCBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IiAgICAgIFwiY29udGFpbmVyXCI6IFwiZGNpZC43NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWRcIiwiCjIwMjItMDktMjNUMTU6MzM6MjMuMzYzMDU4WiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6ICAgICAgICJwYXRoIjogInN5c3RlbV9sb2dzL2NzX2NhcGFiaWxpdHkvY3MtY2FwYWJpbGl0eS5sb2ciLCBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IiAgICAgIFwicGF0aFwiOiBcInN5c3RlbV9sb2dzL2NzX2NhcGFiaWxpdHkvY3MtY2FwYWJpbGl0eS5sb2dcIiwiCjIwMjItMDktMjNUMTU6MzM6MjMuMzYzMDczWiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6ICAgICAgICJldGFnIjogIlwiZmUwY2E1NjMtMDAwMC0wMjAwLTAwMDAtNjMyZGQxYzMwMDAwXCIiLCBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IiAgICAgIFwiZXRhZ1wiOiBcIlxcXCJmZTBjYTU2My0wMDAwLTAyMDAtMDAwMC02MzJkZDFjMzAwMDBcXFwiXCIsIgoyMDIyLTA5LTIzVDE1OjMzOjIzLjM2MzA4N1ogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAgICAgICAiY3JlYXRlZFRpbWUiOiAiMjAyMi0wOS0yM1QxNTozMzoyMy4zMDU4NDg3KzAwOjAwIiwgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIgICAgICBcImNyZWF0ZWRUaW1lXCI6IFwiMjAyMi0wOS0yM1QxNTozMzoyMy4zMDU4NDg3KzAwOjAwXCIsIgoyMDIyLTA5LTIzVDE1OjMzOjIzLjM2MzEwM1ogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAgICAgICAiZGF0YVBhdGgiOiBudWxsLCBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IiAgICAgIFwiZGF0YVBhdGhcIjogbnVsbCwiCjIwMjItMDktMjNUMTU6MzM6MjMuMzYzMTE1WiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6ICAgICAgICJ0YWdzIjoge30gY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIgICAgICBcInRhZ3NcIjoge30iCjIwMjItMDktMjNUMTU6MzM6MjMuMzYzMTMwWiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6ICAgICB9IGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iICAgIH0iCjIwMjItMDktMjNUMTU6MzM6MjMuMzYzMTQxWiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6ICAgfSwgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIgIH0sIgoyMDIyLTA5LTIzVDE1OjMzOjIzLjM2MzE1M1ogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAgICJhcnRpZmFjdENvbnRlbnRJbmZvcm1hdGlvbiI6IHsgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIgIFwiYXJ0aWZhY3RDb250ZW50SW5mb3JtYXRpb25cIjogeyIKMjAyMi0wOS0yM1QxNTozMzoyMy4zNjMxNjZaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogICAgICJzeXN0ZW1fbG9ncy9jc19jYXBhYmlsaXR5L2NzLWNhcGFiaWxpdHkubG9nIjogeyBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IiAgICBcInN5c3RlbV9sb2dzL2NzX2NhcGFiaWxpdHkvY3MtY2FwYWJpbGl0eS5sb2dcIjogeyIKMjAyMi0wOS0yM1QxNTozMzoyMy4zNjMxNzlaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogICAgICAgImNvbnRlbnRVcmkiOiAiaHR0cHM6Ly9zYXY2ZGhyeGV4d2x2N2cuYmxvYi5jb3JlLndpbmRvd3MubmV0L2F6dXJlbWwvRXhwZXJpbWVudFJ1bi9kY2lkLjc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZC9zeXN0ZW1fbG9ncy9jc19jYXBhYmlsaXR5L2NzLWNhcGFiaWxpdHkubG9nP3N2PTIwMTktMDctMDcmc3I9YiZzaWc9VExIRE1XUENkRTZLZWNld1JzVzJITUczMlBXSk40WEhTV2ZMMlQ1OFNFRSUzRCZza29pZD1jYWY0ZmMzZC1hZDFjLTQzMjgtOThhOS0yYzYxZTkyNTZiM2Qmc2t0aWQ9NzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3JnNrdD0yMDIyLTA5LTIzVDE1JTNBMDklM0EyOVomc2tlPTIwMjItMDktMjRUMjMlM0ExOSUzQTI5WiZza3M9YiZza3Y9MjAxOS0wNy0wNyZzdD0yMDIyLTA5LTIzVDE1JTNBMjMlM0EyM1omc2U9MjAyMi0wOS0yNFQxNSUzQTMzJTNBMjNaJnNwPXJjdyIsIGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iICAgICAgXCJjb250ZW50VXJpXCI6IFwiaHR0cHM6Ly9zYXY2ZGhyeGV4d2x2N2cuYmxvYi5jb3JlLndpbmRvd3MubmV0L2F6dXJlbWwvRXhwZXJpbWVudFJ1bi9kY2lkLjc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZC9zeXN0ZW1fbG9ncy9jc19jYXBhYmlsaXR5L2NzLWNhcGFiaWxpdHkubG9nP3N2PTIwMTktMDctMDcmc3I9YiZzaWc9VExIRE1XUENkRTZLZWNld1JzVzJITUczMlBXSk40WEhTV2ZMMlQ1OFNFRSUzRCZza29pZD1jYWY0ZmMzZC1hZDFjLTQzMjgtOThhOS0yYzYxZTkyNTZiM2Qmc2t0aWQ9NzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3JnNrdD0yMDIyLTA5LTIzVDE1JTNBMDklM0EyOVomc2tlPTIwMjItMDktMjRUMjMlM0ExOSUzQTI5WiZza3M9YiZza3Y9MjAxOS0wNy0wNyZzdD0yMDIyLTA5LTIzVDE1JTNBMjMlM0EyM1omc2U9MjAyMi0wOS0yNFQxNSUzQTMzJTNBMjNaJnNwPXJjd1wiLCIKMjAyMi0wOS0yM1QxNTozMzoyMy4zNjMyMTZaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogICAgICAgIm9yaWdpbiI6ICJFeHBlcmltZW50UnVuIiwgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIgICAgICBcIm9yaWdpblwiOiBcIkV4cGVyaW1lbnRSdW5cIiwiCjIwMjItMDktMjNUMTU6MzM6MjMuMzYzMjI5WiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6ICAgICAgICJjb250YWluZXIiOiAiZGNpZC43NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQiLCBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IiAgICAgIFwiY29udGFpbmVyXCI6IFwiZGNpZC43NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWRcIiwiCjIwMjItMDktMjNUMTU6MzM6MjMuMzYzMjQzWiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6ICAgICAgICJwYXRoIjogInN5c3RlbV9sb2dzL2NzX2NhcGFiaWxpdHkvY3MtY2FwYWJpbGl0eS5sb2ciLCBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IiAgICAgIFwicGF0aFwiOiBcInN5c3RlbV9sb2dzL2NzX2NhcGFiaWxpdHkvY3MtY2FwYWJpbGl0eS5sb2dcIiwiCjIwMjItMDktMjNUMTU6MzM6MjMuMzYzMjU3WiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6ICAgICAgICJ0YWdzIjoge30gY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIgICAgICBcInRhZ3NcIjoge30iCjIwMjItMDktMjNUMTU6MzM6MjMuMzYzMjY4WiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6ICAgICB9IGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iICAgIH0iCjIwMjItMDktMjNUMTU6MzM6MjMuMzYzMjgwWiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6ICAgfSwgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIgIH0sIgoyMDIyLTA5LTIzVDE1OjMzOjIzLjM2MzI5NVogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAgICJlcnJvcnMiOiB7fSBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IiAgXCJlcnJvcnNcIjoge30iCjIwMjItMDktMjNUMTU6MzM6MjMuMzYzMzA3WiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6IH0gY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSJ9IgoyMDIyLTA5LTIzVDE1OjMzOjIzLjM3MTEzOVogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAyMDIyLzA5LzIzIDE1OjMzOjIzIFN1Y2Nlc2Z1bGx5IFBPU1QgYXJ0aWZhY3RzOiBbe3N5c3RlbV9sb2dzL21ldHJpY3NfY2FwYWJpbGl0eS9tZXRyaWNzLWNhcGFiaWxpdHkubG9nfV0gY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIyMDIyLzA5LzIzIDE1OjMzOjIzIFN1Y2Nlc2Z1bGx5IFBPU1QgYXJ0aWZhY3RzOiBbe3N5c3RlbV9sb2dzL21ldHJpY3NfY2FwYWJpbGl0eS9tZXRyaWNzLWNhcGFiaWxpdHkubG9nfV0iCjIwMjItMDktMjNUMTU6MzM6MjMuMzcxMzA1WiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6IDIwMjIvMDkvMjMgMTU6MzM6MjMgUmVjZWl2ZWQgZnJvbSBhcnRpZmFjdCBzdmM6IHsgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIyMDIyLzA5LzIzIDE1OjMzOjIzIFJlY2VpdmVkIGZyb20gYXJ0aWZhY3Qgc3ZjOiB7IgoyMDIyLTA5LTIzVDE1OjMzOjIzLjM3MTM2NFogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAgICJhcnRpZmFjdHMiOiB7IGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iICBcImFydGlmYWN0c1wiOiB7IgoyMDIyLTA5LTIzVDE1OjMzOjIzLjM3MTQwNFogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAgICAgInN5c3RlbV9sb2dzL21ldHJpY3NfY2FwYWJpbGl0eS9tZXRyaWNzLWNhcGFiaWxpdHkubG9nIjogeyBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IiAgICBcInN5c3RlbV9sb2dzL21ldHJpY3NfY2FwYWJpbGl0eS9tZXRyaWNzLWNhcGFiaWxpdHkubG9nXCI6IHsiCjIwMjItMDktMjNUMTU6MzM6MjMuMzcxNDQ1WiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6ICAgICAgICJhcnRpZmFjdElkIjogIkV4cGVyaW1lbnRSdW4vZGNpZC43NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQvc3lzdGVtX2xvZ3MvbWV0cmljc19jYXBhYmlsaXR5L21ldHJpY3MtY2FwYWJpbGl0eS5sb2ciLCBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IiAgICAgIFwiYXJ0aWZhY3RJZFwiOiBcIkV4cGVyaW1lbnRSdW4vZGNpZC43NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQvc3lzdGVtX2xvZ3MvbWV0cmljc19jYXBhYmlsaXR5L21ldHJpY3MtY2FwYWJpbGl0eS5sb2dcIiwiCjIwMjItMDktMjNUMTU6MzM6MjMuMzcxNDg4WiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6ICAgICAgICJvcmlnaW4iOiAiRXhwZXJpbWVudFJ1biIsIGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iICAgICAgXCJvcmlnaW5cIjogXCJFeHBlcmltZW50UnVuXCIsIgoyMDIyLTA5LTIzVDE1OjMzOjIzLjM3MTUzNlogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAgICAgICAiY29udGFpbmVyIjogImRjaWQuNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkIiwgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIgICAgICBcImNvbnRhaW5lclwiOiBcImRjaWQuNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkXCIsIgoyMDIyLTA5LTIzVDE1OjMzOjIzLjM3MTU3NVogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAgICAgICAicGF0aCI6ICJzeXN0ZW1fbG9ncy9tZXRyaWNzX2NhcGFiaWxpdHkvbWV0cmljcy1jYXBhYmlsaXR5LmxvZyIsIGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iICAgICAgXCJwYXRoXCI6IFwic3lzdGVtX2xvZ3MvbWV0cmljc19jYXBhYmlsaXR5L21ldHJpY3MtY2FwYWJpbGl0eS5sb2dcIiwiCjIwMjItMDktMjNUMTU6MzM6MjMuMzcxNjE1WiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6ICAgICAgICJldGFnIjogIlwiZmUwY2E2NjMtMDAwMC0wMjAwLTAwMDAtNjMyZGQxYzMwMDAwXCIiLCBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IiAgICAgIFwiZXRhZ1wiOiBcIlxcXCJmZTBjYTY2My0wMDAwLTAyMDAtMDAwMC02MzJkZDFjMzAwMDBcXFwiXCIsIgoyMDIyLTA5LTIzVDE1OjMzOjIzLjM3MTYzN1ogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAgICAgICAiY3JlYXRlZFRpbWUiOiAiMjAyMi0wOS0yM1QxNTozMzoyMy4zMjA1NTU5KzAwOjAwIiwgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIgICAgICBcImNyZWF0ZWRUaW1lXCI6IFwiMjAyMi0wOS0yM1QxNTozMzoyMy4zMjA1NTU5KzAwOjAwXCIsIgoyMDIyLTA5LTIzVDE1OjMzOjIzLjM3MTY1M1ogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAgICAgICAiZGF0YVBhdGgiOiBudWxsLCBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IiAgICAgIFwiZGF0YVBhdGhcIjogbnVsbCwiCjIwMjItMDktMjNUMTU6MzM6MjMuMzcxNjczWiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6ICAgICAgICJ0YWdzIjoge30gY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIgICAgICBcInRhZ3NcIjoge30iCjIwMjItMDktMjNUMTU6MzM6MjMuMzcxNjkwWiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6ICAgICB9IGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iICAgIH0iCjIwMjItMDktMjNUMTU6MzM6MjMuMzcxNzE2WiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6ICAgfSwgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIgIH0sIgoyMDIyLTA5LTIzVDE1OjMzOjIzLjM3MTcyN1ogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAgICJhcnRpZmFjdENvbnRlbnRJbmZvcm1hdGlvbiI6IHsgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIgIFwiYXJ0aWZhY3RDb250ZW50SW5mb3JtYXRpb25cIjogeyIKMjAyMi0wOS0yM1QxNTozMzoyMy4zNzE3NDhaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogICAgICJzeXN0ZW1fbG9ncy9tZXRyaWNzX2NhcGFiaWxpdHkvbWV0cmljcy1jYXBhYmlsaXR5LmxvZyI6IHsgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIgICAgXCJzeXN0ZW1fbG9ncy9tZXRyaWNzX2NhcGFiaWxpdHkvbWV0cmljcy1jYXBhYmlsaXR5LmxvZ1wiOiB7IgoyMDIyLTA5LTIzVDE1OjMzOjIzLjM3MTc3MFogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAgICAgICAiY29udGVudFVyaSI6ICJodHRwczovL3NhdjZkaHJ4ZXh3bHY3Zy5ibG9iLmNvcmUud2luZG93cy5uZXQvYXp1cmVtbC9FeHBlcmltZW50UnVuL2RjaWQuNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkL3N5c3RlbV9sb2dzL21ldHJpY3NfY2FwYWJpbGl0eS9tZXRyaWNzLWNhcGFiaWxpdHkubG9nP3N2PTIwMTktMDctMDcmc3I9YiZzaWc9ZnN0T2dnOHJzQ2s2STJjR3prQ3Z2SDM0TE1qMXZySklEWHRqaW5MTnhZSSUzRCZza29pZD1jYWY0ZmMzZC1hZDFjLTQzMjgtOThhOS0yYzYxZTkyNTZiM2Qmc2t0aWQ9NzJmOTg4YmYtODZmMS00MWFmLTkxYWItMmQ3Y2QwMTFkYjQ3JnNrdD0yMDIyLTA5LTIzVDE1JTNBMDklM0EyOVomc2tlPTIwMjItMDktMjRUMjMlM0ExOSUzQTI5WiZza3M9YiZza3Y9MjAxOS0wNy0wNyZzdD0yMDIyLTA5LTIzVDE1JTNBMjMlM0EyM1omc2U9MjAyMi0wOS0yNFQxNSUzQTMzJTNBMjNaJnNwPXJjdyIsIGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iICAgICAgXCJjb250ZW50VXJpXCI6IFwiaHR0cHM6Ly9zYXY2ZGhyeGV4d2x2N2cuYmxvYi5jb3JlLndpbmRvd3MubmV0L2F6dXJlbWwvRXhwZXJpbWVudFJ1bi9kY2lkLjc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZC9zeXN0ZW1fbG9ncy9tZXRyaWNzX2NhcGFiaWxpdHkvbWV0cmljcy1jYXBhYmlsaXR5LmxvZz9zdj0yMDE5LTA3LTA3JnNyPWImc2lnPWZzdE9nZzhyc0NrNkkyY0d6a0N2dkgzNExNajF2ckpJRFh0amluTE54WUklM0Qmc2tvaWQ9Y2FmNGZjM2QtYWQxYy00MzI4LTk4YTktMmM2MWU5MjU2YjNkJnNrdGlkPTcyZjk4OGJmLTg2ZjEtNDFhZi05MWFiLTJkN2NkMDExZGI0NyZza3Q9MjAyMi0wOS0yM1QxNSUzQTA5JTNBMjlaJnNrZT0yMDIyLTA5LTI0VDIzJTNBMTklM0EyOVomc2tzPWImc2t2PTIwMTktMDctMDcmc3Q9MjAyMi0wOS0yM1QxNSUzQTIzJTNBMjNaJnNlPTIwMjItMDktMjRUMTUlM0EzMyUzQTIzWiZzcD1yY3dcIiwiCjIwMjItMDktMjNUMTU6MzM6MjMuMzcxODA0WiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6ICAgICAgICJvcmlnaW4iOiAiRXhwZXJpbWVudFJ1biIsIGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iICAgICAgXCJvcmlnaW5cIjogXCJFeHBlcmltZW50UnVuXCIsIgoyMDIyLTA5LTIzVDE1OjMzOjIzLjM3MTgyNFogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAgICAgICAiY29udGFpbmVyIjogImRjaWQuNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkIiwgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIgICAgICBcImNvbnRhaW5lclwiOiBcImRjaWQuNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkXCIsIgoyMDIyLTA5LTIzVDE1OjMzOjIzLjM3MTg0MFogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAgICAgICAicGF0aCI6ICJzeXN0ZW1fbG9ncy9tZXRyaWNzX2NhcGFiaWxpdHkvbWV0cmljcy1jYXBhYmlsaXR5LmxvZyIsIGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iICAgICAgXCJwYXRoXCI6IFwic3lzdGVtX2xvZ3MvbWV0cmljc19jYXBhYmlsaXR5L21ldHJpY3MtY2FwYWJpbGl0eS5sb2dcIiwiCjIwMjItMDktMjNUMTU6MzM6MjMuMzcxODY0WiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6ICAgICAgICJ0YWdzIjoge30gY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIgICAgICBcInRhZ3NcIjoge30iCjIwMjItMDktMjNUMTU6MzM6MjMuMzcxODgxWiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6ICAgICB9IGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iICAgIH0iCjIwMjItMDktMjNUMTU6MzM6MjMuMzcxODk0WiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6ICAgfSwgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIgIH0sIgoyMDIyLTA5LTIzVDE1OjMzOjIzLjM3MTkxMFogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAgICJlcnJvcnMiOiB7fSBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IiAgXCJlcnJvcnNcIjoge30iCjIwMjItMDktMjNUMTU6MzM6MjMuMzcxOTI5WiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6IH0gY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSJ9IgoyMDIyLTA5LTIzVDE1OjMzOjIzLjM5OTg1N1ogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAyMDIyLzA5LzIzIDE1OjMzOjIzIFN0YXJ0IHRvIHN0cmVhbSBzeXN0ZW1fbG9ncy9zbmFwc2hvdF9jYXBhYmlsaXR5L3NuYXBzaG90LWNhcGFiaWxpdHkubG9nIHRvIEJsb2NrQmxvYiAgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIyMDIyLzA5LzIzIDE1OjMzOjIzIFN0YXJ0IHRvIHN0cmVhbSBzeXN0ZW1fbG9ncy9zbmFwc2hvdF9jYXBhYmlsaXR5L3NuYXBzaG90LWNhcGFiaWxpdHkubG9nIHRvIEJsb2NrQmxvYiAiCjIwMjItMDktMjNUMTU6MzM6MjMuNDM1MjA0WiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6IDIwMjIvMDkvMjMgMTU6MzM6MjMgU3RhcnQgdG8gc3RyZWFtIHN5c3RlbV9sb2dzL21ldHJpY3NfY2FwYWJpbGl0eS9tZXRyaWNzLWNhcGFiaWxpdHkubG9nIHRvIEJsb2NrQmxvYiAgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIyMDIyLzA5LzIzIDE1OjMzOjIzIFN0YXJ0IHRvIHN0cmVhbSBzeXN0ZW1fbG9ncy9tZXRyaWNzX2NhcGFiaWxpdHkvbWV0cmljcy1jYXBhYmlsaXR5LmxvZyB0byBCbG9ja0Jsb2IgIgoyMDIyLTA5LTIzVDE1OjMzOjIzLjQ0MzEzMVogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAyMDIyLzA5LzIzIDE1OjMzOjIzIFN0YXJ0IHRvIHN0cmVhbSBzeXN0ZW1fbG9ncy9jc19jYXBhYmlsaXR5L2NzLWNhcGFiaWxpdHkubG9nIHRvIEJsb2NrQmxvYiAgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIyMDIyLzA5LzIzIDE1OjMzOjIzIFN0YXJ0IHRvIHN0cmVhbSBzeXN0ZW1fbG9ncy9jc19jYXBhYmlsaXR5L2NzLWNhcGFiaWxpdHkubG9nIHRvIEJsb2NrQmxvYiAiCjIwMjItMDktMjNUMTU6MzM6MjguMTUxMjA5WiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6IDIwMjIvMDkvMjMgMTU6MzM6MjggTm90IGV4cG9ydGluZyB0byBSdW5IaXN0b3J5IGFzIHRoZSBleHBvcnRlciBpcyBlaXRoZXIgc3RvcHBlZCBvciB0aGVyZSBpcyBubyBkYXRhLiBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IjIwMjIvMDkvMjMgMTU6MzM6MjggTm90IGV4cG9ydGluZyB0byBSdW5IaXN0b3J5IGFzIHRoZSBleHBvcnRlciBpcyBlaXRoZXIgc3RvcHBlZCBvciB0aGVyZSBpcyBubyBkYXRhLiIKMjAyMi0wOS0yM1QxNTozMzoyOC4xNTEyNzhaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogU3RvcHBlZDogZmFsc2UgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSJTdG9wcGVkOiBmYWxzZSIKMjAyMi0wOS0yM1QxNTozMzoyOC4xNTEyOTVaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogT3JpZ2luYWxEYXRhOiAxMiBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9Ik9yaWdpbmFsRGF0YTogMTIiCjIwMjItMDktMjNUMTU6MzM6MjguMTUxMzEzWiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6IEZpbHRlcmVkRGF0YTogMC4gY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSJGaWx0ZXJlZERhdGE6IDAuIgoyMDIyLTA5LTIzVDE1OjMzOjQwLjYzODAxNlogIElORk8gaG9zdHRvb2xzLWNhcGFiaWxpdHkuc3RhcnQ6IGdycGNfdXRpbHM6OnNlcnZlcjogR290IGdycGMgcmVxdWVzdCByZXF1ZXN0X25hbWU9InN0YXJ0IiByZW1vdGVfYWRkcj1Ob25lCjIwMjItMDktMjNUMTU6MzM6NDAuNjM4MDY2WiAgSU5GTyBob3N0dG9vbHMtY2FwYWJpbGl0eS5zdGFydDogaG9zdHRvb2xzX2NhcGFiaWxpdHk6OmNhcGFiaWxpdHlfc2VydmljZTogY2xvc2UgdGltZS5idXN5PTU3LjXCtXMgdGltZS5pZGxlPTIzLjLCtXMKMjAyMi0wOS0yM1QxNTozMzo0OC42MzA5MzVaICBJTkZPIGhvc3R0b29scy1jYXBhYmlsaXR5LmVuZDogZ3JwY191dGlsczo6c2VydmVyOiBHb3QgZ3JwYyByZXF1ZXN0IHJlcXVlc3RfbmFtZT0iZW5kIiByZW1vdGVfYWRkcj1Ob25lCjIwMjItMDktMjNUMTU6MzM6NDguNjMxMDA0WiAgSU5GTyBob3N0dG9vbHMtY2FwYWJpbGl0eS5lbmQ6aG9zdHRvb2xzLWNhcGFiaWxpdHkuZmx1c2hfYW5kX3NodXRkb3duX291dHB1dF9tYW5hZ2Vye2ZsdXNoX3RpbWVvdXRfb3ZlcnJpZGVfcz1Ob25lfTogaG9zdHRvb2xzX2NhcGFiaWxpdHk6OmNhcGFiaWxpdHlfc2VydmljZTogU2lnbmFsaW5nIG91dHB1dF9tYW5hZ2VyIHRvIGZsdXNoIGxvZ3MsIHRoZW4gdGVybWluYXRpbmcgYWZ0ZXI6IE5vbmUgZmx1c2hfdGltZW91dD1Ob25lCjIwMjItMDktMjNUMTU6MzM6NDguNjMxMDgxWiAgSU5GTyBob3N0dG9vbHMtY2FwYWJpbGl0eS5lbmQ6aG9zdHRvb2xzLWNhcGFiaWxpdHkuZmx1c2hfYW5kX3NodXRkb3duX291dHB1dF9tYW5hZ2Vye2ZsdXNoX3RpbWVvdXRfb3ZlcnJpZGVfcz1Ob25lfTogaG9zdHRvb2xzX2NhcGFiaWxpdHk6OmNhcGFiaWxpdHlfc2VydmljZTogc2VuZCBTSUdURVJNIHRvIG91dHB1dE1hbmFnZXIgY2hpbGQ9Q2hpbGQgeyBjaGlsZDogQ2hpbGQoQ2hpbGREcm9wR3VhcmQgeyBpbm5lcjogQ2hpbGQgeyBwaWQ6IDEwIH0sIGtpbGxfb25fZHJvcDogZmFsc2UgfSksIHN0ZGluOiBOb25lLCBzdGRvdXQ6IE5vbmUsIHN0ZGVycjogTm9uZSB9CjIwMjItMDktMjNUMTU6MzM6NDguNjMxMTEwWiAgSU5GTyBob3N0dG9vbHMtY2FwYWJpbGl0eS5lbmQ6aG9zdHRvb2xzLWNhcGFiaWxpdHkuZmx1c2hfYW5kX3NodXRkb3duX291dHB1dF9tYW5hZ2Vye2ZsdXNoX3RpbWVvdXRfb3ZlcnJpZGVfcz1Ob25lfTogaG9zdHRvb2xzX2NhcGFiaWxpdHk6OmNhcGFiaWxpdHlfc2VydmljZTogd2FpdGluZyBmb3Igb3V0cHV0TWFuYWdlciB0ZXJtaW5hdGlvbiBjaGlsZD1DaGlsZCB7IGNoaWxkOiBDaGlsZChDaGlsZERyb3BHdWFyZCB7IGlubmVyOiBDaGlsZCB7IHBpZDogMTAgfSwga2lsbF9vbl9kcm9wOiBmYWxzZSB9KSwgc3RkaW46IE5vbmUsIHN0ZG91dDogTm9uZSwgc3RkZXJyOiBOb25lIH0gdGltZW91dF9kdXJhdGlvbj1Ob25lCjIwMjItMDktMjNUMTU6MzM6NDguNjMxNTQ0WiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6IDIwMjIvMDkvMjMgMTU6MzM6NDggUmVjZWl2ZWQgdGVybWluYXRpb24gc2lnbmFsIHRvIHNodXQgZG93biBvdXRwdXQgbWFuYWdlci4gY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIyMDIyLzA5LzIzIDE1OjMzOjQ4IFJlY2VpdmVkIHRlcm1pbmF0aW9uIHNpZ25hbCB0byBzaHV0IGRvd24gb3V0cHV0IG1hbmFnZXIuIgoyMDIyLTA5LTIzVDE1OjMzOjQ4LjYzMTU4NVogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAyMDIyLzA5LzIzIDE1OjMzOjQ4IEV4aXRpbmcgZmlsZXdhdGNoZXIgZm9yIHN0cmVhbWFibGUgZmlsZSAvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS9jYXAvbWV0cmljcy1jYXBhYmlsaXR5L3dkLy5henVyZW1sX2NyX2xvZy9tZXRyaWNzLWNhcGFiaWxpdHkubG9nLiBObyBjaGFuZ2VzIGFmdGVyIHRlcm1pbmF0aW9uIHNpZ25hbC4gY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIyMDIyLzA5LzIzIDE1OjMzOjQ4IEV4aXRpbmcgZmlsZXdhdGNoZXIgZm9yIHN0cmVhbWFibGUgZmlsZSAvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS9jYXAvbWV0cmljcy1jYXBhYmlsaXR5L3dkLy5henVyZW1sX2NyX2xvZy9tZXRyaWNzLWNhcGFiaWxpdHkubG9nLiBObyBjaGFuZ2VzIGFmdGVyIHRlcm1pbmF0aW9uIHNpZ25hbC4iCjIwMjItMDktMjNUMTU6MzM6NDguNjMxNjA2WiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6IDIwMjIvMDkvMjMgMTU6MzM6NDggU3RyZWFtZXIgdGVybWluYXRlZCBmb3Igc3lzdGVtX2xvZ3MvbWV0cmljc19jYXBhYmlsaXR5L21ldHJpY3MtY2FwYWJpbGl0eS5sb2cgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIyMDIyLzA5LzIzIDE1OjMzOjQ4IFN0cmVhbWVyIHRlcm1pbmF0ZWQgZm9yIHN5c3RlbV9sb2dzL21ldHJpY3NfY2FwYWJpbGl0eS9tZXRyaWNzLWNhcGFiaWxpdHkubG9nIgoyMDIyLTA5LTIzVDE1OjMzOjQ4LjYzMTc2NFogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAyMDIyLzA5LzIzIDE1OjMzOjQ4IFdlIG5lZWQgdG8gcmVmcmVzaCB0aGUgZGlyIC9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2V4ZS93ZC9henVyZW1sLWxvZ3Mgb25lIG1vcmUgdGltZSB3aXRoIDMgcyEgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIyMDIyLzA5LzIzIDE1OjMzOjQ4IFdlIG5lZWQgdG8gcmVmcmVzaCB0aGUgZGlyIC9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2V4ZS93ZC9henVyZW1sLWxvZ3Mgb25lIG1vcmUgdGltZSB3aXRoIDMgcyEiCjIwMjItMDktMjNUMTU6MzM6NDguNjMyMzMwWiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6IDIwMjIvMDkvMjMgMTU6MzM6NDggV2UgbmVlZCB0byByZWZyZXNoIHRoZSBkaXIgL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvZXhlL3dkL291dHB1dHMgb25lIG1vcmUgdGltZSB3aXRoIDMgcyEgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIyMDIyLzA5LzIzIDE1OjMzOjQ4IFdlIG5lZWQgdG8gcmVmcmVzaCB0aGUgZGlyIC9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2V4ZS93ZC9vdXRwdXRzIG9uZSBtb3JlIHRpbWUgd2l0aCAzIHMhIgoyMDIyLTA5LTIzVDE1OjMzOjQ4LjYzMjM3MVogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAyMDIyLzA5LzIzIDE1OjMzOjQ4IEV4aXRpbmcgZmlsZXdhdGNoZXIgZm9yIHN0cmVhbWFibGUgZmlsZSAvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS9jYXAvc25hcHNob3QtY2FwYWJpbGl0eS93ZC8uYXp1cmVtbF9jcl9sb2cvc25hcHNob3QtY2FwYWJpbGl0eS5sb2cuIE5vIGNoYW5nZXMgYWZ0ZXIgdGVybWluYXRpb24gc2lnbmFsLiBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IjIwMjIvMDkvMjMgMTU6MzM6NDggRXhpdGluZyBmaWxld2F0Y2hlciBmb3Igc3RyZWFtYWJsZSBmaWxlIC9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2NhcC9zbmFwc2hvdC1jYXBhYmlsaXR5L3dkLy5henVyZW1sX2NyX2xvZy9zbmFwc2hvdC1jYXBhYmlsaXR5LmxvZy4gTm8gY2hhbmdlcyBhZnRlciB0ZXJtaW5hdGlvbiBzaWduYWwuIgoyMDIyLTA5LTIzVDE1OjMzOjQ4LjYzMjM5NVogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAyMDIyLzA5LzIzIDE1OjMzOjQ4IFN0cmVhbWVyIHRlcm1pbmF0ZWQgZm9yIHN5c3RlbV9sb2dzL3NuYXBzaG90X2NhcGFiaWxpdHkvc25hcHNob3QtY2FwYWJpbGl0eS5sb2cgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIyMDIyLzA5LzIzIDE1OjMzOjQ4IFN0cmVhbWVyIHRlcm1pbmF0ZWQgZm9yIHN5c3RlbV9sb2dzL3NuYXBzaG90X2NhcGFiaWxpdHkvc25hcHNob3QtY2FwYWJpbGl0eS5sb2ciCjIwMjItMDktMjNUMTU6MzM6NDguNjMyNDQ4WiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6IDIwMjIvMDkvMjMgMTU6MzM6NDggTmV3IGZpbGUgZGV0ZWN0ZWQ6IC9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2V4ZS93ZC91c2VyX2xvZ3Mvc3RkX2xvZy50eHQgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIyMDIyLzA5LzIzIDE1OjMzOjQ4IE5ldyBmaWxlIGRldGVjdGVkOiAvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS9leGUvd2QvdXNlcl9sb2dzL3N0ZF9sb2cudHh0IgoyMDIyLTA5LTIzVDE1OjMzOjQ4LjYzMjQ2NlogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAyMDIyLzA5LzIzIDE1OjMzOjQ4IEFmdGVyIHRlcm1pbmF0aW9uIHNpZ25hbCwgd2UgZmluZCB0aGUgbGlzdCBvZiBuZXcgZmlsZSA6IHN0ZF9sb2cudHh0IGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iMjAyMi8wOS8yMyAxNTozMzo0OCBBZnRlciB0ZXJtaW5hdGlvbiBzaWduYWwsIHdlIGZpbmQgdGhlIGxpc3Qgb2YgbmV3IGZpbGUgOiBzdGRfbG9nLnR4dCIKMjAyMi0wOS0yM1QxNTozMzo0OC42MzI0OTdaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogMjAyMi8wOS8yMyAxNTozMzo0OCBXZSBuZWVkIHRvIHJlZnJlc2ggdGhlIGRpciAvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS9leGUvd2QvdXNlcl9sb2dzIG9uZSBtb3JlIHRpbWUgd2l0aCAzIHMhIGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iMjAyMi8wOS8yMyAxNTozMzo0OCBXZSBuZWVkIHRvIHJlZnJlc2ggdGhlIGRpciAvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS9leGUvd2QvdXNlcl9sb2dzIG9uZSBtb3JlIHRpbWUgd2l0aCAzIHMhIgoyMDIyLTA5LTIzVDE1OjMzOjQ4LjYzMjUyN1ogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAyMDIyLzA5LzIzIDE1OjMzOjQ4IFJlcXVlc3RpbmcgUE9TVDogW3t1c2VyX2xvZ3Mvc3RkX2xvZy50eHR9XSBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IjIwMjIvMDkvMjMgMTU6MzM6NDggUmVxdWVzdGluZyBQT1NUOiBbe3VzZXJfbG9ncy9zdGRfbG9nLnR4dH1dIgoyMDIyLTA5LTIzVDE1OjMzOjQ4LjYzMjU1M1ogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAyMDIyLzA5LzIzIDE1OjMzOjQ4IEF0dGVtcHQgMSBvZiBodHRwIGNhbGwgdG8gaHR0cHM6Ly9lYXN0dXMyLmFwaS5henVyZW1sLm1zL2FydGlmYWN0L3YyLjAvc3Vic2NyaXB0aW9ucy85NmFlZGUxMi0yZjczLTQxY2ItYjk4My02ZDExYTkwNDgzOWIvcmVzb3VyY2VHcm91cHMvemhlbmdmZWktdGVzdC1lYXN0dXMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nU2VydmljZXMvd29ya3NwYWNlcy9zZGtfdm5leHRfY2xpL2FydGlmYWN0cy9iYXRjaC9tZXRhZGF0YS9FeHBlcmltZW50UnVuL2RjaWQuNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkIGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iMjAyMi8wOS8yMyAxNTozMzo0OCBBdHRlbXB0IDEgb2YgaHR0cCBjYWxsIHRvIGh0dHBzOi8vZWFzdHVzMi5hcGkuYXp1cmVtbC5tcy9hcnRpZmFjdC92Mi4wL3N1YnNjcmlwdGlvbnMvOTZhZWRlMTItMmY3My00MWNiLWI5ODMtNmQxMWE5MDQ4MzliL3Jlc291cmNlR3JvdXBzL3poZW5nZmVpLXRlc3QtZWFzdHVzMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZ1NlcnZpY2VzL3dvcmtzcGFjZXMvc2RrX3ZuZXh0X2NsaS9hcnRpZmFjdHMvYmF0Y2gvbWV0YWRhdGEvRXhwZXJpbWVudFJ1bi9kY2lkLjc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCIKMjAyMi0wOS0yM1QxNTozMzo0OC42NDQ4NDdaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogMjAyMi8wOS8yMyAxNTozMzo0OCBXZSBuZWVkIHRvIHJlZnJlc2ggdGhlIGRpciAvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS9jYXAvc25hcHNob3QtY2FwYWJpbGl0eS93ZC8uYXp1cmVtbF9jcl9sb2cgb25lIG1vcmUgdGltZSB3aXRoIDMgcyEgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIyMDIyLzA5LzIzIDE1OjMzOjQ4IFdlIG5lZWQgdG8gcmVmcmVzaCB0aGUgZGlyIC9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2NhcC9zbmFwc2hvdC1jYXBhYmlsaXR5L3dkLy5henVyZW1sX2NyX2xvZyBvbmUgbW9yZSB0aW1lIHdpdGggMyBzISIKMjAyMi0wOS0yM1QxNTozMzo0OC42NDgyOTRaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogMjAyMi8wOS8yMyAxNTozMzo0OCBXZSBuZWVkIHRvIHJlZnJlc2ggdGhlIGRpciAvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS9jYXAvY3MtY2FwYWJpbGl0eS93ZC8uYXp1cmVtbF9jcl9sb2cgb25lIG1vcmUgdGltZSB3aXRoIDMgcyEgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIyMDIyLzA5LzIzIDE1OjMzOjQ4IFdlIG5lZWQgdG8gcmVmcmVzaCB0aGUgZGlyIC9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2NhcC9jcy1jYXBhYmlsaXR5L3dkLy5henVyZW1sX2NyX2xvZyBvbmUgbW9yZSB0aW1lIHdpdGggMyBzISIKMjAyMi0wOS0yM1QxNTozMzo0OC42NDgzMzJaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogMjAyMi8wOS8yMyAxNTozMzo0OCBXZSBuZWVkIHRvIHJlZnJlc2ggdGhlIGRpciAvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS9jYXAvbWV0cmljcy1jYXBhYmlsaXR5L3dkLy5henVyZW1sX2NyX2xvZyBvbmUgbW9yZSB0aW1lIHdpdGggMyBzISBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IjIwMjIvMDkvMjMgMTU6MzM6NDggV2UgbmVlZCB0byByZWZyZXNoIHRoZSBkaXIgL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvY2FwL21ldHJpY3MtY2FwYWJpbGl0eS93ZC8uYXp1cmVtbF9jcl9sb2cgb25lIG1vcmUgdGltZSB3aXRoIDMgcyEiCjIwMjItMDktMjNUMTU6MzM6NDguNjQ4MzU0WiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6IDIwMjIvMDkvMjMgMTU6MzM6NDggTmV3IGZpbGUgZGV0ZWN0ZWQ6IC9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2NhcC9saWZlY3ljbGVyL3dkLy5henVyZW1sX2NyX2xvZy9leGVjdXRpb24td3JhcHBlci5sb2cgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIyMDIyLzA5LzIzIDE1OjMzOjQ4IE5ldyBmaWxlIGRldGVjdGVkOiAvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS9jYXAvbGlmZWN5Y2xlci93ZC8uYXp1cmVtbF9jcl9sb2cvZXhlY3V0aW9uLXdyYXBwZXIubG9nIgoyMDIyLTA5LTIzVDE1OjMzOjQ4LjY0ODM3MlogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAyMDIyLzA5LzIzIDE1OjMzOjQ4IEFmdGVyIHRlcm1pbmF0aW9uIHNpZ25hbCwgd2UgZmluZCB0aGUgbGlzdCBvZiBuZXcgZmlsZSA6IGV4ZWN1dGlvbi13cmFwcGVyLmxvZyBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IjIwMjIvMDkvMjMgMTU6MzM6NDggQWZ0ZXIgdGVybWluYXRpb24gc2lnbmFsLCB3ZSBmaW5kIHRoZSBsaXN0IG9mIG5ldyBmaWxlIDogZXhlY3V0aW9uLXdyYXBwZXIubG9nIgoyMDIyLTA5LTIzVDE1OjMzOjQ4LjY0ODM4N1ogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAyMDIyLzA5LzIzIDE1OjMzOjQ4IFdlIG5lZWQgdG8gcmVmcmVzaCB0aGUgZGlyIC9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2NhcC9saWZlY3ljbGVyL3dkLy5henVyZW1sX2NyX2xvZyBvbmUgbW9yZSB0aW1lIHdpdGggMyBzISBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IjIwMjIvMDkvMjMgMTU6MzM6NDggV2UgbmVlZCB0byByZWZyZXNoIHRoZSBkaXIgL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvY2FwL2xpZmVjeWNsZXIvd2QvLmF6dXJlbWxfY3JfbG9nIG9uZSBtb3JlIHRpbWUgd2l0aCAzIHMhIgoyMDIyLTA5LTIzVDE1OjMzOjQ4LjY0ODQwNFogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAyMDIyLzA5LzIzIDE1OjMzOjQ4IFJlcXVlc3RpbmcgUE9TVDogW3tzeXN0ZW1fbG9ncy9saWZlY3ljbGVyL2V4ZWN1dGlvbi13cmFwcGVyLmxvZ31dIGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iMjAyMi8wOS8yMyAxNTozMzo0OCBSZXF1ZXN0aW5nIFBPU1Q6IFt7c3lzdGVtX2xvZ3MvbGlmZWN5Y2xlci9leGVjdXRpb24td3JhcHBlci5sb2d9XSIKMjAyMi0wOS0yM1QxNTozMzo0OC42NDg0MThaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogMjAyMi8wOS8yMyAxNTozMzo0OCBBdHRlbXB0IDEgb2YgaHR0cCBjYWxsIHRvIGh0dHBzOi8vZWFzdHVzMi5hcGkuYXp1cmVtbC5tcy9hcnRpZmFjdC92Mi4wL3N1YnNjcmlwdGlvbnMvOTZhZWRlMTItMmY3My00MWNiLWI5ODMtNmQxMWE5MDQ4MzliL3Jlc291cmNlR3JvdXBzL3poZW5nZmVpLXRlc3QtZWFzdHVzMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZ1NlcnZpY2VzL3dvcmtzcGFjZXMvc2RrX3ZuZXh0X2NsaS9hcnRpZmFjdHMvYmF0Y2gvbWV0YWRhdGEvRXhwZXJpbWVudFJ1bi9kY2lkLjc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IjIwMjIvMDkvMjMgMTU6MzM6NDggQXR0ZW1wdCAxIG9mIGh0dHAgY2FsbCB0byBodHRwczovL2Vhc3R1czIuYXBpLmF6dXJlbWwubXMvYXJ0aWZhY3QvdjIuMC9zdWJzY3JpcHRpb25zLzk2YWVkZTEyLTJmNzMtNDFjYi1iOTgzLTZkMTFhOTA0ODM5Yi9yZXNvdXJjZUdyb3Vwcy96aGVuZ2ZlaS10ZXN0LWVhc3R1czIvcHJvdmlkZXJzL01pY3Jvc29mdC5NYWNoaW5lTGVhcm5pbmdTZXJ2aWNlcy93b3Jrc3BhY2VzL3Nka192bmV4dF9jbGkvYXJ0aWZhY3RzL2JhdGNoL21ldGFkYXRhL0V4cGVyaW1lbnRSdW4vZGNpZC43NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQiCjIwMjItMDktMjNUMTU6MzM6NDguNjU4MjE5WiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6IDIwMjIvMDkvMjMgMTU6MzM6NDggRXhpdGluZyBmaWxld2F0Y2hlciBmb3Igc3RyZWFtYWJsZSBmaWxlIC9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2NhcC9jcy1jYXBhYmlsaXR5L3dkLy5henVyZW1sX2NyX2xvZy9jcy1jYXBhYmlsaXR5LmxvZy4gTm8gY2hhbmdlcyBhZnRlciB0ZXJtaW5hdGlvbiBzaWduYWwuIGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iMjAyMi8wOS8yMyAxNTozMzo0OCBFeGl0aW5nIGZpbGV3YXRjaGVyIGZvciBzdHJlYW1hYmxlIGZpbGUgL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvY2FwL2NzLWNhcGFiaWxpdHkvd2QvLmF6dXJlbWxfY3JfbG9nL2NzLWNhcGFiaWxpdHkubG9nLiBObyBjaGFuZ2VzIGFmdGVyIHRlcm1pbmF0aW9uIHNpZ25hbC4iCjIwMjItMDktMjNUMTU6MzM6NDguNjYwOTEwWiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6IDIwMjIvMDkvMjMgMTU6MzM6NDggU3RyZWFtZXIgdGVybWluYXRlZCBmb3Igc3lzdGVtX2xvZ3MvY3NfY2FwYWJpbGl0eS9jcy1jYXBhYmlsaXR5LmxvZyBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IjIwMjIvMDkvMjMgMTU6MzM6NDggU3RyZWFtZXIgdGVybWluYXRlZCBmb3Igc3lzdGVtX2xvZ3MvY3NfY2FwYWJpbGl0eS9jcy1jYXBhYmlsaXR5LmxvZyIKMjAyMi0wOS0yM1QxNTozMzo0OC42NjE0MzlaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogMjAyMi8wOS8yMyAxNTozMzo0OCBFeGl0aW5nIGZpbGV3YXRjaGVyIGZvciBzdHJlYW1hYmxlIGZpbGUgL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvY2FwL2xpZmVjeWNsZXIvd2QvLmF6dXJlbWxfY3JfbG9nL2xpZmVjeWNsZXIubG9nLiBObyBjaGFuZ2VzIGFmdGVyIHRlcm1pbmF0aW9uIHNpZ25hbC4gY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIyMDIyLzA5LzIzIDE1OjMzOjQ4IEV4aXRpbmcgZmlsZXdhdGNoZXIgZm9yIHN0cmVhbWFibGUgZmlsZSAvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS9jYXAvbGlmZWN5Y2xlci93ZC8uYXp1cmVtbF9jcl9sb2cvbGlmZWN5Y2xlci5sb2cuIE5vIGNoYW5nZXMgYWZ0ZXIgdGVybWluYXRpb24gc2lnbmFsLiIKMjAyMi0wOS0yM1QxNTozMzo0OC42NjI0NjJaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogMjAyMi8wOS8yMyAxNTozMzo0OCBTdHJlYW1lciB0ZXJtaW5hdGVkIGZvciBzeXN0ZW1fbG9ncy9saWZlY3ljbGVyL2xpZmVjeWNsZXIubG9nIGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iMjAyMi8wOS8yMyAxNTozMzo0OCBTdHJlYW1lciB0ZXJtaW5hdGVkIGZvciBzeXN0ZW1fbG9ncy9saWZlY3ljbGVyL2xpZmVjeWNsZXIubG9nIgoyMDIyLTA5LTIzVDE1OjMzOjQ4LjY2Mjk3NVogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAyMDIyLzA5LzIzIDE1OjMzOjQ4IEV4aXRpbmcgZmlsZXdhdGNoZXIgZm9yIHN0cmVhbWFibGUgZmlsZSAvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS9jYXAvaG9zdHRvb2xzLWNhcGFiaWxpdHkvd2QvLmF6dXJlbWxfY3JfbG9nL2hvc3R0b29scy1jYXBhYmlsaXR5LmxvZy4gTm8gY2hhbmdlcyBhZnRlciB0ZXJtaW5hdGlvbiBzaWduYWwuIGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iMjAyMi8wOS8yMyAxNTozMzo0OCBFeGl0aW5nIGZpbGV3YXRjaGVyIGZvciBzdHJlYW1hYmxlIGZpbGUgL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvY2FwL2hvc3R0b29scy1jYXBhYmlsaXR5L3dkLy5henVyZW1sX2NyX2xvZy9ob3N0dG9vbHMtY2FwYWJpbGl0eS5sb2cuIE5vIGNoYW5nZXMgYWZ0ZXIgdGVybWluYXRpb24gc2lnbmFsLiIKMjAyMi0wOS0yM1QxNTozMzo0OC42NzAyOTBaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogMjAyMi8wOS8yMyAxNTozMzo0OCBTdHJlYW1lciB0ZXJtaW5hdGVkIGZvciBzeXN0ZW1fbG9ncy9ob3N0dG9vbHNfY2FwYWJpbGl0eS9ob3N0dG9vbHMtY2FwYWJpbGl0eS5sb2cgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIyMDIyLzA5LzIzIDE1OjMzOjQ4IFN0cmVhbWVyIHRlcm1pbmF0ZWQgZm9yIHN5c3RlbV9sb2dzL2hvc3R0b29sc19jYXBhYmlsaXR5L2hvc3R0b29scy1jYXBhYmlsaXR5LmxvZyIKMjAyMi0wOS0yM1QxNTozMzo0OC42NzQwNThaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogMjAyMi8wOS8yMyAxNTozMzo0OCBXZSBuZWVkIHRvIHJlZnJlc2ggdGhlIGRpciAvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS9jYXAvaG9zdHRvb2xzLWNhcGFiaWxpdHkvd2QvLmF6dXJlbWxfY3JfbG9nIG9uZSBtb3JlIHRpbWUgd2l0aCAzIHMhIGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iMjAyMi8wOS8yMyAxNTozMzo0OCBXZSBuZWVkIHRvIHJlZnJlc2ggdGhlIGRpciAvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS9jYXAvaG9zdHRvb2xzLWNhcGFiaWxpdHkvd2QvLmF6dXJlbWxfY3JfbG9nIG9uZSBtb3JlIHRpbWUgd2l0aCAzIHMhIgoyMDIyLTA5LTIzVDE1OjMzOjQ4LjY3NzE2M1ogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAyMDIyLzA5LzIzIDE1OjMzOjQ4IGZpbGUgTFNfcm9vdC9qb2JzL3dkLy50bXAgZG9lcyBub3QgZXhpc3QgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIyMDIyLzA5LzIzIDE1OjMzOjQ4IGZpbGUgTFNfcm9vdC9qb2JzL3dkLy50bXAgZG9lcyBub3QgZXhpc3QiCjIwMjItMDktMjNUMTU6MzM6NDguNjc4NDM4WiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6IDIwMjIvMDkvMjMgMTU6MzM6NDggV2UgbmVlZCB0byByZWZyZXNoIHRoZSBkaXIgTFNfcm9vdC9qb2JzL3dkLy50bXAgb25lIG1vcmUgdGltZSB3aXRoIDMgcyEgY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIyMDIyLzA5LzIzIDE1OjMzOjQ4IFdlIG5lZWQgdG8gcmVmcmVzaCB0aGUgZGlyIExTX3Jvb3Qvam9icy93ZC8udG1wIG9uZSBtb3JlIHRpbWUgd2l0aCAzIHMhIgoyMDIyLTA5LTIzVDE1OjMzOjQ4LjY3ODU0N1ogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAyMDIyLzA5LzIzIDE1OjMzOjQ4IFdlIG5lZWQgdG8gcmVmcmVzaCB0aGUgZGlyIC9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2V4ZS93ZC9sb2dzIG9uZSBtb3JlIHRpbWUgd2l0aCAzIHMhIGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iMjAyMi8wOS8yMyAxNTozMzo0OCBXZSBuZWVkIHRvIHJlZnJlc2ggdGhlIGRpciAvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS9leGUvd2QvbG9ncyBvbmUgbW9yZSB0aW1lIHdpdGggMyBzISIKMjAyMi0wOS0yM1QxNTozMzo0OC42Nzg2MDhaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogMjAyMi8wOS8yMyAxNTozMzo0OCBOZXcgZmlsZSBkZXRlY3RlZDogL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvY2FwL2RhdGEtY2FwYWJpbGl0eS93ZC8uYXp1cmVtbF9jcl9sb2cvZGF0YS1jYXBhYmlsaXR5LmxvZyBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IjIwMjIvMDkvMjMgMTU6MzM6NDggTmV3IGZpbGUgZGV0ZWN0ZWQ6IC9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2NhcC9kYXRhLWNhcGFiaWxpdHkvd2QvLmF6dXJlbWxfY3JfbG9nL2RhdGEtY2FwYWJpbGl0eS5sb2ciCjIwMjItMDktMjNUMTU6MzM6NDguNjc4Njg0WiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6IDIwMjIvMDkvMjMgMTU6MzM6NDggTmV3IGZpbGUgZGV0ZWN0ZWQ6IC9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2NhcC9kYXRhLWNhcGFiaWxpdHkvd2QvLmF6dXJlbWxfY3JfbG9nL3JzbGV4LmxvZy4yMDIyLTA5LTIzLTE1IGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iMjAyMi8wOS8yMyAxNTozMzo0OCBOZXcgZmlsZSBkZXRlY3RlZDogL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvY2FwL2RhdGEtY2FwYWJpbGl0eS93ZC8uYXp1cmVtbF9jcl9sb2cvcnNsZXgubG9nLjIwMjItMDktMjMtMTUiCjIwMjItMDktMjNUMTU6MzM6NDguNjc4NzYwWiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6IDIwMjIvMDkvMjMgMTU6MzM6NDggQWZ0ZXIgdGVybWluYXRpb24gc2lnbmFsLCB3ZSBmaW5kIHRoZSBsaXN0IG9mIG5ldyBmaWxlIDogZGF0YS1jYXBhYmlsaXR5LmxvZyxyc2xleC5sb2cuMjAyMi0wOS0yMy0xNSBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IjIwMjIvMDkvMjMgMTU6MzM6NDggQWZ0ZXIgdGVybWluYXRpb24gc2lnbmFsLCB3ZSBmaW5kIHRoZSBsaXN0IG9mIG5ldyBmaWxlIDogZGF0YS1jYXBhYmlsaXR5LmxvZyxyc2xleC5sb2cuMjAyMi0wOS0yMy0xNSIKMjAyMi0wOS0yM1QxNTozMzo0OC42Nzg4ODJaICBJTkZPIGhvc3R0b29sc19jYXBhYmlsaXR5Ojpob3N0dG9vbHM6IHN0ZGVycjogMjAyMi8wOS8yMyAxNTozMzo0OCBXZSBuZWVkIHRvIHJlZnJlc2ggdGhlIGRpciAvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS9jYXAvZGF0YS1jYXBhYmlsaXR5L3dkLy5henVyZW1sX2NyX2xvZyBvbmUgbW9yZSB0aW1lIHdpdGggMyBzISBjb21tYW5kPSIvdXNyL2xvY2FsL2Jpbi9ob3N0dG9vbHMiIGxpbmU9IjIwMjIvMDkvMjMgMTU6MzM6NDggV2UgbmVlZCB0byByZWZyZXNoIHRoZSBkaXIgL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvY2FwL2RhdGEtY2FwYWJpbGl0eS93ZC8uYXp1cmVtbF9jcl9sb2cgb25lIG1vcmUgdGltZSB3aXRoIDMgcyEiCjIwMjItMDktMjNUMTU6MzM6NDguNjc4OTc4WiAgSU5GTyBob3N0dG9vbHNfY2FwYWJpbGl0eTo6aG9zdHRvb2xzOiBzdGRlcnI6IDIwMjIvMDkvMjMgMTU6MzM6NDggUmVxdWVzdGluZyBQT1NUOiBbe3N5c3RlbV9sb2dzL2RhdGFfY2FwYWJpbGl0eS9kYXRhLWNhcGFiaWxpdHkubG9nfSB7c3lzdGVtX2xvZ3MvZGF0YV9jYXBhYmlsaXR5L3JzbGV4LmxvZy4yMDIyLTA5LTIzLTE1fV0gY29tbWFuZD0iL3Vzci9sb2NhbC9iaW4vaG9zdHRvb2xzIiBsaW5lPSIyMDIyLzA5LzIzIDE1OjMzOjQ4IFJlcXVlc3RpbmcgUE9TVDogW3tzeXN0ZW1fbG9ncy9kYXRhX2NhcGFiaWxpdHkvZGF0YS1jYXBhYmlsaXR5LmxvZ30ge3N5c3RlbV9sb2dzL2RhdGFfY2FwYWJpbGl0eS9yc2xleC5sb2cuMjAyMi0wOS0yMy0xNX1dIgoyMDIyLTA5LTIzVDE1OjMzOjQ4LjY3OTA0NFogIElORk8gaG9zdHRvb2xzX2NhcGFiaWxpdHk6Omhvc3R0b29sczogc3RkZXJyOiAyMDIyLzA5LzIzIDE1OjMzOjQ4IEF0dGVtcHQgMSBvZiBodHRwIGNhbGwgdG8gaHR0cHM6Ly9lYXN0dXMyLmFwaS5henVyZW1sLm1zL2FydGlmYWN0L3YyLjAvc3Vic2NyaXB0aW9ucy85NmFlZGUxMi0yZjczLTQxY2ItYjk4My02ZDExYTkwNDgzOWIvcmVzb3VyY2VHcm91cHMvemhlbmdmZWktdGVzdC1lYXN0dXMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nU2VydmljZXMvd29ya3NwYWNlcy9zZGtfdm5leHRfY2xpL2FydGlmYWN0cy9iYXRjaC9tZXRhZGF0YS9FeHBlcmltZW50UnVuL2RjaWQuNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkIGNvbW1hbmQ9Ii91c3IvbG9jYWwvYmluL2hvc3R0b29scyIgbGluZT0iMjAyMi8wOS8yMyAxNTozMzo0OCBBdHRlbXB0IDEgb2YgaHR0cCBjYWxsIHRvIGh0dHBzOi8vZWFzdHVzMi5hcGkuYXp1cmVtbC5tcy9hcnRpZmFjdC92Mi4wL3N1YnNjcmlwdGlvbnMvOTZhZWRlMTItMmY3My00MWNiLWI5ODMtNmQxMWE5MDQ4MzliL3Jlc291cmNlR3JvdXBzL3poZW5nZmVpLXRlc3QtZWFzdHVzMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZ1NlcnZpY2VzL3dvcmtzcGFjZXMvc2RrX3ZuZXh0X2NsaS9hcnRpZmFjdHMvYmF0Y2gvbWV0YWRhdGEvRXhwZXJpbWVudFJ1bi9kY2lkLjc1OTlkMjNmLTgxNjQtNDY0NC04MDhlLWU0ZTEzYjFlZmUxZCIK" + }, + { + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml/ExperimentRun/dcid.7599d23f-8164-4644-808e-e4e13b1efe1d/system_logs/lifecycler/execution-wrapper.log", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/xml", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:34:44 GMT", + "x-ms-range": "bytes=0-33554431", + "x-ms-version": "2021-08-06" + }, + "RequestBody": null, + "StatusCode": 206, + "ResponseHeaders": { + "Accept-Ranges": "bytes", + "Content-Disposition": "", + "Content-Length": "25216", + "Content-Range": "bytes 0-25215/25216", + "Content-Type": "application/octet-stream", + "Date": "Fri, 23 Sep 2022 15:34:42 GMT", + "ETag": "\u00220x8DA9D7902D19489\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:33:49 GMT", + "Server": [ + "Windows-Azure-Blob/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": "Origin", + "x-ms-blob-type": "BlockBlob", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:33:48 GMT", + "x-ms-lease-state": "available", + "x-ms-lease-status": "unlocked", + "x-ms-server-encrypted": "true", + "x-ms-version": "2021-08-06" + }, + "ResponseBody": "MjAyMi0wOS0yM1QxNTozMzo0OC41MjQzMzlaICBJTkZPIHRlbGVtZXRyeTogam9iX3RlbGVtZXRyeV9pbml0IGFydGlmYWN0X3R5cGU9aW5zdGFsbGVkIGJyYW5jaD1vcmlnaW4vMWY0ODlkZWM0ZjU3MTE0ZDc2NzM2NGQwMmVkOTUyYTUyM2U4ZWJiYiBjaV9udW1iZXI9MjAyMjA5MTYuMSBjaV9uYW1lPUNvbW1vblJ1bnRpbWUtcHJvZC1idWlsZCBidWlsZF90aW1lPTIwMjItMDktMTYgMTA6MzM6MzYuODUzMTY3CjIwMjItMDktMjNUMTU6MzM6NDguNTMwODg5WiAgSU5GTyBydW5fZXhlY3V0aW9uX3dyYXBwZXI6IGV4ZWN1dGlvbl93cmFwcGVyOiBTdWNjZXNzZnVsbHkgZHVtcGVkIGJvb3RzdHJhcHBpbmcgZW52aXJvbm1lbnQgdG8gZmlsZQoyMDIyLTA5LTIzVDE1OjMzOjQ4LjUzMDkyNVogIElORk8gcnVuX2V4ZWN1dGlvbl93cmFwcGVyOiBleGVjdXRpb25fd3JhcHBlcjogRW5hYmxlIHN0ZCBsb2cgc3RyZWFtaW5nIGlzIG5vdCBzcGVjaWZpZWQgaW4gZXhlY3V0b3IgY29uZmlndXJhdGlvbiwgZGVmYXVsdCB0byBub3Qgc3RyZWFtIGxvZ3MgdG8gc3Rkb3V0IGFuZCBzdGRlcnIKMjAyMi0wOS0yM1QxNTozMzo0OC41MzA5MzVaICBJTkZPIHJ1bl9leGVjdXRpb25fd3JhcHBlcjogZXhlY3V0aW9uX3dyYXBwZXI6IEVuYWJsZSB0ZXJtaW5hdGlvbiBzaWduYWwgaGFuZGxpbmcgaXMgbm90IHNwZWNpZmllZCBpbiBleGVjdXRvciBjb25maWd1cmF0aW9uLCBkZWZhdWx0IHRvIGlnbm9yZSB0ZXJtaW5hdGlvbiBzaWduYWxzCjIwMjItMDktMjNUMTU6MzM6NDguNTMxNTM3WiAgSU5GTyBydW5fZXhlY3V0aW9uX3dyYXBwZXI6ZXhlY3V0aW9uLXdyYXBwZXI6OnJ1bl9zZXJ2aWNle2V4ZWN1dG9yX2NvbmZpZz1FeGVjdXRvckNvbmZpZyB7IGV4ZWN1dGlvbl93b3JraW5nX2RpcjogIi9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2V4ZS93ZCIsIGV4ZWN1dG9yX2FkZHJlc3M6ICIvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS8uZ3JwYy9leGVjdXRvcjowIiwgbGlmZWN5Y2xlcl9hZGRyZXNzOiAiL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvLmdycGMvbGlmZWN5Y2xlcjowIiwgZGlzdHJpYnV0ZWRfY29uZmlnOiBOb25lLCB1c2VfbXBpX3JzaF9hZ2VudDogU29tZSh0cnVlKSwgZXhlY3V0b3JfY29uZmlnOiBOb25lIH0gcGF0aF9tYXBwaW5nX2tpbmQ9Tm9uZSBlbmFibGVfc3RkX2xvZ19zdHJlYW1pbmc9ZmFsc2UgZW5hYmxlX3Rlcm1pbmF0aW9uX3NpZ25hbF9oYW5kbGluZz1mYWxzZSBlbnZfZHVtcF9yZXN1bHQ9T2soKCkpfTogZXhlY3V0aW9uX3dyYXBwZXI6OnNlcnZpY2U6IHNlcnZpbmcgZXhlY3V0aW9uIHNlcnZpY2UgYXQgZXhlY3V0b3JfYWRkcmVzcz0vbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS8uZ3JwYy9leGVjdXRvcjowCjIwMjItMDktMjNUMTU6MzM6NDguNTMxNzIxWiAgSU5GTyBydW5fZXhlY3V0aW9uX3dyYXBwZXI6ZXhlY3V0aW9uLXdyYXBwZXI6OnJ1bl9zZXJ2aWNle2V4ZWN1dG9yX2NvbmZpZz1FeGVjdXRvckNvbmZpZyB7IGV4ZWN1dGlvbl93b3JraW5nX2RpcjogIi9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2V4ZS93ZCIsIGV4ZWN1dG9yX2FkZHJlc3M6ICIvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS8uZ3JwYy9leGVjdXRvcjowIiwgbGlmZWN5Y2xlcl9hZGRyZXNzOiAiL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvLmdycGMvbGlmZWN5Y2xlcjowIiwgZGlzdHJpYnV0ZWRfY29uZmlnOiBOb25lLCB1c2VfbXBpX3JzaF9hZ2VudDogU29tZSh0cnVlKSwgZXhlY3V0b3JfY29uZmlnOiBOb25lIH0gcGF0aF9tYXBwaW5nX2tpbmQ9Tm9uZSBlbmFibGVfc3RkX2xvZ19zdHJlYW1pbmc9ZmFsc2UgZW5hYmxlX3Rlcm1pbmF0aW9uX3NpZ25hbF9oYW5kbGluZz1mYWxzZSBlbnZfZHVtcF9yZXN1bHQ9T2soKCkpfTogY3JfY29yZTogU3VjY2Vzc2Z1bGx5IGNvbmZpZ3VyZWQgY3VycmVudCBwcm9jZXNzIHRvIGlnbm9yZSB0ZXJtaW5hdGlvbiBzaWduYWxzCjIwMjItMDktMjNUMTU6MzM6NDguNTMxNzkyWiAgSU5GTyBydW5fZXhlY3V0aW9uX3dyYXBwZXI6ZXhlY3V0aW9uLXdyYXBwZXI6OnJ1bl9zZXJ2aWNle2V4ZWN1dG9yX2NvbmZpZz1FeGVjdXRvckNvbmZpZyB7IGV4ZWN1dGlvbl93b3JraW5nX2RpcjogIi9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2V4ZS93ZCIsIGV4ZWN1dG9yX2FkZHJlc3M6ICIvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS8uZ3JwYy9leGVjdXRvcjowIiwgbGlmZWN5Y2xlcl9hZGRyZXNzOiAiL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvLmdycGMvbGlmZWN5Y2xlcjowIiwgZGlzdHJpYnV0ZWRfY29uZmlnOiBOb25lLCB1c2VfbXBpX3JzaF9hZ2VudDogU29tZSh0cnVlKSwgZXhlY3V0b3JfY29uZmlnOiBOb25lIH0gcGF0aF9tYXBwaW5nX2tpbmQ9Tm9uZSBlbmFibGVfc3RkX2xvZ19zdHJlYW1pbmc9ZmFsc2UgZW5hYmxlX3Rlcm1pbmF0aW9uX3NpZ25hbF9oYW5kbGluZz1mYWxzZSBlbnZfZHVtcF9yZXN1bHQ9T2soKCkpfTpzZXJ2ZTogZ3JwY191dGlsczo6ZW5kcG9pbnQ6OnNlcnZlOiBzZXJ2aW5nIGdSUEMgc2VydmljZSBlbmRwb2ludD1VZHMoIi9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1Ly5ncnBjL2V4ZWN1dG9yOjAiKSByZXRyeT1FeHBvbmVudGlhbEJhY2tvZmZSZXRyeSB7IHJldHJ5X2RlbGF5X3NlY3M6IDIsIGRlbGF5X2ZhY3RvcjogMTAwMCwgbnVtX3JldHJpZXM6IDMgfQoyMDIyLTA5LTIzVDE1OjMzOjQ4LjU0NzczMlogIElORk8gRXhlY3V0aW9uU2VydmljZXI6OnJ1bjogZ3JwY191dGlsczo6c2VydmVyOiBHb3QgZ3JwYyByZXF1ZXN0IHJlcXVlc3RfbmFtZT0icnVuIiByZW1vdGVfYWRkcj1Ob25lCjIwMjItMDktMjNUMTU6MzM6NDguNTQ4MTMwWiAgSU5GTyBFeGVjdXRpb25TZXJ2aWNlcjo6cnVuOkV4ZWN1dGlvblNlcnZpY2VyOjpzcGF3bl9leGVjdXRpb257ZXJyb3JfZGV0ZWN0b3I9U29tZShFcnJvckRldGVjdG9yIHsgZXJyb3JzOiBNdXRleCB7IGRhdGE6IFtdIH0gfSkgZmluYWxpemF0aW9uPUV4ZWN1dGlvbkZpbmFsaXplciB7IGV4ZWN1dGlvbl9pZDogIjI0YjgwZDlmLTM3MmQtNDYyNS1hYzk4LTNjOGRkYjFmNjczOCIsIGNsaWVudF9hZGRyZXNzOiBTb21lKCIvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS8uZ3JwYy9saWZlY3ljbGVyOjAiKSB9fTogZXhlY3V0aW9uX3dyYXBwZXI6OnNlcnZpY2U6IHNwYXduX2V4ZWN1dGlvbiByZXF1ZXN0IGlkPSIyNGI4MGQ5Zi0zNzJkLTQ2MjUtYWM5OC0zYzhkZGIxZjY3MzgiIGNsaWVudF9hZGRyZXNzPVNvbWUoIi9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1Ly5ncnBjL2xpZmVjeWNsZXI6MCIpCjIwMjItMDktMjNUMTU6MzM6NDguNTQ4MTc1WiAgV0FSTiBFeGVjdXRpb25TZXJ2aWNlcjo6cnVuOkV4ZWN1dGlvblNlcnZpY2VyOjpzcGF3bl9leGVjdXRpb257ZXJyb3JfZGV0ZWN0b3I9U29tZShFcnJvckRldGVjdG9yIHsgZXJyb3JzOiBNdXRleCB7IGRhdGE6IFtdIH0gfSkgZmluYWxpemF0aW9uPUV4ZWN1dGlvbkZpbmFsaXplciB7IGV4ZWN1dGlvbl9pZDogIjI0YjgwZDlmLTM3MmQtNDYyNS1hYzk4LTNjOGRkYjFmNjczOCIsIGNsaWVudF9hZGRyZXNzOiBTb21lKCIvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS8uZ3JwYy9saWZlY3ljbGVyOjAiKSB9fTppbmplY3RfbGVnYWN5X2Vudl92YXJze2Rpc3RyaWJ1dGVkX2NvbmZpZz1Ob25lfTogZXhlY3V0aW9uX3dyYXBwZXI6OmxlZ2FjeV9lbnZfdmFyczogU2tpcCBpbmplY3RpbmcgbGVnYWN5IGVudiB2YXJzLCBkaXN0cmlidXRlZCBjb25maWcgaXMgTm9uZSwgc2V0dGluZyBvbmx5IHRoZSBkZWZhdWx0cwoyMDIyLTA5LTIzVDE1OjMzOjQ4LjU0ODE5MVogIElORk8gRXhlY3V0aW9uU2VydmljZXI6OnJ1bjpFeGVjdXRpb25TZXJ2aWNlcjo6c3Bhd25fZXhlY3V0aW9ue2Vycm9yX2RldGVjdG9yPVNvbWUoRXJyb3JEZXRlY3RvciB7IGVycm9yczogTXV0ZXggeyBkYXRhOiBbXSB9IH0pIGZpbmFsaXphdGlvbj1FeGVjdXRpb25GaW5hbGl6ZXIgeyBleGVjdXRpb25faWQ6ICIyNGI4MGQ5Zi0zNzJkLTQ2MjUtYWM5OC0zYzhkZGIxZjY3MzgiLCBjbGllbnRfYWRkcmVzczogU29tZSgiL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvLmdycGMvbGlmZWN5Y2xlcjowIikgfX06aW5qZWN0X2xlZ2FjeV9lbnZfdmFyc3tkaXN0cmlidXRlZF9jb25maWc9Tm9uZX06IGV4ZWN1dGlvbl93cmFwcGVyOjpsZWdhY3lfZW52X3ZhcnM6IEluamVjdGluZyBBWl9CQVRDSEFJX0pPQl9XT1JLX0RJUj0vbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS9leGUvd2Qgd29ya2luZ19kaXI9Ii9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2V4ZS93ZCIKMjAyMi0wOS0yM1QxNTozMzo0OC41NDgyMTVaICBJTkZPIEV4ZWN1dGlvblNlcnZpY2VyOjpydW46RXhlY3V0aW9uU2VydmljZXI6OnNwYXduX2V4ZWN1dGlvbntlcnJvcl9kZXRlY3Rvcj1Tb21lKEVycm9yRGV0ZWN0b3IgeyBlcnJvcnM6IE11dGV4IHsgZGF0YTogW10gfSB9KSBmaW5hbGl6YXRpb249RXhlY3V0aW9uRmluYWxpemVyIHsgZXhlY3V0aW9uX2lkOiAiMjRiODBkOWYtMzcyZC00NjI1LWFjOTgtM2M4ZGRiMWY2NzM4IiwgY2xpZW50X2FkZHJlc3M6IFNvbWUoIi9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1Ly5ncnBjL2xpZmVjeWNsZXI6MCIpIH19OmluamVjdF9sZWdhY3lfZW52X3ZhcnN7ZGlzdHJpYnV0ZWRfY29uZmlnPU5vbmV9OiBleGVjdXRpb25fd3JhcHBlcjo6bGVnYWN5X2Vudl92YXJzOiBJbmplY3RpbmcgQVpVUkVNTF9QUk9DRVNTX05BTUU9bWFpbiBhcyBkZWZhdWx0CjIwMjItMDktMjNUMTU6MzM6NDguNTQ4NTQwWiAgSU5GTyBFeGVjdXRpb25TZXJ2aWNlcjo6cnVuOkV4ZWN1dGlvblNlcnZpY2VyOjpzcGF3bl9leGVjdXRpb257ZXJyb3JfZGV0ZWN0b3I9U29tZShFcnJvckRldGVjdG9yIHsgZXJyb3JzOiBNdXRleCB7IGRhdGE6IFtdIH0gfSkgZmluYWxpemF0aW9uPUV4ZWN1dGlvbkZpbmFsaXplciB7IGV4ZWN1dGlvbl9pZDogIjI0YjgwZDlmLTM3MmQtNDYyNS1hYzk4LTNjOGRkYjFmNjczOCIsIGNsaWVudF9hZGRyZXNzOiBTb21lKCIvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS8uZ3JwYy9saWZlY3ljbGVyOjAiKSB9fTppbmplY3RfbGVnYWN5X2Vudl92YXJze2Rpc3RyaWJ1dGVkX2NvbmZpZz1Ob25lfTpvdmVycmlkZV9kY19lbnZfdmFyczogZXhlY3V0aW9uX3dyYXBwZXI6OmRjX2Vudl92YXJzOiBVcGRhdGVkIGVudiBBWlVSRU1MX0NSX0VYRUNVVE9SX0NPTkZJRyBmb3Igc3Bhd25lZCBwcm9jZXNzCjIwMjItMDktMjNUMTU6MzM6NDguNTQ4NTY2WiAgSU5GTyBFeGVjdXRpb25TZXJ2aWNlcjo6cnVuOkV4ZWN1dGlvblNlcnZpY2VyOjpzcGF3bl9leGVjdXRpb257ZXJyb3JfZGV0ZWN0b3I9U29tZShFcnJvckRldGVjdG9yIHsgZXJyb3JzOiBNdXRleCB7IGRhdGE6IFtdIH0gfSkgZmluYWxpemF0aW9uPUV4ZWN1dGlvbkZpbmFsaXplciB7IGV4ZWN1dGlvbl9pZDogIjI0YjgwZDlmLTM3MmQtNDYyNS1hYzk4LTNjOGRkYjFmNjczOCIsIGNsaWVudF9hZGRyZXNzOiBTb21lKCIvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS8uZ3JwYy9saWZlY3ljbGVyOjAiKSB9fTppbmplY3RfbGVnYWN5X2Vudl92YXJze2Rpc3RyaWJ1dGVkX2NvbmZpZz1Ob25lfTpvdmVycmlkZV9kY19lbnZfdmFyczogZXhlY3V0aW9uX3dyYXBwZXI6OmRjX2Vudl92YXJzOiBFbnYgdmFyIEFaVVJFTUxfQ1JfRElTVFJJQlVURURfQ09ORklHIGlzIGVtcHR5IGZvciBjdXJyZW50IHByb2Nlc3MKMjAyMi0wOS0yM1QxNTozMzo0OC41NDg1ODFaICBJTkZPIEV4ZWN1dGlvblNlcnZpY2VyOjpydW46RXhlY3V0aW9uU2VydmljZXI6OnNwYXduX2V4ZWN1dGlvbntlcnJvcl9kZXRlY3Rvcj1Tb21lKEVycm9yRGV0ZWN0b3IgeyBlcnJvcnM6IE11dGV4IHsgZGF0YTogW10gfSB9KSBmaW5hbGl6YXRpb249RXhlY3V0aW9uRmluYWxpemVyIHsgZXhlY3V0aW9uX2lkOiAiMjRiODBkOWYtMzcyZC00NjI1LWFjOTgtM2M4ZGRiMWY2NzM4IiwgY2xpZW50X2FkZHJlc3M6IFNvbWUoIi9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1Ly5ncnBjL2xpZmVjeWNsZXI6MCIpIH19OmluamVjdF9sZWdhY3lfZW52X3ZhcnN7ZGlzdHJpYnV0ZWRfY29uZmlnPU5vbmV9Om92ZXJyaWRlX2RjX2Vudl92YXJzOiBleGVjdXRpb25fd3JhcHBlcjo6ZGNfZW52X3ZhcnM6IFVwZGF0ZWQgZW52IEFaVVJFTUxfU0VSVklDRV9FTkRQT0lOVCBmb3Igc3Bhd25lZCBwcm9jZXNzCjIwMjItMDktMjNUMTU6MzM6NDguNTQ4NTkyWiAgSU5GTyBFeGVjdXRpb25TZXJ2aWNlcjo6cnVuOkV4ZWN1dGlvblNlcnZpY2VyOjpzcGF3bl9leGVjdXRpb257ZXJyb3JfZGV0ZWN0b3I9U29tZShFcnJvckRldGVjdG9yIHsgZXJyb3JzOiBNdXRleCB7IGRhdGE6IFtdIH0gfSkgZmluYWxpemF0aW9uPUV4ZWN1dGlvbkZpbmFsaXplciB7IGV4ZWN1dGlvbl9pZDogIjI0YjgwZDlmLTM3MmQtNDYyNS1hYzk4LTNjOGRkYjFmNjczOCIsIGNsaWVudF9hZGRyZXNzOiBTb21lKCIvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS8uZ3JwYy9saWZlY3ljbGVyOjAiKSB9fTppbmplY3RfbGVnYWN5X2Vudl92YXJze2Rpc3RyaWJ1dGVkX2NvbmZpZz1Ob25lfTpvdmVycmlkZV9kY19lbnZfdmFyczogZXhlY3V0aW9uX3dyYXBwZXI6OmRjX2Vudl92YXJzOiBVcGRhdGVkIGVudiBBWlVSRU1MX0RJU0NPVkVSWV9TRVJWSUNFX0VORFBPSU5UIGZvciBzcGF3bmVkIHByb2Nlc3MKMjAyMi0wOS0yM1QxNTozMzo0OC41NDg2MDNaICBJTkZPIEV4ZWN1dGlvblNlcnZpY2VyOjpydW46RXhlY3V0aW9uU2VydmljZXI6OnNwYXduX2V4ZWN1dGlvbntlcnJvcl9kZXRlY3Rvcj1Tb21lKEVycm9yRGV0ZWN0b3IgeyBlcnJvcnM6IE11dGV4IHsgZGF0YTogW10gfSB9KSBmaW5hbGl6YXRpb249RXhlY3V0aW9uRmluYWxpemVyIHsgZXhlY3V0aW9uX2lkOiAiMjRiODBkOWYtMzcyZC00NjI1LWFjOTgtM2M4ZGRiMWY2NzM4IiwgY2xpZW50X2FkZHJlc3M6IFNvbWUoIi9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1Ly5ncnBjL2xpZmVjeWNsZXI6MCIpIH19OmluamVjdF9sZWdhY3lfZW52X3ZhcnN7ZGlzdHJpYnV0ZWRfY29uZmlnPU5vbmV9Om92ZXJyaWRlX2RjX2Vudl92YXJzOiBleGVjdXRpb25fd3JhcHBlcjo6ZGNfZW52X3ZhcnM6IEVudiB2YXIgQVpVUkVNTF9ERVZfVVJMX01MRkxPVyBpcyBlbXB0eSBmb3IgY3VycmVudCBwcm9jZXNzCjIwMjItMDktMjNUMTU6MzM6NDguNTQ4NjE5WiAgSU5GTyBFeGVjdXRpb25TZXJ2aWNlcjo6cnVuOkV4ZWN1dGlvblNlcnZpY2VyOjpzcGF3bl9leGVjdXRpb257ZXJyb3JfZGV0ZWN0b3I9U29tZShFcnJvckRldGVjdG9yIHsgZXJyb3JzOiBNdXRleCB7IGRhdGE6IFtdIH0gfSkgZmluYWxpemF0aW9uPUV4ZWN1dGlvbkZpbmFsaXplciB7IGV4ZWN1dGlvbl9pZDogIjI0YjgwZDlmLTM3MmQtNDYyNS1hYzk4LTNjOGRkYjFmNjczOCIsIGNsaWVudF9hZGRyZXNzOiBTb21lKCIvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS8uZ3JwYy9saWZlY3ljbGVyOjAiKSB9fTppbmplY3RfbGVnYWN5X2Vudl92YXJze2Rpc3RyaWJ1dGVkX2NvbmZpZz1Ob25lfTpvdmVycmlkZV9kY19lbnZfdmFyczogZXhlY3V0aW9uX3dyYXBwZXI6OmRjX2Vudl92YXJzOiBjbG9zZSB0aW1lLmJ1c3k9Mzg0wrVzIHRpbWUuaWRsZT02LjUwwrVzCjIwMjItMDktMjNUMTU6MzM6NDguNTQ4NjQ1WiAgSU5GTyBFeGVjdXRpb25TZXJ2aWNlcjo6cnVuOkV4ZWN1dGlvblNlcnZpY2VyOjpzcGF3bl9leGVjdXRpb257ZXJyb3JfZGV0ZWN0b3I9U29tZShFcnJvckRldGVjdG9yIHsgZXJyb3JzOiBNdXRleCB7IGRhdGE6IFtdIH0gfSkgZmluYWxpemF0aW9uPUV4ZWN1dGlvbkZpbmFsaXplciB7IGV4ZWN1dGlvbl9pZDogIjI0YjgwZDlmLTM3MmQtNDYyNS1hYzk4LTNjOGRkYjFmNjczOCIsIGNsaWVudF9hZGRyZXNzOiBTb21lKCIvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS8uZ3JwYy9saWZlY3ljbGVyOjAiKSB9fTppbmplY3RfbGVnYWN5X2Vudl92YXJze2Rpc3RyaWJ1dGVkX2NvbmZpZz1Ob25lfTogZXhlY3V0aW9uX3dyYXBwZXI6OmxlZ2FjeV9lbnZfdmFyczogY2xvc2UgdGltZS5idXN5PTQ3McK1cyB0aW1lLmlkbGU9NS4wMMK1cwoyMDIyLTA5LTIzVDE1OjMzOjQ4LjU0ODY2MVogIElORk8gRXhlY3V0aW9uU2VydmljZXI6OnJ1bjpFeGVjdXRpb25TZXJ2aWNlcjo6c3Bhd25fZXhlY3V0aW9ue2Vycm9yX2RldGVjdG9yPVNvbWUoRXJyb3JEZXRlY3RvciB7IGVycm9yczogTXV0ZXggeyBkYXRhOiBbXSB9IH0pIGZpbmFsaXphdGlvbj1FeGVjdXRpb25GaW5hbGl6ZXIgeyBleGVjdXRpb25faWQ6ICIyNGI4MGQ5Zi0zNzJkLTQ2MjUtYWM5OC0zYzhkZGIxZjY3MzgiLCBjbGllbnRfYWRkcmVzczogU29tZSgiL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvLmdycGMvbGlmZWN5Y2xlcjowIikgfX06IGV4ZWN1dGlvbl93cmFwcGVyOjppbmZpbmliYW5kX3V0aWxzOiBJcyBJbmZpbmlCYW5kIGRldmljZSBwcmVzZW50OiBmYWxzZSBpbmZpbmliYW5kX2RldmljZV9wYXRoPSIvZGV2L2luZmluaWJhbmQvdXZlcmJzMCIKMjAyMi0wOS0yM1QxNTozMzo0OC41NDg2ODRaICBJTkZPIEV4ZWN1dGlvblNlcnZpY2VyOjpydW46RXhlY3V0aW9uU2VydmljZXI6OnNwYXduX2V4ZWN1dGlvbntlcnJvcl9kZXRlY3Rvcj1Tb21lKEVycm9yRGV0ZWN0b3IgeyBlcnJvcnM6IE11dGV4IHsgZGF0YTogW10gfSB9KSBmaW5hbGl6YXRpb249RXhlY3V0aW9uRmluYWxpemVyIHsgZXhlY3V0aW9uX2lkOiAiMjRiODBkOWYtMzcyZC00NjI1LWFjOTgtM2M4ZGRiMWY2NzM4IiwgY2xpZW50X2FkZHJlc3M6IFNvbWUoIi9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1Ly5ncnBjL2xpZmVjeWNsZXI6MCIpIH19OiBleGVjdXRpb25fd3JhcHBlcjo6c2VydmljZTogU3Bhd25pbmcgZXhlY3V0aW9uCjIwMjItMDktMjNUMTU6MzM6NDguNTU2ODIyWiAgSU5GTyBFeGVjdXRpb25TZXJ2aWNlcjo6cnVuOkV4ZWN1dGlvblNlcnZpY2VyOjpzcGF3bl9leGVjdXRpb257ZXJyb3JfZGV0ZWN0b3I9U29tZShFcnJvckRldGVjdG9yIHsgZXJyb3JzOiBNdXRleCB7IGRhdGE6IFtdIH0gfSkgZmluYWxpemF0aW9uPUV4ZWN1dGlvbkZpbmFsaXplciB7IGV4ZWN1dGlvbl9pZDogIjI0YjgwZDlmLTM3MmQtNDYyNS1hYzk4LTNjOGRkYjFmNjczOCIsIGNsaWVudF9hZGRyZXNzOiBTb21lKCIvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS8uZ3JwYy9saWZlY3ljbGVyOjAiKSB9fTpFeGVjdXRpb246OnBhcnNlX2NvbW1hbmRzOiBleGVjdXRpb25fd3JhcHBlcjo6Y29tbWFuZF9yZXNvbHZlcnM6OnNoZWxsOiBVc2luZyBkZXRlY3RlZCB1c2VyIHNoZWxsOiAiL2Jpbi9iYXNoIiBzaGVsbD0iL2Jpbi9iYXNoIgoyMDIyLTA5LTIzVDE1OjMzOjQ4LjU1Njg3M1ogIElORk8gRXhlY3V0aW9uU2VydmljZXI6OnJ1bjpFeGVjdXRpb25TZXJ2aWNlcjo6c3Bhd25fZXhlY3V0aW9ue2Vycm9yX2RldGVjdG9yPVNvbWUoRXJyb3JEZXRlY3RvciB7IGVycm9yczogTXV0ZXggeyBkYXRhOiBbXSB9IH0pIGZpbmFsaXphdGlvbj1FeGVjdXRpb25GaW5hbGl6ZXIgeyBleGVjdXRpb25faWQ6ICIyNGI4MGQ5Zi0zNzJkLTQ2MjUtYWM5OC0zYzhkZGIxZjY3MzgiLCBjbGllbnRfYWRkcmVzczogU29tZSgiL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvLmdycGMvbGlmZWN5Y2xlcjowIikgfX06RXhlY3V0aW9uOjpwYXJzZV9jb21tYW5kczogZXhlY3V0aW9uX3dyYXBwZXI6OmV4ZWN1dGlvbjogY2xvc2UgdGltZS5idXN5PTcuNjdtcyB0aW1lLmlkbGU9NS4yMMK1cwoyMDIyLTA5LTIzVDE1OjMzOjQ4LjU1NzA5M1ogIElORk8gRXhlY3V0aW9uU2VydmljZXI6OnJ1bjpFeGVjdXRpb25TZXJ2aWNlcjo6c3Bhd25fZXhlY3V0aW9ue2Vycm9yX2RldGVjdG9yPVNvbWUoRXJyb3JEZXRlY3RvciB7IGVycm9yczogTXV0ZXggeyBkYXRhOiBbXSB9IH0pIGZpbmFsaXphdGlvbj1FeGVjdXRpb25GaW5hbGl6ZXIgeyBleGVjdXRpb25faWQ6ICIyNGI4MGQ5Zi0zNzJkLTQ2MjUtYWM5OC0zYzhkZGIxZjY3MzgiLCBjbGllbnRfYWRkcmVzczogU29tZSgiL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvLmdycGMvbGlmZWN5Y2xlcjowIikgfX06RXhlY3V0aW9uOjpzcGF3bjogZXhlY3V0aW9uX3dyYXBwZXI6OmV4ZWN1dGlvbjogU3Bhd25pbmcgdGFyZ2V0IHByb2Nlc3MKMjAyMi0wOS0yM1QxNTozMzo0OC41NjQwNjFaICBJTkZPIEV4ZWN1dGlvblNlcnZpY2VyOjpydW46RXhlY3V0aW9uU2VydmljZXI6OnNwYXduX2V4ZWN1dGlvbntlcnJvcl9kZXRlY3Rvcj1Tb21lKEVycm9yRGV0ZWN0b3IgeyBlcnJvcnM6IE11dGV4IHsgZGF0YTogW10gfSB9KSBmaW5hbGl6YXRpb249RXhlY3V0aW9uRmluYWxpemVyIHsgZXhlY3V0aW9uX2lkOiAiMjRiODBkOWYtMzcyZC00NjI1LWFjOTgtM2M4ZGRiMWY2NzM4IiwgY2xpZW50X2FkZHJlc3M6IFNvbWUoIi9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1Ly5ncnBjL2xpZmVjeWNsZXI6MCIpIH19OkV4ZWN1dGlvbjo6c3Bhd246IGV4ZWN1dGlvbl93cmFwcGVyOjpleGVjdXRpb246IGV4ZWN1dGlvbiBwcm9jZXNzIHNwYXduZWQgcGlkPTEzCjIwMjItMDktMjNUMTU6MzM6NDguNTY0NDI1WiAgSU5GTyBleGVjdXRpb25fd3JhcHBlcjo6ZXhlY3V0aW9uOiBzdGFydCB3YWl0aW5nIGZvciBwcm9jZXNzZXMgZXhlY3V0aW9uIHRvIGNvbXBsZXRlIG51bV9wcm9jZXNzZXM9MQoyMDIyLTA5LTIzVDE1OjMzOjQ4LjU2NDUxMlogIElORk8gRXhlY3V0aW9uOjp3YWl0X2Zvcl9jb21wbGV0aW9ue2Vycm9yX2RldGVjdG9yPVNvbWUoRXJyb3JEZXRlY3RvciB7IGVycm9yczogTXV0ZXggeyBkYXRhOiBbXSB9IH0pIHBhcmVudF9zcGFuPVNwYW4geyBuYW1lOiAiRXhlY3V0aW9uOjpzcGF3biIsIGxldmVsOiBMZXZlbChJbmZvKSwgdGFyZ2V0OiAiZXhlY3V0aW9uX3dyYXBwZXI6OmV4ZWN1dGlvbiIsIGlkOiBJZCg2NzU1Njc0MzE4OTYyNjkxKSwgbW9kdWxlX3BhdGg6ICJleGVjdXRpb25fd3JhcHBlcjo6ZXhlY3V0aW9uIiwgbGluZTogMTQzLCBmaWxlOiAiZXhlY3V0b3IvZXhlY3V0aW9uLXdyYXBwZXIvc3JjL2V4ZWN1dGlvbi9tb2QucnMiIH0gcHJvY2Vzc19tYW5hZ2VyPU11dGV4IHsgZGF0YTogUHJvY2Vzc01hbmFnZXIgeyBkYW5nbGluZ19wcm9jZXNzZXM6IFtdLCB1c2VyX3Byb2Nlc3NfZ3JvdXBzOiBbMTNdIH0gfX06IGV4ZWN1dGlvbl93cmFwcGVyOjpleGVjdXRpb246OnByb2Nlc3NfbWFuYWdlcjogUHJvY2Vzc01hbmFnZXJFeGVjdXRpb24gc3RhdGUgY2hhbmdpbmcgZnJvbSBQZW5kaW5nRXhlY3V0aW9uIHRvIFBlbmRpbmdFeGVjdXRpb24KMjAyMi0wOS0yM1QxNTozMzo0OC42MjUwOTlaICBJTkZPIEV4ZWN1dGlvbjo6d2FpdF9mb3JfY29tcGxldGlvbntlcnJvcl9kZXRlY3Rvcj1Tb21lKEVycm9yRGV0ZWN0b3IgeyBlcnJvcnM6IE11dGV4IHsgZGF0YTogW10gfSB9KSBwYXJlbnRfc3Bhbj1TcGFuIHsgbmFtZTogIkV4ZWN1dGlvbjo6c3Bhd24iLCBsZXZlbDogTGV2ZWwoSW5mbyksIHRhcmdldDogImV4ZWN1dGlvbl93cmFwcGVyOjpleGVjdXRpb24iLCBpZDogSWQoNjc1NTY3NDMxODk2MjY5MSksIG1vZHVsZV9wYXRoOiAiZXhlY3V0aW9uX3dyYXBwZXI6OmV4ZWN1dGlvbiIsIGxpbmU6IDE0MywgZmlsZTogImV4ZWN1dG9yL2V4ZWN1dGlvbi13cmFwcGVyL3NyYy9leGVjdXRpb24vbW9kLnJzIiB9IHByb2Nlc3NfbWFuYWdlcj1NdXRleCB7IGRhdGE6IFByb2Nlc3NNYW5hZ2VyIHsgZGFuZ2xpbmdfcHJvY2Vzc2VzOiBbXSwgdXNlcl9wcm9jZXNzX2dyb3VwczogWzEzXSB9IH19OiBleGVjdXRpb25fd3JhcHBlcjo6ZXhlY3V0aW9uOjpwcm9jZXNzX21hbmFnZXI6IFByb2Nlc3NNYW5hZ2VyRXhlY3V0aW9uIHN0YXRlIGNoYW5naW5nIGZyb20gUGVuZGluZ0V4ZWN1dGlvbiB0byBFeGVjdXRpb25Db21wbGV0ZWQKMjAyMi0wOS0yM1QxNTozMzo0OC42MjUxNTBaICBJTkZPIEV4ZWN1dGlvbjo6d2FpdF9mb3JfY29tcGxldGlvbntlcnJvcl9kZXRlY3Rvcj1Tb21lKEVycm9yRGV0ZWN0b3IgeyBlcnJvcnM6IE11dGV4IHsgZGF0YTogW10gfSB9KSBwYXJlbnRfc3Bhbj1TcGFuIHsgbmFtZTogIkV4ZWN1dGlvbjo6c3Bhd24iLCBsZXZlbDogTGV2ZWwoSW5mbyksIHRhcmdldDogImV4ZWN1dGlvbl93cmFwcGVyOjpleGVjdXRpb24iLCBpZDogSWQoNjc1NTY3NDMxODk2MjY5MSksIG1vZHVsZV9wYXRoOiAiZXhlY3V0aW9uX3dyYXBwZXI6OmV4ZWN1dGlvbiIsIGxpbmU6IDE0MywgZmlsZTogImV4ZWN1dG9yL2V4ZWN1dGlvbi13cmFwcGVyL3NyYy9leGVjdXRpb24vbW9kLnJzIiB9IHByb2Nlc3NfbWFuYWdlcj1NdXRleCB7IGRhdGE6IFByb2Nlc3NNYW5hZ2VyIHsgZGFuZ2xpbmdfcHJvY2Vzc2VzOiBbXSwgdXNlcl9wcm9jZXNzX2dyb3VwczogWzEzXSB9IH19OiBleGVjdXRpb25fd3JhcHBlcjo6ZXhlY3V0aW9uOjpwcm9jZXNzX21hbmFnZXI6IFN0YXJ0IGNvbGxlY3RpbmcgcHJvY2VzcyBleGl0IHN0YXR1c2VzCjIwMjItMDktMjNUMTU6MzM6NDguNjI1MTYyWiAgSU5GTyBFeGVjdXRpb246OndhaXRfZm9yX2NvbXBsZXRpb257ZXJyb3JfZGV0ZWN0b3I9U29tZShFcnJvckRldGVjdG9yIHsgZXJyb3JzOiBNdXRleCB7IGRhdGE6IFtdIH0gfSkgcGFyZW50X3NwYW49U3BhbiB7IG5hbWU6ICJFeGVjdXRpb246OnNwYXduIiwgbGV2ZWw6IExldmVsKEluZm8pLCB0YXJnZXQ6ICJleGVjdXRpb25fd3JhcHBlcjo6ZXhlY3V0aW9uIiwgaWQ6IElkKDY3NTU2NzQzMTg5NjI2OTEpLCBtb2R1bGVfcGF0aDogImV4ZWN1dGlvbl93cmFwcGVyOjpleGVjdXRpb24iLCBsaW5lOiAxNDMsIGZpbGU6ICJleGVjdXRvci9leGVjdXRpb24td3JhcHBlci9zcmMvZXhlY3V0aW9uL21vZC5ycyIgfSBwcm9jZXNzX21hbmFnZXI9TXV0ZXggeyBkYXRhOiBQcm9jZXNzTWFuYWdlciB7IGRhbmdsaW5nX3Byb2Nlc3NlczogW10sIHVzZXJfcHJvY2Vzc19ncm91cHM6IFsxM10gfSB9fTogZXhlY3V0aW9uX3dyYXBwZXI6OmV4ZWN1dGlvbjo6cHJvY2Vzc19tYW5hZ2VyOiBTdWNjZXNzZnVsbHkgY29sbGVjdGVkIHRoZSBleGl0IHN0YXR1cyBvZiB1c2VyIHByb2Nlc3MgcGlkPTEzIHByb2Nlc3NfbmFtZT1lY2hvIGtpbGxlZF9ieV9wcm9jZXNzX21hbmFnZXI9ZmFsc2UKMjAyMi0wOS0yM1QxNTozMzo0OC42MjUxOTBaICBJTkZPIEV4ZWN1dGlvbjo6d2FpdF9mb3JfY29tcGxldGlvbntlcnJvcl9kZXRlY3Rvcj1Tb21lKEVycm9yRGV0ZWN0b3IgeyBlcnJvcnM6IE11dGV4IHsgZGF0YTogW10gfSB9KSBwYXJlbnRfc3Bhbj1TcGFuIHsgbmFtZTogIkV4ZWN1dGlvbjo6c3Bhd24iLCBsZXZlbDogTGV2ZWwoSW5mbyksIHRhcmdldDogImV4ZWN1dGlvbl93cmFwcGVyOjpleGVjdXRpb24iLCBpZDogSWQoNjc1NTY3NDMxODk2MjY5MSksIG1vZHVsZV9wYXRoOiAiZXhlY3V0aW9uX3dyYXBwZXI6OmV4ZWN1dGlvbiIsIGxpbmU6IDE0MywgZmlsZTogImV4ZWN1dG9yL2V4ZWN1dGlvbi13cmFwcGVyL3NyYy9leGVjdXRpb24vbW9kLnJzIiB9IHByb2Nlc3NfbWFuYWdlcj1NdXRleCB7IGRhdGE6IFByb2Nlc3NNYW5hZ2VyIHsgZGFuZ2xpbmdfcHJvY2Vzc2VzOiBbXSwgdXNlcl9wcm9jZXNzX2dyb3VwczogWzEzXSB9IH19OiBleGVjdXRpb25fd3JhcHBlcjo6ZXhlY3V0aW9uOjpwcm9jZXNzX21hbmFnZXI6IFByb2Nlc3MgbWFuYWdlciBzdWNjZXNzZnVsbHkgY29sbGVjdGVkIHRoZSBleGl0IHN0YXR1c2VzIG9mIGFsbCB1c2VyIHByb2Nlc3NlcyBvbiBjdXJyZW50IG5vZGUKMjAyMi0wOS0yM1QxNTozMzo0OC42MjUxOTlaICBJTkZPIEV4ZWN1dGlvbjo6d2FpdF9mb3JfY29tcGxldGlvbntlcnJvcl9kZXRlY3Rvcj1Tb21lKEVycm9yRGV0ZWN0b3IgeyBlcnJvcnM6IE11dGV4IHsgZGF0YTogW10gfSB9KSBwYXJlbnRfc3Bhbj1TcGFuIHsgbmFtZTogIkV4ZWN1dGlvbjo6c3Bhd24iLCBsZXZlbDogTGV2ZWwoSW5mbyksIHRhcmdldDogImV4ZWN1dGlvbl93cmFwcGVyOjpleGVjdXRpb24iLCBpZDogSWQoNjc1NTY3NDMxODk2MjY5MSksIG1vZHVsZV9wYXRoOiAiZXhlY3V0aW9uX3dyYXBwZXI6OmV4ZWN1dGlvbiIsIGxpbmU6IDE0MywgZmlsZTogImV4ZWN1dG9yL2V4ZWN1dGlvbi13cmFwcGVyL3NyYy9leGVjdXRpb24vbW9kLnJzIiB9IHByb2Nlc3NfbWFuYWdlcj1NdXRleCB7IGRhdGE6IFByb2Nlc3NNYW5hZ2VyIHsgZGFuZ2xpbmdfcHJvY2Vzc2VzOiBbXSwgdXNlcl9wcm9jZXNzX2dyb3VwczogWzEzXSB9IH19OiBleGVjdXRpb25fd3JhcHBlcjo6ZXhlY3V0aW9uOjpwcm9jZXNzX21hbmFnZXI6IFByb2Nlc3NNYW5hZ2VyRXhlY3V0aW9uIHN0YXRlIGNoYW5naW5nIGZyb20gRXhlY3V0aW9uQ29tcGxldGVkIHRvIEF3YWl0U3RyZWFtaW5nVGFza3MKMjAyMi0wOS0yM1QxNTozMzo0OC42MjUyMTBaICBJTkZPIEV4ZWN1dGlvbjo6d2FpdF9mb3JfY29tcGxldGlvbntlcnJvcl9kZXRlY3Rvcj1Tb21lKEVycm9yRGV0ZWN0b3IgeyBlcnJvcnM6IE11dGV4IHsgZGF0YTogW10gfSB9KSBwYXJlbnRfc3Bhbj1TcGFuIHsgbmFtZTogIkV4ZWN1dGlvbjo6c3Bhd24iLCBsZXZlbDogTGV2ZWwoSW5mbyksIHRhcmdldDogImV4ZWN1dGlvbl93cmFwcGVyOjpleGVjdXRpb24iLCBpZDogSWQoNjc1NTY3NDMxODk2MjY5MSksIG1vZHVsZV9wYXRoOiAiZXhlY3V0aW9uX3dyYXBwZXI6OmV4ZWN1dGlvbiIsIGxpbmU6IDE0MywgZmlsZTogImV4ZWN1dG9yL2V4ZWN1dGlvbi13cmFwcGVyL3NyYy9leGVjdXRpb24vbW9kLnJzIiB9IHByb2Nlc3NfbWFuYWdlcj1NdXRleCB7IGRhdGE6IFByb2Nlc3NNYW5hZ2VyIHsgZGFuZ2xpbmdfcHJvY2Vzc2VzOiBbXSwgdXNlcl9wcm9jZXNzX2dyb3VwczogWzEzXSB9IH19OiBleGVjdXRpb25fd3JhcHBlcjo6ZXhlY3V0aW9uOjpwcm9jZXNzX21hbmFnZXI6IFBvbGxpbmcgZXhlY3V0aW9uIHN0cmVhbWluZyB0YXNrcwoyMDIyLTA5LTIzVDE1OjMzOjQ4LjYyNTIxOVogIElORk8gRXhlY3V0aW9uOjp3YWl0X2Zvcl9jb21wbGV0aW9ue2Vycm9yX2RldGVjdG9yPVNvbWUoRXJyb3JEZXRlY3RvciB7IGVycm9yczogTXV0ZXggeyBkYXRhOiBbXSB9IH0pIHBhcmVudF9zcGFuPVNwYW4geyBuYW1lOiAiRXhlY3V0aW9uOjpzcGF3biIsIGxldmVsOiBMZXZlbChJbmZvKSwgdGFyZ2V0OiAiZXhlY3V0aW9uX3dyYXBwZXI6OmV4ZWN1dGlvbiIsIGlkOiBJZCg2NzU1Njc0MzE4OTYyNjkxKSwgbW9kdWxlX3BhdGg6ICJleGVjdXRpb25fd3JhcHBlcjo6ZXhlY3V0aW9uIiwgbGluZTogMTQzLCBmaWxlOiAiZXhlY3V0b3IvZXhlY3V0aW9uLXdyYXBwZXIvc3JjL2V4ZWN1dGlvbi9tb2QucnMiIH0gcHJvY2Vzc19tYW5hZ2VyPU11dGV4IHsgZGF0YTogUHJvY2Vzc01hbmFnZXIgeyBkYW5nbGluZ19wcm9jZXNzZXM6IFtdLCB1c2VyX3Byb2Nlc3NfZ3JvdXBzOiBbMTNdIH0gfX06IGV4ZWN1dGlvbl93cmFwcGVyOjpleGVjdXRpb246OnByb2Nlc3NfbWFuYWdlcjogUHJvY2VzcyBtYW5hZ2VyIHN1Y2Nlc3NmdWxseSBhd2FpdGVkIGFsbCBzdHJlYW1pbmcgdGFza3MgZm9yIGN1cnJlbnQgZXhlY3V0aW9uCjIwMjItMDktMjNUMTU6MzM6NDguNjI1MjQ1WiAgSU5GTyBFeGVjdXRpb246OndhaXRfZm9yX2NvbXBsZXRpb257ZXJyb3JfZGV0ZWN0b3I9U29tZShFcnJvckRldGVjdG9yIHsgZXJyb3JzOiBNdXRleCB7IGRhdGE6IFtdIH0gfSkgcGFyZW50X3NwYW49U3BhbiB7IG5hbWU6ICJFeGVjdXRpb246OnNwYXduIiwgbGV2ZWw6IExldmVsKEluZm8pLCB0YXJnZXQ6ICJleGVjdXRpb25fd3JhcHBlcjo6ZXhlY3V0aW9uIiwgaWQ6IElkKDY3NTU2NzQzMTg5NjI2OTEpLCBtb2R1bGVfcGF0aDogImV4ZWN1dGlvbl93cmFwcGVyOjpleGVjdXRpb24iLCBsaW5lOiAxNDMsIGZpbGU6ICJleGVjdXRvci9leGVjdXRpb24td3JhcHBlci9zcmMvZXhlY3V0aW9uL21vZC5ycyIgfSBwcm9jZXNzX21hbmFnZXI9TXV0ZXggeyBkYXRhOiBQcm9jZXNzTWFuYWdlciB7IGRhbmdsaW5nX3Byb2Nlc3NlczogW10sIHVzZXJfcHJvY2Vzc19ncm91cHM6IFsxM10gfSB9fTogZXhlY3V0aW9uX3dyYXBwZXI6OmV4ZWN1dGlvbjogR2F0aGVyZWQgZXhlY3V0aW9uIHJlc3VsdCBmb3IgcmFuayAwIHByb2Nlc3NfcmFuaz0wIGV4aXRfY29kZT0wIHN0ZGVycl9wYXRoPVNvbWUoInVzZXJfbG9ncy9zdGRfbG9nLnR4dCIpCjIwMjItMDktMjNUMTU6MzM6NDguNjI1MjcyWiAgSU5GTyBFeGVjdXRpb246OndhaXRfZm9yX2NvbXBsZXRpb257ZXJyb3JfZGV0ZWN0b3I9U29tZShFcnJvckRldGVjdG9yIHsgZXJyb3JzOiBNdXRleCB7IGRhdGE6IFtdIH0gfSkgcGFyZW50X3NwYW49U3BhbiB7IG5hbWU6ICJFeGVjdXRpb246OnNwYXduIiwgbGV2ZWw6IExldmVsKEluZm8pLCB0YXJnZXQ6ICJleGVjdXRpb25fd3JhcHBlcjo6ZXhlY3V0aW9uIiwgaWQ6IElkKDY3NTU2NzQzMTg5NjI2OTEpLCBtb2R1bGVfcGF0aDogImV4ZWN1dGlvbl93cmFwcGVyOjpleGVjdXRpb24iLCBsaW5lOiAxNDMsIGZpbGU6ICJleGVjdXRvci9leGVjdXRpb24td3JhcHBlci9zcmMvZXhlY3V0aW9uL21vZC5ycyIgfSBwcm9jZXNzX21hbmFnZXI9TXV0ZXggeyBkYXRhOiBQcm9jZXNzTWFuYWdlciB7IGRhbmdsaW5nX3Byb2Nlc3NlczogW10sIHVzZXJfcHJvY2Vzc19ncm91cHM6IFsxM10gfSB9fTogZXhlY3V0aW9uX3dyYXBwZXI6OmV4ZWN1dGlvbjogW3dhaXRfZm9yX2NvbXBsZXRpb25dIGV4ZWN1dGlvbiBwcm9jZXNzIGNvbXBsZXRlZC4KMjAyMi0wOS0yM1QxNTozMzo0OC42MjUzMjRaICBXQVJOIEV4ZWN1dGlvbjo6d2FpdF9mb3JfY29tcGxldGlvbntlcnJvcl9kZXRlY3Rvcj1Tb21lKEVycm9yRGV0ZWN0b3IgeyBlcnJvcnM6IE11dGV4IHsgZGF0YTogW10gfSB9KSBwYXJlbnRfc3Bhbj1TcGFuIHsgbmFtZTogIkV4ZWN1dGlvbjo6c3Bhd24iLCBsZXZlbDogTGV2ZWwoSW5mbyksIHRhcmdldDogImV4ZWN1dGlvbl93cmFwcGVyOjpleGVjdXRpb24iLCBpZDogSWQoNjc1NTY3NDMxODk2MjY5MSksIG1vZHVsZV9wYXRoOiAiZXhlY3V0aW9uX3dyYXBwZXI6OmV4ZWN1dGlvbiIsIGxpbmU6IDE0MywgZmlsZTogImV4ZWN1dG9yL2V4ZWN1dGlvbi13cmFwcGVyL3NyYy9leGVjdXRpb24vbW9kLnJzIiB9IHByb2Nlc3NfbWFuYWdlcj1NdXRleCB7IGRhdGE6IFByb2Nlc3NNYW5hZ2VyIHsgZGFuZ2xpbmdfcHJvY2Vzc2VzOiBbXSwgdXNlcl9wcm9jZXNzX2dyb3VwczogWzEzXSB9IH19OkV4ZWN1dGlvbkZpbmFsaXplcjo6b25fZXhpdDpFeGVjdXRpb25GaW5hbGl6ZXI6OmNvbXBsZXRlX2V4ZWN1dGlvbjogZ3JwY191dGlsczo6c3BhbjogZmFpbGVkIHRvIGluamVjdCBzcGFuIGNvbnRleHQgdG8gZ3JwYyByZXF1ZXN0CjIwMjItMDktMjNUMTU6MzM6NDguNjI1MzQ4WiAgSU5GTyBFeGVjdXRpb246OndhaXRfZm9yX2NvbXBsZXRpb257ZXJyb3JfZGV0ZWN0b3I9U29tZShFcnJvckRldGVjdG9yIHsgZXJyb3JzOiBNdXRleCB7IGRhdGE6IFtdIH0gfSkgcGFyZW50X3NwYW49U3BhbiB7IG5hbWU6ICJFeGVjdXRpb246OnNwYXduIiwgbGV2ZWw6IExldmVsKEluZm8pLCB0YXJnZXQ6ICJleGVjdXRpb25fd3JhcHBlcjo6ZXhlY3V0aW9uIiwgaWQ6IElkKDY3NTU2NzQzMTg5NjI2OTEpLCBtb2R1bGVfcGF0aDogImV4ZWN1dGlvbl93cmFwcGVyOjpleGVjdXRpb24iLCBsaW5lOiAxNDMsIGZpbGU6ICJleGVjdXRvci9leGVjdXRpb24td3JhcHBlci9zcmMvZXhlY3V0aW9uL21vZC5ycyIgfSBwcm9jZXNzX21hbmFnZXI9TXV0ZXggeyBkYXRhOiBQcm9jZXNzTWFuYWdlciB7IGRhbmdsaW5nX3Byb2Nlc3NlczogW10sIHVzZXJfcHJvY2Vzc19ncm91cHM6IFsxM10gfSB9fTpFeGVjdXRpb25GaW5hbGl6ZXI6Om9uX2V4aXQ6RXhlY3V0aW9uRmluYWxpemVyOjpjb21wbGV0ZV9leGVjdXRpb246ZXhlY3V0aW9uLXdyYXBwZXI6OmNvbm5lY3RfdG9fY2FsbGJhY2tfc2VydmljZTogZXhlY3V0aW9uX3dyYXBwZXI6OnNlcnZpY2U6IGNvbm5lY3RpbmcgdG8gY2FsbGJhY2sgZW5kcG9pbnQ6IC9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1Ly5ncnBjL2xpZmVjeWNsZXI6MCBjbGllbnRfYWRkcmVzcz0vbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS8uZ3JwYy9saWZlY3ljbGVyOjAKMjAyMi0wOS0yM1QxNTozMzo0OC42MjU0ODNaICBJTkZPIEV4ZWN1dGlvbjo6d2FpdF9mb3JfY29tcGxldGlvbntlcnJvcl9kZXRlY3Rvcj1Tb21lKEVycm9yRGV0ZWN0b3IgeyBlcnJvcnM6IE11dGV4IHsgZGF0YTogW10gfSB9KSBwYXJlbnRfc3Bhbj1TcGFuIHsgbmFtZTogIkV4ZWN1dGlvbjo6c3Bhd24iLCBsZXZlbDogTGV2ZWwoSW5mbyksIHRhcmdldDogImV4ZWN1dGlvbl93cmFwcGVyOjpleGVjdXRpb24iLCBpZDogSWQoNjc1NTY3NDMxODk2MjY5MSksIG1vZHVsZV9wYXRoOiAiZXhlY3V0aW9uX3dyYXBwZXI6OmV4ZWN1dGlvbiIsIGxpbmU6IDE0MywgZmlsZTogImV4ZWN1dG9yL2V4ZWN1dGlvbi13cmFwcGVyL3NyYy9leGVjdXRpb24vbW9kLnJzIiB9IHByb2Nlc3NfbWFuYWdlcj1NdXRleCB7IGRhdGE6IFByb2Nlc3NNYW5hZ2VyIHsgZGFuZ2xpbmdfcHJvY2Vzc2VzOiBbXSwgdXNlcl9wcm9jZXNzX2dyb3VwczogWzEzXSB9IH19OkV4ZWN1dGlvbkZpbmFsaXplcjo6b25fZXhpdDpFeGVjdXRpb25GaW5hbGl6ZXI6OmNvbXBsZXRlX2V4ZWN1dGlvbjpleGVjdXRpb24td3JhcHBlcjo6Y29ubmVjdF90b19jYWxsYmFja19zZXJ2aWNlOmNvbm5lY3Q6IGdycGNfdXRpbHM6OmVuZHBvaW50Ojpjb25uZWN0OiBDb25uZWN0aW5nIHRvIGdSUEMgc2VydmljZSBlbmRwb2ludD1VZHMoIi9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1Ly5ncnBjL2xpZmVjeWNsZXI6MCIpIHJldHJ5PUZpeGVkSW50ZXJ2YWxSZXRyeSB7IGF0dGVtcHRfdGltZW91dF9taWxsaXM6IDUwLCByZXRyeV9kZWxheV9taWxsaXM6IDEwLCBtYXhfZHVyYXRpb246IDYwMHMgfQoyMDIyLTA5LTIzVDE1OjMzOjQ4LjYyNjAxMVogIElORk8gRXhlY3V0aW9uOjp3YWl0X2Zvcl9jb21wbGV0aW9ue2Vycm9yX2RldGVjdG9yPVNvbWUoRXJyb3JEZXRlY3RvciB7IGVycm9yczogTXV0ZXggeyBkYXRhOiBbXSB9IH0pIHBhcmVudF9zcGFuPVNwYW4geyBuYW1lOiAiRXhlY3V0aW9uOjpzcGF3biIsIGxldmVsOiBMZXZlbChJbmZvKSwgdGFyZ2V0OiAiZXhlY3V0aW9uX3dyYXBwZXI6OmV4ZWN1dGlvbiIsIGlkOiBJZCg2NzU1Njc0MzE4OTYyNjkxKSwgbW9kdWxlX3BhdGg6ICJleGVjdXRpb25fd3JhcHBlcjo6ZXhlY3V0aW9uIiwgbGluZTogMTQzLCBmaWxlOiAiZXhlY3V0b3IvZXhlY3V0aW9uLXdyYXBwZXIvc3JjL2V4ZWN1dGlvbi9tb2QucnMiIH0gcHJvY2Vzc19tYW5hZ2VyPU11dGV4IHsgZGF0YTogUHJvY2Vzc01hbmFnZXIgeyBkYW5nbGluZ19wcm9jZXNzZXM6IFtdLCB1c2VyX3Byb2Nlc3NfZ3JvdXBzOiBbMTNdIH0gfX06RXhlY3V0aW9uRmluYWxpemVyOjpvbl9leGl0OkV4ZWN1dGlvbkZpbmFsaXplcjo6Y29tcGxldGVfZXhlY3V0aW9uOmV4ZWN1dGlvbi13cmFwcGVyOjpjb25uZWN0X3RvX2NhbGxiYWNrX3NlcnZpY2U6Y29ubmVjdDogZ3JwY191dGlsczo6ZW5kcG9pbnQ6OmNvbm5lY3Q6IFN1Y2Nlc3NmdWxseSBjb25uZWN0ZWQgdG8gZ1JQQyBzZXJ2aWNlIGVuZHBvaW50PVVkcygiL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvLmdycGMvbGlmZWN5Y2xlcjowIikKMjAyMi0wOS0yM1QxNTozMzo0OC42MjYwNDlaICBJTkZPIEV4ZWN1dGlvbjo6d2FpdF9mb3JfY29tcGxldGlvbntlcnJvcl9kZXRlY3Rvcj1Tb21lKEVycm9yRGV0ZWN0b3IgeyBlcnJvcnM6IE11dGV4IHsgZGF0YTogW10gfSB9KSBwYXJlbnRfc3Bhbj1TcGFuIHsgbmFtZTogIkV4ZWN1dGlvbjo6c3Bhd24iLCBsZXZlbDogTGV2ZWwoSW5mbyksIHRhcmdldDogImV4ZWN1dGlvbl93cmFwcGVyOjpleGVjdXRpb24iLCBpZDogSWQoNjc1NTY3NDMxODk2MjY5MSksIG1vZHVsZV9wYXRoOiAiZXhlY3V0aW9uX3dyYXBwZXI6OmV4ZWN1dGlvbiIsIGxpbmU6IDE0MywgZmlsZTogImV4ZWN1dG9yL2V4ZWN1dGlvbi13cmFwcGVyL3NyYy9leGVjdXRpb24vbW9kLnJzIiB9IHByb2Nlc3NfbWFuYWdlcj1NdXRleCB7IGRhdGE6IFByb2Nlc3NNYW5hZ2VyIHsgZGFuZ2xpbmdfcHJvY2Vzc2VzOiBbXSwgdXNlcl9wcm9jZXNzX2dyb3VwczogWzEzXSB9IH19OkV4ZWN1dGlvbkZpbmFsaXplcjo6b25fZXhpdDpFeGVjdXRpb25GaW5hbGl6ZXI6OmNvbXBsZXRlX2V4ZWN1dGlvbjpleGVjdXRpb24td3JhcHBlcjo6Y29ubmVjdF90b19jYWxsYmFja19zZXJ2aWNlOmNvbm5lY3Q6IGdycGNfdXRpbHM6OmVuZHBvaW50Ojpjb25uZWN0OiBjbG9zZSB0aW1lLmJ1c3k9NTI3wrVzIHRpbWUuaWRsZT00Mi44wrVzCjIwMjItMDktMjNUMTU6MzM6NDguNjI2MDY4WiAgSU5GTyBFeGVjdXRpb246OndhaXRfZm9yX2NvbXBsZXRpb257ZXJyb3JfZGV0ZWN0b3I9U29tZShFcnJvckRldGVjdG9yIHsgZXJyb3JzOiBNdXRleCB7IGRhdGE6IFtdIH0gfSkgcGFyZW50X3NwYW49U3BhbiB7IG5hbWU6ICJFeGVjdXRpb246OnNwYXduIiwgbGV2ZWw6IExldmVsKEluZm8pLCB0YXJnZXQ6ICJleGVjdXRpb25fd3JhcHBlcjo6ZXhlY3V0aW9uIiwgaWQ6IElkKDY3NTU2NzQzMTg5NjI2OTEpLCBtb2R1bGVfcGF0aDogImV4ZWN1dGlvbl93cmFwcGVyOjpleGVjdXRpb24iLCBsaW5lOiAxNDMsIGZpbGU6ICJleGVjdXRvci9leGVjdXRpb24td3JhcHBlci9zcmMvZXhlY3V0aW9uL21vZC5ycyIgfSBwcm9jZXNzX21hbmFnZXI9TXV0ZXggeyBkYXRhOiBQcm9jZXNzTWFuYWdlciB7IGRhbmdsaW5nX3Byb2Nlc3NlczogW10sIHVzZXJfcHJvY2Vzc19ncm91cHM6IFsxM10gfSB9fTpFeGVjdXRpb25GaW5hbGl6ZXI6Om9uX2V4aXQ6RXhlY3V0aW9uRmluYWxpemVyOjpjb21wbGV0ZV9leGVjdXRpb246ZXhlY3V0aW9uLXdyYXBwZXI6OmNvbm5lY3RfdG9fY2FsbGJhY2tfc2VydmljZTogZXhlY3V0aW9uX3dyYXBwZXI6OnNlcnZpY2U6IGNsb3NlIHRpbWUuYnVzeT02OTTCtXMgdGltZS5pZGxlPTM0LjHCtXMKMjAyMi0wOS0yM1QxNTozMzo0OC42Mjk4MzRaICBJTkZPIEV4ZWN1dGlvbjo6d2FpdF9mb3JfY29tcGxldGlvbntlcnJvcl9kZXRlY3Rvcj1Tb21lKEVycm9yRGV0ZWN0b3IgeyBlcnJvcnM6IE11dGV4IHsgZGF0YTogW10gfSB9KSBwYXJlbnRfc3Bhbj1TcGFuIHsgbmFtZTogIkV4ZWN1dGlvbjo6c3Bhd24iLCBsZXZlbDogTGV2ZWwoSW5mbyksIHRhcmdldDogImV4ZWN1dGlvbl93cmFwcGVyOjpleGVjdXRpb24iLCBpZDogSWQoNjc1NTY3NDMxODk2MjY5MSksIG1vZHVsZV9wYXRoOiAiZXhlY3V0aW9uX3dyYXBwZXI6OmV4ZWN1dGlvbiIsIGxpbmU6IDE0MywgZmlsZTogImV4ZWN1dG9yL2V4ZWN1dGlvbi13cmFwcGVyL3NyYy9leGVjdXRpb24vbW9kLnJzIiB9IHByb2Nlc3NfbWFuYWdlcj1NdXRleCB7IGRhdGE6IFByb2Nlc3NNYW5hZ2VyIHsgZGFuZ2xpbmdfcHJvY2Vzc2VzOiBbXSwgdXNlcl9wcm9jZXNzX2dyb3VwczogWzEzXSB9IH19OkV4ZWN1dGlvbkZpbmFsaXplcjo6b25fZXhpdDpFeGVjdXRpb25GaW5hbGl6ZXI6OmNvbXBsZXRlX2V4ZWN1dGlvbjogZXhlY3V0aW9uX3dyYXBwZXI6OnNlcnZpY2U6IENvbXBsZXRlZCBleGVjdXRpb24gaWQ9MjRiODBkOWYtMzcyZC00NjI1LWFjOTgtM2M4ZGRiMWY2NzM4CjIwMjItMDktMjNUMTU6MzM6NDguNjI5ODY0WiAgSU5GTyBFeGVjdXRpb246OndhaXRfZm9yX2NvbXBsZXRpb257ZXJyb3JfZGV0ZWN0b3I9U29tZShFcnJvckRldGVjdG9yIHsgZXJyb3JzOiBNdXRleCB7IGRhdGE6IFtdIH0gfSkgcGFyZW50X3NwYW49U3BhbiB7IG5hbWU6ICJFeGVjdXRpb246OnNwYXduIiwgbGV2ZWw6IExldmVsKEluZm8pLCB0YXJnZXQ6ICJleGVjdXRpb25fd3JhcHBlcjo6ZXhlY3V0aW9uIiwgaWQ6IElkKDY3NTU2NzQzMTg5NjI2OTEpLCBtb2R1bGVfcGF0aDogImV4ZWN1dGlvbl93cmFwcGVyOjpleGVjdXRpb24iLCBsaW5lOiAxNDMsIGZpbGU6ICJleGVjdXRvci9leGVjdXRpb24td3JhcHBlci9zcmMvZXhlY3V0aW9uL21vZC5ycyIgfSBwcm9jZXNzX21hbmFnZXI9TXV0ZXggeyBkYXRhOiBQcm9jZXNzTWFuYWdlciB7IGRhbmdsaW5nX3Byb2Nlc3NlczogW10sIHVzZXJfcHJvY2Vzc19ncm91cHM6IFsxM10gfSB9fTpFeGVjdXRpb25GaW5hbGl6ZXI6Om9uX2V4aXQ6RXhlY3V0aW9uRmluYWxpemVyOjpjb21wbGV0ZV9leGVjdXRpb246IGV4ZWN1dGlvbl93cmFwcGVyOjpzZXJ2aWNlOiBjbG9zZSB0aW1lLmJ1c3k9ODQ2wrVzIHRpbWUuaWRsZT0zLjcxbXMKMjAyMi0wOS0yM1QxNTozMzo0OC42MzA1NzVaICBJTkZPIEV4ZWN1dGlvbjo6d2FpdF9mb3JfY29tcGxldGlvbntlcnJvcl9kZXRlY3Rvcj1Tb21lKEVycm9yRGV0ZWN0b3IgeyBlcnJvcnM6IE11dGV4IHsgZGF0YTogW10gfSB9KSBwYXJlbnRfc3Bhbj1TcGFuIHsgbmFtZTogIkV4ZWN1dGlvbjo6c3Bhd24iLCBsZXZlbDogTGV2ZWwoSW5mbyksIHRhcmdldDogImV4ZWN1dGlvbl93cmFwcGVyOjpleGVjdXRpb24iLCBpZDogSWQoNjc1NTY3NDMxODk2MjY5MSksIG1vZHVsZV9wYXRoOiAiZXhlY3V0aW9uX3dyYXBwZXI6OmV4ZWN1dGlvbiIsIGxpbmU6IDE0MywgZmlsZTogImV4ZWN1dG9yL2V4ZWN1dGlvbi13cmFwcGVyL3NyYy9leGVjdXRpb24vbW9kLnJzIiB9IHByb2Nlc3NfbWFuYWdlcj1NdXRleCB7IGRhdGE6IFByb2Nlc3NNYW5hZ2VyIHsgZGFuZ2xpbmdfcHJvY2Vzc2VzOiBbXSwgdXNlcl9wcm9jZXNzX2dyb3VwczogWzEzXSB9IH19OkV4ZWN1dGlvbkZpbmFsaXplcjo6b25fZXhpdDogZXhlY3V0aW9uX3dyYXBwZXI6OnNlcnZpY2U6IGNsb3NlIHRpbWUuYnVzeT0xLjU2bXMgdGltZS5pZGxlPTMuNzJtcwoyMDIyLTA5LTIzVDE1OjMzOjQ4LjYzMDU4NVogIElORk8gRXhlY3V0aW9uU2VydmljZXI6OnJ1bjpFeGVjdXRpb25TZXJ2aWNlcjo6c3Bhd25fZXhlY3V0aW9ue2Vycm9yX2RldGVjdG9yPVNvbWUoRXJyb3JEZXRlY3RvciB7IGVycm9yczogTXV0ZXggeyBkYXRhOiBbXSB9IH0pIGZpbmFsaXphdGlvbj1FeGVjdXRpb25GaW5hbGl6ZXIgeyBleGVjdXRpb25faWQ6ICIyNGI4MGQ5Zi0zNzJkLTQ2MjUtYWM5OC0zYzhkZGIxZjY3MzgiLCBjbGllbnRfYWRkcmVzczogU29tZSgiL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvLmdycGMvbGlmZWN5Y2xlcjowIikgfX06RXhlY3V0aW9uOjpzcGF3bjogZXhlY3V0aW9uX3dyYXBwZXI6OmV4ZWN1dGlvbjogY2xvc2UgdGltZS5idXN5PTcuMDhtcyB0aW1lLmlkbGU9NjYuNm1zCjIwMjItMDktMjNUMTU6MzM6NDguNjMwNTk1WiAgSU5GTyBFeGVjdXRpb25TZXJ2aWNlcjo6cnVuOkV4ZWN1dGlvblNlcnZpY2VyOjpzcGF3bl9leGVjdXRpb257ZXJyb3JfZGV0ZWN0b3I9U29tZShFcnJvckRldGVjdG9yIHsgZXJyb3JzOiBNdXRleCB7IGRhdGE6IFtdIH0gfSkgZmluYWxpemF0aW9uPUV4ZWN1dGlvbkZpbmFsaXplciB7IGV4ZWN1dGlvbl9pZDogIjI0YjgwZDlmLTM3MmQtNDYyNS1hYzk4LTNjOGRkYjFmNjczOCIsIGNsaWVudF9hZGRyZXNzOiBTb21lKCIvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS8uZ3JwYy9saWZlY3ljbGVyOjAiKSB9fTogZXhlY3V0aW9uX3dyYXBwZXI6OnNlcnZpY2U6IGNsb3NlIHRpbWUuYnVzeT0xNS45bXMgdGltZS5pZGxlPTY2LjZtcwoyMDIyLTA5LTIzVDE1OjMzOjQ4LjYzMDYwOVogIElORk8gRXhlY3V0aW9uU2VydmljZXI6OnJ1bjogZXhlY3V0aW9uX3dyYXBwZXI6OnNlcnZpY2U6IGNsb3NlIHRpbWUuYnVzeT0xNi44bXMgdGltZS5pZGxlPTY2LjRtcwoyMDIyLTA5LTIzVDE1OjMzOjQ4LjYzMDYxN1ogIElORk8gRXhlY3V0aW9uOjp3YWl0X2Zvcl9jb21wbGV0aW9ue2Vycm9yX2RldGVjdG9yPVNvbWUoRXJyb3JEZXRlY3RvciB7IGVycm9yczogTXV0ZXggeyBkYXRhOiBbXSB9IH0pIHBhcmVudF9zcGFuPVNwYW4geyBuYW1lOiAiRXhlY3V0aW9uOjpzcGF3biIsIGxldmVsOiBMZXZlbChJbmZvKSwgdGFyZ2V0OiAiZXhlY3V0aW9uX3dyYXBwZXI6OmV4ZWN1dGlvbiIsIGlkOiBJZCg2NzU1Njc0MzE4OTYyNjkxKSwgbW9kdWxlX3BhdGg6ICJleGVjdXRpb25fd3JhcHBlcjo6ZXhlY3V0aW9uIiwgbGluZTogMTQzLCBmaWxlOiAiZXhlY3V0b3IvZXhlY3V0aW9uLXdyYXBwZXIvc3JjL2V4ZWN1dGlvbi9tb2QucnMiIH0gcHJvY2Vzc19tYW5hZ2VyPU11dGV4IHsgZGF0YTogUHJvY2Vzc01hbmFnZXIgeyBkYW5nbGluZ19wcm9jZXNzZXM6IFtdLCB1c2VyX3Byb2Nlc3NfZ3JvdXBzOiBbMTNdIH0gfX06IGV4ZWN1dGlvbl93cmFwcGVyOjpleGVjdXRpb246IGNsb3NlIHRpbWUuYnVzeT0xLjg1bXMgdGltZS5pZGxlPTY0LjNtcwoyMDIyLTA5LTIzVDE1OjMzOjQ4LjYzMDYyOVogIElORk8gZXhlY3V0aW9uX3dyYXBwZXI6OmV4ZWN1dGlvbjogcHJvY2VzcyBleGVjdXRpb24gY29tcGxldGVkCg==" + }, + { + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml/ExperimentRun/dcid.7599d23f-8164-4644-808e-e4e13b1efe1d/system_logs/lifecycler/lifecycler.log", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/xml", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:34:44 GMT", + "x-ms-range": "bytes=0-33554431", + "x-ms-version": "2021-08-06" + }, + "RequestBody": null, + "StatusCode": 206, + "ResponseHeaders": { + "Accept-Ranges": "bytes", + "Content-Disposition": "", + "Content-Length": "40658", + "Content-Range": "bytes 0-40657/40658", + "Content-Type": "application/octet-stream", + "Date": "Fri, 23 Sep 2022 15:34:42 GMT", + "ETag": "\u00220x8DA9D7902AB2651\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:33:48 GMT", + "Server": [ + "Windows-Azure-Blob/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": "Origin", + "x-ms-blob-type": "BlockBlob", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:32:53 GMT", + "x-ms-lease-state": "available", + "x-ms-lease-status": "unlocked", + "x-ms-server-encrypted": "true", + "x-ms-version": "2021-08-06" + }, + "ResponseBody": "MjAyMi0wOS0yM1QxNTozMjo1My4yNDExMDVaICBJTkZPIHRlbGVtZXRyeTogam9iX3RlbGVtZXRyeV9pbml0IGFydGlmYWN0X3R5cGU9aW5zdGFsbGVkIGJyYW5jaD1vcmlnaW4vMWY0ODlkZWM0ZjU3MTE0ZDc2NzM2NGQwMmVkOTUyYTUyM2U4ZWJiYiBjaV9udW1iZXI9MjAyMjA5MTYuMSBjaV9uYW1lPUNvbW1vblJ1bnRpbWUtcHJvZC1idWlsZCBidWlsZF90aW1lPTIwMjItMDktMTYgMTA6MzY6NTUuMjUzNDk2CjIwMjItMDktMjNUMTU6MzI6NTMuMjQxMjcwWiAgSU5GTyBsb2FkX2NvbmZpZ19mcm9tX2VudjogbGlmZWN5Y2xlcjo6Y29uZmlnOiBSZXNvbHZlZCBncnBjIGFkZHJlc3NlcyBsaWZlY3ljbGVyX2FkZHJlc3M9L21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvLmdycGMvbGlmZWN5Y2xlcjowIGV4ZWN1dG9yX2FkZHJlc3M9L21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvLmdycGMvZXhlY3V0b3I6MAoyMDIyLTA5LTIzVDE1OjMyOjUzLjI0MTQyN1ogIElORk8gbG9hZF9jb25maWdfZnJvbV9lbnY6bG9hZF9jYXBhYmlsaXR5X2FkZHJlc3Nlc19mcm9tX2VudjogbGlmZWN5Y2xlcjo6Y29uZmlnOiBsb2FkZWQgY2FwYWJpbGl0eSBhZGRyZXNzIGZvciBEQVRBX0NBUEFCSUxJVFkgY2FwX25hbWU9REFUQV9DQVBBQklMSVRZIGFkZHJlc3M9L21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvLmdycGMvZGF0YS1jYXBhYmlsaXR5OjAKMjAyMi0wOS0yM1QxNTozMjo1My4yNDE0NDVaICBJTkZPIGxvYWRfY29uZmlnX2Zyb21fZW52OmxvYWRfY2FwYWJpbGl0eV9hZGRyZXNzZXNfZnJvbV9lbnY6IGxpZmVjeWNsZXI6OmNvbmZpZzogbG9hZGVkIGNhcGFiaWxpdHkgYWRkcmVzcyBmb3IgU05BUFNIT1RfQ0FQQUJJTElUWSBjYXBfbmFtZT1TTkFQU0hPVF9DQVBBQklMSVRZIGFkZHJlc3M9L21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvLmdycGMvc25hcHNob3QtY2FwYWJpbGl0eTowCjIwMjItMDktMjNUMTU6MzI6NTMuMjQxNDU2WiAgSU5GTyBsb2FkX2NvbmZpZ19mcm9tX2Vudjpsb2FkX2NhcGFiaWxpdHlfYWRkcmVzc2VzX2Zyb21fZW52OiBsaWZlY3ljbGVyOjpjb25maWc6IGxvYWRlZCBjYXBhYmlsaXR5IGFkZHJlc3MgZm9yIENTX0NBUEFCSUxJVFkgY2FwX25hbWU9Q1NfQ0FQQUJJTElUWSBhZGRyZXNzPS9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1Ly5ncnBjL2NzLWNhcGFiaWxpdHk6MAoyMDIyLTA5LTIzVDE1OjMyOjUzLjI0MTQ2N1ogIElORk8gbG9hZF9jb25maWdfZnJvbV9lbnY6bG9hZF9jYXBhYmlsaXR5X2FkZHJlc3Nlc19mcm9tX2VudjogbGlmZWN5Y2xlcjo6Y29uZmlnOiBsb2FkZWQgY2FwYWJpbGl0eSBhZGRyZXNzIGZvciBIT1NUVE9PTFNfQ0FQQUJJTElUWSBjYXBfbmFtZT1IT1NUVE9PTFNfQ0FQQUJJTElUWSBhZGRyZXNzPS9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1Ly5ncnBjL2hvc3R0b29scy1jYXBhYmlsaXR5OjAKMjAyMi0wOS0yM1QxNTozMjo1My4yNDE0NzhaICBJTkZPIGxvYWRfY29uZmlnX2Zyb21fZW52OmxvYWRfY2FwYWJpbGl0eV9hZGRyZXNzZXNfZnJvbV9lbnY6IGxpZmVjeWNsZXI6OmNvbmZpZzogbG9hZGVkIGNhcGFiaWxpdHkgYWRkcmVzcyBmb3IgTUVUUklDU19DQVBBQklMSVRZIGNhcF9uYW1lPU1FVFJJQ1NfQ0FQQUJJTElUWSBhZGRyZXNzPS9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1Ly5ncnBjL21ldHJpY3MtY2FwYWJpbGl0eTowCjIwMjItMDktMjNUMTU6MzI6NTMuMjQxNTI3WiAgSU5GTyBsb2FkX2NvbmZpZ19mcm9tX2Vudjpsb2FkX2NhcGFiaWxpdHlfYWRkcmVzc2VzX2Zyb21fZW52OiBsaWZlY3ljbGVyOjpjb25maWc6IGNsb3NlIHRpbWUuYnVzeT0yMzDCtXMgdGltZS5pZGxlPTcuMjDCtXMKMjAyMi0wOS0yM1QxNTozMjo1My4yNDE1NjlaICBJTkZPIGxvYWRfY29uZmlnX2Zyb21fZW52OiBsaWZlY3ljbGVyOjpjb25maWc6IGNsb3NlIHRpbWUuYnVzeT0zOTPCtXMgdGltZS5pZGxlPTE2LjTCtXMKMjAyMi0wOS0yM1QxNTozMjo1My4yNDE2MjdaICBJTkZPIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOiBsaWZlY3ljbGVyOjpsaWZlY3ljbGU6IGRpc3RyaWJ1dGVkIGNvbmZpZyBpcyBub3Qgc3BlY2lmaWVkLCBza2lwIHNldHRpbmcgdXAgZGlzdHJpYnV0ZWQgYmFycmllcgoyMDIyLTA5LTIzVDE1OjMyOjUzLjI0MTY1M1ogIElORk8gcnVuX2xpZmVjeWNsZXI6cnVuX3NlcnZpY2VfYW5kX3N0ZXBfdGhyb3VnaF9saWZlY3ljbGU6IGxpZmVjeWNsZXI6OmxpZmVjeWNsZTogVHJ5aW5nIHRvIGNvbmZpZ3VyZSBsaWZlY3ljbGVyIHRvIGlnbm9yZSB0ZXJtaW5hdGlvbiBzaWduYWxzCjIwMjItMDktMjNUMTU6MzI6NTMuMjQxNjg1WiAgSU5GTyBydW5fbGlmZWN5Y2xlcjpydW5fc2VydmljZV9hbmRfc3RlcF90aHJvdWdoX2xpZmVjeWNsZTogY3JfY29yZTogU3VjY2Vzc2Z1bGx5IGNvbmZpZ3VyZWQgY3VycmVudCBwcm9jZXNzIHRvIGlnbm9yZSB0ZXJtaW5hdGlvbiBzaWduYWxzCjIwMjItMDktMjNUMTU6MzI6NTMuMjQyMTY4WiAgSU5GTyBMaWZlY3ljbGVyOjpydW5fc2VydmljZXtkaXN0cmlidXRlZF9zdGF0ZV9zZW5kZXI9Tm9uZX06IGxpZmVjeWNsZXI6OnNlcnZpY2U6IHNlcnZpbmcgbGlmZWN5Y2xlIHNlcnZpY2UgYWRkcmVzcz0vbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS8uZ3JwYy9saWZlY3ljbGVyOjAKMjAyMi0wOS0yM1QxNTozMjo1My4yNDIyODhaICBJTkZPIExpZmVjeWNsZXI6OnJ1bl9zZXJ2aWNle2Rpc3RyaWJ1dGVkX3N0YXRlX3NlbmRlcj1Ob25lfTpzZXJ2ZV9tb3JlOiBncnBjX3V0aWxzOjplbmRwb2ludDo6c2VydmU6IHNlcnZpbmcgZ1JQQyBzZXJ2aWNlIGVuZHBvaW50PVVkcygiL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvLmdycGMvbGlmZWN5Y2xlcjowIikgcmV0cnk9RXhwb25lbnRpYWxCYWNrb2ZmUmV0cnkgeyByZXRyeV9kZWxheV9zZWNzOiAyLCBkZWxheV9mYWN0b3I6IDEwMDAsIG51bV9yZXRyaWVzOiAzIH0KMjAyMi0wOS0yM1QxNTozMjo1My4yNDI0OTNaICBJTkZPIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6Y29ubmVjdF9jYXBhYmlsaXRpZXM6Y29ubmVjdDogZ3JwY191dGlsczo6ZW5kcG9pbnQ6OmNvbm5lY3Q6IENvbm5lY3RpbmcgdG8gZ1JQQyBzZXJ2aWNlIGVuZHBvaW50PVVkcygiL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvLmdycGMvZGF0YS1jYXBhYmlsaXR5OjAiKSByZXRyeT1GaXhlZEludGVydmFsUmV0cnkgeyBhdHRlbXB0X3RpbWVvdXRfbWlsbGlzOiA1MCwgcmV0cnlfZGVsYXlfbWlsbGlzOiAxMCwgbWF4X2R1cmF0aW9uOiA4NjQwMHMgfQoyMDIyLTA5LTIzVDE1OjMzOjQwLjYwMjAzMlogIElORk8gcnVuX2xpZmVjeWNsZXI6cnVuX3NlcnZpY2VfYW5kX3N0ZXBfdGhyb3VnaF9saWZlY3ljbGU6c3RlcF90aHJvdWdoX2xpZmVjeWNsZTpjb25uZWN0X2NhcGFiaWxpdGllczpjb25uZWN0OiBncnBjX3V0aWxzOjplbmRwb2ludDo6Y29ubmVjdDogU3VjY2Vzc2Z1bGx5IGNvbm5lY3RlZCB0byBnUlBDIHNlcnZpY2UgZW5kcG9pbnQ9VWRzKCIvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS8uZ3JwYy9kYXRhLWNhcGFiaWxpdHk6MCIpCjIwMjItMDktMjNUMTU6MzM6NDAuNjAyMTIxWiAgSU5GTyBydW5fbGlmZWN5Y2xlcjpydW5fc2VydmljZV9hbmRfc3RlcF90aHJvdWdoX2xpZmVjeWNsZTpzdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOmNvbm5lY3RfY2FwYWJpbGl0aWVzOmNvbm5lY3Q6IGdycGNfdXRpbHM6OmVuZHBvaW50Ojpjb25uZWN0OiBjbG9zZSB0aW1lLmJ1c3k9MjM3bXMgdGltZS5pZGxlPTQ3LjFzCjIwMjItMDktMjNUMTU6MzM6NDAuNjAyMjc3WiAgSU5GTyBydW5fbGlmZWN5Y2xlcjpydW5fc2VydmljZV9hbmRfc3RlcF90aHJvdWdoX2xpZmVjeWNsZTpzdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOmNvbm5lY3RfY2FwYWJpbGl0aWVzOmNvbm5lY3Q6IGdycGNfdXRpbHM6OmVuZHBvaW50Ojpjb25uZWN0OiBDb25uZWN0aW5nIHRvIGdSUEMgc2VydmljZSBlbmRwb2ludD1VZHMoIi9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1Ly5ncnBjL2RhdGEtY2FwYWJpbGl0eTowIikgcmV0cnk9Rml4ZWRJbnRlcnZhbFJldHJ5IHsgYXR0ZW1wdF90aW1lb3V0X21pbGxpczogNTAsIHJldHJ5X2RlbGF5X21pbGxpczogMTAsIG1heF9kdXJhdGlvbjogODY0MDBzIH0KMjAyMi0wOS0yM1QxNTozMzo0MC42MDI0MjRaICBJTkZPIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6Y29ubmVjdF9jYXBhYmlsaXRpZXM6Y29ubmVjdDogZ3JwY191dGlsczo6ZW5kcG9pbnQ6OmNvbm5lY3Q6IFN1Y2Nlc3NmdWxseSBjb25uZWN0ZWQgdG8gZ1JQQyBzZXJ2aWNlIGVuZHBvaW50PVVkcygiL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvLmdycGMvZGF0YS1jYXBhYmlsaXR5OjAiKQoyMDIyLTA5LTIzVDE1OjMzOjQwLjYwMjQ0OFogIElORk8gcnVuX2xpZmVjeWNsZXI6cnVuX3NlcnZpY2VfYW5kX3N0ZXBfdGhyb3VnaF9saWZlY3ljbGU6c3RlcF90aHJvdWdoX2xpZmVjeWNsZTpjb25uZWN0X2NhcGFiaWxpdGllczpjb25uZWN0OiBncnBjX3V0aWxzOjplbmRwb2ludDo6Y29ubmVjdDogY2xvc2UgdGltZS5idXN5PTE3McK1cyB0aW1lLmlkbGU9Ny41MMK1cwoyMDIyLTA5LTIzVDE1OjMzOjQwLjYwMjUzN1ogIElORk8gcnVuX2xpZmVjeWNsZXI6cnVuX3NlcnZpY2VfYW5kX3N0ZXBfdGhyb3VnaF9saWZlY3ljbGU6c3RlcF90aHJvdWdoX2xpZmVjeWNsZTpjb25uZWN0X2NhcGFiaWxpdGllczpjb25uZWN0OiBncnBjX3V0aWxzOjplbmRwb2ludDo6Y29ubmVjdDogQ29ubmVjdGluZyB0byBnUlBDIHNlcnZpY2UgZW5kcG9pbnQ9VWRzKCIvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS8uZ3JwYy9kYXRhLWNhcGFiaWxpdHk6MCIpIHJldHJ5PUZpeGVkSW50ZXJ2YWxSZXRyeSB7IGF0dGVtcHRfdGltZW91dF9taWxsaXM6IDUwLCByZXRyeV9kZWxheV9taWxsaXM6IDEwLCBtYXhfZHVyYXRpb246IDg2NDAwcyB9CjIwMjItMDktMjNUMTU6MzM6NDAuNjAyNjYyWiAgSU5GTyBydW5fbGlmZWN5Y2xlcjpydW5fc2VydmljZV9hbmRfc3RlcF90aHJvdWdoX2xpZmVjeWNsZTpzdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOmNvbm5lY3RfY2FwYWJpbGl0aWVzOmNvbm5lY3Q6IGdycGNfdXRpbHM6OmVuZHBvaW50Ojpjb25uZWN0OiBTdWNjZXNzZnVsbHkgY29ubmVjdGVkIHRvIGdSUEMgc2VydmljZSBlbmRwb2ludD1VZHMoIi9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1Ly5ncnBjL2RhdGEtY2FwYWJpbGl0eTowIikKMjAyMi0wOS0yM1QxNTozMzo0MC42MDI2ODJaICBJTkZPIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6Y29ubmVjdF9jYXBhYmlsaXRpZXM6Y29ubmVjdDogZ3JwY191dGlsczo6ZW5kcG9pbnQ6OmNvbm5lY3Q6IGNsb3NlIHRpbWUuYnVzeT0xNDTCtXMgdGltZS5pZGxlPTMuNjDCtXMKMjAyMi0wOS0yM1QxNTozMzo0MC42MDI3NTNaICBJTkZPIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6Y29ubmVjdF9jYXBhYmlsaXRpZXM6d2FpdF9mb3Jfc2VydmljZV9oZWFsdGh5OiBsaWZlY3ljbGVyOjpoZWFsdGhfbW9uaXRvcjogV2FpdGluZyBmb3Igc2VydmljZSB0byBiZWNvbWUgaGVhbHRoeTogREFUQV9DQVBBQklMSVRZIHNlcnZpY2VfbmFtZT1EQVRBX0NBUEFCSUxJVFkgdGltZW91dD0zMHMKMjAyMi0wOS0yM1QxNTozMzo0MC42MDI3ODlaICBXQVJOIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6Y29ubmVjdF9jYXBhYmlsaXRpZXM6d2FpdF9mb3Jfc2VydmljZV9oZWFsdGh5OiBncnBjX3V0aWxzOjpzcGFuOiBmYWlsZWQgdG8gaW5qZWN0IHNwYW4gY29udGV4dCB0byBncnBjIHJlcXVlc3QKMjAyMi0wOS0yM1QxNTozMzo0MC42MDY4NDlaICBJTkZPIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6Y29ubmVjdF9jYXBhYmlsaXRpZXM6d2FpdF9mb3Jfc2VydmljZV9oZWFsdGh5OiBsaWZlY3ljbGVyOjpoZWFsdGhfY2xpZW50OiBIZWFsdGggc3RhdHVzIGZvciBzZXJ2aWNlOiBEQVRBX0NBUEFCSUxJVFkgc2VydmljZV9uYW1lPURBVEFfQ0FQQUJJTElUWSBoZWFsdGhfc3RhdHVzPTEKMjAyMi0wOS0yM1QxNTozMzo0MC42MDY5MDRaICBJTkZPIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6Y29ubmVjdF9jYXBhYmlsaXRpZXM6d2FpdF9mb3Jfc2VydmljZV9oZWFsdGh5OiBsaWZlY3ljbGVyOjpoZWFsdGhfbW9uaXRvcjogU2VydmljZSBoYXMgYmVjb21lIGhlYWx0aHkgc2VydmljZV9uYW1lPURBVEFfQ0FQQUJJTElUWQoyMDIyLTA5LTIzVDE1OjMzOjQwLjYwNjkxOFogIElORk8gcnVuX2xpZmVjeWNsZXI6cnVuX3NlcnZpY2VfYW5kX3N0ZXBfdGhyb3VnaF9saWZlY3ljbGU6c3RlcF90aHJvdWdoX2xpZmVjeWNsZTpjb25uZWN0X2NhcGFiaWxpdGllczp3YWl0X2Zvcl9zZXJ2aWNlX2hlYWx0aHk6IGxpZmVjeWNsZXI6OmhlYWx0aF9tb25pdG9yOiBjbG9zZSB0aW1lLmJ1c3k9MS4xM21zIHRpbWUuaWRsZT0zLjA0bXMKMjAyMi0wOS0yM1QxNTozMzo0MC42MDcwMjFaICBJTkZPIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6Y29ubmVjdF9jYXBhYmlsaXRpZXM6Y29ubmVjdDogZ3JwY191dGlsczo6ZW5kcG9pbnQ6OmNvbm5lY3Q6IENvbm5lY3RpbmcgdG8gZ1JQQyBzZXJ2aWNlIGVuZHBvaW50PVVkcygiL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvLmdycGMvc25hcHNob3QtY2FwYWJpbGl0eTowIikgcmV0cnk9Rml4ZWRJbnRlcnZhbFJldHJ5IHsgYXR0ZW1wdF90aW1lb3V0X21pbGxpczogNTAsIHJldHJ5X2RlbGF5X21pbGxpczogMTAsIG1heF9kdXJhdGlvbjogODY0MDBzIH0KMjAyMi0wOS0yM1QxNTozMzo0MC42MDcyMTBaICBJTkZPIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6Y29ubmVjdF9jYXBhYmlsaXRpZXM6Y29ubmVjdDogZ3JwY191dGlsczo6ZW5kcG9pbnQ6OmNvbm5lY3Q6IFN1Y2Nlc3NmdWxseSBjb25uZWN0ZWQgdG8gZ1JQQyBzZXJ2aWNlIGVuZHBvaW50PVVkcygiL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvLmdycGMvc25hcHNob3QtY2FwYWJpbGl0eTowIikKMjAyMi0wOS0yM1QxNTozMzo0MC42MDcyMzVaICBJTkZPIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6Y29ubmVjdF9jYXBhYmlsaXRpZXM6Y29ubmVjdDogZ3JwY191dGlsczo6ZW5kcG9pbnQ6OmNvbm5lY3Q6IGNsb3NlIHRpbWUuYnVzeT0xNjPCtXMgdGltZS5pZGxlPTU0LjnCtXMKMjAyMi0wOS0yM1QxNTozMzo0MC42MDczMjZaICBJTkZPIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6Y29ubmVjdF9jYXBhYmlsaXRpZXM6Y29ubmVjdDogZ3JwY191dGlsczo6ZW5kcG9pbnQ6OmNvbm5lY3Q6IENvbm5lY3RpbmcgdG8gZ1JQQyBzZXJ2aWNlIGVuZHBvaW50PVVkcygiL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvLmdycGMvc25hcHNob3QtY2FwYWJpbGl0eTowIikgcmV0cnk9Rml4ZWRJbnRlcnZhbFJldHJ5IHsgYXR0ZW1wdF90aW1lb3V0X21pbGxpczogNTAsIHJldHJ5X2RlbGF5X21pbGxpczogMTAsIG1heF9kdXJhdGlvbjogODY0MDBzIH0KMjAyMi0wOS0yM1QxNTozMzo0MC42MDc3ODVaICBJTkZPIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6Y29ubmVjdF9jYXBhYmlsaXRpZXM6Y29ubmVjdDogZ3JwY191dGlsczo6ZW5kcG9pbnQ6OmNvbm5lY3Q6IFN1Y2Nlc3NmdWxseSBjb25uZWN0ZWQgdG8gZ1JQQyBzZXJ2aWNlIGVuZHBvaW50PVVkcygiL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvLmdycGMvc25hcHNob3QtY2FwYWJpbGl0eTowIikKMjAyMi0wOS0yM1QxNTozMzo0MC42MDc4MjFaICBJTkZPIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6Y29ubmVjdF9jYXBhYmlsaXRpZXM6Y29ubmVjdDogZ3JwY191dGlsczo6ZW5kcG9pbnQ6OmNvbm5lY3Q6IGNsb3NlIHRpbWUuYnVzeT0xNTjCtXMgdGltZS5pZGxlPTM0MMK1cwoyMDIyLTA5LTIzVDE1OjMzOjQwLjYwNzkwOVogIElORk8gcnVuX2xpZmVjeWNsZXI6cnVuX3NlcnZpY2VfYW5kX3N0ZXBfdGhyb3VnaF9saWZlY3ljbGU6c3RlcF90aHJvdWdoX2xpZmVjeWNsZTpjb25uZWN0X2NhcGFiaWxpdGllczpjb25uZWN0OiBncnBjX3V0aWxzOjplbmRwb2ludDo6Y29ubmVjdDogQ29ubmVjdGluZyB0byBnUlBDIHNlcnZpY2UgZW5kcG9pbnQ9VWRzKCIvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS8uZ3JwYy9zbmFwc2hvdC1jYXBhYmlsaXR5OjAiKSByZXRyeT1GaXhlZEludGVydmFsUmV0cnkgeyBhdHRlbXB0X3RpbWVvdXRfbWlsbGlzOiA1MCwgcmV0cnlfZGVsYXlfbWlsbGlzOiAxMCwgbWF4X2R1cmF0aW9uOiA4NjQwMHMgfQoyMDIyLTA5LTIzVDE1OjMzOjQwLjYwOTYyMVogIElORk8gcnVuX2xpZmVjeWNsZXI6cnVuX3NlcnZpY2VfYW5kX3N0ZXBfdGhyb3VnaF9saWZlY3ljbGU6c3RlcF90aHJvdWdoX2xpZmVjeWNsZTpjb25uZWN0X2NhcGFiaWxpdGllczpjb25uZWN0OiBncnBjX3V0aWxzOjplbmRwb2ludDo6Y29ubmVjdDogU3VjY2Vzc2Z1bGx5IGNvbm5lY3RlZCB0byBnUlBDIHNlcnZpY2UgZW5kcG9pbnQ9VWRzKCIvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS8uZ3JwYy9zbmFwc2hvdC1jYXBhYmlsaXR5OjAiKQoyMDIyLTA5LTIzVDE1OjMzOjQwLjYwOTY1N1ogIElORk8gcnVuX2xpZmVjeWNsZXI6cnVuX3NlcnZpY2VfYW5kX3N0ZXBfdGhyb3VnaF9saWZlY3ljbGU6c3RlcF90aHJvdWdoX2xpZmVjeWNsZTpjb25uZWN0X2NhcGFiaWxpdGllczpjb25uZWN0OiBncnBjX3V0aWxzOjplbmRwb2ludDo6Y29ubmVjdDogY2xvc2UgdGltZS5idXN5PTE2NcK1cyB0aW1lLmlkbGU9MS41OW1zCjIwMjItMDktMjNUMTU6MzM6NDAuNjA5Njc2WiAgSU5GTyBydW5fbGlmZWN5Y2xlcjpydW5fc2VydmljZV9hbmRfc3RlcF90aHJvdWdoX2xpZmVjeWNsZTpzdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOmNvbm5lY3RfY2FwYWJpbGl0aWVzOndhaXRfZm9yX3NlcnZpY2VfaGVhbHRoeTogbGlmZWN5Y2xlcjo6aGVhbHRoX21vbml0b3I6IFdhaXRpbmcgZm9yIHNlcnZpY2UgdG8gYmVjb21lIGhlYWx0aHk6IFNOQVBTSE9UX0NBUEFCSUxJVFkgc2VydmljZV9uYW1lPVNOQVBTSE9UX0NBUEFCSUxJVFkgdGltZW91dD0zMHMKMjAyMi0wOS0yM1QxNTozMzo0MC42MDk2OTVaICBXQVJOIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6Y29ubmVjdF9jYXBhYmlsaXRpZXM6d2FpdF9mb3Jfc2VydmljZV9oZWFsdGh5OiBncnBjX3V0aWxzOjpzcGFuOiBmYWlsZWQgdG8gaW5qZWN0IHNwYW4gY29udGV4dCB0byBncnBjIHJlcXVlc3QKMjAyMi0wOS0yM1QxNTozMzo0MC42MTAxNjVaICBJTkZPIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6Y29ubmVjdF9jYXBhYmlsaXRpZXM6d2FpdF9mb3Jfc2VydmljZV9oZWFsdGh5OiBsaWZlY3ljbGVyOjpoZWFsdGhfY2xpZW50OiBIZWFsdGggc3RhdHVzIGZvciBzZXJ2aWNlOiBTTkFQU0hPVF9DQVBBQklMSVRZIHNlcnZpY2VfbmFtZT1TTkFQU0hPVF9DQVBBQklMSVRZIGhlYWx0aF9zdGF0dXM9MQoyMDIyLTA5LTIzVDE1OjMzOjQwLjYxMDIwMlogIElORk8gcnVuX2xpZmVjeWNsZXI6cnVuX3NlcnZpY2VfYW5kX3N0ZXBfdGhyb3VnaF9saWZlY3ljbGU6c3RlcF90aHJvdWdoX2xpZmVjeWNsZTpjb25uZWN0X2NhcGFiaWxpdGllczp3YWl0X2Zvcl9zZXJ2aWNlX2hlYWx0aHk6IGxpZmVjeWNsZXI6OmhlYWx0aF9tb25pdG9yOiBTZXJ2aWNlIGhhcyBiZWNvbWUgaGVhbHRoeSBzZXJ2aWNlX25hbWU9U05BUFNIT1RfQ0FQQUJJTElUWQoyMDIyLTA5LTIzVDE1OjMzOjQwLjYxMDIxNlogIElORk8gcnVuX2xpZmVjeWNsZXI6cnVuX3NlcnZpY2VfYW5kX3N0ZXBfdGhyb3VnaF9saWZlY3ljbGU6c3RlcF90aHJvdWdoX2xpZmVjeWNsZTpjb25uZWN0X2NhcGFiaWxpdGllczp3YWl0X2Zvcl9zZXJ2aWNlX2hlYWx0aHk6IGxpZmVjeWNsZXI6OmhlYWx0aF9tb25pdG9yOiBjbG9zZSB0aW1lLmJ1c3k9MTgywrVzIHRpbWUuaWRsZT0zNjLCtXMKMjAyMi0wOS0yM1QxNTozMzo0MC42MTAzMTVaICBJTkZPIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6Y29ubmVjdF9jYXBhYmlsaXRpZXM6Y29ubmVjdDogZ3JwY191dGlsczo6ZW5kcG9pbnQ6OmNvbm5lY3Q6IENvbm5lY3RpbmcgdG8gZ1JQQyBzZXJ2aWNlIGVuZHBvaW50PVVkcygiL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvLmdycGMvY3MtY2FwYWJpbGl0eTowIikgcmV0cnk9Rml4ZWRJbnRlcnZhbFJldHJ5IHsgYXR0ZW1wdF90aW1lb3V0X21pbGxpczogNTAsIHJldHJ5X2RlbGF5X21pbGxpczogMTAsIG1heF9kdXJhdGlvbjogODY0MDBzIH0KMjAyMi0wOS0yM1QxNTozMzo0MC42MTA3NjJaICBJTkZPIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6Y29ubmVjdF9jYXBhYmlsaXRpZXM6Y29ubmVjdDogZ3JwY191dGlsczo6ZW5kcG9pbnQ6OmNvbm5lY3Q6IFN1Y2Nlc3NmdWxseSBjb25uZWN0ZWQgdG8gZ1JQQyBzZXJ2aWNlIGVuZHBvaW50PVVkcygiL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvLmdycGMvY3MtY2FwYWJpbGl0eTowIikKMjAyMi0wOS0yM1QxNTozMzo0MC42MTEyODZaICBJTkZPIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6Y29ubmVjdF9jYXBhYmlsaXRpZXM6Y29ubmVjdDogZ3JwY191dGlsczo6ZW5kcG9pbnQ6OmNvbm5lY3Q6IGNsb3NlIHRpbWUuYnVzeT05NzDCtXMgdGltZS5pZGxlPTMuODDCtXMKMjAyMi0wOS0yM1QxNTozMzo0MC42MTE0MTVaICBJTkZPIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6Y29ubmVjdF9jYXBhYmlsaXRpZXM6Y29ubmVjdDogZ3JwY191dGlsczo6ZW5kcG9pbnQ6OmNvbm5lY3Q6IENvbm5lY3RpbmcgdG8gZ1JQQyBzZXJ2aWNlIGVuZHBvaW50PVVkcygiL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvLmdycGMvY3MtY2FwYWJpbGl0eTowIikgcmV0cnk9Rml4ZWRJbnRlcnZhbFJldHJ5IHsgYXR0ZW1wdF90aW1lb3V0X21pbGxpczogNTAsIHJldHJ5X2RlbGF5X21pbGxpczogMTAsIG1heF9kdXJhdGlvbjogODY0MDBzIH0KMjAyMi0wOS0yM1QxNTozMzo0MC42MTE1NzNaICBJTkZPIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6Y29ubmVjdF9jYXBhYmlsaXRpZXM6Y29ubmVjdDogZ3JwY191dGlsczo6ZW5kcG9pbnQ6OmNvbm5lY3Q6IFN1Y2Nlc3NmdWxseSBjb25uZWN0ZWQgdG8gZ1JQQyBzZXJ2aWNlIGVuZHBvaW50PVVkcygiL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvLmdycGMvY3MtY2FwYWJpbGl0eTowIikKMjAyMi0wOS0yM1QxNTozMzo0MC42MTE4MjZaICBJTkZPIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6Y29ubmVjdF9jYXBhYmlsaXRpZXM6Y29ubmVjdDogZ3JwY191dGlsczo6ZW5kcG9pbnQ6OmNvbm5lY3Q6IGNsb3NlIHRpbWUuYnVzeT00MTHCtXMgdGltZS5pZGxlPTQuMDDCtXMKMjAyMi0wOS0yM1QxNTozMzo0MC42MTQ1NjRaICBJTkZPIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6Y29ubmVjdF9jYXBhYmlsaXRpZXM6Y29ubmVjdDogZ3JwY191dGlsczo6ZW5kcG9pbnQ6OmNvbm5lY3Q6IENvbm5lY3RpbmcgdG8gZ1JQQyBzZXJ2aWNlIGVuZHBvaW50PVVkcygiL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvLmdycGMvY3MtY2FwYWJpbGl0eTowIikgcmV0cnk9Rml4ZWRJbnRlcnZhbFJldHJ5IHsgYXR0ZW1wdF90aW1lb3V0X21pbGxpczogNTAsIHJldHJ5X2RlbGF5X21pbGxpczogMTAsIG1heF9kdXJhdGlvbjogODY0MDBzIH0KMjAyMi0wOS0yM1QxNTozMzo0MC42MTUwNjFaICBJTkZPIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6Y29ubmVjdF9jYXBhYmlsaXRpZXM6Y29ubmVjdDogZ3JwY191dGlsczo6ZW5kcG9pbnQ6OmNvbm5lY3Q6IFN1Y2Nlc3NmdWxseSBjb25uZWN0ZWQgdG8gZ1JQQyBzZXJ2aWNlIGVuZHBvaW50PVVkcygiL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvLmdycGMvY3MtY2FwYWJpbGl0eTowIikKMjAyMi0wOS0yM1QxNTozMzo0MC42MTU1NThaICBJTkZPIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6Y29ubmVjdF9jYXBhYmlsaXRpZXM6Y29ubmVjdDogZ3JwY191dGlsczo6ZW5kcG9pbnQ6OmNvbm5lY3Q6IGNsb3NlIHRpbWUuYnVzeT05OTTCtXMgdGltZS5pZGxlPTQuMDDCtXMKMjAyMi0wOS0yM1QxNTozMzo0MC42MTU2MjRaICBJTkZPIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6Y29ubmVjdF9jYXBhYmlsaXRpZXM6d2FpdF9mb3Jfc2VydmljZV9oZWFsdGh5OiBsaWZlY3ljbGVyOjpoZWFsdGhfbW9uaXRvcjogV2FpdGluZyBmb3Igc2VydmljZSB0byBiZWNvbWUgaGVhbHRoeTogQ1NfQ0FQQUJJTElUWSBzZXJ2aWNlX25hbWU9Q1NfQ0FQQUJJTElUWSB0aW1lb3V0PTMwcwoyMDIyLTA5LTIzVDE1OjMzOjQwLjYxNTg5MFogIFdBUk4gcnVuX2xpZmVjeWNsZXI6cnVuX3NlcnZpY2VfYW5kX3N0ZXBfdGhyb3VnaF9saWZlY3ljbGU6c3RlcF90aHJvdWdoX2xpZmVjeWNsZTpjb25uZWN0X2NhcGFiaWxpdGllczp3YWl0X2Zvcl9zZXJ2aWNlX2hlYWx0aHk6IGdycGNfdXRpbHM6OnNwYW46IGZhaWxlZCB0byBpbmplY3Qgc3BhbiBjb250ZXh0IHRvIGdycGMgcmVxdWVzdAoyMDIyLTA5LTIzVDE1OjMzOjQwLjYxNzc4NlogIElORk8gcnVuX2xpZmVjeWNsZXI6cnVuX3NlcnZpY2VfYW5kX3N0ZXBfdGhyb3VnaF9saWZlY3ljbGU6c3RlcF90aHJvdWdoX2xpZmVjeWNsZTpjb25uZWN0X2NhcGFiaWxpdGllczp3YWl0X2Zvcl9zZXJ2aWNlX2hlYWx0aHk6IGxpZmVjeWNsZXI6OmhlYWx0aF9jbGllbnQ6IEhlYWx0aCBzdGF0dXMgZm9yIHNlcnZpY2U6IENTX0NBUEFCSUxJVFkgc2VydmljZV9uYW1lPUNTX0NBUEFCSUxJVFkgaGVhbHRoX3N0YXR1cz0xCjIwMjItMDktMjNUMTU6MzM6NDAuNjE3ODQ4WiAgSU5GTyBydW5fbGlmZWN5Y2xlcjpydW5fc2VydmljZV9hbmRfc3RlcF90aHJvdWdoX2xpZmVjeWNsZTpzdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOmNvbm5lY3RfY2FwYWJpbGl0aWVzOndhaXRfZm9yX3NlcnZpY2VfaGVhbHRoeTogbGlmZWN5Y2xlcjo6aGVhbHRoX21vbml0b3I6IFNlcnZpY2UgaGFzIGJlY29tZSBoZWFsdGh5IHNlcnZpY2VfbmFtZT1DU19DQVBBQklMSVRZCjIwMjItMDktMjNUMTU6MzM6NDAuNjE3ODg2WiAgSU5GTyBydW5fbGlmZWN5Y2xlcjpydW5fc2VydmljZV9hbmRfc3RlcF90aHJvdWdoX2xpZmVjeWNsZTpzdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOmNvbm5lY3RfY2FwYWJpbGl0aWVzOndhaXRfZm9yX3NlcnZpY2VfaGVhbHRoeTogbGlmZWN5Y2xlcjo6aGVhbHRoX21vbml0b3I6IGNsb3NlIHRpbWUuYnVzeT0yMjfCtXMgdGltZS5pZGxlPTIuMDRtcwoyMDIyLTA5LTIzVDE1OjMzOjQwLjYxODAyMFogIElORk8gcnVuX2xpZmVjeWNsZXI6cnVuX3NlcnZpY2VfYW5kX3N0ZXBfdGhyb3VnaF9saWZlY3ljbGU6c3RlcF90aHJvdWdoX2xpZmVjeWNsZTpjb25uZWN0X2NhcGFiaWxpdGllczpjb25uZWN0OiBncnBjX3V0aWxzOjplbmRwb2ludDo6Y29ubmVjdDogQ29ubmVjdGluZyB0byBnUlBDIHNlcnZpY2UgZW5kcG9pbnQ9VWRzKCIvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS8uZ3JwYy9ob3N0dG9vbHMtY2FwYWJpbGl0eTowIikgcmV0cnk9Rml4ZWRJbnRlcnZhbFJldHJ5IHsgYXR0ZW1wdF90aW1lb3V0X21pbGxpczogNTAsIHJldHJ5X2RlbGF5X21pbGxpczogMTAsIG1heF9kdXJhdGlvbjogODY0MDBzIH0KMjAyMi0wOS0yM1QxNTozMzo0MC42MTgxOTlaICBJTkZPIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6Y29ubmVjdF9jYXBhYmlsaXRpZXM6Y29ubmVjdDogZ3JwY191dGlsczo6ZW5kcG9pbnQ6OmNvbm5lY3Q6IFN1Y2Nlc3NmdWxseSBjb25uZWN0ZWQgdG8gZ1JQQyBzZXJ2aWNlIGVuZHBvaW50PVVkcygiL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvLmdycGMvaG9zdHRvb2xzLWNhcGFiaWxpdHk6MCIpCjIwMjItMDktMjNUMTU6MzM6NDAuNjE4Mjk1WiAgSU5GTyBydW5fbGlmZWN5Y2xlcjpydW5fc2VydmljZV9hbmRfc3RlcF90aHJvdWdoX2xpZmVjeWNsZTpzdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOmNvbm5lY3RfY2FwYWJpbGl0aWVzOmNvbm5lY3Q6IGdycGNfdXRpbHM6OmVuZHBvaW50Ojpjb25uZWN0OiBjbG9zZSB0aW1lLmJ1c3k9Mjc1wrVzIHRpbWUuaWRsZT00LjIwwrVzCjIwMjItMDktMjNUMTU6MzM6NDAuNjE4NTc2WiAgSU5GTyBydW5fbGlmZWN5Y2xlcjpydW5fc2VydmljZV9hbmRfc3RlcF90aHJvdWdoX2xpZmVjeWNsZTpzdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOmNvbm5lY3RfY2FwYWJpbGl0aWVzOmNvbm5lY3Q6IGdycGNfdXRpbHM6OmVuZHBvaW50Ojpjb25uZWN0OiBDb25uZWN0aW5nIHRvIGdSUEMgc2VydmljZSBlbmRwb2ludD1VZHMoIi9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1Ly5ncnBjL2hvc3R0b29scy1jYXBhYmlsaXR5OjAiKSByZXRyeT1GaXhlZEludGVydmFsUmV0cnkgeyBhdHRlbXB0X3RpbWVvdXRfbWlsbGlzOiA1MCwgcmV0cnlfZGVsYXlfbWlsbGlzOiAxMCwgbWF4X2R1cmF0aW9uOiA4NjQwMHMgfQoyMDIyLTA5LTIzVDE1OjMzOjQwLjYxODk2NlogIElORk8gcnVuX2xpZmVjeWNsZXI6cnVuX3NlcnZpY2VfYW5kX3N0ZXBfdGhyb3VnaF9saWZlY3ljbGU6c3RlcF90aHJvdWdoX2xpZmVjeWNsZTpjb25uZWN0X2NhcGFiaWxpdGllczpjb25uZWN0OiBncnBjX3V0aWxzOjplbmRwb2ludDo6Y29ubmVjdDogU3VjY2Vzc2Z1bGx5IGNvbm5lY3RlZCB0byBnUlBDIHNlcnZpY2UgZW5kcG9pbnQ9VWRzKCIvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS8uZ3JwYy9ob3N0dG9vbHMtY2FwYWJpbGl0eTowIikKMjAyMi0wOS0yM1QxNTozMzo0MC42MTkwMDBaICBJTkZPIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6Y29ubmVjdF9jYXBhYmlsaXRpZXM6Y29ubmVjdDogZ3JwY191dGlsczo6ZW5kcG9pbnQ6OmNvbm5lY3Q6IGNsb3NlIHRpbWUuYnVzeT0xNTDCtXMgdGltZS5pZGxlPTI3OMK1cwoyMDIyLTA5LTIzVDE1OjMzOjQwLjYxOTA4MVogIElORk8gcnVuX2xpZmVjeWNsZXI6cnVuX3NlcnZpY2VfYW5kX3N0ZXBfdGhyb3VnaF9saWZlY3ljbGU6c3RlcF90aHJvdWdoX2xpZmVjeWNsZTpjb25uZWN0X2NhcGFiaWxpdGllczpjb25uZWN0OiBncnBjX3V0aWxzOjplbmRwb2ludDo6Y29ubmVjdDogQ29ubmVjdGluZyB0byBnUlBDIHNlcnZpY2UgZW5kcG9pbnQ9VWRzKCIvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS8uZ3JwYy9ob3N0dG9vbHMtY2FwYWJpbGl0eTowIikgcmV0cnk9Rml4ZWRJbnRlcnZhbFJldHJ5IHsgYXR0ZW1wdF90aW1lb3V0X21pbGxpczogNTAsIHJldHJ5X2RlbGF5X21pbGxpczogMTAsIG1heF9kdXJhdGlvbjogODY0MDBzIH0KMjAyMi0wOS0yM1QxNTozMzo0MC42MTk4NDZaICBJTkZPIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6Y29ubmVjdF9jYXBhYmlsaXRpZXM6Y29ubmVjdDogZ3JwY191dGlsczo6ZW5kcG9pbnQ6OmNvbm5lY3Q6IFN1Y2Nlc3NmdWxseSBjb25uZWN0ZWQgdG8gZ1JQQyBzZXJ2aWNlIGVuZHBvaW50PVVkcygiL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvLmdycGMvaG9zdHRvb2xzLWNhcGFiaWxpdHk6MCIpCjIwMjItMDktMjNUMTU6MzM6NDAuNjE5ODg0WiAgSU5GTyBydW5fbGlmZWN5Y2xlcjpydW5fc2VydmljZV9hbmRfc3RlcF90aHJvdWdoX2xpZmVjeWNsZTpzdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOmNvbm5lY3RfY2FwYWJpbGl0aWVzOmNvbm5lY3Q6IGdycGNfdXRpbHM6OmVuZHBvaW50Ojpjb25uZWN0OiBjbG9zZSB0aW1lLmJ1c3k9MTQzwrVzIHRpbWUuaWRsZT02NjTCtXMKMjAyMi0wOS0yM1QxNTozMzo0MC42MTk5MTVaICBJTkZPIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6Y29ubmVjdF9jYXBhYmlsaXRpZXM6d2FpdF9mb3Jfc2VydmljZV9oZWFsdGh5OiBsaWZlY3ljbGVyOjpoZWFsdGhfbW9uaXRvcjogV2FpdGluZyBmb3Igc2VydmljZSB0byBiZWNvbWUgaGVhbHRoeTogSE9TVFRPT0xTX0NBUEFCSUxJVFkgc2VydmljZV9uYW1lPUhPU1RUT09MU19DQVBBQklMSVRZIHRpbWVvdXQ9MzBzCjIwMjItMDktMjNUMTU6MzM6NDAuNjE5OTMxWiAgV0FSTiBydW5fbGlmZWN5Y2xlcjpydW5fc2VydmljZV9hbmRfc3RlcF90aHJvdWdoX2xpZmVjeWNsZTpzdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOmNvbm5lY3RfY2FwYWJpbGl0aWVzOndhaXRfZm9yX3NlcnZpY2VfaGVhbHRoeTogZ3JwY191dGlsczo6c3BhbjogZmFpbGVkIHRvIGluamVjdCBzcGFuIGNvbnRleHQgdG8gZ3JwYyByZXF1ZXN0CjIwMjItMDktMjNUMTU6MzM6NDAuNjIxMjcwWiAgSU5GTyBydW5fbGlmZWN5Y2xlcjpydW5fc2VydmljZV9hbmRfc3RlcF90aHJvdWdoX2xpZmVjeWNsZTpzdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOmNvbm5lY3RfY2FwYWJpbGl0aWVzOndhaXRfZm9yX3NlcnZpY2VfaGVhbHRoeTogbGlmZWN5Y2xlcjo6aGVhbHRoX2NsaWVudDogSGVhbHRoIHN0YXR1cyBmb3Igc2VydmljZTogSE9TVFRPT0xTX0NBUEFCSUxJVFkgc2VydmljZV9uYW1lPUhPU1RUT09MU19DQVBBQklMSVRZIGhlYWx0aF9zdGF0dXM9MQoyMDIyLTA5LTIzVDE1OjMzOjQwLjYyMTM0OFogIElORk8gcnVuX2xpZmVjeWNsZXI6cnVuX3NlcnZpY2VfYW5kX3N0ZXBfdGhyb3VnaF9saWZlY3ljbGU6c3RlcF90aHJvdWdoX2xpZmVjeWNsZTpjb25uZWN0X2NhcGFiaWxpdGllczp3YWl0X2Zvcl9zZXJ2aWNlX2hlYWx0aHk6IGxpZmVjeWNsZXI6OmhlYWx0aF9tb25pdG9yOiBTZXJ2aWNlIGhhcyBiZWNvbWUgaGVhbHRoeSBzZXJ2aWNlX25hbWU9SE9TVFRPT0xTX0NBUEFCSUxJVFkKMjAyMi0wOS0yM1QxNTozMzo0MC42MjE0MDNaICBJTkZPIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6Y29ubmVjdF9jYXBhYmlsaXRpZXM6d2FpdF9mb3Jfc2VydmljZV9oZWFsdGh5OiBsaWZlY3ljbGVyOjpoZWFsdGhfbW9uaXRvcjogY2xvc2UgdGltZS5idXN5PTIyMMK1cyB0aW1lLmlkbGU9MS4yN21zCjIwMjItMDktMjNUMTU6MzM6NDAuNjIxNTI0WiAgSU5GTyBydW5fbGlmZWN5Y2xlcjpydW5fc2VydmljZV9hbmRfc3RlcF90aHJvdWdoX2xpZmVjeWNsZTpzdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOmNvbm5lY3RfY2FwYWJpbGl0aWVzOmNvbm5lY3Q6IGdycGNfdXRpbHM6OmVuZHBvaW50Ojpjb25uZWN0OiBDb25uZWN0aW5nIHRvIGdSUEMgc2VydmljZSBlbmRwb2ludD1VZHMoIi9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1Ly5ncnBjL21ldHJpY3MtY2FwYWJpbGl0eTowIikgcmV0cnk9Rml4ZWRJbnRlcnZhbFJldHJ5IHsgYXR0ZW1wdF90aW1lb3V0X21pbGxpczogNTAsIHJldHJ5X2RlbGF5X21pbGxpczogMTAsIG1heF9kdXJhdGlvbjogODY0MDBzIH0KMjAyMi0wOS0yM1QxNTozMzo0MC42MjMyMzRaICBJTkZPIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6Y29ubmVjdF9jYXBhYmlsaXRpZXM6Y29ubmVjdDogZ3JwY191dGlsczo6ZW5kcG9pbnQ6OmNvbm5lY3Q6IFN1Y2Nlc3NmdWxseSBjb25uZWN0ZWQgdG8gZ1JQQyBzZXJ2aWNlIGVuZHBvaW50PVVkcygiL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvLmdycGMvbWV0cmljcy1jYXBhYmlsaXR5OjAiKQoyMDIyLTA5LTIzVDE1OjMzOjQwLjYyNDA4MlogIElORk8gcnVuX2xpZmVjeWNsZXI6cnVuX3NlcnZpY2VfYW5kX3N0ZXBfdGhyb3VnaF9saWZlY3ljbGU6c3RlcF90aHJvdWdoX2xpZmVjeWNsZTpjb25uZWN0X2NhcGFiaWxpdGllczpjb25uZWN0OiBncnBjX3V0aWxzOjplbmRwb2ludDo6Y29ubmVjdDogY2xvc2UgdGltZS5idXN5PTEuMDJtcyB0aW1lLmlkbGU9MS41NG1zCjIwMjItMDktMjNUMTU6MzM6NDAuNjI0MTk5WiAgSU5GTyBydW5fbGlmZWN5Y2xlcjpydW5fc2VydmljZV9hbmRfc3RlcF90aHJvdWdoX2xpZmVjeWNsZTpzdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOmNvbm5lY3RfY2FwYWJpbGl0aWVzOmNvbm5lY3Q6IGdycGNfdXRpbHM6OmVuZHBvaW50Ojpjb25uZWN0OiBDb25uZWN0aW5nIHRvIGdSUEMgc2VydmljZSBlbmRwb2ludD1VZHMoIi9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1Ly5ncnBjL21ldHJpY3MtY2FwYWJpbGl0eTowIikgcmV0cnk9Rml4ZWRJbnRlcnZhbFJldHJ5IHsgYXR0ZW1wdF90aW1lb3V0X21pbGxpczogNTAsIHJldHJ5X2RlbGF5X21pbGxpczogMTAsIG1heF9kdXJhdGlvbjogODY0MDBzIH0KMjAyMi0wOS0yM1QxNTozMzo0MC42MjQ1NDRaICBJTkZPIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6Y29ubmVjdF9jYXBhYmlsaXRpZXM6Y29ubmVjdDogZ3JwY191dGlsczo6ZW5kcG9pbnQ6OmNvbm5lY3Q6IFN1Y2Nlc3NmdWxseSBjb25uZWN0ZWQgdG8gZ1JQQyBzZXJ2aWNlIGVuZHBvaW50PVVkcygiL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvLmdycGMvbWV0cmljcy1jYXBhYmlsaXR5OjAiKQoyMDIyLTA5LTIzVDE1OjMzOjQwLjYyNDYxMFogIElORk8gcnVuX2xpZmVjeWNsZXI6cnVuX3NlcnZpY2VfYW5kX3N0ZXBfdGhyb3VnaF9saWZlY3ljbGU6c3RlcF90aHJvdWdoX2xpZmVjeWNsZTpjb25uZWN0X2NhcGFiaWxpdGllczpjb25uZWN0OiBncnBjX3V0aWxzOjplbmRwb2ludDo6Y29ubmVjdDogY2xvc2UgdGltZS5idXN5PTE5NsK1cyB0aW1lLmlkbGU9MjE5wrVzCjIwMjItMDktMjNUMTU6MzM6NDAuNjI0ODY2WiAgSU5GTyBydW5fbGlmZWN5Y2xlcjpydW5fc2VydmljZV9hbmRfc3RlcF90aHJvdWdoX2xpZmVjeWNsZTpzdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOmNvbm5lY3RfY2FwYWJpbGl0aWVzOmNvbm5lY3Q6IGdycGNfdXRpbHM6OmVuZHBvaW50Ojpjb25uZWN0OiBDb25uZWN0aW5nIHRvIGdSUEMgc2VydmljZSBlbmRwb2ludD1VZHMoIi9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1Ly5ncnBjL21ldHJpY3MtY2FwYWJpbGl0eTowIikgcmV0cnk9Rml4ZWRJbnRlcnZhbFJldHJ5IHsgYXR0ZW1wdF90aW1lb3V0X21pbGxpczogNTAsIHJldHJ5X2RlbGF5X21pbGxpczogMTAsIG1heF9kdXJhdGlvbjogODY0MDBzIH0KMjAyMi0wOS0yM1QxNTozMzo0MC42MjUzMDBaICBJTkZPIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6Y29ubmVjdF9jYXBhYmlsaXRpZXM6Y29ubmVjdDogZ3JwY191dGlsczo6ZW5kcG9pbnQ6OmNvbm5lY3Q6IFN1Y2Nlc3NmdWxseSBjb25uZWN0ZWQgdG8gZ1JQQyBzZXJ2aWNlIGVuZHBvaW50PVVkcygiL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvLmdycGMvbWV0cmljcy1jYXBhYmlsaXR5OjAiKQoyMDIyLTA5LTIzVDE1OjMzOjQwLjYyNTM1OFogIElORk8gcnVuX2xpZmVjeWNsZXI6cnVuX3NlcnZpY2VfYW5kX3N0ZXBfdGhyb3VnaF9saWZlY3ljbGU6c3RlcF90aHJvdWdoX2xpZmVjeWNsZTpjb25uZWN0X2NhcGFiaWxpdGllczpjb25uZWN0OiBncnBjX3V0aWxzOjplbmRwb2ludDo6Y29ubmVjdDogY2xvc2UgdGltZS5idXN5PTE5M8K1cyB0aW1lLmlkbGU9MzAzwrVzCjIwMjItMDktMjNUMTU6MzM6NDAuNjI1NDA1WiAgSU5GTyBydW5fbGlmZWN5Y2xlcjpydW5fc2VydmljZV9hbmRfc3RlcF90aHJvdWdoX2xpZmVjeWNsZTpzdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOmNvbm5lY3RfY2FwYWJpbGl0aWVzOndhaXRfZm9yX3NlcnZpY2VfaGVhbHRoeTogbGlmZWN5Y2xlcjo6aGVhbHRoX21vbml0b3I6IFdhaXRpbmcgZm9yIHNlcnZpY2UgdG8gYmVjb21lIGhlYWx0aHk6IE1FVFJJQ1NfQ0FQQUJJTElUWSBzZXJ2aWNlX25hbWU9TUVUUklDU19DQVBBQklMSVRZIHRpbWVvdXQ9MzBzCjIwMjItMDktMjNUMTU6MzM6NDAuNjI1NDQ5WiAgV0FSTiBydW5fbGlmZWN5Y2xlcjpydW5fc2VydmljZV9hbmRfc3RlcF90aHJvdWdoX2xpZmVjeWNsZTpzdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOmNvbm5lY3RfY2FwYWJpbGl0aWVzOndhaXRfZm9yX3NlcnZpY2VfaGVhbHRoeTogZ3JwY191dGlsczo6c3BhbjogZmFpbGVkIHRvIGluamVjdCBzcGFuIGNvbnRleHQgdG8gZ3JwYyByZXF1ZXN0CjIwMjItMDktMjNUMTU6MzM6NDAuNjI1ODg5WiAgSU5GTyBydW5fbGlmZWN5Y2xlcjpydW5fc2VydmljZV9hbmRfc3RlcF90aHJvdWdoX2xpZmVjeWNsZTpzdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOmNvbm5lY3RfY2FwYWJpbGl0aWVzOndhaXRfZm9yX3NlcnZpY2VfaGVhbHRoeTogbGlmZWN5Y2xlcjo6aGVhbHRoX2NsaWVudDogSGVhbHRoIHN0YXR1cyBmb3Igc2VydmljZTogTUVUUklDU19DQVBBQklMSVRZIHNlcnZpY2VfbmFtZT1NRVRSSUNTX0NBUEFCSUxJVFkgaGVhbHRoX3N0YXR1cz0xCjIwMjItMDktMjNUMTU6MzM6NDAuNjI1OTQ1WiAgSU5GTyBydW5fbGlmZWN5Y2xlcjpydW5fc2VydmljZV9hbmRfc3RlcF90aHJvdWdoX2xpZmVjeWNsZTpzdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOmNvbm5lY3RfY2FwYWJpbGl0aWVzOndhaXRfZm9yX3NlcnZpY2VfaGVhbHRoeTogbGlmZWN5Y2xlcjo6aGVhbHRoX21vbml0b3I6IFNlcnZpY2UgaGFzIGJlY29tZSBoZWFsdGh5IHNlcnZpY2VfbmFtZT1NRVRSSUNTX0NBUEFCSUxJVFkKMjAyMi0wOS0yM1QxNTozMzo0MC42MjU5OTJaICBJTkZPIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6Y29ubmVjdF9jYXBhYmlsaXRpZXM6d2FpdF9mb3Jfc2VydmljZV9oZWFsdGh5OiBsaWZlY3ljbGVyOjpoZWFsdGhfbW9uaXRvcjogY2xvc2UgdGltZS5idXN5PTIzM8K1cyB0aW1lLmlkbGU9MzU4wrVzCjIwMjItMDktMjNUMTU6MzM6NDAuNjI2MDQ3WiAgSU5GTyBydW5fbGlmZWN5Y2xlcjpydW5fc2VydmljZV9hbmRfc3RlcF90aHJvdWdoX2xpZmVjeWNsZTpzdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOmNvbm5lY3RfY2FwYWJpbGl0aWVzOiBsaWZlY3ljbGVyOjpsaWZlY3ljbGU6IGNsb3NlIHRpbWUuYnVzeT0yNjdtcyB0aW1lLmlkbGU9NDcuMXMKMjAyMi0wOS0yM1QxNTozMzo0MC42MjYxMDRaICBXQVJOIGdycGNfdXRpbHM6OnNwYW46IGZhaWxlZCB0byBpbmplY3Qgc3BhbiBjb250ZXh0IHRvIGdycGMgcmVxdWVzdAoyMDIyLTA5LTIzVDE1OjMzOjQwLjYyNjEyNFogIFdBUk4gZ3JwY191dGlsczo6c3BhbjogZmFpbGVkIHRvIGluamVjdCBzcGFuIGNvbnRleHQgdG8gZ3JwYyByZXF1ZXN0CjIwMjItMDktMjNUMTU6MzM6NDAuNjI2MTM1WiAgV0FSTiBncnBjX3V0aWxzOjpzcGFuOiBmYWlsZWQgdG8gaW5qZWN0IHNwYW4gY29udGV4dCB0byBncnBjIHJlcXVlc3QKMjAyMi0wOS0yM1QxNTozMzo0MC42MjYxNDRaICBXQVJOIGdycGNfdXRpbHM6OnNwYW46IGZhaWxlZCB0byBpbmplY3Qgc3BhbiBjb250ZXh0IHRvIGdycGMgcmVxdWVzdAoyMDIyLTA5LTIzVDE1OjMzOjQwLjYyNjE1MlogIFdBUk4gZ3JwY191dGlsczo6c3BhbjogZmFpbGVkIHRvIGluamVjdCBzcGFuIGNvbnRleHQgdG8gZ3JwYyByZXF1ZXN0CjIwMjItMDktMjNUMTU6MzM6NDAuNjI3NTc4WiAgV0FSTiBydW5fbGlmZWN5Y2xlcjpydW5fc2VydmljZV9hbmRfc3RlcF90aHJvdWdoX2xpZmVjeWNsZTpzdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0YXJ0X2NhcGFiaWxpdGllczpzdGFydHtuYW1lPSJEQVRBX0NBUEFCSUxJVFkifTogZ3JwY191dGlsczo6c3BhbjogZmFpbGVkIHRvIGluamVjdCBzcGFuIGNvbnRleHQgdG8gZ3JwYyByZXF1ZXN0CjIwMjItMDktMjNUMTU6MzM6NDAuNjI3NzI5WiAgV0FSTiBydW5fbGlmZWN5Y2xlcjpydW5fc2VydmljZV9hbmRfc3RlcF90aHJvdWdoX2xpZmVjeWNsZTpzdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0YXJ0X2NhcGFiaWxpdGllczpzdGFydHtuYW1lPSJTTkFQU0hPVF9DQVBBQklMSVRZIn06IGdycGNfdXRpbHM6OnNwYW46IGZhaWxlZCB0byBpbmplY3Qgc3BhbiBjb250ZXh0IHRvIGdycGMgcmVxdWVzdAoyMDIyLTA5LTIzVDE1OjMzOjQwLjYzMjI2OVogIFdBUk4gcnVuX2xpZmVjeWNsZXI6cnVuX3NlcnZpY2VfYW5kX3N0ZXBfdGhyb3VnaF9saWZlY3ljbGU6c3RlcF90aHJvdWdoX2xpZmVjeWNsZTpzdGFydF9jYXBhYmlsaXRpZXM6c3RhcnR7bmFtZT0iQ1NfQ0FQQUJJTElUWSJ9OiBncnBjX3V0aWxzOjpzcGFuOiBmYWlsZWQgdG8gaW5qZWN0IHNwYW4gY29udGV4dCB0byBncnBjIHJlcXVlc3QKMjAyMi0wOS0yM1QxNTozMzo0MC42MzcwMTBaICBXQVJOIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6c3RhcnRfY2FwYWJpbGl0aWVzOnN0YXJ0e25hbWU9IkhPU1RUT09MU19DQVBBQklMSVRZIn06IGdycGNfdXRpbHM6OnNwYW46IGZhaWxlZCB0byBpbmplY3Qgc3BhbiBjb250ZXh0IHRvIGdycGMgcmVxdWVzdAoyMDIyLTA5LTIzVDE1OjMzOjQwLjYzODMxMFogIElORk8gcnVuX2xpZmVjeWNsZXI6cnVuX3NlcnZpY2VfYW5kX3N0ZXBfdGhyb3VnaF9saWZlY3ljbGU6c3RlcF90aHJvdWdoX2xpZmVjeWNsZTpzdGFydF9jYXBhYmlsaXRpZXM6c3RhcnR7bmFtZT0iSE9TVFRPT0xTX0NBUEFCSUxJVFkifTogbGlmZWN5Y2xlcjo6Y2FwYWJpbGl0eV9jbGllbnQ6IFJlY2VpdmVkIHN1Y2Nlc3MgY29kZSBmb3Igc3RhcnQgY2FwX25hbWU9SE9TVFRPT0xTX0NBUEFCSUxJVFkKMjAyMi0wOS0yM1QxNTozMzo0MC42Mzg3MzNaICBJTkZPIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6c3RhcnRfY2FwYWJpbGl0aWVzOnN0YXJ0e25hbWU9IkhPU1RUT09MU19DQVBBQklMSVRZIn06IGxpZmVjeWNsZXI6OmNhcGFiaWxpdHlfY2xpZW50OiBjbG9zZSB0aW1lLmJ1c3k9OTExwrVzIHRpbWUuaWRsZT04MTnCtXMKMjAyMi0wOS0yM1QxNTozMzo0MC42Mzg5NDNaICBXQVJOIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6c3RhcnRfY2FwYWJpbGl0aWVzOnN0YXJ0e25hbWU9Ik1FVFJJQ1NfQ0FQQUJJTElUWSJ9OiBncnBjX3V0aWxzOjpzcGFuOiBmYWlsZWQgdG8gaW5qZWN0IHNwYW4gY29udGV4dCB0byBncnBjIHJlcXVlc3QKMjAyMi0wOS0yM1QxNTozMzo0MC42Mzk2NTRaICBJTkZPIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6c3RhcnRfY2FwYWJpbGl0aWVzOnN0YXJ0e25hbWU9Ik1FVFJJQ1NfQ0FQQUJJTElUWSJ9OiBsaWZlY3ljbGVyOjpjYXBhYmlsaXR5X2NsaWVudDogUmVjZWl2ZWQgc3VjY2VzcyBjb2RlIGZvciBzdGFydCBjYXBfbmFtZT1NRVRSSUNTX0NBUEFCSUxJVFkKMjAyMi0wOS0yM1QxNTozMzo0MC42NDA2NzZaICBJTkZPIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6c3RhcnRfY2FwYWJpbGl0aWVzOnN0YXJ0e25hbWU9Ik1FVFJJQ1NfQ0FQQUJJTElUWSJ9OiBsaWZlY3ljbGVyOjpjYXBhYmlsaXR5X2NsaWVudDogY2xvc2UgdGltZS5idXN5PTEuNDVtcyB0aW1lLmlkbGU9MjkxwrVzCjIwMjItMDktMjNUMTU6MzM6NDAuNjY3MDQ1WiAgSU5GTyBydW5fbGlmZWN5Y2xlcjpydW5fc2VydmljZV9hbmRfc3RlcF90aHJvdWdoX2xpZmVjeWNsZTpzdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0YXJ0X2NhcGFiaWxpdGllczpzdGFydHtuYW1lPSJDU19DQVBBQklMSVRZIn06IGxpZmVjeWNsZXI6OmNhcGFiaWxpdHlfY2xpZW50OiBSZWNlaXZlZCBzdWNjZXNzIGNvZGUgZm9yIHN0YXJ0IGNhcF9uYW1lPUNTX0NBUEFCSUxJVFkKMjAyMi0wOS0yM1QxNTozMzo0MC42NjcxMjNaICBJTkZPIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6c3RhcnRfY2FwYWJpbGl0aWVzOnN0YXJ0e25hbWU9IkNTX0NBUEFCSUxJVFkifTogbGlmZWN5Y2xlcjo6Y2FwYWJpbGl0eV9jbGllbnQ6IGNsb3NlIHRpbWUuYnVzeT0yMDTCtXMgdGltZS5pZGxlPTM0LjdtcwoyMDIyLTA5LTIzVDE1OjMzOjQwLjc1MzYwNlogIElORk8gcnVuX2xpZmVjeWNsZXI6cnVuX3NlcnZpY2VfYW5kX3N0ZXBfdGhyb3VnaF9saWZlY3ljbGU6c3RlcF90aHJvdWdoX2xpZmVjeWNsZTpzdGFydF9jYXBhYmlsaXRpZXM6c3RhcnR7bmFtZT0iU05BUFNIT1RfQ0FQQUJJTElUWSJ9OiBsaWZlY3ljbGVyOjpjYXBhYmlsaXR5X2NsaWVudDogUmVjZWl2ZWQgc3VjY2VzcyBjb2RlIGZvciBzdGFydCBjYXBfbmFtZT1TTkFQU0hPVF9DQVBBQklMSVRZCjIwMjItMDktMjNUMTU6MzM6NDAuNzUzNjkwWiAgSU5GTyBydW5fbGlmZWN5Y2xlcjpydW5fc2VydmljZV9hbmRfc3RlcF90aHJvdWdoX2xpZmVjeWNsZTpzdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0YXJ0X2NhcGFiaWxpdGllczpzdGFydHtuYW1lPSJTTkFQU0hPVF9DQVBBQklMSVRZIn06IGxpZmVjeWNsZXI6OmNhcGFiaWxpdHlfY2xpZW50OiBjbG9zZSB0aW1lLmJ1c3k9NC42Mm1zIHRpbWUuaWRsZT0xMjFtcwoyMDIyLTA5LTIzVDE1OjMzOjQxLjkwNzc4M1ogIElORk8gcnVuX2xpZmVjeWNsZXI6cnVuX3NlcnZpY2VfYW5kX3N0ZXBfdGhyb3VnaF9saWZlY3ljbGU6c3RlcF90aHJvdWdoX2xpZmVjeWNsZTpzdGFydF9jYXBhYmlsaXRpZXM6c3RhcnR7bmFtZT0iREFUQV9DQVBBQklMSVRZIn06IGxpZmVjeWNsZXI6OmNhcGFiaWxpdHlfY2xpZW50OiBSZWNlaXZlZCBzdWNjZXNzIGNvZGUgZm9yIHN0YXJ0IGNhcF9uYW1lPURBVEFfQ0FQQUJJTElUWQoyMDIyLTA5LTIzVDE1OjMzOjQxLjkwNzg0MFogIElORk8gcnVuX2xpZmVjeWNsZXI6cnVuX3NlcnZpY2VfYW5kX3N0ZXBfdGhyb3VnaF9saWZlY3ljbGU6c3RlcF90aHJvdWdoX2xpZmVjeWNsZTpzdGFydF9jYXBhYmlsaXRpZXM6c3RhcnR7bmFtZT0iREFUQV9DQVBBQklMSVRZIn06IGxpZmVjeWNsZXI6OmNhcGFiaWxpdHlfY2xpZW50OiBjbG9zZSB0aW1lLmJ1c3k9MzQ1wrVzIHRpbWUuaWRsZT0xLjI4cwoyMDIyLTA5LTIzVDE1OjMzOjQxLjkwNzg4NVogIElORk8gcnVuX2xpZmVjeWNsZXI6cnVuX3NlcnZpY2VfYW5kX3N0ZXBfdGhyb3VnaF9saWZlY3ljbGU6c3RlcF90aHJvdWdoX2xpZmVjeWNsZTpzdGFydF9jYXBhYmlsaXRpZXM6IGxpZmVjeWNsZXI6OmxpZmVjeWNsZTogY2xvc2UgdGltZS5idXN5PTEzLjltcyB0aW1lLmlkbGU9MS4yN3MKMjAyMi0wOS0yM1QxNTozMzo0MS45MDgwMjdaICBJTkZPIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6Y29ubmVjdF9leGVjdXRvcjpjb25uZWN0OmNvbm5lY3Q6IGdycGNfdXRpbHM6OmVuZHBvaW50Ojpjb25uZWN0OiBDb25uZWN0aW5nIHRvIGdSUEMgc2VydmljZSBlbmRwb2ludD1VZHMoIi9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1Ly5ncnBjL2V4ZWN1dG9yOjAiKSByZXRyeT1GaXhlZEludGVydmFsUmV0cnkgeyBhdHRlbXB0X3RpbWVvdXRfbWlsbGlzOiA1MCwgcmV0cnlfZGVsYXlfbWlsbGlzOiAxMCwgbWF4X2R1cmF0aW9uOiAxNzI4MDBzIH0KMjAyMi0wOS0yM1QxNTozMzo0OC41Mzg4MjRaICBJTkZPIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6Y29ubmVjdF9leGVjdXRvcjpjb25uZWN0OmNvbm5lY3Q6IGdycGNfdXRpbHM6OmVuZHBvaW50Ojpjb25uZWN0OiBTdWNjZXNzZnVsbHkgY29ubmVjdGVkIHRvIGdSUEMgc2VydmljZSBlbmRwb2ludD1VZHMoIi9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1Ly5ncnBjL2V4ZWN1dG9yOjAiKQoyMDIyLTA5LTIzVDE1OjMzOjQ4LjUzODkzMFogIElORk8gcnVuX2xpZmVjeWNsZXI6cnVuX3NlcnZpY2VfYW5kX3N0ZXBfdGhyb3VnaF9saWZlY3ljbGU6c3RlcF90aHJvdWdoX2xpZmVjeWNsZTpjb25uZWN0X2V4ZWN1dG9yOmNvbm5lY3Q6Y29ubmVjdDogZ3JwY191dGlsczo6ZW5kcG9pbnQ6OmNvbm5lY3Q6IGNsb3NlIHRpbWUuYnVzeT0zNC4ybXMgdGltZS5pZGxlPTYuNjBzCjIwMjItMDktMjNUMTU6MzM6NDguNTM4OTYxWiAgSU5GTyBydW5fbGlmZWN5Y2xlcjpydW5fc2VydmljZV9hbmRfc3RlcF90aHJvdWdoX2xpZmVjeWNsZTpzdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOmNvbm5lY3RfZXhlY3V0b3I6Y29ubmVjdDogbGlmZWN5Y2xlcjo6ZXhlY3V0b3JfY2xpZW50OiBjbG9zZSB0aW1lLmJ1c3k9MzUuNG1zIHRpbWUuaWRsZT02LjYwcwoyMDIyLTA5LTIzVDE1OjMzOjQ4LjUzOTA3NlogIElORk8gcnVuX2xpZmVjeWNsZXI6cnVuX3NlcnZpY2VfYW5kX3N0ZXBfdGhyb3VnaF9saWZlY3ljbGU6c3RlcF90aHJvdWdoX2xpZmVjeWNsZTpjb25uZWN0X2V4ZWN1dG9yOmNvbm5lY3Q6Y29ubmVjdDogZ3JwY191dGlsczo6ZW5kcG9pbnQ6OmNvbm5lY3Q6IENvbm5lY3RpbmcgdG8gZ1JQQyBzZXJ2aWNlIGVuZHBvaW50PVVkcygiL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvLmdycGMvZXhlY3V0b3I6MCIpIHJldHJ5PUZpeGVkSW50ZXJ2YWxSZXRyeSB7IGF0dGVtcHRfdGltZW91dF9taWxsaXM6IDUwLCByZXRyeV9kZWxheV9taWxsaXM6IDEwLCBtYXhfZHVyYXRpb246IDE3MjgwMHMgfQoyMDIyLTA5LTIzVDE1OjMzOjQ4LjUzOTg2NVogIElORk8gcnVuX2xpZmVjeWNsZXI6cnVuX3NlcnZpY2VfYW5kX3N0ZXBfdGhyb3VnaF9saWZlY3ljbGU6c3RlcF90aHJvdWdoX2xpZmVjeWNsZTpjb25uZWN0X2V4ZWN1dG9yOmNvbm5lY3Q6Y29ubmVjdDogZ3JwY191dGlsczo6ZW5kcG9pbnQ6OmNvbm5lY3Q6IFN1Y2Nlc3NmdWxseSBjb25uZWN0ZWQgdG8gZ1JQQyBzZXJ2aWNlIGVuZHBvaW50PVVkcygiL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvLmdycGMvZXhlY3V0b3I6MCIpCjIwMjItMDktMjNUMTU6MzM6NDguNTM5OTMyWiAgSU5GTyBydW5fbGlmZWN5Y2xlcjpydW5fc2VydmljZV9hbmRfc3RlcF90aHJvdWdoX2xpZmVjeWNsZTpzdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOmNvbm5lY3RfZXhlY3V0b3I6Y29ubmVjdDpjb25uZWN0OiBncnBjX3V0aWxzOjplbmRwb2ludDo6Y29ubmVjdDogY2xvc2UgdGltZS5idXN5PTIxOcK1cyB0aW1lLmlkbGU9NjQwwrVzCjIwMjItMDktMjNUMTU6MzM6NDguNTM5OTU2WiAgSU5GTyBydW5fbGlmZWN5Y2xlcjpydW5fc2VydmljZV9hbmRfc3RlcF90aHJvdWdoX2xpZmVjeWNsZTpzdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOmNvbm5lY3RfZXhlY3V0b3I6Y29ubmVjdDogbGlmZWN5Y2xlcjo6ZXhlY3V0b3JfY2xpZW50OiBjbG9zZSB0aW1lLmJ1c3k9MzQywrVzIHRpbWUuaWRsZT02NDLCtXMKMjAyMi0wOS0yM1QxNTozMzo0OC41NDAxMDJaICBJTkZPIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6Y29ubmVjdF9leGVjdXRvcjpjb25uZWN0OiBncnBjX3V0aWxzOjplbmRwb2ludDo6Y29ubmVjdDogQ29ubmVjdGluZyB0byBnUlBDIHNlcnZpY2UgZW5kcG9pbnQ9VWRzKCIvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS8uZ3JwYy9leGVjdXRvcjowIikgcmV0cnk9Rml4ZWRJbnRlcnZhbFJldHJ5IHsgYXR0ZW1wdF90aW1lb3V0X21pbGxpczogNTAsIHJldHJ5X2RlbGF5X21pbGxpczogMTAsIG1heF9kdXJhdGlvbjogMTcyODAwcyB9CjIwMjItMDktMjNUMTU6MzM6NDguNTQyOTQ1WiAgSU5GTyBydW5fbGlmZWN5Y2xlcjpydW5fc2VydmljZV9hbmRfc3RlcF90aHJvdWdoX2xpZmVjeWNsZTpzdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOmNvbm5lY3RfZXhlY3V0b3I6Y29ubmVjdDogZ3JwY191dGlsczo6ZW5kcG9pbnQ6OmNvbm5lY3Q6IFN1Y2Nlc3NmdWxseSBjb25uZWN0ZWQgdG8gZ1JQQyBzZXJ2aWNlIGVuZHBvaW50PVVkcygiL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvLmdycGMvZXhlY3V0b3I6MCIpCjIwMjItMDktMjNUMTU6MzM6NDguNTQyOTc4WiAgSU5GTyBydW5fbGlmZWN5Y2xlcjpydW5fc2VydmljZV9hbmRfc3RlcF90aHJvdWdoX2xpZmVjeWNsZTpzdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOmNvbm5lY3RfZXhlY3V0b3I6Y29ubmVjdDogZ3JwY191dGlsczo6ZW5kcG9pbnQ6OmNvbm5lY3Q6IGNsb3NlIHRpbWUuYnVzeT0yLjgxbXMgdGltZS5pZGxlPTc0LjDCtXMKMjAyMi0wOS0yM1QxNTozMzo0OC41NDMwMDJaICBJTkZPIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6Y29ubmVjdF9leGVjdXRvcjp3YWl0X2Zvcl9zZXJ2aWNlX2hlYWx0aHk6IGxpZmVjeWNsZXI6OmhlYWx0aF9tb25pdG9yOiBXYWl0aW5nIGZvciBzZXJ2aWNlIHRvIGJlY29tZSBoZWFsdGh5OiBFeGVjdXRvciBzZXJ2aWNlX25hbWU9RXhlY3V0b3IgdGltZW91dD0zMHMKMjAyMi0wOS0yM1QxNTozMzo0OC41NDMwMjRaICBXQVJOIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6Y29ubmVjdF9leGVjdXRvcjp3YWl0X2Zvcl9zZXJ2aWNlX2hlYWx0aHk6IGdycGNfdXRpbHM6OnNwYW46IGZhaWxlZCB0byBpbmplY3Qgc3BhbiBjb250ZXh0IHRvIGdycGMgcmVxdWVzdAoyMDIyLTA5LTIzVDE1OjMzOjQ4LjU0NTI0OFogIElORk8gcnVuX2xpZmVjeWNsZXI6cnVuX3NlcnZpY2VfYW5kX3N0ZXBfdGhyb3VnaF9saWZlY3ljbGU6c3RlcF90aHJvdWdoX2xpZmVjeWNsZTpjb25uZWN0X2V4ZWN1dG9yOndhaXRfZm9yX3NlcnZpY2VfaGVhbHRoeTogbGlmZWN5Y2xlcjo6aGVhbHRoX2NsaWVudDogSGVhbHRoIHN0YXR1cyBmb3Igc2VydmljZTogRXhlY3V0b3Igc2VydmljZV9uYW1lPUV4ZWN1dG9yIGhlYWx0aF9zdGF0dXM9MQoyMDIyLTA5LTIzVDE1OjMzOjQ4LjU0NTI3OFogIElORk8gcnVuX2xpZmVjeWNsZXI6cnVuX3NlcnZpY2VfYW5kX3N0ZXBfdGhyb3VnaF9saWZlY3ljbGU6c3RlcF90aHJvdWdoX2xpZmVjeWNsZTpjb25uZWN0X2V4ZWN1dG9yOndhaXRfZm9yX3NlcnZpY2VfaGVhbHRoeTogbGlmZWN5Y2xlcjo6aGVhbHRoX21vbml0b3I6IFNlcnZpY2UgaGFzIGJlY29tZSBoZWFsdGh5IHNlcnZpY2VfbmFtZT1FeGVjdXRvcgoyMDIyLTA5LTIzVDE1OjMzOjQ4LjU0NTMwMFogIElORk8gcnVuX2xpZmVjeWNsZXI6cnVuX3NlcnZpY2VfYW5kX3N0ZXBfdGhyb3VnaF9saWZlY3ljbGU6c3RlcF90aHJvdWdoX2xpZmVjeWNsZTpjb25uZWN0X2V4ZWN1dG9yOndhaXRfZm9yX3NlcnZpY2VfaGVhbHRoeTogbGlmZWN5Y2xlcjo6aGVhbHRoX21vbml0b3I6IGNsb3NlIHRpbWUuYnVzeT0xNzXCtXMgdGltZS5pZGxlPTIuMTNtcwoyMDIyLTA5LTIzVDE1OjMzOjQ4LjU0NTMyNVogIElORk8gcnVuX2xpZmVjeWNsZXI6cnVuX3NlcnZpY2VfYW5kX3N0ZXBfdGhyb3VnaF9saWZlY3ljbGU6c3RlcF90aHJvdWdoX2xpZmVjeWNsZTpjb25uZWN0X2V4ZWN1dG9yOiBsaWZlY3ljbGVyOjpsaWZlY3ljbGU6IGNsb3NlIHRpbWUuYnVzeT00MC4ybXMgdGltZS5pZGxlPTYuNjBzCjIwMjItMDktMjNUMTU6MzM6NDguNTQ1MzQ1WiAgSU5GTyBydW5fbGlmZWN5Y2xlcjpydW5fc2VydmljZV9hbmRfc3RlcF90aHJvdWdoX2xpZmVjeWNsZTpzdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOmNvbm5lY3RfbGlmZWN5Y2xlcnN7bGlmZWN5Y2xlcl9hZGRyZXNzZXM9Tm9uZX06IGxpZmVjeWNsZXI6OmxpZmVjeWNsZTogY2xvc2UgdGltZS5idXN5PTEuMzDCtXMgdGltZS5pZGxlPTUuNTDCtXMKMjAyMi0wOS0yM1QxNTozMzo0OC41NDUzNzlaICBJTkZPIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6ZXhlY3V0ZTogbGlmZWN5Y2xlcjo6bGlmZWN5Y2xlOiBlbnRlcmluZyBwaGFzZSByYW5rPU5vbmUgcGhhc2U9MCBpc19sZWFkZXI9dHJ1ZSBlbnRlcmVkX3BoYXNlcz1mYWxzZQoyMDIyLTA5LTIzVDE1OjMzOjQ4LjU0NTQxMFogIElORk8gcnVuX2xpZmVjeWNsZXI6cnVuX3NlcnZpY2VfYW5kX3N0ZXBfdGhyb3VnaF9saWZlY3ljbGU6c3RlcF90aHJvdWdoX2xpZmVjeWNsZTpleGVjdXRlOmJhcnJpZXJfc3luYzogbGlmZWN5Y2xlcjo6bGlmZWN5Y2xlOiBjbG9zZSB0aW1lLmJ1c3k9NzAwbnMgdGltZS5pZGxlPTIuMDDCtXMKMjAyMi0wOS0yM1QxNTozMzo0OC41NDU3MTFaICBJTkZPIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6ZXhlY3V0ZTogbGlmZWN5Y2xlcjo6bGlmZWN5Y2xlOiBzdGFydGluZyBwaGFzZSBleGVjdXRpb24gcmFuaz1Ob25lIHBoYXNlPTAKMjAyMi0wOS0yM1QxNTozMzo0OC41NDU3ODFaICBJTkZPIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6ZXhlY3V0ZTogbGlmZWN5Y2xlcjo6bGlmZWN5Y2xlOiBleGVjdXRpbmcgcGhhc2UgY29tbWFuZHMgcmFuaz1Ob25lIHBoYXNlPTAKMjAyMi0wOS0yM1QxNTozMzo0OC41NDU4NDNaICBJTkZPIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6ZXhlY3V0ZTpleGVjdXRvcl9jbGllbnQ6OmV4ZWN1dGVfY29tbWFuZHN7bGlmZWN5Y2xlX2FkZHJlc3M9Ii9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1Ly5ncnBjL2xpZmVjeWNsZXI6MCIgc2NoZWR1bGluZz1Ob25lIGRlYnVnX21vZGU9U29tZShmYWxzZSl9OiBsaWZlY3ljbGVyOjpleGVjdXRvcl9jbGllbnQ6IEV4ZWN1dGluZyBjb21tYW5kcwoyMDIyLTA5LTIzVDE1OjMzOjQ4LjU0NTkyN1ogIFdBUk4gcnVuX2xpZmVjeWNsZXI6cnVuX3NlcnZpY2VfYW5kX3N0ZXBfdGhyb3VnaF9saWZlY3ljbGU6c3RlcF90aHJvdWdoX2xpZmVjeWNsZTpleGVjdXRlOmV4ZWN1dG9yX2NsaWVudDo6ZXhlY3V0ZV9jb21tYW5kc3tsaWZlY3ljbGVfYWRkcmVzcz0iL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvLmdycGMvbGlmZWN5Y2xlcjowIiBzY2hlZHVsaW5nPU5vbmUgZGVidWdfbW9kZT1Tb21lKGZhbHNlKX06ZXhlY3V0b3JfY2xpZW50OjpzdGFydF9leGVjdXRpb257bGlmZWN5Y2xlcl9hZGRyZXNzPSIvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS8uZ3JwYy9saWZlY3ljbGVyOjAiIGRlYnVnX21vZGU9U29tZShmYWxzZSkgY29tbWFuZHNfZj1Db21tYW5kKENvbW1hbmQgeyBleGVjdXRhYmxlOiBTaGVsbCB7IHBhdGg6IE5vbmUsIGNvbW1hbmQ6ICJlY2hvIFwiSGVsbG8gV29ybGRcIiA\u002BICRBWlVSRV9NTF9PVVRQVVRfY29tcG9uZW50X291dF9wYXRoXzEvaGVsbG93b3JsZC50eHQiLCBzdWNjZXNzX3JldHVybl9jb2RlOiBaZXJvIHsgYWRkaXRpb25hbF9jb2RlczogW10gfSB9LCBzdGRlcnI6IE5vbmUsIHN0ZG91dDogU29tZSgidXNlcl9sb2dzL3N0ZF9sb2cudHh0IikgfSkgcGF0aF9tYXBwaW5nc19mPXt9fTogZ3JwY191dGlsczo6c3BhbjogZmFpbGVkIHRvIGluamVjdCBzcGFuIGNvbnRleHQgdG8gZ3JwYyByZXF1ZXN0CjIwMjItMDktMjNUMTU6MzM6NDguNTQ1OTY3WiAgSU5GTyBydW5fbGlmZWN5Y2xlcjpydW5fc2VydmljZV9hbmRfc3RlcF90aHJvdWdoX2xpZmVjeWNsZTpzdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOmV4ZWN1dGU6ZXhlY3V0b3JfY2xpZW50OjpleGVjdXRlX2NvbW1hbmRze2xpZmVjeWNsZV9hZGRyZXNzPSIvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS8uZ3JwYy9saWZlY3ljbGVyOjAiIHNjaGVkdWxpbmc9Tm9uZSBkZWJ1Z19tb2RlPVNvbWUoZmFsc2UpfTpleGVjdXRvcl9jbGllbnQ6OnN0YXJ0X2V4ZWN1dGlvbntsaWZlY3ljbGVyX2FkZHJlc3M9Ii9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1Ly5ncnBjL2xpZmVjeWNsZXI6MCIgZGVidWdfbW9kZT1Tb21lKGZhbHNlKSBjb21tYW5kc19mPUNvbW1hbmQoQ29tbWFuZCB7IGV4ZWN1dGFibGU6IFNoZWxsIHsgcGF0aDogTm9uZSwgY29tbWFuZDogImVjaG8gXCJIZWxsbyBXb3JsZFwiID4gJEFaVVJFX01MX09VVFBVVF9jb21wb25lbnRfb3V0X3BhdGhfMS9oZWxsb3dvcmxkLnR4dCIsIHN1Y2Nlc3NfcmV0dXJuX2NvZGU6IFplcm8geyBhZGRpdGlvbmFsX2NvZGVzOiBbXSB9IH0sIHN0ZGVycjogTm9uZSwgc3Rkb3V0OiBTb21lKCJ1c2VyX2xvZ3Mvc3RkX2xvZy50eHQiKSB9KSBwYXRoX21hcHBpbmdzX2Y9e319OiBsaWZlY3ljbGVyOjpleGVjdXRvcl9jbGllbnQ6IFN0YXJ0aW5nIGV4ZWN1dGlvbiBleGVjdXRpb25faWQ9MjRiODBkOWYtMzcyZC00NjI1LWFjOTgtM2M4ZGRiMWY2NzM4IGxpZmVjeWNsZXJfYWRkcmVzcz0vbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS8uZ3JwYy9saWZlY3ljbGVyOjAKMjAyMi0wOS0yM1QxNTozMzo0OC41NjQ3NDlaICBJTkZPIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6ZXhlY3V0ZTpleGVjdXRvcl9jbGllbnQ6OmV4ZWN1dGVfY29tbWFuZHN7bGlmZWN5Y2xlX2FkZHJlc3M9Ii9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1Ly5ncnBjL2xpZmVjeWNsZXI6MCIgc2NoZWR1bGluZz1Ob25lIGRlYnVnX21vZGU9U29tZShmYWxzZSl9OmV4ZWN1dG9yX2NsaWVudDo6c3RhcnRfZXhlY3V0aW9ue2xpZmVjeWNsZXJfYWRkcmVzcz0iL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvLmdycGMvbGlmZWN5Y2xlcjowIiBkZWJ1Z19tb2RlPVNvbWUoZmFsc2UpIGNvbW1hbmRzX2Y9Q29tbWFuZChDb21tYW5kIHsgZXhlY3V0YWJsZTogU2hlbGwgeyBwYXRoOiBOb25lLCBjb21tYW5kOiAiZWNobyBcIkhlbGxvIFdvcmxkXCIgPiAkQVpVUkVfTUxfT1VUUFVUX2NvbXBvbmVudF9vdXRfcGF0aF8xL2hlbGxvd29ybGQudHh0Iiwgc3VjY2Vzc19yZXR1cm5fY29kZTogWmVybyB7IGFkZGl0aW9uYWxfY29kZXM6IFtdIH0gfSwgc3RkZXJyOiBOb25lLCBzdGRvdXQ6IFNvbWUoInVzZXJfbG9ncy9zdGRfbG9nLnR4dCIpIH0pIHBhdGhfbWFwcGluZ3NfZj17fX06IGxpZmVjeWNsZXI6OmV4ZWN1dG9yX2NsaWVudDogY2xvc2UgdGltZS5idXN5PTE5MMK1cyB0aW1lLmlkbGU9MTguN21zCjIwMjItMDktMjNUMTU6MzM6NDguNTY0ODc1WiAgSU5GTyBydW5fbGlmZWN5Y2xlcjpydW5fc2VydmljZV9hbmRfc3RlcF90aHJvdWdoX2xpZmVjeWNsZTpzdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOmV4ZWN1dGU6ZXhlY3V0b3JfY2xpZW50OjpleGVjdXRlX2NvbW1hbmRze2xpZmVjeWNsZV9hZGRyZXNzPSIvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS8uZ3JwYy9saWZlY3ljbGVyOjAiIHNjaGVkdWxpbmc9Tm9uZSBkZWJ1Z19tb2RlPVNvbWUoZmFsc2UpfTogbGlmZWN5Y2xlcjo6ZXhlY3V0b3JfY2xpZW50OiBXYWl0aW5nIGZvciBleGVjdXRpb24gY29tcGxldGlvbiBleGVjdXRpb25faWQ9IjI0YjgwZDlmLTM3MmQtNDYyNS1hYzk4LTNjOGRkYjFmNjczOCIKMjAyMi0wOS0yM1QxNTozMzo0OC42MjY0MjNaICBJTkZPIEV4ZWN1dGlvbkNhbGxiYWNrU2VydmljZXI6OmNvbXBsZXRlX2V4ZWN1dGlvbjogZ3JwY191dGlsczo6c2VydmVyOiBHb3QgZ3JwYyByZXF1ZXN0IHJlcXVlc3RfbmFtZT0iY29tcGxldGVfZXhlY3V0aW9uIiByZW1vdGVfYWRkcj1Ob25lCjIwMjItMDktMjNUMTU6MzM6NDguNjI2NTEwWiAgSU5GTyBFeGVjdXRpb25DYWxsYmFja1NlcnZpY2VyOjpjb21wbGV0ZV9leGVjdXRpb246IGxpZmVjeWNsZXI6OnNlcnZpY2U6IGNsb3NlIHRpbWUuYnVzeT05Ny4xwrVzIHRpbWUuaWRsZT0zMi43wrVzCjIwMjItMDktMjNUMTU6MzM6NDguNjI2NTUwWiAgSU5GTyBydW5fbGlmZWN5Y2xlcjpydW5fc2VydmljZV9hbmRfc3RlcF90aHJvdWdoX2xpZmVjeWNsZTpzdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOmV4ZWN1dGU6ZXhlY3V0b3JfY2xpZW50OjpleGVjdXRlX2NvbW1hbmRze2xpZmVjeWNsZV9hZGRyZXNzPSIvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS8uZ3JwYy9saWZlY3ljbGVyOjAiIHNjaGVkdWxpbmc9Tm9uZSBkZWJ1Z19tb2RlPVNvbWUoZmFsc2UpfTpleGVjdXRvcl9jbGllbnQ6OndhaXRfZm9yX2V4ZWN1dGlvbl9jb21wbGV0aW9ue2V4ZWN1dGlvbl9pZD0iMjRiODBkOWYtMzcyZC00NjI1LWFjOTgtM2M4ZGRiMWY2NzM4In06IGxpZmVjeWNsZXI6OmV4ZWN1dG9yX2NsaWVudDogY2xvc2UgdGltZS5idXN5PTUuMjDCtXMgdGltZS5pZGxlPTYxLjZtcwoyMDIyLTA5LTIzVDE1OjMzOjQ4LjYyNjcxNFogIElORk8gcnVuX2xpZmVjeWNsZXI6cnVuX3NlcnZpY2VfYW5kX3N0ZXBfdGhyb3VnaF9saWZlY3ljbGU6c3RlcF90aHJvdWdoX2xpZmVjeWNsZTpleGVjdXRlOmV4ZWN1dG9yX2NsaWVudDo6ZXhlY3V0ZV9jb21tYW5kc3tsaWZlY3ljbGVfYWRkcmVzcz0iL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvLmdycGMvbGlmZWN5Y2xlcjowIiBzY2hlZHVsaW5nPU5vbmUgZGVidWdfbW9kZT1Tb21lKGZhbHNlKX06IGxpZmVjeWNsZXI6OmV4ZWN1dG9yX2NsaWVudDogRXhlY3V0aW9uIGNvbXBsZXRlZCBleGVjdXRpb25faWQ9IjI0YjgwZDlmLTM3MmQtNDYyNS1hYzk4LTNjOGRkYjFmNjczOCIKMjAyMi0wOS0yM1QxNTozMzo0OC42MjY4NjdaICBJTkZPIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6ZXhlY3V0ZTpleGVjdXRvcl9jbGllbnQ6OmV4ZWN1dGVfY29tbWFuZHN7bGlmZWN5Y2xlX2FkZHJlc3M9Ii9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1Ly5ncnBjL2xpZmVjeWNsZXI6MCIgc2NoZWR1bGluZz1Ob25lIGRlYnVnX21vZGU9U29tZShmYWxzZSl9OiBsaWZlY3ljbGVyOjpleGVjdXRvcl9jbGllbnQ6IGNsb3NlIHRpbWUuYnVzeT03ODLCtXMgdGltZS5pZGxlPTgwLjNtcwoyMDIyLTA5LTIzVDE1OjMzOjQ4LjYyNjkwOVogIElORk8gcnVuX2xpZmVjeWNsZXI6cnVuX3NlcnZpY2VfYW5kX3N0ZXBfdGhyb3VnaF9saWZlY3ljbGU6c3RlcF90aHJvdWdoX2xpZmVjeWNsZTpleGVjdXRlOiBsaWZlY3ljbGVyOjpsaWZlY3ljbGU6IHBoYXNlIGV4ZWN1dGlvbiBjb21wbGV0ZWQuIHJhbms9Tm9uZSBwaGFzZT0wCjIwMjItMDktMjNUMTU6MzM6NDguNjI2OTY4WiAgSU5GTyBydW5fbGlmZWN5Y2xlcjpydW5fc2VydmljZV9hbmRfc3RlcF90aHJvdWdoX2xpZmVjeWNsZTpzdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOmV4ZWN1dGU6IGxpZmVjeWNsZXI6OmxpZmVjeWNsZTogY2xvc2UgdGltZS5idXN5PTEuMzdtcyB0aW1lLmlkbGU9ODAuMm1zCjIwMjItMDktMjNUMTU6MzM6NDguNjI3MTM2WiAgV0FSTiBydW5fbGlmZWN5Y2xlcjpydW5fc2VydmljZV9hbmRfc3RlcF90aHJvdWdoX2xpZmVjeWNsZTpzdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOmVuZF9jYXBhYmlsaXRpZXM6ZW5ke25hbWU9IkRBVEFfQ0FQQUJJTElUWSJ9OiBncnBjX3V0aWxzOjpzcGFuOiBmYWlsZWQgdG8gaW5qZWN0IHNwYW4gY29udGV4dCB0byBncnBjIHJlcXVlc3QKMjAyMi0wOS0yM1QxNTozMzo0OC42MjcxOThaICBXQVJOIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6ZW5kX2NhcGFiaWxpdGllczplbmR7bmFtZT0iU05BUFNIT1RfQ0FQQUJJTElUWSJ9OiBncnBjX3V0aWxzOjpzcGFuOiBmYWlsZWQgdG8gaW5qZWN0IHNwYW4gY29udGV4dCB0byBncnBjIHJlcXVlc3QKMjAyMi0wOS0yM1QxNTozMzo0OC42MjgyMDNaICBXQVJOIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6ZW5kX2NhcGFiaWxpdGllczplbmR7bmFtZT0iQ1NfQ0FQQUJJTElUWSJ9OiBncnBjX3V0aWxzOjpzcGFuOiBmYWlsZWQgdG8gaW5qZWN0IHNwYW4gY29udGV4dCB0byBncnBjIHJlcXVlc3QKMjAyMi0wOS0yM1QxNTozMzo0OC42Mjg1MjBaICBXQVJOIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6ZW5kX2NhcGFiaWxpdGllczplbmR7bmFtZT0iSE9TVFRPT0xTX0NBUEFCSUxJVFkifTogZ3JwY191dGlsczo6c3BhbjogZmFpbGVkIHRvIGluamVjdCBzcGFuIGNvbnRleHQgdG8gZ3JwYyByZXF1ZXN0CjIwMjItMDktMjNUMTU6MzM6NDguNjI4OTM5WiAgV0FSTiBydW5fbGlmZWN5Y2xlcjpydW5fc2VydmljZV9hbmRfc3RlcF90aHJvdWdoX2xpZmVjeWNsZTpzdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOmVuZF9jYXBhYmlsaXRpZXM6ZW5ke25hbWU9Ik1FVFJJQ1NfQ0FQQUJJTElUWSJ9OiBncnBjX3V0aWxzOjpzcGFuOiBmYWlsZWQgdG8gaW5qZWN0IHNwYW4gY29udGV4dCB0byBncnBjIHJlcXVlc3QKMjAyMi0wOS0yM1QxNTozMzo0OC42MzEzNTJaICBJTkZPIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6ZW5kX2NhcGFiaWxpdGllczplbmR7bmFtZT0iU05BUFNIT1RfQ0FQQUJJTElUWSJ9OiBsaWZlY3ljbGVyOjpjYXBhYmlsaXR5X2NsaWVudDogUmVjZWl2ZWQgc3VjY2VzcyBjb2RlIGZvciBlbmQgY2FwX25hbWU9U05BUFNIT1RfQ0FQQUJJTElUWQoyMDIyLTA5LTIzVDE1OjMzOjQ4LjYzMTYxOVogIElORk8gcnVuX2xpZmVjeWNsZXI6cnVuX3NlcnZpY2VfYW5kX3N0ZXBfdGhyb3VnaF9saWZlY3ljbGU6c3RlcF90aHJvdWdoX2xpZmVjeWNsZTplbmRfY2FwYWJpbGl0aWVzOmVuZHtuYW1lPSJTTkFQU0hPVF9DQVBBQklMSVRZIn06IGxpZmVjeWNsZXI6OmNhcGFiaWxpdHlfY2xpZW50OiBjbG9zZSB0aW1lLmJ1c3k9Mzc3wrVzIHRpbWUuaWRsZT00LjA1bXMKMjAyMi0wOS0yM1QxNTozMzo0OC42MzE3NDVaICBJTkZPIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6ZW5kX2NhcGFiaWxpdGllczplbmR7bmFtZT0iTUVUUklDU19DQVBBQklMSVRZIn06IGxpZmVjeWNsZXI6OmNhcGFiaWxpdHlfY2xpZW50OiBSZWNlaXZlZCBzdWNjZXNzIGNvZGUgZm9yIGVuZCBjYXBfbmFtZT1NRVRSSUNTX0NBUEFCSUxJVFkKMjAyMi0wOS0yM1QxNTozMzo0OC42MzE5NjlaICBJTkZPIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6ZW5kX2NhcGFiaWxpdGllczplbmR7bmFtZT0iTUVUUklDU19DQVBBQklMSVRZIn06IGxpZmVjeWNsZXI6OmNhcGFiaWxpdHlfY2xpZW50OiBjbG9zZSB0aW1lLmJ1c3k9NDkwwrVzIHRpbWUuaWRsZT0yLjU1bXMKMjAyMi0wOS0yM1QxNTozMzo0OC43Mjg5NDBaICBJTkZPIHJ1bl9saWZlY3ljbGVyOnJ1bl9zZXJ2aWNlX2FuZF9zdGVwX3Rocm91Z2hfbGlmZWN5Y2xlOnN0ZXBfdGhyb3VnaF9saWZlY3ljbGU6ZW5kX2NhcGFiaWxpdGllczplbmR7bmFtZT0iQ1NfQ0FQQUJJTElUWSJ9OiBsaWZlY3ljbGVyOjpjYXBhYmlsaXR5X2NsaWVudDogUmVjZWl2ZWQgc3VjY2VzcyBjb2RlIGZvciBlbmQgY2FwX25hbWU9Q1NfQ0FQQUJJTElUWQoyMDIyLTA5LTIzVDE1OjMzOjQ4LjcyOTE0OVogIElORk8gcnVuX2xpZmVjeWNsZXI6cnVuX3NlcnZpY2VfYW5kX3N0ZXBfdGhyb3VnaF9saWZlY3ljbGU6c3RlcF90aHJvdWdoX2xpZmVjeWNsZTplbmRfY2FwYWJpbGl0aWVzOmVuZHtuYW1lPSJDU19DQVBBQklMSVRZIn06IGxpZmVjeWNsZXI6OmNhcGFiaWxpdHlfY2xpZW50OiBjbG9zZSB0aW1lLmJ1c3k9NTY2wrVzIHRpbWUuaWRsZT0xMDBtcwo=" + }, + { + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml/ExperimentRun/dcid.7599d23f-8164-4644-808e-e4e13b1efe1d/system_logs/metrics_capability/metrics-capability.log", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/xml", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:34:45 GMT", + "x-ms-range": "bytes=0-33554431", + "x-ms-version": "2021-08-06" + }, + "RequestBody": null, + "StatusCode": 206, + "ResponseHeaders": { + "Accept-Ranges": "bytes", + "Content-Disposition": "", + "Content-Length": "13743", + "Content-Range": "bytes 0-13742/13743", + "Content-Type": "application/octet-stream", + "Date": "Fri, 23 Sep 2022 15:34:43 GMT", + "ETag": "\u00220x8DA9D7902A163BA\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:33:48 GMT", + "Server": [ + "Windows-Azure-Blob/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": "Origin", + "x-ms-blob-type": "BlockBlob", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:33:23 GMT", + "x-ms-lease-state": "available", + "x-ms-lease-status": "unlocked", + "x-ms-server-encrypted": "true", + "x-ms-version": "2021-08-06" + }, + "ResponseBody": "MjAyMi0wOS0yM1QxNTozMjo1My41MTk3NjBaICBJTkZPIHRlbGVtZXRyeTogam9iX3RlbGVtZXRyeV9pbml0IGFydGlmYWN0X3R5cGU9aW5zdGFsbGVkIGJyYW5jaD1vcmlnaW4vMWY0ODlkZWM0ZjU3MTE0ZDc2NzM2NGQwMmVkOTUyYTUyM2U4ZWJiYiBjaV9udW1iZXI9MjAyMjA5MTYuMSBjaV9uYW1lPUNvbW1vblJ1bnRpbWUtcHJvZC1idWlsZCBidWlsZF90aW1lPTIwMjItMDktMTYgMTA6MzY6MDQuODg3ODcwCjIwMjItMDktMjNUMTU6MzI6NTMuNTIwMDA4WiAgSU5GTyBtZXRyaWNzLWNhcGFiaWxpdHk6OmRvX21haW46IG1ldHJpY3NfY2FwYWJpbGl0eTogbWV0cmljcyBjYXAgY29uZmlnIGNhcF9jb25maWc9TWV0cmljc0NhcENvbmZpZyB7IHBvbGxpbmdfaW50ZXJ2YWxfc2VjOiAxNSwgc2VuZF90b19oaXN0b3J5X2ludGVydmFsX3NlYzogNjAsIGVuYWJsZWRfcmVzb3VyY2VfbWV0cmljczogWyJDcHVVdGlsaXphdGlvblBlcmNlbnRhZ2UiLCAiR3B1VXRpbGl6YXRpb25QZXJjZW50YWdlIiwgIkdwdUVuZXJneUpvdWxlcyIsICJHcHVNZW1vcnlVdGlsaXphdGlvblBlcmNlbnRhZ2UiLCAiR3B1TWVtb3J5VXRpbGl6YXRpb25NZWdhYnl0ZXMiLCAiR3B1TWVtb3J5Q2FwYWNpdHlNZWdhYnl0ZXMiLCAiQ3B1TWVtb3J5VXRpbGl6YXRpb25QZXJjZW50YWdlIiwgIkNwdU1lbW9yeVV0aWxpemF0aW9uTWVnYWJ5dGVzIiwgIkNwdU1lbW9yeUNhcGFjaXR5TWVnYWJ5dGVzIiwgIkRpc2tSZWFkTWVnYWJ5dGVzIiwgIkRpc2tXcml0ZU1lZ2FieXRlcyIsICJOZXR3b3JrSW5wdXRNZWdhYnl0ZXMiLCAiTmV0d29ya091dHB1dE1lZ2FieXRlcyIsICJJQlJlY2VpdmVNZWdhYnl0ZXMiLCAiSUJUcmFuc21pdE1lZ2FieXRlcyIsICJEaXNrVXNlZE1lZ2FieXRlcyIsICJEaXNrQXZhaWxNZWdhYnl0ZXMiXSwgcmVzZXJ2ZWRfZGlza19zcGFjZV9ieXRlczogMTQwMDAwMDAwMCwgYWRkaXRpb25hbF9zY3JhcGVfam9iczogW10gfQoyMDIyLTA5LTIzVDE1OjMyOjUzLjUyMTQ5NFogIElORk8gbWV0cmljcy1jYXBhYmlsaXR5Ojpkb19tYWluOiBtZXRyaWNzX2NhcGFiaWxpdHk6IHJ1biB0b2tlbiBmaWxlIGNyZWF0ZWQKMjAyMi0wOS0yM1QxNTozMjo1My41MjE3NTlaICBJTkZPIG1ldHJpY3MtY2FwYWJpbGl0eTo6ZG9fbWFpbjogbWV0cmljc19jYXBhYmlsaXR5OiBlbWJlZGRlZCBmaWxlIGZpbGU9InByb21ldGhldXMtdGVtcGxhdGUueW1sIgoyMDIyLTA5LTIzVDE1OjMyOjUzLjUyNTgyOVogIElORk8gbWV0cmljcy1jYXBhYmlsaXR5Ojpkb19tYWluOiBtZXRyaWNzX2NhcGFiaWxpdHk6IHByb21ldGhldXMgY29uZmlnIGZpbGUgY3JlYXRlZAoyMDIyLTA5LTIzVDE1OjMyOjUzLjUyNTg5NlogIElORk8gbWV0cmljcy1jYXBhYmlsaXR5Ojpkb19tYWluOiBtZXRyaWNzX2NhcGFiaWxpdHk6OmFkZGl0aW9uYWxfc2NyYXBlX2pvYnNfY29uZmlnZXI6IE5vIGFkZGl0aW9uYWwgc2NyYXBlIGpvYnMgY29uZmlndXJlZC4KMjAyMi0wOS0yM1QxNTozMjo1My41MjU5NjFaICBJTkZPIG1ldHJpY3NfY2FwYWJpbGl0eTogc3RhcnRpbmcgY2Fkdmlzb3Igc3VicHJvY2VzcyB3YXRjaGVyIHRhc2sKMjAyMi0wOS0yM1QxNTozMjo1My41MjU5ODFaICBJTkZPIG1ldHJpY3NfY2FwYWJpbGl0eTogc3RhcnRpbmcgY2Fkdmlzb3Igc3VicHJvY2VzczogY2Fkdmlzb3IgWyItLXN0ZGVycnRocmVzaG9sZD0wIiwgIi0tcmF3X2Nncm91cF9wcmVmaXhfd2hpdGVsaXN0PS9zeXN0ZW0uc2xpY2UvY29udGFpbmVyZC5zZXJ2aWNlIiwgIi0tbGlzdGVuX2lwPTAuMC4wLjAiLCAiLS1wb3J0PTgwODEiXSByZXRyeV9jb3VudD0xCjIwMjItMDktMjNUMTU6MzI6NTMuNTI2MTYyWiAgSU5GTyBtZXRyaWNzX2NhcGFiaWxpdHk6IHN0YXJ0aW5nIHByb21ldGhldXMgc3VicHJvY2VzcyB3YXRjaGVyIHRhc2sKMjAyMi0wOS0yM1QxNTozMjo1My41MjYxODFaICBJTkZPIG1ldHJpY3NfY2FwYWJpbGl0eTogc3RhcnRpbmcgcHJvbWV0aGV1cyBzdWJwcm9jZXNzOiBwcm9tZXRoZXVzIFsiLS1zdG9yYWdlLnRzZGIucmV0ZW50aW9uLnRpbWU9MzBtIiwgIi0tbG9nLmxldmVsPWluZm8iLCAiLS1lbmFibGUtZmVhdHVyZT1leHBhbmQtZXh0ZXJuYWwtbGFiZWxzIiwgIi0tY29uZmlnLmZpbGU9L3Vzci9sb2NhbC9iaW4vcHJvbWV0aGV1cy55bWwiLCAiLS13ZWIubGlzdGVuLWFkZHJlc3M9MC4wLjAuMDo5MDkwIl0gcmV0cnlfY291bnQ9MQoyMDIyLTA5LTIzVDE1OjMyOjUzLjUyNjMxMVogIElORk8gbWV0cmljcy1jYXBhYmlsaXR5Ojpkb19tYWluOiBtZXRyaWNzX2NhcGFiaWxpdHk6IE5vIEdQVXMgZm91bmQsIHNraXBwaW5nIG52aWRpYS1zbWkgaW5zdGFudCBleHBvcnRlcgoyMDIyLTA5LTIzVDE1OjMyOjUzLjUyNjM1NFogIElORk8gbWV0cmljcy1jYXBhYmlsaXR5Ojpkb19tYWluOiBtZXRyaWNzX2NhcGFiaWxpdHk6IG1ldHJpY3MgY2FwYWJpbGl0eSBzdGFydGluZyBzZXJ2aWNlIGFkZHJlc3M9L21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvLmdycGMvbWV0cmljcy1jYXBhYmlsaXR5OjAKMjAyMi0wOS0yM1QxNTozMjo1My41MjY0MjFaICBJTkZPIG1ldHJpY3MtY2FwYWJpbGl0eTo6ZG9fbWFpbjptZXRyaWNzLWNhcGFiaWxpdHk6OnJ1bl9zZXJ2aWNle2FkZHJlc3M9Ii9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1Ly5ncnBjL21ldHJpY3MtY2FwYWJpbGl0eTowIiBoYW5kbGVzPVtKb2luSGFuZGxlIHsgaWQ6IElkKDcpIH0sIEpvaW5IYW5kbGUgeyBpZDogSWQoOCkgfSwgSm9pbkhhbmRsZSB7IGlkOiBJZCg5KSB9LCBKb2luSGFuZGxlIHsgaWQ6IElkKDEwKSB9LCBKb2luSGFuZGxlIHsgaWQ6IElkKDExKSB9LCBKb2luSGFuZGxlIHsgaWQ6IElkKDEyKSB9XX06IG1ldHJpY3NfY2FwYWJpbGl0eTo6c2VydmljZTogbWV0cmljcyBjYXBhYmlsaXR5IHN0YXJ0aW5nIHNlcnZpY2UgYWRkcmVzcz0vbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS8uZ3JwYy9tZXRyaWNzLWNhcGFiaWxpdHk6MAoyMDIyLTA5LTIzVDE1OjMyOjUzLjUyNjU2MFogIElORk8gbWV0cmljcy1jYXBhYmlsaXR5Ojpkb19tYWluOm1ldHJpY3MtY2FwYWJpbGl0eTo6cnVuX3NlcnZpY2V7YWRkcmVzcz0iL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvLmdycGMvbWV0cmljcy1jYXBhYmlsaXR5OjAiIGhhbmRsZXM9W0pvaW5IYW5kbGUgeyBpZDogSWQoNykgfSwgSm9pbkhhbmRsZSB7IGlkOiBJZCg4KSB9LCBKb2luSGFuZGxlIHsgaWQ6IElkKDkpIH0sIEpvaW5IYW5kbGUgeyBpZDogSWQoMTApIH0sIEpvaW5IYW5kbGUgeyBpZDogSWQoMTEpIH0sIEpvaW5IYW5kbGUgeyBpZDogSWQoMTIpIH1dfTpzZXJ2ZTogZ3JwY191dGlsczo6ZW5kcG9pbnQ6OnNlcnZlOiBzZXJ2aW5nIGdSUEMgc2VydmljZSBlbmRwb2ludD1VZHMoIi9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1Ly5ncnBjL21ldHJpY3MtY2FwYWJpbGl0eTowIikgcmV0cnk9RXhwb25lbnRpYWxCYWNrb2ZmUmV0cnkgeyByZXRyeV9kZWxheV9zZWNzOiAyLCBkZWxheV9mYWN0b3I6IDEwMDAsIG51bV9yZXRyaWVzOiAzIH0KMjAyMi0wOS0yM1QxNTozMjo1My41MzA5MDVaICBJTkZPIG1ldHJpY3NfY2FwYWJpbGl0eTogc3RhcnRlZCBwcm9tZXRoZXVzIHN1YnByb2Nlc3MKMjAyMi0wOS0yM1QxNTozMjo1My41MzA5NDZaICBJTkZPIG1ldHJpY3NfY2FwYWJpbGl0eTogc3RhcnRpbmcgbm9kZS1leHBvcnRlciBzdWJwcm9jZXNzIHdhdGNoZXIgdGFzawoyMDIyLTA5LTIzVDE1OjMyOjUzLjUzMDk1NlogIElORk8gbWV0cmljc19jYXBhYmlsaXR5OiBzdGFydGluZyBub2RlLWV4cG9ydGVyIHN1YnByb2Nlc3M6IG5vZGVfZXhwb3J0ZXIgWyItLWNvbGxlY3Rvci5kaXNhYmxlLWRlZmF1bHRzIiwgIi0tY29sbGVjdG9yLmluZmluaWJhbmQiLCAiLS1jb2xsZWN0b3IuZGlza3N0YXRzIiwgIi0tbG9nLmxldmVsPWluZm8iLCAiLS13ZWIubGlzdGVuLWFkZHJlc3M9MC4wLjAuMDo5MTAwIl0gcmV0cnlfY291bnQ9MQoyMDIyLTA5LTIzVDE1OjMyOjUzLjUzOTMxNlogIElORk8gbWV0cmljc19jYXBhYmlsaXR5OiBzdGFydGVkIG5vZGUtZXhwb3J0ZXIgc3VicHJvY2VzcwoyMDIyLTA5LTIzVDE1OjMyOjUzLjUzOTM1MlogIElORk8gbWV0cmljc19jYXBhYmlsaXR5OiBoZWFydGJlYXQ6IHN0YXJ0aW5nCjIwMjItMDktMjNUMTU6MzI6NTMuNTYxOTcyWiAgSU5GTyBtZXRyaWNzX2NhcGFiaWxpdHk6IHN0YXJ0aW5nIHJ1biB0b2tlbiB1cGRhdGVyIHRhc2sKMjAyMi0wOS0yM1QxNTozMjo1My41OTQ0OTBaICBJTkZPIG1ldHJpY3NfY2FwYWJpbGl0eTogc3RhcnRlZCBjYWR2aXNvciBzdWJwcm9jZXNzCjIwMjItMDktMjNUMTU6MzI6NTMuNTk2MDI2WiAgSU5GTyBtZXRyaWNzX2NhcGFiaWxpdHk6IHN0YXJ0aW5nIGRpc2sgZnVsbCBjaGVja2VyIG9uIC9tbnQvcm9vdF9kaXIsIHJlc2VydmVkX2Rpc2tfc3BhY2VfYnl0ZXM6IDE0MDAwMDAwMDAKMjAyMi0wOS0yM1QxNTozMjo1My41OTYwNTJaICBJTkZPIG1ldHJpY3NfY2FwYWJpbGl0eTogaGVhcnRiZWF0OiBub2RlX2Rpc2tfYXZhaWxhYmxlX2J5dGVzID0gOTg2NjQ5ODA0OCBtZXRyaWNfbmFtZT1ub2RlX2Rpc2tfYXZhaWxhYmxlX2J5dGVzIHZhbHVlPTk4NjY0OTgwNDggc3RhdGZzPVN0YXRmcyB7IG9wdGltYWxfdHJhbnNmZXJfc2l6ZTogNDA5NiwgYmxvY2tfc2l6ZTogNDA5NiwgYmxvY2tzOiAzNTk1NTIyLCBibG9ja3NfZnJlZTogMjU5NjM4NCwgYmxvY2tzX2F2YWlsYWJsZTogMjQwODgxMywgZmlsZXM6IDkxNzUwNCwgZmlsZXNfZnJlZTogODQwMTYxLCBmaWxlc3lzdGVtX2lkOiBmc2lkX3QgeyBfX3ZhbDogWzExMTk1NDU3OSwgMTYyNzU0NDg1OV0gfSB9CjIwMjItMDktMjNUMTU6MzI6NTMuNjE2NDc5WiAgSU5GTyB2aWVubmFfY2xpZW50OjpydW5faGlzdG9yeTo6cmVmcmVzaF9ydW5fdG9rZW57c2VydmljZV9lbmRwb2ludD0iaHR0cHM6Ly9lYXN0dXMyLmFwaS5henVyZW1sLm1zIiBydW5faWQ9UnVuSWQgeyBzdWJzY3JpcHRpb25faWQ6ICI5NmFlZGUxMi0yZjczLTQxY2ItYjk4My02ZDExYTkwNDgzOWIiLCByZXNvdXJjZV9ncm91cF9uYW1lOiAiemhlbmdmZWktdGVzdC1lYXN0dXMyIiwgd29ya3NwYWNlX25hbWU6ICJzZGtfdm5leHRfY2xpIiwgZXhwZXJpbWVudF9uYW1lOiAiYXp1cmUtYWktbWwiLCBydW5faWQ6ICI3NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQiIH19OiB2aWVubmFfY2xpZW50OjpydW5faGlzdG9yeTogQ2FsbGluZyBzZXJ2aWNlIHNlcnZpY2VfZW5kcG9pbnQ9Imh0dHBzOi8vZWFzdHVzMi5hcGkuYXp1cmVtbC5tcyIKMjAyMi0wOS0yM1QxNTozMjo1My42NTM0MTJaICBJTkZPIG1ldHJpY3NfY2FwYWJpbGl0eTogW25vZGUtZXhwb3J0ZXJdIHRzPTIwMjItMDktMjNUMTU6MzI6NTMuNjUzWiBjYWxsZXI9bm9kZV9leHBvcnRlci5nbzoxODIgbGV2ZWw9aW5mbyBtc2c9IlN0YXJ0aW5nIG5vZGVfZXhwb3J0ZXIiIHZlcnNpb249Iih2ZXJzaW9uPTEuMy4xLCBicmFuY2g9SEVBRCwgcmV2aXNpb249YTIzMjFlN2I5NDBkZGNmZjI2ODczNjEyYmNjZGY3Y2Q0YzQyYjZiNikiCjIwMjItMDktMjNUMTU6MzI6NTMuNjYwOTk3WiAgSU5GTyBtZXRyaWNzX2NhcGFiaWxpdHk6IFtub2RlLWV4cG9ydGVyXSB0cz0yMDIyLTA5LTIzVDE1OjMyOjUzLjY2MFogY2FsbGVyPW5vZGVfZXhwb3J0ZXIuZ286MTgzIGxldmVsPWluZm8gbXNnPSJCdWlsZCBjb250ZXh0IiBidWlsZF9jb250ZXh0PSIoZ289Z28xLjE3LjMsIHVzZXI9cm9vdEAyNDNhYWZhNTUyNWMsIGRhdGU9MjAyMTEyMDUtMTE6MDk6NDkpIgoyMDIyLTA5LTIzVDE1OjMyOjUzLjY2MTI4NFogIElORk8gbWV0cmljc19jYXBhYmlsaXR5OiBbbm9kZS1leHBvcnRlcl0gdHM9MjAyMi0wOS0yM1QxNTozMjo1My42NjFaIGNhbGxlcj1ub2RlX2V4cG9ydGVyLmdvOjE4NSBsZXZlbD13YXJuIG1zZz0iTm9kZSBFeHBvcnRlciBpcyBydW5uaW5nIGFzIHJvb3QgdXNlci4gVGhpcyBleHBvcnRlciBpcyBkZXNpZ25lZCB0byBydW4gYXMgdW5wcml2aWxlZGdlZCB1c2VyLCByb290IGlzIG5vdCByZXF1aXJlZC4iCjIwMjItMDktMjNUMTU6MzI6NTMuNjYxNjg4WiAgSU5GTyBtZXRyaWNzX2NhcGFiaWxpdHk6IFtub2RlLWV4cG9ydGVyXSB0cz0yMDIyLTA5LTIzVDE1OjMyOjUzLjY2MVogY2FsbGVyPW5vZGVfZXhwb3J0ZXIuZ286MTA4IGxldmVsPWluZm8gbXNnPSJFbmFibGVkIGNvbGxlY3RvcnMiCjIwMjItMDktMjNUMTU6MzI6NTMuNjYxNzQwWiAgSU5GTyBtZXRyaWNzX2NhcGFiaWxpdHk6IFtub2RlLWV4cG9ydGVyXSB0cz0yMDIyLTA5LTIzVDE1OjMyOjUzLjY2MVogY2FsbGVyPW5vZGVfZXhwb3J0ZXIuZ286MTE1IGxldmVsPWluZm8gY29sbGVjdG9yPWRpc2tzdGF0cwoyMDIyLTA5LTIzVDE1OjMyOjUzLjY2MTc2N1ogIElORk8gbWV0cmljc19jYXBhYmlsaXR5OiBbbm9kZS1leHBvcnRlcl0gdHM9MjAyMi0wOS0yM1QxNTozMjo1My42NjFaIGNhbGxlcj1ub2RlX2V4cG9ydGVyLmdvOjExNSBsZXZlbD1pbmZvIGNvbGxlY3Rvcj1pbmZpbmliYW5kCjIwMjItMDktMjNUMTU6MzI6NTMuNjYxODk0WiAgSU5GTyBtZXRyaWNzX2NhcGFiaWxpdHk6IFtub2RlLWV4cG9ydGVyXSB0cz0yMDIyLTA5LTIzVDE1OjMyOjUzLjY2MVogY2FsbGVyPW5vZGVfZXhwb3J0ZXIuZ286MTk5IGxldmVsPWluZm8gbXNnPSJMaXN0ZW5pbmcgb24iIGFkZHJlc3M9MC4wLjAuMDo5MTAwCjIwMjItMDktMjNUMTU6MzI6NTMuNjYyMDk1WiAgSU5GTyBtZXRyaWNzX2NhcGFiaWxpdHk6IFtub2RlLWV4cG9ydGVyXSB0cz0yMDIyLTA5LTIzVDE1OjMyOjUzLjY2MlogY2FsbGVyPXRsc19jb25maWcuZ286MTk1IGxldmVsPWluZm8gbXNnPSJUTFMgaXMgZGlzYWJsZWQuIiBodHRwMj1mYWxzZQoyMDIyLTA5LTIzVDE1OjMyOjUzLjc0Njk1MVogIElORk8gdmllbm5hX2NsaWVudDo6cnVuX2hpc3Rvcnk6OnJlZnJlc2hfcnVuX3Rva2Vue3NlcnZpY2VfZW5kcG9pbnQ9Imh0dHBzOi8vZWFzdHVzMi5hcGkuYXp1cmVtbC5tcyIgcnVuX2lkPVJ1bklkIHsgc3Vic2NyaXB0aW9uX2lkOiAiOTZhZWRlMTItMmY3My00MWNiLWI5ODMtNmQxMWE5MDQ4MzliIiwgcmVzb3VyY2VfZ3JvdXBfbmFtZTogInpoZW5nZmVpLXRlc3QtZWFzdHVzMiIsIHdvcmtzcGFjZV9uYW1lOiAic2RrX3ZuZXh0X2NsaSIsIGV4cGVyaW1lbnRfbmFtZTogImF6dXJlLWFpLW1sIiwgcnVuX2lkOiAiNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkIiB9fTogdmllbm5hX2NsaWVudDo6cnVuX2hpc3Rvcnk6IGNsb3NlIHRpbWUuYnVzeT02Mi40bXMgdGltZS5pZGxlPTg3LjhtcwoyMDIyLTA5LTIzVDE1OjMyOjUzLjc0NzAxMFogIElORk8gbWV0cmljc19jYXBhYmlsaXR5OiBydW4gdG9rZW4gcmVmcmVzaGVkLCBleHBpcmF0aW9uIDIwMjItMDktMjQgMTU6MzI6NTMuNzM0OTYzNzAwICswMDowMAoyMDIyLTA5LTIzVDE1OjMyOjUzLjc0NzEzMlogIElORk8gbWV0cmljc19jYXBhYmlsaXR5OiBydW4gdG9rZW4gd3JpdHRlbiB0byBmaWxlCjIwMjItMDktMjNUMTU6MzI6NTMuODU0NTk1WiAgSU5GTyBtZXRyaWNzX2NhcGFiaWxpdHk6IFtwcm9tZXRoZXVzXSB0cz0yMDIyLTA5LTIzVDE1OjMyOjUzLjg1NFogY2FsbGVyPW1haW4uZ286MTgwIGxldmVsPWluZm8gbXNnPSJFeHBlcmltZW50YWwgZXhwYW5kLWV4dGVybmFsLWxhYmVscyBlbmFibGVkIgoyMDIyLTA5LTIzVDE1OjMyOjUzLjg1NTY3MlogIElORk8gbWV0cmljc19jYXBhYmlsaXR5OiBbcHJvbWV0aGV1c10gdHM9MjAyMi0wOS0yM1QxNTozMjo1My44NTVaIGNhbGxlcj1tYWluLmdvOjUxNSBsZXZlbD1pbmZvIG1zZz0iU3RhcnRpbmcgUHJvbWV0aGV1cyIgdmVyc2lvbj0iKHZlcnNpb249Mi4zMi4xLCBicmFuY2g9SEVBRCwgcmV2aXNpb249NDFmMWE4MTI1ZTY2NDk4NWRkMzA2NzRlNWJkZjZiNjgzZWZmNWQzMikiCjIwMjItMDktMjNUMTU6MzI6NTMuODU4ODYzWiAgSU5GTyBtZXRyaWNzX2NhcGFiaWxpdHk6IFtwcm9tZXRoZXVzXSB0cz0yMDIyLTA5LTIzVDE1OjMyOjUzLjg1OFogY2FsbGVyPW1haW4uZ286NTIwIGxldmVsPWluZm8gYnVpbGRfY29udGV4dD0iKGdvPWdvMS4xNy41LCB1c2VyPXJvb3RANTRiNmRiZDQ4Yjk3LCBkYXRlPTIwMjExMjE3LTIyOjA4OjA2KSIKMjAyMi0wOS0yM1QxNTozMjo1My44NTkxMjVaICBJTkZPIG1ldHJpY3NfY2FwYWJpbGl0eTogW3Byb21ldGhldXNdIHRzPTIwMjItMDktMjNUMTU6MzI6NTMuODU4WiBjYWxsZXI9bWFpbi5nbzo1MjEgbGV2ZWw9aW5mbyBob3N0X2RldGFpbHM9IihMaW51eCA1LjAuMC0xMDM2LWF6dXJlICMzOC1VYnVudHUgU01QIFN1biBNYXIgMjIgMjE6Mjc6MjEgVVRDIDIwMjAgeDg2XzY0IDVkODE4OTBiYjVhNTQ2ODE5NTg2MDRkYzE0MDg0YTIwMDAwMDAwIChub25lKSkiCjIwMjItMDktMjNUMTU6MzI6NTMuODU5MjA1WiAgSU5GTyBtZXRyaWNzX2NhcGFiaWxpdHk6IFtwcm9tZXRoZXVzXSB0cz0yMDIyLTA5LTIzVDE1OjMyOjUzLjg1OVogY2FsbGVyPW1haW4uZ286NTIyIGxldmVsPWluZm8gZmRfbGltaXRzPSIoc29mdD0yNjIxNDQsIGhhcmQ9MjYyMTQ0KSIKMjAyMi0wOS0yM1QxNTozMjo1My44NTkyNzJaICBJTkZPIG1ldHJpY3NfY2FwYWJpbGl0eTogW3Byb21ldGhldXNdIHRzPTIwMjItMDktMjNUMTU6MzI6NTMuODU5WiBjYWxsZXI9bWFpbi5nbzo1MjMgbGV2ZWw9aW5mbyB2bV9saW1pdHM9Iihzb2Z0PXVubGltaXRlZCwgaGFyZD11bmxpbWl0ZWQpIgoyMDIyLTA5LTIzVDE1OjMyOjUzLjg2MTk3OVogIElORk8gbWV0cmljc19jYXBhYmlsaXR5OiBbcHJvbWV0aGV1c10gdHM9MjAyMi0wOS0yM1QxNTozMjo1My44NjFaIGNhbGxlcj13ZWIuZ286NTcwIGxldmVsPWluZm8gY29tcG9uZW50PXdlYiBtc2c9IlN0YXJ0IGxpc3RlbmluZyBmb3IgY29ubmVjdGlvbnMiIGFkZHJlc3M9MC4wLjAuMDo5MDkwCjIwMjItMDktMjNUMTU6MzI6NTMuODY1MjE4WiAgSU5GTyBtZXRyaWNzX2NhcGFiaWxpdHk6IFtwcm9tZXRoZXVzXSB0cz0yMDIyLTA5LTIzVDE1OjMyOjUzLjg2M1ogY2FsbGVyPW1haW4uZ286OTI0IGxldmVsPWluZm8gbXNnPSJTdGFydGluZyBUU0RCIC4uLiIKMjAyMi0wOS0yM1QxNTozMjo1My44ODIwMDRaICBJTkZPIG1ldHJpY3NfY2FwYWJpbGl0eTogW3Byb21ldGhldXNdIHRzPTIwMjItMDktMjNUMTU6MzI6NTMuODc5WiBjYWxsZXI9aGVhZC5nbzo0ODggbGV2ZWw9aW5mbyBjb21wb25lbnQ9dHNkYiBtc2c9IlJlcGxheWluZyBvbi1kaXNrIG1lbW9yeSBtYXBwYWJsZSBjaHVua3MgaWYgYW55IgoyMDIyLTA5LTIzVDE1OjMyOjUzLjg4MzA5NlogIElORk8gbWV0cmljc19jYXBhYmlsaXR5OiBbcHJvbWV0aGV1c10gdHM9MjAyMi0wOS0yM1QxNTozMjo1My44ODNaIGNhbGxlcj1oZWFkLmdvOjUyMiBsZXZlbD1pbmZvIGNvbXBvbmVudD10c2RiIG1zZz0iT24tZGlzayBtZW1vcnkgbWFwcGFibGUgY2h1bmtzIHJlcGxheSBjb21wbGV0ZWQiIGR1cmF0aW9uPTQuOcK1cwoyMDIyLTA5LTIzVDE1OjMyOjUzLjg4MzE4NFogIElORk8gbWV0cmljc19jYXBhYmlsaXR5OiBbcHJvbWV0aGV1c10gdHM9MjAyMi0wOS0yM1QxNTozMjo1My44ODNaIGNhbGxlcj1oZWFkLmdvOjUyOCBsZXZlbD1pbmZvIGNvbXBvbmVudD10c2RiIG1zZz0iUmVwbGF5aW5nIFdBTCwgdGhpcyBtYXkgdGFrZSBhIHdoaWxlIgoyMDIyLTA5LTIzVDE1OjMyOjUzLjg4MzUyM1ogIElORk8gbWV0cmljc19jYXBhYmlsaXR5OiBbcHJvbWV0aGV1c10gdHM9MjAyMi0wOS0yM1QxNTozMjo1My44ODNaIGNhbGxlcj1oZWFkLmdvOjU5OSBsZXZlbD1pbmZvIGNvbXBvbmVudD10c2RiIG1zZz0iV0FMIHNlZ21lbnQgbG9hZGVkIiBzZWdtZW50PTAgbWF4U2VnbWVudD0wCjIwMjItMDktMjNUMTU6MzI6NTMuODgzNjk1WiAgSU5GTyBtZXRyaWNzX2NhcGFiaWxpdHk6IFtwcm9tZXRoZXVzXSB0cz0yMDIyLTA5LTIzVDE1OjMyOjUzLjg4M1ogY2FsbGVyPWhlYWQuZ286NjA1IGxldmVsPWluZm8gY29tcG9uZW50PXRzZGIgbXNnPSJXQUwgcmVwbGF5IGNvbXBsZXRlZCIgY2hlY2twb2ludF9yZXBsYXlfZHVyYXRpb249NTcuMjAzwrVzIHdhbF9yZXBsYXlfZHVyYXRpb249MzU2LjIxN8K1cyB0b3RhbF9yZXBsYXlfZHVyYXRpb249NjAyLjkyOcK1cwoyMDIyLTA5LTIzVDE1OjMyOjUzLjg4NDgzMlogIElORk8gbWV0cmljc19jYXBhYmlsaXR5OiBbcHJvbWV0aGV1c10gdHM9MjAyMi0wOS0yM1QxNTozMjo1My44ODRaIGNhbGxlcj1tYWluLmdvOjk0NSBsZXZlbD1pbmZvIGZzX3R5cGU9Nzk0Yzc2MzAKMjAyMi0wOS0yM1QxNTozMjo1My44ODQ5MjRaICBJTkZPIG1ldHJpY3NfY2FwYWJpbGl0eTogW3Byb21ldGhldXNdIHRzPTIwMjItMDktMjNUMTU6MzI6NTMuODg0WiBjYWxsZXI9bWFpbi5nbzo5NDggbGV2ZWw9aW5mbyBtc2c9IlRTREIgc3RhcnRlZCIKMjAyMi0wOS0yM1QxNTozMjo1My44ODUwMzRaICBJTkZPIG1ldHJpY3NfY2FwYWJpbGl0eTogW3Byb21ldGhldXNdIHRzPTIwMjItMDktMjNUMTU6MzI6NTMuODg1WiBjYWxsZXI9bWFpbi5nbzoxMTI5IGxldmVsPWluZm8gbXNnPSJMb2FkaW5nIGNvbmZpZ3VyYXRpb24gZmlsZSIgZmlsZW5hbWU9L3Vzci9sb2NhbC9iaW4vcHJvbWV0aGV1cy55bWwKMjAyMi0wOS0yM1QxNTozMjo1My44ODcxMzJaICBJTkZPIG1ldHJpY3NfY2FwYWJpbGl0eTogW3Byb21ldGhldXNdIHRzPTIwMjItMDktMjNUMTU6MzI6NTMuODg3WiBjYWxsZXI9ZGVkdXBlLmdvOjExMiBjb21wb25lbnQ9cmVtb3RlIGxldmVsPWluZm8gcmVtb3RlX25hbWU9ODdmOGJlIHVybD1odHRwczovL2Vhc3R1czIuYXBpLmF6dXJlbWwubXMvbWV0cmljL3YyLjAvc3Vic2NyaXB0aW9ucy85NmFlZGUxMi0yZjczLTQxY2ItYjk4My02ZDExYTkwNDgzOWIvcmVzb3VyY2VHcm91cHMvemhlbmdmZWktdGVzdC1lYXN0dXMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nU2VydmljZXMvd29ya3NwYWNlcy9zZGtfdm5leHRfY2xpL2FwaS8yLjAvcHJvbWV0aGV1cy9wb3N0IG1zZz0iU3RhcnRpbmcgV0FMIHdhdGNoZXIiIHF1ZXVlPTg3ZjhiZQoyMDIyLTA5LTIzVDE1OjMyOjUzLjg4NzIxNFogIElORk8gbWV0cmljc19jYXBhYmlsaXR5OiBbcHJvbWV0aGV1c10gdHM9MjAyMi0wOS0yM1QxNTozMjo1My44ODdaIGNhbGxlcj1kZWR1cGUuZ286MTEyIGNvbXBvbmVudD1yZW1vdGUgbGV2ZWw9aW5mbyByZW1vdGVfbmFtZT04N2Y4YmUgdXJsPWh0dHBzOi8vZWFzdHVzMi5hcGkuYXp1cmVtbC5tcy9tZXRyaWMvdjIuMC9zdWJzY3JpcHRpb25zLzk2YWVkZTEyLTJmNzMtNDFjYi1iOTgzLTZkMTFhOTA0ODM5Yi9yZXNvdXJjZUdyb3Vwcy96aGVuZ2ZlaS10ZXN0LWVhc3R1czIvcHJvdmlkZXJzL01pY3Jvc29mdC5NYWNoaW5lTGVhcm5pbmdTZXJ2aWNlcy93b3Jrc3BhY2VzL3Nka192bmV4dF9jbGkvYXBpLzIuMC9wcm9tZXRoZXVzL3Bvc3QgbXNnPSJTdGFydGluZyBzY3JhcGVkIG1ldGFkYXRhIHdhdGNoZXIiCjIwMjItMDktMjNUMTU6MzI6NTMuODg5OTc5WiAgSU5GTyBtZXRyaWNzX2NhcGFiaWxpdHk6IFtwcm9tZXRoZXVzXSB0cz0yMDIyLTA5LTIzVDE1OjMyOjUzLjg4OVogY2FsbGVyPXRsc19jb25maWcuZ286MTk1IGxldmVsPWluZm8gY29tcG9uZW50PXdlYiBtc2c9IlRMUyBpcyBkaXNhYmxlZC4iIGh0dHAyPWZhbHNlCjIwMjItMDktMjNUMTU6MzI6NTMuOTM5ODg3WiAgSU5GTyBtZXRyaWNzX2NhcGFiaWxpdHk6IFtwcm9tZXRoZXVzXSB0cz0yMDIyLTA5LTIzVDE1OjMyOjUzLjg5N1ogY2FsbGVyPWRlZHVwZS5nbzoxMTIgY29tcG9uZW50PXJlbW90ZSBsZXZlbD1pbmZvIHJlbW90ZV9uYW1lPTg3ZjhiZSB1cmw9aHR0cHM6Ly9lYXN0dXMyLmFwaS5henVyZW1sLm1zL21ldHJpYy92Mi4wL3N1YnNjcmlwdGlvbnMvOTZhZWRlMTItMmY3My00MWNiLWI5ODMtNmQxMWE5MDQ4MzliL3Jlc291cmNlR3JvdXBzL3poZW5nZmVpLXRlc3QtZWFzdHVzMi9wcm92aWRlcnMvTWljcm9zb2Z0Lk1hY2hpbmVMZWFybmluZ1NlcnZpY2VzL3dvcmtzcGFjZXMvc2RrX3ZuZXh0X2NsaS9hcGkvMi4wL3Byb21ldGhldXMvcG9zdCBtc2c9IlJlcGxheWluZyBXQUwiIHF1ZXVlPTg3ZjhiZQoyMDIyLTA5LTIzVDE1OjMyOjUzLjk0NjkzMlogIElORk8gbWV0cmljc19jYXBhYmlsaXR5OiBbcHJvbWV0aGV1c10gdHM9MjAyMi0wOS0yM1QxNTozMjo1My45MzlaIGNhbGxlcj1tYWluLmdvOjExNjYgbGV2ZWw9aW5mbyBtc2c9IkNvbXBsZXRlZCBsb2FkaW5nIG9mIGNvbmZpZ3VyYXRpb24gZmlsZSIgZmlsZW5hbWU9L3Vzci9sb2NhbC9iaW4vcHJvbWV0aGV1cy55bWwgdG90YWxEdXJhdGlvbj01NC4zMjQyMTJtcyBkYl9zdG9yYWdlPTgwMG5zIHJlbW90ZV9zdG9yYWdlPTEuMzk4NTY3bXMgd2ViX2hhbmRsZXI9NzAwbnMgcXVlcnlfZW5naW5lPTEuNcK1cyBzY3JhcGU9MTYuOTE3MzE0bXMgc2NyYXBlX3NkPTY3LjMwM8K1cyBub3RpZnk9MS4xwrVzIG5vdGlmeV9zZD0yLjMwMcK1cyBydWxlcz0zNS4wODQ3ODdtcwoyMDIyLTA5LTIzVDE1OjMyOjUzLjk0Njk3M1ogIElORk8gbWV0cmljc19jYXBhYmlsaXR5OiBbcHJvbWV0aGV1c10gdHM9MjAyMi0wOS0yM1QxNTozMjo1My45NDBaIGNhbGxlcj1tYWluLmdvOjg5NyBsZXZlbD1pbmZvIG1zZz0iU2VydmVyIGlzIHJlYWR5IHRvIHJlY2VpdmUgd2ViIHJlcXVlc3RzLiIKMjAyMi0wOS0yM1QxNTozMzowMy4yNTMwNjRaICBJTkZPIG1ldHJpY3NfY2FwYWJpbGl0eTogW3Byb21ldGhldXNdIHRzPTIwMjItMDktMjNUMTU6MzM6MDMuMjUyWiBjYWxsZXI9ZGVkdXBlLmdvOjExMiBjb21wb25lbnQ9cmVtb3RlIGxldmVsPWluZm8gcmVtb3RlX25hbWU9ODdmOGJlIHVybD1odHRwczovL2Vhc3R1czIuYXBpLmF6dXJlbWwubXMvbWV0cmljL3YyLjAvc3Vic2NyaXB0aW9ucy85NmFlZGUxMi0yZjczLTQxY2ItYjk4My02ZDExYTkwNDgzOWIvcmVzb3VyY2VHcm91cHMvemhlbmdmZWktdGVzdC1lYXN0dXMyL3Byb3ZpZGVycy9NaWNyb3NvZnQuTWFjaGluZUxlYXJuaW5nU2VydmljZXMvd29ya3NwYWNlcy9zZGtfdm5leHRfY2xpL2FwaS8yLjAvcHJvbWV0aGV1cy9wb3N0IG1zZz0iRG9uZSByZXBsYXlpbmcgV0FMIiBkdXJhdGlvbj05LjM1NTQ5Nzk2N3MKMjAyMi0wOS0yM1QxNTozMzo0MC42Mzk0MDBaICBJTkZPIG1ldHJpY3MtY2FwYWJpbGl0eTo6c3RhcnQ6IG1ldHJpY3NfY2FwYWJpbGl0eTo6Y2FwYWJpbGl0eV9zZXJ2aWNlOiBtZXRyaWNzIGNhcGFiaWxpdHkgbGlmZWN5Y2xlIGhvb2sgc3RhcnQgY2FsbGVkCjIwMjItMDktMjNUMTU6MzM6NDAuNjM5NDQ5WiAgSU5GTyBtZXRyaWNzLWNhcGFiaWxpdHk6OnN0YXJ0OiBtZXRyaWNzX2NhcGFiaWxpdHk6OmNhcGFiaWxpdHlfc2VydmljZTogY2xvc2UgdGltZS5idXN5PTUwLjPCtXMgdGltZS5pZGxlPTE5LjDCtXMKMjAyMi0wOS0yM1QxNTozMzo0OC42Mjk0MjlaICBJTkZPIG1ldHJpY3MtY2FwYWJpbGl0eTo6ZW5kOiBtZXRyaWNzX2NhcGFiaWxpdHk6OmNhcGFiaWxpdHlfc2VydmljZTogbWV0cmljcyBjYXBhYmlsaXR5IGxpZmVjeWNsZSBob29rIGVuZCBjYWxsZWQKMjAyMi0wOS0yM1QxNTozMzo0OC42Mjk0ODNaICBJTkZPIG1ldHJpY3MtY2FwYWJpbGl0eTo6ZW5kOiBtZXRyaWNzX2NhcGFiaWxpdHk6OmNhcGFiaWxpdHlfc2VydmljZTogY2xvc2UgdGltZS5idXN5PTU1LjfCtXMgdGltZS5pZGxlPTEyLjHCtXMK" + }, + { + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml/ExperimentRun/dcid.7599d23f-8164-4644-808e-e4e13b1efe1d/system_logs/snapshot_capability/snapshot-capability.log", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/xml", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:34:45 GMT", + "x-ms-range": "bytes=0-33554431", + "x-ms-version": "2021-08-06" + }, + "RequestBody": null, + "StatusCode": 206, + "ResponseHeaders": { + "Accept-Ranges": "bytes", + "Content-Disposition": "", + "Content-Length": "6081", + "Content-Range": "bytes 0-6080/6081", + "Content-Type": "application/octet-stream", + "Date": "Fri, 23 Sep 2022 15:34:43 GMT", + "ETag": "\u00220x8DA9D7902A0C79D\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:33:48 GMT", + "Server": [ + "Windows-Azure-Blob/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": "Origin", + "x-ms-blob-type": "BlockBlob", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:33:23 GMT", + "x-ms-lease-state": "available", + "x-ms-lease-status": "unlocked", + "x-ms-server-encrypted": "true", + "x-ms-version": "2021-08-06" + }, + "ResponseBody": "MjAyMi0wOS0yM1QxNTozMjo1My40OTQ1NTJaICBJTkZPIHRlbGVtZXRyeTogam9iX3RlbGVtZXRyeV9pbml0IGFydGlmYWN0X3R5cGU9IGJyYW5jaD0gY2lfbnVtYmVyPSBjaV9uYW1lPSBidWlsZF90aW1lPQoyMDIyLTA5LTIzVDE1OjMyOjUzLjQ5NDcwOVogIElORk8gc25hcHNob3QtY2FwYWJpbGl0eTo6ZG9fbWFpbjpzbmFwc2hvdC1jYXBhYmlsaXR5LnBhcnNlX2NvbmZpZzogc25hcHNob3RfY2FwYWJpbGl0eTo6Y29uZmlnX3BhcnNlcjogSW5pdGlhbGl6ZWQgY29uZmlnIGZvciBzbmFwc2hvdCBkb3dubG9hZAoyMDIyLTA5LTIzVDE1OjMyOjUzLjQ5NDc0N1ogIElORk8gc25hcHNob3QtY2FwYWJpbGl0eTo6ZG9fbWFpbjpzbmFwc2hvdC1jYXBhYmlsaXR5LnBhcnNlX2NvbmZpZzogc25hcHNob3RfY2FwYWJpbGl0eTo6Y29uZmlnX3BhcnNlcjogY2xvc2UgdGltZS5idXN5PTY5LjjCtXMgdGltZS5pZGxlPTYuNTDCtXMKMjAyMi0wOS0yM1QxNTozMjo1My41MDUwNDRaICBJTkZPIHNuYXBzaG90LWNhcGFiaWxpdHk6OmRvX21haW46IHNuYXBzaG90X2NhcGFiaWxpdHk6IHNuYXBzaG90LWNhcGFiaWxpdHkgc3RhcnRpbmcgc2VydmljZSBhdCBzZXJ2ZXJfYWRkcmVzcz0vbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS8uZ3JwYy9zbmFwc2hvdC1jYXBhYmlsaXR5OjAKMjAyMi0wOS0yM1QxNTozMjo1My41MDUxNjBaICBJTkZPIHNuYXBzaG90LWNhcGFiaWxpdHk6OmRvX21haW46c25hcHNob3QtY2FwYWJpbGl0eTo6cnVuX3NlcnZpY2V7YWRkcmVzcz0iL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvLmdycGMvc25hcHNob3QtY2FwYWJpbGl0eTowIiBzbmFwc2hvdF9jYXBfY29uZmlnPU9rKFNuYXBzaG90Q2FwQ29uZmlnIHsgYXp1cmVtbF9jb250ZXh0OiBBenVyZU1MQ29udGV4dCB7IHN1YnNjcmlwdGlvbl9pZDogIjk2YWVkZTEyLTJmNzMtNDFjYi1iOTgzLTZkMTFhOTA0ODM5YiIsIHJlc291cmNlX2dyb3VwOiAiemhlbmdmZWktdGVzdC1lYXN0dXMyIiwgd29ya3NwYWNlX25hbWU6ICJzZGtfdm5leHRfY2xpIiwgd29ya3NwYWNlX2lkOiAiZTk1MGY4NzYtNzI1Ny00Y2YzLTk5YTUtZmY2NjgxMmFjNDRjIiwgc2VydmljZV9lbmRwb2ludDogImh0dHBzOi8vZWFzdHVzMi5hcGkuYXp1cmVtbC5tcyIsIGRpc2NvdmVyeV9lbmRwb2ludDogImh0dHBzOi8vZWFzdHVzMi5hcGkuYXp1cmVtbC5tcy9kaXNjb3ZlcnkiLCBleHBlcmltZW50X25hbWU6ICJhenVyZS1haS1tbCIsIGV4cGVyaW1lbnRfaWQ6ICJmMTVlNDkyZC1jMWZjLTQwMjgtYThlNC05NmIyNjc1NThiN2QiLCBydW5faWQ6ICI3NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQiLCByb290X3J1bl9pZDogImhlbGxvd29ybGRfcGlwZWxpbmVfam9iX3F1aWNrX3dpdGhfb3V0cHV0XzIwMjJXMzhfdGVzdF9waXBlbGluZV9qb2JfY2hpbGRfcnVuX2Rvd25sb2FkIiwgcnVuX3Rva2VuLWxlbmd0aDogMTIwNCwgcnVuX2hpc3Rvcnlfc2VydmljZV9lbmRwb2ludDogImh0dHBzOi8vZWFzdHVzMi5hcGkuYXp1cmVtbC5tcyIsIGRhdGFfY29udGFpbmVyX2lkOiAiZGNpZC43NTk5ZDIzZi04MTY0LTQ2NDQtODA4ZS1lNGUxM2IxZWZlMWQiLCBydW5fdXVpZDogIjQ5YjY4MzJmLTQyNWItNGI2My05ODcyLTc4MTQwZTJmZTcxNSIgfSwgc25hcHNob3RzOiBTb21lKFtTbmFwc2hvdCB7IHNuYXBzaG90X2Fzc2V0X2lkOiBOb25lLCBpZDogU29tZSgiZjQwNjY4YzItMTU3Mi00OTlmLTg2NGYtNzc2ZjAxNTQ3ZTY4IiksIHBhdGhfc3RhY2s6IFNvbWUoWyIuIl0pIH1dKSwgdXNlcl93ZDogU29tZSgiL21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvZXhlL3dkIiksIGNoZWNrX2hhc2g6IFNvbWUoZmFsc2UpIH0pfTogc25hcHNob3RfY2FwYWJpbGl0eTo6c2VydmljZTogc25hcHNob3QgY2FwYWJpbGl0eSBzZXJ2aW5nIGF0IGFkZHJlc3M9L21udC9henVyZW1sL2NyL2ovNDliNjgzMmY0MjViNGI2Mzk4NzI3ODE0MGUyZmU3MTUvLmdycGMvc25hcHNob3QtY2FwYWJpbGl0eTowCjIwMjItMDktMjNUMTU6MzI6NTMuNTA1MzE0WiAgSU5GTyBzbmFwc2hvdC1jYXBhYmlsaXR5Ojpkb19tYWluOnNuYXBzaG90LWNhcGFiaWxpdHk6OnJ1bl9zZXJ2aWNle2FkZHJlc3M9Ii9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1Ly5ncnBjL3NuYXBzaG90LWNhcGFiaWxpdHk6MCIgc25hcHNob3RfY2FwX2NvbmZpZz1PayhTbmFwc2hvdENhcENvbmZpZyB7IGF6dXJlbWxfY29udGV4dDogQXp1cmVNTENvbnRleHQgeyBzdWJzY3JpcHRpb25faWQ6ICI5NmFlZGUxMi0yZjczLTQxY2ItYjk4My02ZDExYTkwNDgzOWIiLCByZXNvdXJjZV9ncm91cDogInpoZW5nZmVpLXRlc3QtZWFzdHVzMiIsIHdvcmtzcGFjZV9uYW1lOiAic2RrX3ZuZXh0X2NsaSIsIHdvcmtzcGFjZV9pZDogImU5NTBmODc2LTcyNTctNGNmMy05OWE1LWZmNjY4MTJhYzQ0YyIsIHNlcnZpY2VfZW5kcG9pbnQ6ICJodHRwczovL2Vhc3R1czIuYXBpLmF6dXJlbWwubXMiLCBkaXNjb3ZlcnlfZW5kcG9pbnQ6ICJodHRwczovL2Vhc3R1czIuYXBpLmF6dXJlbWwubXMvZGlzY292ZXJ5IiwgZXhwZXJpbWVudF9uYW1lOiAiYXp1cmUtYWktbWwiLCBleHBlcmltZW50X2lkOiAiZjE1ZTQ5MmQtYzFmYy00MDI4LWE4ZTQtOTZiMjY3NTU4YjdkIiwgcnVuX2lkOiAiNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkIiwgcm9vdF9ydW5faWQ6ICJoZWxsb3dvcmxkX3BpcGVsaW5lX2pvYl9xdWlja193aXRoX291dHB1dF8yMDIyVzM4X3Rlc3RfcGlwZWxpbmVfam9iX2NoaWxkX3J1bl9kb3dubG9hZCIsIHJ1bl90b2tlbi1sZW5ndGg6IDEyMDQsIHJ1bl9oaXN0b3J5X3NlcnZpY2VfZW5kcG9pbnQ6ICJodHRwczovL2Vhc3R1czIuYXBpLmF6dXJlbWwubXMiLCBkYXRhX2NvbnRhaW5lcl9pZDogImRjaWQuNzU5OWQyM2YtODE2NC00NjQ0LTgwOGUtZTRlMTNiMWVmZTFkIiwgcnVuX3V1aWQ6ICI0OWI2ODMyZi00MjViLTRiNjMtOTg3Mi03ODE0MGUyZmU3MTUiIH0sIHNuYXBzaG90czogU29tZShbU25hcHNob3QgeyBzbmFwc2hvdF9hc3NldF9pZDogTm9uZSwgaWQ6IFNvbWUoImY0MDY2OGMyLTE1NzItNDk5Zi04NjRmLTc3NmYwMTU0N2U2OCIpLCBwYXRoX3N0YWNrOiBTb21lKFsiLiJdKSB9XSksIHVzZXJfd2Q6IFNvbWUoIi9tbnQvYXp1cmVtbC9jci9qLzQ5YjY4MzJmNDI1YjRiNjM5ODcyNzgxNDBlMmZlNzE1L2V4ZS93ZCIpLCBjaGVja19oYXNoOiBTb21lKGZhbHNlKSB9KX06c2VydmU6IGdycGNfdXRpbHM6OmVuZHBvaW50OjpzZXJ2ZTogc2VydmluZyBnUlBDIHNlcnZpY2UgZW5kcG9pbnQ9VWRzKCIvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS8uZ3JwYy9zbmFwc2hvdC1jYXBhYmlsaXR5OjAiKSByZXRyeT1FeHBvbmVudGlhbEJhY2tvZmZSZXRyeSB7IHJldHJ5X2RlbGF5X3NlY3M6IDIsIGRlbGF5X2ZhY3RvcjogMTAwMCwgbnVtX3JldHJpZXM6IDMgfQoyMDIyLTA5LTIzVDE1OjMzOjQwLjYyNzk2NlogIElORk8gc25hcHNob3QtY2FwYWJpbGl0eS5zdGFydDogZ3JwY191dGlsczo6c2VydmVyOiBHb3QgZ3JwYyByZXF1ZXN0IHJlcXVlc3RfbmFtZT0ic3RhcnQiIHJlbW90ZV9hZGRyPU5vbmUKMjAyMi0wOS0yM1QxNTozMzo0MC42MjgwMzdaICBJTkZPIHNuYXBzaG90LWNhcGFiaWxpdHkuc3RhcnQ6IHNuYXBzaG90X2NhcGFiaWxpdHk6OnNuYXBzaG90X2Rvd25sb2FkZXI6IFVzaW5nIGxvY2FsIHdvcmtpbmcgZGlyZWN0b3J5OiAvbW50L2F6dXJlbWwvY3Ivai80OWI2ODMyZjQyNWI0YjYzOTg3Mjc4MTQwZTJmZTcxNS9leGUvd2QKMjAyMi0wOS0yM1QxNTozMzo0MC42MjgwNTJaICBJTkZPIHNuYXBzaG90LWNhcGFiaWxpdHkuc3RhcnQ6IHNuYXBzaG90X2NhcGFiaWxpdHk6OnNuYXBzaG90X2Rvd25sb2FkZXI6IEZldGNoaW5nIHNuYXBzaG90IElEOiBmNDA2NjhjMi0xNTcyLTQ5OWYtODY0Zi03NzZmMDE1NDdlNjgKMjAyMi0wOS0yM1QxNTozMzo0MC42ODA0NjRaICBJTkZPIHNuYXBzaG90LWNhcGFiaWxpdHkuc3RhcnQ6c25hcHNob3RfY2FwYWJpbGl0eTo6ZmV0Y2hfc25hcHNob3R7Y2hlY2tfaGFzaD1Tb21lKGZhbHNlKX06IHNuYXBzaG90X2NhcGFiaWxpdHk6OnNuYXBzaG90X2Rvd25sb2FkZXI6IFJldHJpZXZlZCBzbmFwc2hvdCBtZXRhZGF0YQoyMDIyLTA5LTIzVDE1OjMzOjQwLjcxOTY3NVogIElORk8gc25hcHNob3QtY2FwYWJpbGl0eS5zdGFydDpzbmFwc2hvdF9jYXBhYmlsaXR5OjpmZXRjaF9zbmFwc2hvdHtjaGVja19oYXNoPVNvbWUoZmFsc2UpfTpzbmFwc2hvdF9jYXBhYmlsaXR5OjpmZXRjaF9sb2NhbF9maWxlc19iYXNlZF9zbmFwc2hvdHtjaGVja19oYXNoPVNvbWUoZmFsc2UpfTogc25hcHNob3RfY2FwYWJpbGl0eTo6c25hcHNob3RfZG93bmxvYWRlcjogUHJlcGFyaW5nIHRvIGRvd25sb2FkIHNuYXBzaG90IGZpbGVzCjIwMjItMDktMjNUMTU6MzM6NDAuNzQ5NTMwWiAgSU5GTyBzbmFwc2hvdC1jYXBhYmlsaXR5LnN0YXJ0OnNuYXBzaG90X2NhcGFiaWxpdHk6OmZldGNoX3NuYXBzaG90e2NoZWNrX2hhc2g9U29tZShmYWxzZSl9OnNuYXBzaG90X2NhcGFiaWxpdHk6OmZldGNoX2xvY2FsX2ZpbGVzX2Jhc2VkX3NuYXBzaG90e2NoZWNrX2hhc2g9U29tZShmYWxzZSl9OiBzbmFwc2hvdF9jYXBhYmlsaXR5OjpzbmFwc2hvdF9kb3dubG9hZGVyOiBTdWNjZXNzZnVsbHkgZG93bmxvYWRlZCBzbmFwc2hvdCB3aXRoIDEgZmlsZXMKMjAyMi0wOS0yM1QxNTozMzo0MC43NDk2MTFaICBJTkZPIHNuYXBzaG90LWNhcGFiaWxpdHkuc3RhcnQ6c25hcHNob3RfY2FwYWJpbGl0eTo6ZmV0Y2hfc25hcHNob3R7Y2hlY2tfaGFzaD1Tb21lKGZhbHNlKX06c25hcHNob3RfY2FwYWJpbGl0eTo6ZmV0Y2hfbG9jYWxfZmlsZXNfYmFzZWRfc25hcHNob3R7Y2hlY2tfaGFzaD1Tb21lKGZhbHNlKX06IHNuYXBzaG90X2NhcGFiaWxpdHk6OnNuYXBzaG90X2Rvd25sb2FkZXI6IFNuYXBzaG90IGlzIGRvd25sb2FkZWQsIHVwbG9hZF9oYXNoID0gU29tZSgiNjgwN2Y5YzllZTlmNzI2NDYxNjI4OTc3NDU0ZWIxYmEyMjJhZDVkMDNlZTI2ZDM1NmUwYTI5YzQ2ZmFiMTRiMCIpLCBjaGVja19oYXNoID0gU29tZShmYWxzZSkKMjAyMi0wOS0yM1QxNTozMzo0MC43NDk2NjBaICBJTkZPIHNuYXBzaG90LWNhcGFiaWxpdHkuc3RhcnQ6c25hcHNob3RfY2FwYWJpbGl0eTo6ZmV0Y2hfc25hcHNob3R7Y2hlY2tfaGFzaD1Tb21lKGZhbHNlKX06c25hcHNob3RfY2FwYWJpbGl0eTo6ZmV0Y2hfbG9jYWxfZmlsZXNfYmFzZWRfc25hcHNob3R7Y2hlY2tfaGFzaD1Tb21lKGZhbHNlKX06IHNuYXBzaG90X2NhcGFiaWxpdHk6OnNuYXBzaG90X2Rvd25sb2FkZXI6IGNsb3NlIHRpbWUuYnVzeT05LjE0bXMgdGltZS5pZGxlPTU4LjFtcwoyMDIyLTA5LTIzVDE1OjMzOjQwLjc1MDU3OVogIElORk8gc25hcHNob3QtY2FwYWJpbGl0eS5zdGFydDpzbmFwc2hvdF9jYXBhYmlsaXR5OjpmZXRjaF9zbmFwc2hvdHtjaGVja19oYXNoPVNvbWUoZmFsc2UpfTogc25hcHNob3RfY2FwYWJpbGl0eTo6c25hcHNob3RfZG93bmxvYWRlcjogY2xvc2UgdGltZS5idXN5PTIyLjNtcyB0aW1lLmlkbGU9MTAwbXMKMjAyMi0wOS0yM1QxNTozMzo0MC43NTMyMzlaICBJTkZPIHNuYXBzaG90LWNhcGFiaWxpdHkuc3RhcnQ6IHNuYXBzaG90X2NhcGFiaWxpdHk6OmNhcGFiaWxpdHlfc2VydmljZTogY2xvc2UgdGltZS5idXN5PTI1LjFtcyB0aW1lLmlkbGU9MTAwbXMKMjAyMi0wOS0yM1QxNTozMzo0OC42MjgzODdaICBJTkZPIHNuYXBzaG90LWNhcGFiaWxpdHkuZW5kOiBncnBjX3V0aWxzOjpzZXJ2ZXI6IEdvdCBncnBjIHJlcXVlc3QgcmVxdWVzdF9uYW1lPSJlbmQiIHJlbW90ZV9hZGRyPU5vbmUKMjAyMi0wOS0yM1QxNTozMzo0OC42Mjg1ODNaICBJTkZPIHNuYXBzaG90LWNhcGFiaWxpdHkuZW5kOiBzbmFwc2hvdF9jYXBhYmlsaXR5OjpjYXBhYmlsaXR5X3NlcnZpY2U6IGNsb3NlIHRpbWUuYnVzeT0yMDLCtXMgdGltZS5pZGxlPTkuODDCtXMK" + }, + { + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml/ExperimentRun/dcid.7599d23f-8164-4644-808e-e4e13b1efe1d/user_logs/std_log.txt", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/xml", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:34:45 GMT", + "x-ms-range": "bytes=0-33554431", + "x-ms-version": "2021-08-06" + }, + "RequestBody": null, + "StatusCode": 416, + "ResponseHeaders": { + "Content-Length": "249", + "Content-Range": "bytes */0", + "Content-Type": "application/xml", + "Date": "Fri, 23 Sep 2022 15:34:43 GMT", + "Server": [ + "Windows-Azure-Blob/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": "Origin", + "x-ms-error-code": "InvalidRange", + "x-ms-version": "2021-08-06" + }, + "ResponseBody": [ + "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CError\u003E\u003CCode\u003EInvalidRange\u003C/Code\u003E\u003CMessage\u003EThe range specified is invalid for the current size of the resource.\n", + "RequestId:ce9aae92-f01e-006a-4862-cf922b000000\n", + "Time:2022-09-23T15:34:43.8765415Z\u003C/Message\u003E\u003C/Error\u003E" + ] + }, + { + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml/ExperimentRun/dcid.7599d23f-8164-4644-808e-e4e13b1efe1d/user_logs/std_log.txt", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/xml", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:34:46 GMT", + "x-ms-version": "2021-08-06" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Accept-Ranges": "bytes", + "Content-Disposition": "", + "Content-Length": "0", + "Content-MD5": "1B2M2Y8AsgTpgAmY7PhCfg==", + "Content-Type": "application/octet-stream", + "Date": "Fri, 23 Sep 2022 15:34:44 GMT", + "ETag": "\u00220x8DA9D7902C95858\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:33:48 GMT", + "Server": [ + "Windows-Azure-Blob/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": "Origin", + "x-ms-blob-type": "BlockBlob", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:33:48 GMT", + "x-ms-lease-state": "available", + "x-ms-lease-status": "unlocked", + "x-ms-server-encrypted": "true", + "x-ms-version": "2021-08-06" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/7599d23f-8164-4644-808e-e4e13b1efe1d?api-version=2022-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:34:44 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-fc4111a4cb3c6e53a2afb4a5f2de66c9-52365ea873210f97-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-eastus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "259b8af7-e867-4c0c-bd5f-b32fde340913", + "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153445Z:259b8af7-e867-4c0c-bd5f-b32fde340913", + "x-request-time": "0.040" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/7599d23f-8164-4644-808e-e4e13b1efe1d", + "name": "7599d23f-8164-4644-808e-e4e13b1efe1d", + "type": "Microsoft.MachineLearningServices/workspaces/jobs", + "systemData": { + "createdAt": "2022-09-23T15:32:21.3420873\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User" + } + } + }, + { + "RequestUri": "https://eastus2.api.azureml.ms/history/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/runs/7599d23f-8164-4644-808e-e4e13b1efe1d", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Connection": "keep-alive", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:34:45 GMT", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Strict-Transport-Security": "max-age=15724800; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-eastus2-02", + "X-Content-Type-Options": "nosniff", + "x-ms-response-type": "standard", + "x-request-time": "0.016" + }, + "ResponseBody": { + "runNumber": 1663947141, + "rootRunId": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "createdUtc": "2022-09-23T15:32:21.3420873\u002B00:00", + "createdBy": { + "userObjectId": "dccfa7b6-87c6-4f1e-af43-555f876e37a7", + "userPuId": "10032001B4DCFEFF", + "userIdp": null, + "userAltSecId": null, + "userIss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "userTenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "userName": "Zhengfei Wang", + "upn": null + }, + "userId": "dccfa7b6-87c6-4f1e-af43-555f876e37a7", + "token": null, + "tokenExpiryTimeUtc": null, + "error": null, + "warnings": null, + "revision": 13, + "statusRevision": 1, + "runUuid": "49b6832f-425b-4b63-9872-78140e2fe715", + "parentRunUuid": "34bea007-3ac9-4fc7-a049-77a0b4df62ca", + "rootRunUuid": "34bea007-3ac9-4fc7-a049-77a0b4df62ca", + "lastStartTimeUtc": null, + "currentComputeTime": null, + "computeDuration": "00:01:00.2463078", + "effectiveStartTimeUtc": null, + "lastModifiedBy": { + "userObjectId": "dccfa7b6-87c6-4f1e-af43-555f876e37a7", + "userPuId": "10032001B4DCFEFF", + "userIdp": null, + "userAltSecId": null, + "userIss": "azureml", + "userTenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "userName": "Zhengfei Wang", + "upn": null + }, + "lastModifiedUtc": "2022-09-23T15:32:52.0654229\u002B00:00", + "duration": "00:01:00.2463078", + "cancelationReason": null, + "currentAttemptId": null, + "runId": "7599d23f-8164-4644-808e-e4e13b1efe1d", + "parentRunId": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "experimentId": "f15e492d-c1fc-4028-a8e4-96b267558b7d", + "status": "Completed", + "startTimeUtc": "2022-09-23T15:32:52.2831362\u002B00:00", + "endTimeUtc": "2022-09-23T15:33:52.529444\u002B00:00", + "scheduleId": null, + "displayName": "hello_world_inline_commandjob_1", + "name": "azureml_anonymous", + "dataContainerId": "dcid.7599d23f-8164-4644-808e-e4e13b1efe1d", + "description": null, + "hidden": false, + "runType": "azureml.StepRun", + "runTypeV2": { + "orchestrator": "Execution", + "traits": [ + "azureml.StepRun", + "scriptRun", + "remote", + "AlmostCommonRuntime", + "OsType:Linux", + "CommonRuntime" + ], + "attribution": "Aether", + "computeType": "AmlcTrain" + }, + "properties": { + "azureml.DevPlatv2": "true", + "ContentSnapshotId": "f40668c2-1572-499f-864f-776f01547e68", + "StepType": "PythonScriptStep", + "ComputeTargetType": "AmlCompute", + "azureml.moduleid": "1bf47d41-9ae3-4f6c-ad73-9fb7b939f82e", + "azureml.moduleName": "azureml_anonymous", + "azureml.moduleVersion": "000000000000000000000", + "azureml.runsource": "azureml.StepRun", + "azureml.nodeid": "081ccb4b", + "azureml.pipelinerunid": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "azureml.pipeline": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "azureml.pipelineComponent": "masterescloud", + "_azureml.ComputeTargetType": "amlctrain", + "ProcessInfoFile": "azureml-logs/process_info.json", + "ProcessStatusFile": "azureml-logs/process_status.json" + }, + "parameters": {}, + "actionUris": { + "Cancel": "https://eastus2.api.azureml.ms/studioservice/apiv2/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/workspaces/00000/runs/7599d23f-8164-4644-808e-e4e13b1efe1d/Cancel", + "Diagnose": "" + }, + "scriptName": null, + "target": "cpu-cluster", + "uniqueChildRunComputeTargets": [], + "tags": { + "azureml.nodeid": "081ccb4b", + "azureml.pipeline": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "_aml_system_ComputeTargetStatus": "{\u0022AllocationState\u0022:\u0022resizing\u0022,\u0022PreparingNodeCount\u0022:0,\u0022RunningNodeCount\u0022:2,\u0022CurrentNodeCount\u0022:4}" + }, + "settings": {}, + "services": {}, + "inputDatasets": [], + "outputDatasets": [], + "runDefinition": null, + "jobSpecification": null, + "primaryMetricName": null, + "createdFrom": null, + "cancelUri": "https://eastus2.api.azureml.ms/studioservice/apiv2/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/workspaces/00000/runs/7599d23f-8164-4644-808e-e4e13b1efe1d/Cancel", + "completeUri": null, + "diagnosticsUri": "", + "computeRequest": { + "nodeCount": 1, + "gpuCount": 0 + }, + "compute": { + "target": "cpu-cluster", + "targetType": "amlcompute", + "vmSize": null, + "instanceType": null, + "instanceCount": 1, + "gpuCount": 0, + "priority": null, + "region": null + }, + "retainForLifetimeOfWorkspace": null, + "queueingInfo": null, + "inputs": null, + "outputs": null + } + }, + { + "RequestUri": "https://eastus2.api.azureml.ms/history/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/rundata", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "137", + "Content-Type": "application/json", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": { + "runId": "7599d23f-8164-4644-808e-e4e13b1efe1d", + "selectRunMetadata": true, + "selectRunDefinition": true, + "selectJobSpecification": true + }, "StatusCode": 200, "ResponseHeaders": { - "Cache-Control": "no-cache", + "Connection": "keep-alive", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:45:02 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-d02b098f8dc048f400933c1ac2755646-08c5552ec9f8eabc-01\u0022", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Date": "Fri, 23 Sep 2022 15:34:46 GMT", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Strict-Transport-Security": "max-age=15724800; includeSubDomains; preload", "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-eastus2euap-02", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "edcfe722-b185-45f2-b63e-6f7bb47b0559", - "x-ms-ratelimit-remaining-subscription-reads": "11872", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194502Z:edcfe722-b185-45f2-b63e-6f7bb47b0559", - "x-request-time": "0.053" + "x-request-time": "0.028" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/helloworld_pipeline_job_quick_with_output_2022W37_test_pipeline_job_child_run_download", - "name": "helloworld_pipeline_job_quick_with_output_2022W37_test_pipeline_job_child_run_download", - "type": "Microsoft.MachineLearningServices/workspaces/jobs", - "properties": { - "description": "The hello world pipeline job with inline command job having inputs", - "tags": { - "tag": "tagvalue", - "owner": "sdkteam" + "runMetadata": { + "runNumber": 1663947141, + "rootRunId": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "createdUtc": "2022-09-23T15:32:21.3420873\u002B00:00", + "createdBy": { + "userObjectId": "dccfa7b6-87c6-4f1e-af43-555f876e37a7", + "userPuId": "10032001B4DCFEFF", + "userIdp": null, + "userAltSecId": null, + "userIss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", + "userTenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "userName": "Zhengfei Wang", + "upn": null + }, + "userId": "dccfa7b6-87c6-4f1e-af43-555f876e37a7", + "token": null, + "tokenExpiryTimeUtc": null, + "error": null, + "warnings": null, + "revision": 13, + "statusRevision": 1, + "runUuid": "49b6832f-425b-4b63-9872-78140e2fe715", + "parentRunUuid": "34bea007-3ac9-4fc7-a049-77a0b4df62ca", + "rootRunUuid": "34bea007-3ac9-4fc7-a049-77a0b4df62ca", + "lastStartTimeUtc": null, + "currentComputeTime": null, + "computeDuration": "00:01:00.2463078", + "effectiveStartTimeUtc": null, + "lastModifiedBy": { + "userObjectId": "dccfa7b6-87c6-4f1e-af43-555f876e37a7", + "userPuId": "10032001B4DCFEFF", + "userIdp": null, + "userAltSecId": null, + "userIss": "azureml", + "userTenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", + "userName": "Zhengfei Wang", + "upn": null + }, + "lastModifiedUtc": "2022-09-23T15:32:52.0654229\u002B00:00", + "duration": "00:01:00.2463078", + "cancelationReason": null, + "currentAttemptId": null, + "runId": "7599d23f-8164-4644-808e-e4e13b1efe1d", + "parentRunId": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "experimentId": "f15e492d-c1fc-4028-a8e4-96b267558b7d", + "status": "Completed", + "startTimeUtc": "2022-09-23T15:32:52.2831362\u002B00:00", + "endTimeUtc": "2022-09-23T15:33:52.529444\u002B00:00", + "scheduleId": null, + "displayName": "hello_world_inline_commandjob_1", + "name": "azureml_anonymous", + "dataContainerId": "dcid.7599d23f-8164-4644-808e-e4e13b1efe1d", + "description": null, + "hidden": false, + "runType": "azureml.StepRun", + "runTypeV2": { + "orchestrator": "Execution", + "traits": [ + "azureml.StepRun", + "scriptRun", + "remote", + "AlmostCommonRuntime", + "OsType:Linux", + "CommonRuntime" + ], + "attribution": "Aether", + "computeType": "AmlcTrain" }, "properties": { - "mlflow.source.git.repoURL": "fake_git_url", - "mlflow.source.git.commit": "fake_git_commit", - "azureml.git.dirty": "fake_git_dirty_value", "azureml.DevPlatv2": "true", - "azureml.runsource": "azureml.PipelineRun", - "runSource": "MFE", - "runType": "HTTP", - "azureml.parameters": "{}", - "azureml.continue_on_step_failure": "False", - "azureml.continue_on_failed_optional_input": "True", - "azureml.defaultComputeName": "cpu-cluster", - "azureml.defaultDataStoreName": "workspaceblobstore", - "azureml.pipelineComponent": "pipelinerun" + "ContentSnapshotId": "f40668c2-1572-499f-864f-776f01547e68", + "StepType": "PythonScriptStep", + "ComputeTargetType": "AmlCompute", + "azureml.moduleid": "1bf47d41-9ae3-4f6c-ad73-9fb7b939f82e", + "azureml.moduleName": "azureml_anonymous", + "azureml.moduleVersion": "000000000000000000000", + "azureml.runsource": "azureml.StepRun", + "azureml.nodeid": "081ccb4b", + "azureml.pipelinerunid": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "azureml.pipeline": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "azureml.pipelineComponent": "masterescloud", + "_azureml.ComputeTargetType": "amlctrain", + "ProcessInfoFile": "azureml-logs/process_info.json", + "ProcessStatusFile": "azureml-logs/process_status.json" }, - "displayName": "helloworld_pipeline_job_quick_with_output_2022W37_test_pipeline_job_child_run_download", - "status": "Canceled", - "experimentName": "azure-ai-ml", - "services": { - "Tracking": { - "jobServiceType": "Tracking", - "port": null, - "endpoint": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", - "status": null, - "errorMessage": null, - "properties": null + "parameters": {}, + "actionUris": { + "Cancel": "https://eastus2.api.azureml.ms/studioservice/apiv2/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/workspaces/00000/runs/7599d23f-8164-4644-808e-e4e13b1efe1d/Cancel", + "Diagnose": "" + }, + "scriptName": null, + "target": "cpu-cluster", + "uniqueChildRunComputeTargets": [], + "tags": { + "azureml.nodeid": "081ccb4b", + "azureml.pipeline": "helloworld_pipeline_job_quick_with_output_2022W38_test_pipeline_job_child_run_download", + "_aml_system_ComputeTargetStatus": "{\u0022AllocationState\u0022:\u0022resizing\u0022,\u0022PreparingNodeCount\u0022:0,\u0022RunningNodeCount\u0022:2,\u0022CurrentNodeCount\u0022:4}" + }, + "settings": {}, + "services": {}, + "inputDatasets": [], + "outputDatasets": [], + "runDefinition": null, + "jobSpecification": null, + "primaryMetricName": null, + "createdFrom": null, + "cancelUri": "https://eastus2.api.azureml.ms/studioservice/apiv2/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/workspaces/00000/runs/7599d23f-8164-4644-808e-e4e13b1efe1d/Cancel", + "completeUri": null, + "diagnosticsUri": "", + "computeRequest": { + "nodeCount": 1, + "gpuCount": 0 + }, + "compute": { + "target": "cpu-cluster", + "targetType": "amlcompute", + "vmSize": null, + "instanceType": null, + "instanceCount": 1, + "gpuCount": 0, + "priority": null, + "region": null + }, + "retainForLifetimeOfWorkspace": null, + "queueingInfo": null, + "inputs": {}, + "outputs": { + "default": { + "assetId": "azureml://locations/eastus2/workspaces/e950f876-7257-4cf3-99a5-ff66812ac44c/data/azureml_7599d23f-8164-4644-808e-e4e13b1efe1d_output_data_default/versions/1", + "type": "UriFolder" }, - "Studio": { - "jobServiceType": "Studio", - "port": null, - "endpoint": "https://ml.azure.com/runs/helloworld_pipeline_job_quick_with_output_2022W37_test_pipeline_job_child_run_download?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", - "status": null, - "errorMessage": null, - "properties": null + "component_out_path_1": { + "assetId": "azureml://locations/eastus2/workspaces/e950f876-7257-4cf3-99a5-ff66812ac44c/data/azureml_7599d23f-8164-4644-808e-e4e13b1efe1d_output_data_component_out_path_1/versions/1", + "type": "UriFolder" + } + } + }, + "runDefinition": { + "script": null, + "command": "echo \u0022Hello World\u0022 \u003E DatasetOutputConfig:component_out_path_1/helloworld.txt", + "useAbsolutePath": false, + "arguments": [], + "sourceDirectoryDataStore": null, + "framework": "Python", + "communicator": "None", + "target": "cpu-cluster", + "dataReferences": {}, + "data": {}, + "outputData": { + "component_out_path_1": { + "outputLocation": { + "dataset": null, + "dataPath": null, + "uri": { + "path": "azureml://datastores/workspaceblobstore/paths/azureml/{name}/job_out_path_1/", + "isFile": false + }, + "type": "UriFolder" + }, + "mechanism": "Mount", + "additionalOptions": null, + "environmentVariableName": "AZURE_ML_OUTPUT_component_out_path_1" } }, - "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", - "isArchived": false, + "datacaches": [], + "jobName": null, + "maxRunDurationSeconds": null, + "nodeCount": 1, + "instanceTypes": [], + "priority": null, + "credentialPassthrough": false, "identity": null, - "componentId": null, - "jobType": "Pipeline", - "settings": { - "_source": "YAML.JOB" - }, - "jobs": { - "hello_world_inline_commandjob_1": { - "resources": null, - "distribution": null, - "limits": null, - "environment_variables": {}, - "name": "hello_world_inline_commandjob_1", - "type": "command", - "display_name": null, - "tags": {}, - "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", - "inputs": {}, - "outputs": { - "component_out_path_1": { - "value": "${{parent.outputs.job_out_path_1}}", - "type": "literal" - } + "environment": { + "name": "AzureML-sklearn-0.24-ubuntu18.04-py37-cpu", + "version": "1", + "assetId": "azureml://registries/azureml/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", + "autoRebuild": true, + "python": { + "interpreterPath": "python", + "userManagedDependencies": true, + "condaDependencies": { + "name": "project_environment", + "dependencies": [ + "python=3.6.2", + { + "pip": [ + "azureml-defaults" + ] + } + ], + "channels": [ + "anaconda", + "conda-forge" + ] }, - "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/aed7d949-e5e4-49f8-8a8f-7d4701618197" + "baseCondaEnvironment": null }, - "hello_world_inline_commandjob_2": { - "resources": null, - "distribution": null, - "limits": null, - "environment_variables": {}, - "name": "hello_world_inline_commandjob_2", - "type": "command", - "display_name": null, - "tags": {}, - "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", - "inputs": {}, - "outputs": {}, - "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/e1dd2bf1-46bc-4a28-bdc0-de35caf27ff5" - } + "environmentVariables": { + "EXAMPLE_ENV_VAR": "EXAMPLE_VALUE" + }, + "docker": { + "baseImage": null, + "platform": { + "os": "Linux", + "architecture": "amd64" + }, + "baseDockerfile": "FROM mcr.microsoft.com/azureml/openmpi3.1.2-ubuntu18.04:20210701.v1\n\nENV AZUREML_CONDA_ENVIRONMENT_PATH /azureml-envs/sklearn-0.24.1\n\n# Create conda environment\nRUN conda create -p $AZUREML_CONDA_ENVIRONMENT_PATH \\\n python=3.7 pip=20.2.4\n\n# Prepend path to AzureML conda environment\nENV PATH $AZUREML_CONDA_ENVIRONMENT_PATH/bin:$PATH\n\n# Install pip dependencies\nRUN pip install \u0027matplotlib\u003E=3.3,\u003C3.4\u0027 \\\n \u0027psutil\u003E=5.8,\u003C5.9\u0027 \\\n \u0027tqdm\u003E=4.59,\u003C4.60\u0027 \\\n \u0027pandas\u003E=1.1,\u003C1.2\u0027 \\\n \u0027scipy\u003E=1.5,\u003C1.6\u0027 \\\n \u0027numpy\u003E=1.10,\u003C1.20\u0027 \\\n \u0027azureml-core==1.32.0\u0027 \\\n \u0027azureml-defaults==1.32.0\u0027 \\\n \u0027azureml-mlflow==1.32.0\u0027 \\\n \u0027azureml-telemetry==1.32.0\u0027 \\\n \u0027scikit-learn==0.24.1\u0027\n\n# This is needed for mpi to locate libpython\nENV LD_LIBRARY_PATH $AZUREML_CONDA_ENVIRONMENT_PATH/lib:$LD_LIBRARY_PATH\n", + "baseImageRegistry": { + "address": null, + "username": null, + "password": null + }, + "enabled": false, + "arguments": [] + }, + "spark": { + "repositories": [], + "packages": [], + "precachePackages": true + }, + "inferencingStackVersion": null }, - "inputs": {}, - "outputs": { - "job_out_path_1": { + "history": { + "outputCollection": true, + "directoriesToWatch": [ + "logs" + ], + "enableMLflowTracking": false + }, + "spark": { + "configuration": {} + }, + "parallelTask": { + "maxRetriesPerWorker": 0, + "workerCountPerNode": 1, + "terminalExitCodes": null, + "configuration": {} + }, + "amlCompute": { + "name": null, + "vmSize": null, + "retainCluster": false, + "clusterMaxNodeCount": 1 + }, + "aiSuperComputer": { + "instanceType": "D2", + "imageVersion": "pytorch-1.7.0", + "location": null, + "aiSuperComputerStorageData": null, + "interactive": false, + "scalePolicy": null, + "virtualClusterArmId": null, + "tensorboardLogDirectory": null, + "sshPublicKey": null, + "sshPublicKeys": null, + "enableAzmlInt": true, + "priority": "Medium", + "slaTier": "Standard", + "userAlias": null + }, + "kubernetesCompute": { + "instanceType": null + }, + "tensorflow": { + "workerCount": 0, + "parameterServerCount": 0 + }, + "mpi": { + "processCountPerNode": 1 + }, + "pyTorch": { + "communicationBackend": null, + "processCount": null + }, + "hdi": { + "yarnDeployMode": "None" + }, + "containerInstance": { + "region": null, + "cpuCores": 2.0, + "memoryGb": 3.5 + }, + "exposedPorts": null, + "docker": { + "useDocker": true, + "sharedVolumes": true, + "shmSize": "2g", + "arguments": [] + }, + "cmk8sCompute": { + "configuration": {} + }, + "globalJobDispatcher": { + "myResourceOnly": false, + "lowPriorityVMTolerant": true + }, + "commandReturnCodeConfig": { + "returnCode": "Zero", + "successfulReturnCodes": [] + }, + "environmentVariables": { + "AZUREML_PARAMETER_Node_Count": "1" + }, + "applicationEndpoints": {}, + "parameters": [], + "dataBricks": { + "workers": 0, + "minimumWorkerCount": 0, + "maxMumWorkerCount": 0, + "sparkVersion": "4.0.x-scala2.11", + "nodeTypeId": "Standard_D3_v2", + "sparkConf": {}, + "sparkEnvVars": {}, + "instancePoolId": null, + "timeoutSeconds": 0, + "jarLibraries": [], + "eggLibraries": [], + "whlLibraries": [], + "pypiLibraries": [], + "rCranLibraries": [], + "mavenLibraries": [], + "linkedADBWorkspaceMetadata": null, + "databrickResourceId": null, + "autoScale": false + }, + "componentConfiguration": { + "componentIdentifier": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/id/e950f876-7257-4cf3-99a5-ff66812ac44c/components/id/1bf47d41-9ae3-4f6c-ad73-9fb7b939f82e" + } + }, + "jobSpecification": null, + "systemSettings": null + } + }, + { + "RequestUri": "https://eastus2.api.azureml.ms/data/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/dataversion/batchGetResolvedUris", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "185", + "Content-Type": "application/json", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": { + "values": [ + "azureml://locations/eastus2/workspaces/e950f876-7257-4cf3-99a5-ff66812ac44c/data/azureml_7599d23f-8164-4644-808e-e4e13b1efe1d_output_data_component_out_path_1/versions/1" + ] + }, + "StatusCode": 200, + "ResponseHeaders": { + "Connection": "keep-alive", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:34:47 GMT", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Strict-Transport-Security": "max-age=15724800; includeSubDomains; preload", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-eastus2-02", + "X-Content-Type-Options": "nosniff", + "x-ms-response-type": "standard", + "x-request-time": "0.025" + }, + "ResponseBody": { + "values": { + "azureml://locations/eastus2/workspaces/e950f876-7257-4cf3-99a5-ff66812ac44c/data/azureml_7599d23f-8164-4644-808e-e4e13b1efe1d_output_data_component_out_path_1/versions/1": { + "uri": "azureml://subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000/datastores/workspaceblobstore/paths/azureml/7599d23f-8164-4644-808e-e4e13b1efe1d/job_out_path_1/", + "type": "UriFolder", + "legacyDatasetType": null + } + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores?api-version=2022-05-01\u0026count=30\u0026isDefault=true\u0026orderByAsc=false", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:34:47 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-9aefadcd77e741e809e0a956758b4072-b0b465b07e818105-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-eastus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "667b8947-817b-484c-af1e-3116b7f373bc", + "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153448Z:667b8947-817b-484c-af1e-3116b7f373bc", + "x-request-time": "0.059" + }, + "ResponseBody": { + "value": [ + { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", + "name": "workspaceblobstore", + "type": "Microsoft.MachineLearningServices/workspaces/datastores", + "properties": { "description": null, - "uri": null, - "mode": "ReadWriteMount", - "jobOutputType": "uri_folder" + "tags": null, + "properties": null, + "isDefault": true, + "credentials": { + "credentialsType": "AccountKey" + }, + "datastoreType": "AzureBlob", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", + "endpoint": "core.windows.net", + "protocol": "https", + "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" + }, + "systemData": { + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", + "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", + "createdByType": "Application", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", + "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", + "lastModifiedByType": "Application" } + } + ] + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:34:48 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-8ccdb13fc6a709f7bbdf7047c92e4468-40ec408fe832c641-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-eastus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "033d1a94-c1ac-4458-bba5-26cbfa382106", + "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153449Z:033d1a94-c1ac-4458-bba5-26cbfa382106", + "x-request-time": "0.076" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", + "name": "workspaceblobstore", + "type": "Microsoft.MachineLearningServices/workspaces/datastores", + "properties": { + "description": null, + "tags": null, + "properties": null, + "isDefault": true, + "credentials": { + "credentialsType": "AccountKey" }, - "sourceJobId": null + "datastoreType": "AzureBlob", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", + "endpoint": "core.windows.net", + "protocol": "https", + "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:19:31.7169408\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application" + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", + "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", + "createdByType": "Application", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", + "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", + "lastModifiedByType": "Application" } } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore/listSecrets?api-version=2022-05-01", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "0", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:34:49 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-e0309a0311bbceef89c74c702f936c79-a5c8e05539cde14c-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-eastus2-01", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "1428aa25-b0a5-4269-9a25-3cd249f3a2b9", + "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153450Z:1428aa25-b0a5-4269-9a25-3cd249f3a2b9", + "x-request-time": "0.120" + }, + "ResponseBody": { + "secretsType": "AccountKey", + "key": "dGhpcyBpcyBmYWtlIGtleQ==" + } + }, + { + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c?restype=container\u0026comp=list\u0026prefix=azureml%2F7599d23f-8164-4644-808e-e4e13b1efe1d%2Fjob_out_path_1%2F\u0026include=metadata", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/xml", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:34:52 GMT", + "x-ms-version": "2021-08-06" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Content-Type": "application/xml", + "Date": "Fri, 23 Sep 2022 15:34:50 GMT", + "Server": [ + "Windows-Azure-Blob/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Transfer-Encoding": "chunked", + "Vary": "Origin", + "x-ms-version": "2021-08-06" + }, + "ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CEnumerationResults ServiceEndpoint=\u0022https://sav6dhrxexwlv7g.blob.core.windows.net/\u0022 ContainerName=\u0022azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c\u0022\u003E\u003CPrefix\u003Eazureml/7599d23f-8164-4644-808e-e4e13b1efe1d/job_out_path_1/\u003C/Prefix\u003E\u003CBlobs\u003E\u003CBlob\u003E\u003CName\u003Eazureml/7599d23f-8164-4644-808e-e4e13b1efe1d/job_out_path_1/helloworld.txt\u003C/Name\u003E\u003CProperties\u003E\u003CCreation-Time\u003EFri, 23 Sep 2022 15:33:48 GMT\u003C/Creation-Time\u003E\u003CLast-Modified\u003EFri, 23 Sep 2022 15:33:48 GMT\u003C/Last-Modified\u003E\u003CEtag\u003E0x8DA9D7902924ABF\u003C/Etag\u003E\u003CContent-Length\u003E12\u003C/Content-Length\u003E\u003CContent-Type\u003Eapplication/octet-stream\u003C/Content-Type\u003E\u003CContent-Encoding /\u003E\u003CContent-Language /\u003E\u003CContent-CRC64 /\u003E\u003CContent-MD5\u003E5Z/5eUEET4XfUpfhwwLSYA==\u003C/Content-MD5\u003E\u003CCache-Control /\u003E\u003CContent-Disposition /\u003E\u003CBlobType\u003EBlockBlob\u003C/BlobType\u003E\u003CAccessTier\u003EHot\u003C/AccessTier\u003E\u003CAccessTierInferred\u003Etrue\u003C/AccessTierInferred\u003E\u003CLeaseStatus\u003Eunlocked\u003C/LeaseStatus\u003E\u003CLeaseState\u003Eavailable\u003C/LeaseState\u003E\u003CServerEncrypted\u003Etrue\u003C/ServerEncrypted\u003E\u003C/Properties\u003E\u003CMetadata /\u003E\u003COrMetadata /\u003E\u003C/Blob\u003E\u003C/Blobs\u003E\u003CNextMarker /\u003E\u003C/EnumerationResults\u003E" + }, + { + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/azureml/7599d23f-8164-4644-808e-e4e13b1efe1d/job_out_path_1/helloworld.txt", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/xml", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:34:52 GMT", + "x-ms-range": "bytes=0-33554431", + "x-ms-version": "2021-08-06" + }, + "RequestBody": null, + "StatusCode": 206, + "ResponseHeaders": { + "Accept-Ranges": "bytes", + "Content-Length": "12", + "Content-Range": "bytes 0-11/12", + "Content-Type": "application/octet-stream", + "Date": "Fri, 23 Sep 2022 15:34:50 GMT", + "ETag": "\u00220x8DA9D7902924ABF\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:33:48 GMT", + "Server": [ + "Windows-Azure-Blob/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": "Origin", + "x-ms-blob-content-md5": "5Z/5eUEET4XfUpfhwwLSYA==", + "x-ms-blob-type": "BlockBlob", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:33:48 GMT", + "x-ms-lease-state": "available", + "x-ms-lease-status": "unlocked", + "x-ms-server-encrypted": "true", + "x-ms-version": "2021-08-06" + }, + "ResponseBody": "SGVsbG8gV29ybGQK" } ], "Variables": { - "helloworld_pipeline_job_quick_with_output": "helloworld_pipeline_job_quick_with_output_2022W37" + "helloworld_pipeline_job_quick_with_output": "helloworld_pipeline_job_quick_with_output_2022W38" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_create.json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_create.json index 18476f61b76d..a29f4bf2948d 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_create.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_create.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:38:58 GMT", + "Date": "Mon, 26 Sep 2022 03:57:13 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-5d93e3db52585157ee2d7cd550989b18-d4cbe9c502ef1b73-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-9e1a2cbe30ea396683ad6facbe85ec74-5c58f004962a4023-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9fdb19f9-2920-4d11-8596-0b0e340a2e37", - "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-correlation-request-id": "67bc340a-6ccb-4bc3-8aae-42e73527a528", + "x-ms-ratelimit-remaining-subscription-reads": "11990", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T193858Z:9fdb19f9-2920-4d11-8596-0b0e340a2e37", - "x-request-time": "1.408" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T035713Z:67bc340a-6ccb-4bc3-8aae-42e73527a528", + "x-request-time": "0.375" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/microsoftsamplescommandcomponentbasic_nopaths_test/versions/1", @@ -66,7 +66,7 @@ "description": "A number" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/7e3e2698-4d1a-4bbc-b18f-beee1a20a3aa/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/92e51c4c-40c7-4f95-ba55-e3a63d7d7c14/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/CliV2AnonymousEnvironment/versions/65a57bb8969551bd51f7d3e2f734e76e", "resources": { "instance_count": "1" @@ -76,12 +76,12 @@ } }, "systemData": { - "createdAt": "2022-09-15T03:19:17.639218\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:19:17.8616901\u002B00:00", - "lastModifiedBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "lastModifiedByType": "Application" + "createdAt": "2022-09-23T09:44:36.2163623\u002B00:00", + "createdBy": "Ying Chen", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T09:44:37.0887573\u002B00:00", + "lastModifiedBy": "Ying Chen", + "lastModifiedByType": "User" } } }, @@ -92,7 +92,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -100,39 +100,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:38:59 GMT", + "Date": "Mon, 26 Sep 2022 03:57:15 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-fac0aaaf14049392cc2cb867be7fabca-0caff170ccc02829-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-deb2c33e30e17a152282d88cbe7a80fc-bf2767fe3cab2a7a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6da675dc-fbb2-45e1-8890-0df0a14f9a5c", - "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-correlation-request-id": "edc606e2-dcb8-4253-9365-61d88adfc1c1", + "x-ms-ratelimit-remaining-subscription-reads": "11989", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T193900Z:6da675dc-fbb2-45e1-8890-0df0a14f9a5c", - "x-request-time": "0.042" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T035715Z:edc606e2-dcb8-4253-9365-61d88adfc1c1", + "x-request-time": "0.211" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.912489\u002B00:00", - "modifiedOn": "2022-09-15T03:11:50.5830108\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "centraluseuap", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -141,22 +141,22 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 4, + "currentNodeCount": 1, + "targetNodeCount": 1, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 4, + "runningNodeCount": 1, "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-16T18:30:06.83\u002B00:00", + "allocationStateTransitionTime": "2022-09-23T15:15:23.998\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -174,7 +174,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -182,39 +182,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:38:59 GMT", + "Date": "Mon, 26 Sep 2022 03:57:16 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-f6cc206cb15ad1d63d5e5187a1ed6a93-6b10717dc76f77e5-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-522e2da8acd32aae0750791cd40226df-b526aa0b2bdfef1b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "87b27703-4e4d-4ceb-a82d-386c814bec0c", - "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-correlation-request-id": "d9130349-1ffa-40af-8203-85f914be7d87", + "x-ms-ratelimit-remaining-subscription-reads": "11988", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T193900Z:87b27703-4e4d-4ceb-a82d-386c814bec0c", - "x-request-time": "0.053" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T035716Z:d9130349-1ffa-40af-8203-85f914be7d87", + "x-request-time": "0.208" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.912489\u002B00:00", - "modifiedOn": "2022-09-15T03:11:50.5830108\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "centraluseuap", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -223,22 +223,22 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 4, + "currentNodeCount": 1, + "targetNodeCount": 1, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 4, + "runningNodeCount": 1, "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-16T18:30:06.83\u002B00:00", + "allocationStateTransitionTime": "2022-09-23T15:15:23.998\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -256,7 +256,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -264,39 +264,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:39:00 GMT", + "Date": "Mon, 26 Sep 2022 03:57:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-8162b622a7ab7fbf50ff717a172c23ff-7a9585ed87aac5e9-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-9976b652bb5c2afceaaae6e872b276f1-a92225447ccb5c3d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d2651c99-228a-428d-8c10-9ac6e0d0af0f", - "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-correlation-request-id": "2977200b-0e02-4218-9a13-0a9a9f7f2f8b", + "x-ms-ratelimit-remaining-subscription-reads": "11987", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T193900Z:d2651c99-228a-428d-8c10-9ac6e0d0af0f", - "x-request-time": "0.042" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T035717Z:2977200b-0e02-4218-9a13-0a9a9f7f2f8b", + "x-request-time": "0.216" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.912489\u002B00:00", - "modifiedOn": "2022-09-15T03:11:50.5830108\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "centraluseuap", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -305,22 +305,22 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 4, + "currentNodeCount": 1, + "targetNodeCount": 1, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 4, + "runningNodeCount": 1, "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-16T18:30:06.83\u002B00:00", + "allocationStateTransitionTime": "2022-09-23T15:15:23.998\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -338,7 +338,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -346,24 +346,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:39:00 GMT", + "Date": "Mon, 26 Sep 2022 03:57:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-c28d8ef92dd784f64dc0f3d1530453bc-e90dd55f6d9ff50e-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-1599aec175c9fed5747fd011249a75bc-5ae5697c424ef728-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5565e6de-0936-454f-827d-3f232f14b85a", - "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-correlation-request-id": "d764dc96-8b23-4d41-bdc5-dfe8bb5fee80", + "x-ms-ratelimit-remaining-subscription-reads": "11986", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T193900Z:5565e6de-0936-454f-827d-3f232f14b85a", - "x-request-time": "0.122" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T035717Z:d764dc96-8b23-4d41-bdc5-dfe8bb5fee80", + "x-request-time": "0.145" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -378,17 +378,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -402,7 +402,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -410,21 +410,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:39:01 GMT", + "Date": "Mon, 26 Sep 2022 03:57:18 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-b4a44aca08580782e34348d618eda65b-007673d258efa516-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-85523da4c06164ee1964aa83a095c7b3-455a9d8a1ee8fa32-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "69c6022f-eb8d-41f6-87de-edf206dc5663", + "x-ms-correlation-request-id": "978be10f-dc7d-49f8-bc1d-c934483ae1e0", "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T193901Z:69c6022f-eb8d-41f6-87de-edf206dc5663", - "x-request-time": "0.216" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T035718Z:978be10f-dc7d-49f8-bc1d-c934483ae1e0", + "x-request-time": "0.158" }, "ResponseBody": { "secretsType": "AccountKey", @@ -432,15 +432,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/iris-mltable/MLTable", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/iris-mltable/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:39:00 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Mon, 26 Sep 2022 03:57:18 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -449,9 +449,9 @@ "Content-Length": "152", "Content-MD5": "LPwZTVvE9cmq2xCV9B8RmQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:39:00 GMT", - "ETag": "\u00220x8DA979160CEBDB1\u0022", - "Last-Modified": "Fri, 16 Sep 2022 03:13:07 GMT", + "Date": "Mon, 26 Sep 2022 03:57:19 GMT", + "ETag": "\u00220x8DA9D483F37F7B1\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:44:45 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -460,32 +460,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Fri, 16 Sep 2022 03:13:07 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:44:44 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "429fd853-ec0d-4544-9f66-73a978ffddf1", + "x-ms-meta-name": "988d6fc4-5447-49a4-9b80-b61fb0ef53df", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "a096afda-e048-4499-8cc7-d45b9abfec9d", + "x-ms-meta-version": "c96072c9-9443-4638-9843-9e3c7382e69a", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/iris-mltable/MLTable", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/iris-mltable/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:39:00 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Mon, 26 Sep 2022 03:57:20 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:39:00 GMT", + "Date": "Mon, 26 Sep 2022 03:57:19 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -493,20 +493,20 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_4705662941?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_396014352309?api-version=2022-06-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "2568", + "Content-Length": "2606", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -517,7 +517,7 @@ "owner": "sdkteam" }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", - "displayName": "test_4705662941", + "displayName": "test_396014352309", "experimentName": "my_first_experiment", "isArchived": false, "jobType": "Pipeline", @@ -562,6 +562,7 @@ } }, "outputs": {}, + "properties": {}, "_source": "REMOTE.WORKSPACE.COMPONENT", "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/microsoftsamplescommandcomponentbasic_nopaths_test/versions/1" }, @@ -582,6 +583,7 @@ } }, "outputs": {}, + "properties": {}, "_source": "REMOTE.WORKSPACE.COMPONENT", "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/microsoftsamplescommandcomponentbasic_nopaths_test/versions/1" } @@ -601,26 +603,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "5190", + "Content-Length": "5249", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:39:08 GMT", + "Date": "Mon, 26 Sep 2022 03:57:27 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_4705662941?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_396014352309?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-afce3031f35733c0e9b2d2326c5f70ec-eb758a4a7959beb1-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-aa49b36247f9870070cdf2729e120d5e-71db40c8935bbe19-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "07f313ba-5558-4dea-b808-1cd1882e0cf3", + "x-ms-correlation-request-id": "eb0537fb-5603-4f05-9fb9-b9927c153c65", "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T193908Z:07f313ba-5558-4dea-b808-1cd1882e0cf3", - "x-request-time": "3.087" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T035727Z:eb0537fb-5603-4f05-9fb9-b9927c153c65", + "x-request-time": "4.265" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_4705662941", - "name": "test_4705662941", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_396014352309", + "name": "test_396014352309", "type": "Microsoft.MachineLearningServices/workspaces/jobs", "properties": { "description": "The hello world pipeline job", @@ -640,14 +642,14 @@ "azureml.defaultDataStoreName": "workspaceblobstore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_4705662941", + "displayName": "test_396014352309", "status": "Preparing", "experimentName": "my_first_experiment", "services": { "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null @@ -655,7 +657,7 @@ "Studio": { "jobServiceType": "Studio", "port": null, - "endpoint": "https://ml.azure.com/runs/test_4705662941?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "endpoint": "https://ml.azure.com/runs/test_396014352309?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, "properties": null @@ -688,6 +690,7 @@ } }, "outputs": {}, + "properties": {}, "_source": "REMOTE.WORKSPACE.COMPONENT", "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/microsoftsamplescommandcomponentbasic_nopaths_test/versions/1" }, @@ -708,6 +711,7 @@ } }, "outputs": {}, + "properties": {}, "_source": "REMOTE.WORKSPACE.COMPONENT", "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/microsoftsamplescommandcomponentbasic_nopaths_test/versions/1" } @@ -751,8 +755,8 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-16T19:39:08.2858161\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-26T03:57:26.6433058\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } @@ -764,7 +768,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -772,39 +776,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:39:09 GMT", + "Date": "Mon, 26 Sep 2022 03:57:29 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-65b2b25d268838cd9b0a06401747de1e-cc268888fa5b722c-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-f1c6b5f00fd7bfa690a0f7d6a9884ba6-49398af5f3d55dbe-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3e7801c5-c7c3-46cd-b17a-6da804e52b03", - "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-correlation-request-id": "3ad29a1c-3d23-4015-bd4e-d6aefecdd45d", + "x-ms-ratelimit-remaining-subscription-reads": "11985", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T193909Z:3e7801c5-c7c3-46cd-b17a-6da804e52b03", - "x-request-time": "0.051" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T035729Z:3ad29a1c-3d23-4015-bd4e-d6aefecdd45d", + "x-request-time": "0.216" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.912489\u002B00:00", - "modifiedOn": "2022-09-15T03:11:50.5830108\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "centraluseuap", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -813,22 +817,22 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 4, + "currentNodeCount": 1, + "targetNodeCount": 1, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 4, + "runningNodeCount": 1, "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-16T18:30:06.83\u002B00:00", + "allocationStateTransitionTime": "2022-09-23T15:15:23.998\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -846,7 +850,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -854,39 +858,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:39:09 GMT", + "Date": "Mon, 26 Sep 2022 03:57:29 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-ff209a9af40d6e172b7234fc9ddae72c-88b4f8896255aacb-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-281cf45d173ece7ff20d3d7bac5cd5b0-645bfb09644886d4-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d7200de4-b4b2-41c6-9505-26ccdd7db353", - "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-correlation-request-id": "6414777c-dfaa-4423-9dd2-3cc434ad6b1c", + "x-ms-ratelimit-remaining-subscription-reads": "11984", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T193910Z:d7200de4-b4b2-41c6-9505-26ccdd7db353", - "x-request-time": "0.047" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T035730Z:6414777c-dfaa-4423-9dd2-3cc434ad6b1c", + "x-request-time": "0.224" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.912489\u002B00:00", - "modifiedOn": "2022-09-15T03:11:50.5830108\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "centraluseuap", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -895,22 +899,22 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 4, + "currentNodeCount": 1, + "targetNodeCount": 1, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 4, + "runningNodeCount": 1, "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-16T18:30:06.83\u002B00:00", + "allocationStateTransitionTime": "2022-09-23T15:15:23.998\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -928,7 +932,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -936,39 +940,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:39:09 GMT", + "Date": "Mon, 26 Sep 2022 03:57:30 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-c49e6ce8812d8df79e4320afff7b5e79-f970166d03a86fa0-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-36fec1300f61dad468b36ca4d6df22a7-606055a9341e3a67-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a3ec8c5d-24ed-434e-82c0-c460efc83760", - "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-correlation-request-id": "394fa8b5-96d1-4752-bf04-54f4e01ae07a", + "x-ms-ratelimit-remaining-subscription-reads": "11983", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T193910Z:a3ec8c5d-24ed-434e-82c0-c460efc83760", - "x-request-time": "0.045" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T035731Z:394fa8b5-96d1-4752-bf04-54f4e01ae07a", + "x-request-time": "0.225" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.912489\u002B00:00", - "modifiedOn": "2022-09-15T03:11:50.5830108\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "centraluseuap", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -977,22 +981,22 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 4, + "currentNodeCount": 1, + "targetNodeCount": 1, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 2, - "idleNodeCount": 2, + "runningNodeCount": 1, + "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-16T18:30:06.83\u002B00:00", + "allocationStateTransitionTime": "2022-09-23T15:15:23.998\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -1004,15 +1008,15 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_4705662941?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_396014352309?api-version=2022-06-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "3111", + "Content-Length": "3149", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -1032,10 +1036,10 @@ "tags": { "tag": "tagvalue", "owner": "sdkteam", - "test_991020457042": "test_693608121396" + "test_746760689542": "test_892781431979" }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", - "displayName": "test_4705662941", + "displayName": "test_396014352309", "experimentName": "my_first_experiment", "isArchived": false, "jobType": "Pipeline", @@ -1080,6 +1084,7 @@ } }, "outputs": {}, + "properties": {}, "_source": "REMOTE.WORKSPACE.COMPONENT", "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/microsoftsamplescommandcomponentbasic_nopaths_test/versions/1" }, @@ -1100,6 +1105,7 @@ } }, "outputs": {}, + "properties": {}, "_source": "REMOTE.WORKSPACE.COMPONENT", "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/microsoftsamplescommandcomponentbasic_nopaths_test/versions/1" } @@ -1121,35 +1127,35 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:39:13 GMT", + "Date": "Mon, 26 Sep 2022 03:57:33 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-bdab51000f1b0296f1816334fa1dd946-c1859a0cd6b02b0e-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-94ff3d93ecb83463614ca7a707525434-e98b1100a2e0f1c6-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "67f99537-4eb1-4635-b810-a254f420d8bd", + "x-ms-correlation-request-id": "a989d3d2-f287-4688-9202-c7d5a33db16f", "x-ms-ratelimit-remaining-subscription-writes": "1198", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T193914Z:67f99537-4eb1-4635-b810-a254f420d8bd", - "x-request-time": "1.584" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T035733Z:a989d3d2-f287-4688-9202-c7d5a33db16f", + "x-request-time": "0.657" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_4705662941", - "name": "test_4705662941", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_396014352309", + "name": "test_396014352309", "type": "Microsoft.MachineLearningServices/workspaces/jobs", "properties": { "description": "The hello world pipeline job", "tags": { "tag": "tagvalue", "owner": "sdkteam", - "test_991020457042": "test_693608121396" + "test_746760689542": "test_892781431979" }, "properties": { "azureml.DevPlatv2": "true", @@ -1163,14 +1169,14 @@ "azureml.defaultDataStoreName": "workspaceblobstore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_4705662941", + "displayName": "test_396014352309", "status": "Completed", "experimentName": "my_first_experiment", "services": { "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null @@ -1178,7 +1184,7 @@ "Studio": { "jobServiceType": "Studio", "port": null, - "endpoint": "https://ml.azure.com/runs/test_4705662941?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "endpoint": "https://ml.azure.com/runs/test_396014352309?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, "properties": null @@ -1211,6 +1217,7 @@ } }, "outputs": {}, + "properties": {}, "_source": "REMOTE.WORKSPACE.COMPONENT", "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/microsoftsamplescommandcomponentbasic_nopaths_test/versions/1" }, @@ -1231,6 +1238,7 @@ } }, "outputs": {}, + "properties": {}, "_source": "REMOTE.WORKSPACE.COMPONENT", "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/microsoftsamplescommandcomponentbasic_nopaths_test/versions/1" } @@ -1274,16 +1282,16 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-16T19:39:08.2858161\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-26T03:57:26.6433058\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } } ], "Variables": { - "name": "test_4705662941", - "new_tag_name": "test_991020457042", - "new_tag_value": "test_693608121396" + "name": "test_396014352309", + "new_tag_name": "test_746760689542", + "new_tag_value": "test_892781431979" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_create_with_distribution_component.json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_create_with_distribution_component.json index 6775fcc6ccc2..0676f0664289 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_create_with_distribution_component.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_create_with_distribution_component.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,41 +15,48 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:31 GMT", + "Date": "Fri, 23 Sep 2022 15:27:32 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-2b8dbe5a8b4269a79b29b9b478bd78c3-dd332dc463a1c794-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-a3d683226a3db75938dcf91891e6c70e-4579fcae8fc81b02-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1ca47130-ad47-4663-b7be-c6355ff22d3f", - "x-ms-ratelimit-remaining-subscription-reads": "11989", + "x-ms-correlation-request-id": "f74042ff-30ae-454c-b656-c69a30e956e0", + "x-ms-ratelimit-remaining-subscription-reads": "11898", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152831Z:1ca47130-ad47-4663-b7be-c6355ff22d3f", - "x-request-time": "0.047" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152733Z:f74042ff-30ae-454c-b656-c69a30e956e0", + "x-request-time": "0.023" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/gpu-cluster", "name": "gpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-19T00:10:24.4650736\u002B00:00", - "modifiedOn": "2022-09-19T00:10:31.0007111\u002B00:00", + "createdOn": "2022-09-22T03:11:29.7706914\u002B00:00", + "modifiedOn": "2022-09-22T03:11:30.2032599\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", - "provisioningState": "Succeeded", - "provisioningErrors": null, + "computeLocation": "eastus2", + "provisioningState": "Failed", + "provisioningErrors": [ + { + "error": { + "code": "VmSizeNotSupported", + "message": "STANDARD_ND6S is not supported in region eastus2. Please choose a different VM size." + } + } + ], "isAttachedCompute": false, "properties": { "vmSize": "STANDARD_ND6S", @@ -57,27 +64,17 @@ "scaleSettings": { "maxNodeCount": 4, "minNodeCount": 0, - "nodeIdleTimeBeforeScaleDown": "PT2M" + "nodeIdleTimeBeforeScaleDown": null }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 4, - "nodeStateCounts": { - "preparingNodeCount": 0, - "runningNodeCount": 4, - "idleNodeCount": 0, - "unusableNodeCount": 0, - "leavingNodeCount": 0, - "preemptedNodeCount": 0 - }, - "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-19T15:06:24.431\u002B00:00", + "currentNodeCount": null, + "targetNodeCount": null, + "nodeStateCounts": null, + "allocationState": null, "errors": null, - "remoteLoginPortPublicAccess": "Enabled", - "osType": "Linux", + "remoteLoginPortPublicAccess": "NotSpecified", "virtualMachineImage": null, - "isolatedNetwork": false, - "propertyBag": {} + "isolatedNetwork": false } } } @@ -89,7 +86,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -97,41 +94,48 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:31 GMT", + "Date": "Fri, 23 Sep 2022 15:27:33 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-eeace5364c49341dec4e0bd265c0db22-261fd0dcffafd9dc-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-6c0278669e9b9b9418d89a27bde5e675-df9320bb69f2ed41-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "69bd0b7a-2749-40f9-8df0-b89dc2828375", - "x-ms-ratelimit-remaining-subscription-reads": "11988", + "x-ms-correlation-request-id": "90fb34bd-1884-4656-a13d-567777cbd1bb", + "x-ms-ratelimit-remaining-subscription-reads": "11897", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152832Z:69bd0b7a-2749-40f9-8df0-b89dc2828375", - "x-request-time": "0.049" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152734Z:90fb34bd-1884-4656-a13d-567777cbd1bb", + "x-request-time": "0.025" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/gpu-cluster", "name": "gpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-19T00:10:24.4650736\u002B00:00", - "modifiedOn": "2022-09-19T00:10:31.0007111\u002B00:00", + "createdOn": "2022-09-22T03:11:29.7706914\u002B00:00", + "modifiedOn": "2022-09-22T03:11:30.2032599\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", - "provisioningState": "Succeeded", - "provisioningErrors": null, + "computeLocation": "eastus2", + "provisioningState": "Failed", + "provisioningErrors": [ + { + "error": { + "code": "VmSizeNotSupported", + "message": "STANDARD_ND6S is not supported in region eastus2. Please choose a different VM size." + } + } + ], "isAttachedCompute": false, "properties": { "vmSize": "STANDARD_ND6S", @@ -139,27 +143,17 @@ "scaleSettings": { "maxNodeCount": 4, "minNodeCount": 0, - "nodeIdleTimeBeforeScaleDown": "PT2M" + "nodeIdleTimeBeforeScaleDown": null }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 4, - "nodeStateCounts": { - "preparingNodeCount": 0, - "runningNodeCount": 4, - "idleNodeCount": 0, - "unusableNodeCount": 0, - "leavingNodeCount": 0, - "preemptedNodeCount": 0 - }, - "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-19T15:06:24.431\u002B00:00", + "currentNodeCount": null, + "targetNodeCount": null, + "nodeStateCounts": null, + "allocationState": null, "errors": null, - "remoteLoginPortPublicAccess": "Enabled", - "osType": "Linux", + "remoteLoginPortPublicAccess": "NotSpecified", "virtualMachineImage": null, - "isolatedNetwork": false, - "propertyBag": {} + "isolatedNetwork": false } } } @@ -171,7 +165,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -179,41 +173,48 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:31 GMT", + "Date": "Fri, 23 Sep 2022 15:27:34 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-45b2693c36d520f09c03587585bda001-d710fd310605c5e5-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-39694bb56bd35382ef84b21cf0d0c54e-907ab45823c7fc69-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b2a43506-854d-4d56-bae4-1c8439a60806", - "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-correlation-request-id": "3ffd7fe5-1fe2-4507-8ffd-49f4294c86b1", + "x-ms-ratelimit-remaining-subscription-reads": "11896", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152832Z:b2a43506-854d-4d56-bae4-1c8439a60806", - "x-request-time": "0.055" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152734Z:3ffd7fe5-1fe2-4507-8ffd-49f4294c86b1", + "x-request-time": "0.024" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/gpu-cluster", "name": "gpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-19T00:10:24.4650736\u002B00:00", - "modifiedOn": "2022-09-19T00:10:31.0007111\u002B00:00", + "createdOn": "2022-09-22T03:11:29.7706914\u002B00:00", + "modifiedOn": "2022-09-22T03:11:30.2032599\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", - "provisioningState": "Succeeded", - "provisioningErrors": null, + "computeLocation": "eastus2", + "provisioningState": "Failed", + "provisioningErrors": [ + { + "error": { + "code": "VmSizeNotSupported", + "message": "STANDARD_ND6S is not supported in region eastus2. Please choose a different VM size." + } + } + ], "isAttachedCompute": false, "properties": { "vmSize": "STANDARD_ND6S", @@ -221,27 +222,17 @@ "scaleSettings": { "maxNodeCount": 4, "minNodeCount": 0, - "nodeIdleTimeBeforeScaleDown": "PT2M" + "nodeIdleTimeBeforeScaleDown": null }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 4, - "nodeStateCounts": { - "preparingNodeCount": 0, - "runningNodeCount": 4, - "idleNodeCount": 0, - "unusableNodeCount": 0, - "leavingNodeCount": 0, - "preemptedNodeCount": 0 - }, - "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-19T15:06:24.431\u002B00:00", + "currentNodeCount": null, + "targetNodeCount": null, + "nodeStateCounts": null, + "allocationState": null, "errors": null, - "remoteLoginPortPublicAccess": "Enabled", - "osType": "Linux", + "remoteLoginPortPublicAccess": "NotSpecified", "virtualMachineImage": null, - "isolatedNetwork": false, - "propertyBag": {} + "isolatedNetwork": false } } } @@ -253,7 +244,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -261,41 +252,48 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:32 GMT", + "Date": "Fri, 23 Sep 2022 15:27:34 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-02f357c2038f32321edf816b05ea6eac-085b190c44e6b4b9-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-98a681d0bc6f4c0566400d9ec8feb894-2b00a9027b02626b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "13b443ff-3a26-4488-841b-53f86ebb8836", - "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-correlation-request-id": "78a9fdc7-ecc7-426c-b1de-74c61a547d1f", + "x-ms-ratelimit-remaining-subscription-reads": "11895", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152832Z:13b443ff-3a26-4488-841b-53f86ebb8836", - "x-request-time": "0.043" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152735Z:78a9fdc7-ecc7-426c-b1de-74c61a547d1f", + "x-request-time": "0.023" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/gpu-cluster", "name": "gpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-19T00:10:24.4650736\u002B00:00", - "modifiedOn": "2022-09-19T00:10:31.0007111\u002B00:00", + "createdOn": "2022-09-22T03:11:29.7706914\u002B00:00", + "modifiedOn": "2022-09-22T03:11:30.2032599\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", - "provisioningState": "Succeeded", - "provisioningErrors": null, + "computeLocation": "eastus2", + "provisioningState": "Failed", + "provisioningErrors": [ + { + "error": { + "code": "VmSizeNotSupported", + "message": "STANDARD_ND6S is not supported in region eastus2. Please choose a different VM size." + } + } + ], "isAttachedCompute": false, "properties": { "vmSize": "STANDARD_ND6S", @@ -303,27 +301,17 @@ "scaleSettings": { "maxNodeCount": 4, "minNodeCount": 0, - "nodeIdleTimeBeforeScaleDown": "PT2M" + "nodeIdleTimeBeforeScaleDown": null }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 4, - "nodeStateCounts": { - "preparingNodeCount": 0, - "runningNodeCount": 4, - "idleNodeCount": 0, - "unusableNodeCount": 0, - "leavingNodeCount": 0, - "preemptedNodeCount": 0 - }, - "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-19T15:06:24.431\u002B00:00", + "currentNodeCount": null, + "targetNodeCount": null, + "nodeStateCounts": null, + "allocationState": null, "errors": null, - "remoteLoginPortPublicAccess": "Enabled", - "osType": "Linux", + "remoteLoginPortPublicAccess": "NotSpecified", "virtualMachineImage": null, - "isolatedNetwork": false, - "propertyBag": {} + "isolatedNetwork": false } } } @@ -335,7 +323,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -343,24 +331,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:33 GMT", + "Date": "Fri, 23 Sep 2022 15:27:37 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-8f87368f664403dba950e7810e89bc3b-de8a14906317d75e-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-e0b1c1e65b3a7c8c2174d57e722bb177-1b53b3aa9d95d2bb-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "48d2e741-cf36-45a3-a1aa-3caf067d0734", - "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-correlation-request-id": "61f1afa6-5418-4f98-882e-8dc05952018a", + "x-ms-ratelimit-remaining-subscription-reads": "11894", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152833Z:48d2e741-cf36-45a3-a1aa-3caf067d0734", - "x-request-time": "0.109" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152738Z:61f1afa6-5418-4f98-882e-8dc05952018a", + "x-request-time": "0.161" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -375,17 +363,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sawcdivl5vo3cem", - "containerName": "azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-19T00:10:19.4497254\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-19T00:10:20.0957203\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -399,7 +387,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -407,21 +395,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:34 GMT", + "Date": "Fri, 23 Sep 2022 15:27:38 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-2bd2542e6d2a4578abea79063b81602a-1cf87f14991db96d-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-bd774301392f6f003a0dcb13104b1436-8b3dcbb18b87915c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "21b97c61-8c14-419f-960d-f385f9819518", - "x-ms-ratelimit-remaining-subscription-writes": "1194", + "x-ms-correlation-request-id": "9e7f2845-2597-4ca4-95c2-63bd36a141e9", + "x-ms-ratelimit-remaining-subscription-writes": "1157", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152834Z:21b97c61-8c14-419f-960d-f385f9819518", - "x-request-time": "0.108" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152739Z:9e7f2845-2597-4ca4-95c2-63bd36a141e9", + "x-request-time": "0.092" }, "ResponseBody": { "secretsType": "AccountKey", @@ -429,15 +417,15 @@ } }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Mon, 19 Sep 2022 15:28:34 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:27:41 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -446,9 +434,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Mon, 19 Sep 2022 15:28:33 GMT", - "ETag": "\u00220x8DA99D37A4F8142\u0022", - "Last-Modified": "Mon, 19 Sep 2022 00:11:19 GMT", + "Date": "Fri, 23 Sep 2022 15:27:40 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -457,32 +445,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Mon, 19 Sep 2022 00:11:19 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "3d85346b-0def-4d25-b9b1-cc4bdc4a3056", + "x-ms-meta-name": "000000000000000000000", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Mon, 19 Sep 2022 15:28:34 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:27:42 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Mon, 19 Sep 2022 15:28:33 GMT", + "Date": "Fri, 23 Sep 2022 15:27:40 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -490,12 +478,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3d85346b-0def-4d25-b9b1-cc4bdc4a3056/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -503,7 +491,7 @@ "Connection": "keep-alive", "Content-Length": "288", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -513,7 +501,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -521,27 +509,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:34 GMT", + "Date": "Fri, 23 Sep 2022 15:27:40 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-7c63322afbe4fb567bf5f6be1d332f08-a54400124f2b9e02-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-0eebf66634a57e3b6874ae48ff357090-af5347e90d343913-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0d3a5102-8bd8-417b-bcf2-ca8010c8a645", - "x-ms-ratelimit-remaining-subscription-writes": "1189", + "x-ms-correlation-request-id": "b8c3a4cf-0be5-421f-9fec-26538aac9b0c", + "x-ms-ratelimit-remaining-subscription-writes": "1124", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152834Z:0d3a5102-8bd8-417b-bcf2-ca8010c8a645", - "x-request-time": "0.064" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152741Z:b8c3a4cf-0be5-421f-9fec-26538aac9b0c", + "x-request-time": "0.067" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3d85346b-0def-4d25-b9b1-cc4bdc4a3056/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -553,14 +541,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-19T00:11:20.0229231\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-19T15:28:34.7187027\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T15:27:41.5482294\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -572,9 +560,9 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1473", + "Content-Length": "1458", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -588,7 +576,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo ${{inputs.component_in_number}} \u0026 echo ${{inputs.component_in_path}} \u0026 echo ${{outputs.component_out_path}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3d85346b-0def-4d25-b9b1-cc4bdc4a3056/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": 2 @@ -631,26 +619,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2512", + "Content-Length": "2435", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:35 GMT", + "Date": "Fri, 23 Sep 2022 15:27:42 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-d08ed7e257ed6d2c711d6f5cac566dd2-98094bc377bfadac-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-654a39c5bf48b14c96a9dda00916ad68-8277b8ce375360c0-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e0ab2eff-4b26-4e94-a6f9-da50852d68cf", - "x-ms-ratelimit-remaining-subscription-writes": "1188", + "x-ms-correlation-request-id": "93726676-88ae-4f14-b32e-055f00ce1e41", + "x-ms-ratelimit-remaining-subscription-writes": "1123", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152835Z:e0ab2eff-4b26-4e94-a6f9-da50852d68cf", - "x-request-time": "0.333" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152743Z:93726676-88ae-4f14-b32e-055f00ce1e41", + "x-request-time": "0.476" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1a4f6800-7e7f-4644-892c-fe37318627e5", - "name": "1a4f6800-7e7f-4644-892c-fe37318627e5", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2f721cdb-8e05-4b3d-b9b0-6edeba1f9efe", + "name": "2f721cdb-8e05-4b3d-b9b0-6edeba1f9efe", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -663,7 +651,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "1a4f6800-7e7f-4644-892c-fe37318627e5", + "version": "2f721cdb-8e05-4b3d-b9b0-6edeba1f9efe", "display_name": "CommandComponentMpi", "is_deterministic": "True", "type": "command", @@ -690,7 +678,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3d85346b-0def-4d25-b9b1-cc4bdc4a3056/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "2" @@ -704,12 +692,12 @@ } }, "systemData": { - "createdAt": "2022-09-19T00:11:38.6108467\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-19T00:11:38.8399583\u002B00:00", - "lastModifiedBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "lastModifiedByType": "Application" + "createdAt": "2022-09-23T15:27:42.908648\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T15:27:42.908648\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", + "lastModifiedByType": "User" } } }, @@ -720,7 +708,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -728,24 +716,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:35 GMT", + "Date": "Fri, 23 Sep 2022 15:27:43 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-422ad1681a7ea4fc6f0ca5c81677d313-cdb1a8a89dab11a0-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-7e47c3fbb8c26403de0ec1127b8fdd72-85d4365aa7edbfbb-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "62cbaef8-4f50-485a-99db-3adc58d91e69", - "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-correlation-request-id": "e78218c2-0520-41b7-81f9-9be00f502f96", + "x-ms-ratelimit-remaining-subscription-reads": "11893", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152835Z:62cbaef8-4f50-485a-99db-3adc58d91e69", - "x-request-time": "0.087" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152744Z:e78218c2-0520-41b7-81f9-9be00f502f96", + "x-request-time": "0.080" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -760,17 +748,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sawcdivl5vo3cem", - "containerName": "azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-19T00:10:19.4497254\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-19T00:10:20.0957203\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -784,7 +772,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -792,21 +780,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:36 GMT", + "Date": "Fri, 23 Sep 2022 15:27:44 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-bd8e4507422386bbc9f09c176b444716-1e2a9e7a9cab4216-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-ed8defa7517746292588c5ad53d82f7a-8f10301ff17ca0e6-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b19b1952-a3f0-4a5c-98b5-bc880be4dcdd", - "x-ms-ratelimit-remaining-subscription-writes": "1193", + "x-ms-correlation-request-id": "a9955a0f-844b-488d-b28c-751c4076e4ee", + "x-ms-ratelimit-remaining-subscription-writes": "1156", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152836Z:b19b1952-a3f0-4a5c-98b5-bc880be4dcdd", - "x-request-time": "0.109" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152745Z:a9955a0f-844b-488d-b28c-751c4076e4ee", + "x-request-time": "0.115" }, "ResponseBody": { "secretsType": "AccountKey", @@ -814,15 +802,15 @@ } }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Mon, 19 Sep 2022 15:28:36 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:27:47 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -831,9 +819,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Mon, 19 Sep 2022 15:28:35 GMT", - "ETag": "\u00220x8DA99D37A4F8142\u0022", - "Last-Modified": "Mon, 19 Sep 2022 00:11:19 GMT", + "Date": "Fri, 23 Sep 2022 15:27:45 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -842,32 +830,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Mon, 19 Sep 2022 00:11:19 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "3d85346b-0def-4d25-b9b1-cc4bdc4a3056", + "x-ms-meta-name": "000000000000000000000", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Mon, 19 Sep 2022 15:28:36 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:27:47 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Mon, 19 Sep 2022 15:28:35 GMT", + "Date": "Fri, 23 Sep 2022 15:27:45 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -875,12 +863,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3d85346b-0def-4d25-b9b1-cc4bdc4a3056/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -888,7 +876,7 @@ "Connection": "keep-alive", "Content-Length": "288", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -898,7 +886,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -906,27 +894,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:36 GMT", + "Date": "Fri, 23 Sep 2022 15:27:45 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-0df2b7951eca7341ab03727673171e7f-a56a431cf5f69801-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-71d2538797f1c021fef4b2f5e123ff25-21ddc8e62a8c2172-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "333f7b8f-7e30-45d7-ad86-61e91f35312e", - "x-ms-ratelimit-remaining-subscription-writes": "1187", + "x-ms-correlation-request-id": "095d9ebf-8a90-41d6-985a-089eedf82ef9", + "x-ms-ratelimit-remaining-subscription-writes": "1122", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152836Z:333f7b8f-7e30-45d7-ad86-61e91f35312e", - "x-request-time": "0.084" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152746Z:095d9ebf-8a90-41d6-985a-089eedf82ef9", + "x-request-time": "0.082" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3d85346b-0def-4d25-b9b1-cc4bdc4a3056/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -938,14 +926,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-19T00:11:20.0229231\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-19T15:28:36.8306242\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T15:27:46.5450171\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -957,9 +945,9 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1489", + "Content-Length": "1474", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -973,7 +961,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo ${{inputs.component_in_number}} \u0026 echo ${{inputs.component_in_path}} \u0026 echo ${{outputs.component_out_path}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3d85346b-0def-4d25-b9b1-cc4bdc4a3056/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": 2 @@ -1016,26 +1004,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2524", + "Content-Length": "2449", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:37 GMT", + "Date": "Fri, 23 Sep 2022 15:27:46 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-57e167d80daf4001652621299af3ebd9-de733fcf334e92d1-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-81d9b490f9b6b5d5b8c245597f84b809-35f7c6a5c8aee6d0-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2fcff493-6b8a-4bc1-b72d-e2a44663a559", - "x-ms-ratelimit-remaining-subscription-writes": "1186", + "x-ms-correlation-request-id": "b1d51849-4b30-4e54-af73-59f59c1a0b61", + "x-ms-ratelimit-remaining-subscription-writes": "1121", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152837Z:2fcff493-6b8a-4bc1-b72d-e2a44663a559", - "x-request-time": "0.433" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152747Z:b1d51849-4b30-4e54-af73-59f59c1a0b61", + "x-request-time": "0.593" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/70d1e235-4c7e-48f8-b841-50c3788cb2ea", - "name": "70d1e235-4c7e-48f8-b841-50c3788cb2ea", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/36cf1404-3843-42db-a8ec-baadf82d2358", + "name": "36cf1404-3843-42db-a8ec-baadf82d2358", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1048,7 +1036,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "70d1e235-4c7e-48f8-b841-50c3788cb2ea", + "version": "36cf1404-3843-42db-a8ec-baadf82d2358", "display_name": "CommandComponentPytorch", "is_deterministic": "True", "type": "command", @@ -1075,7 +1063,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3d85346b-0def-4d25-b9b1-cc4bdc4a3056/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "2" @@ -1089,12 +1077,12 @@ } }, "systemData": { - "createdAt": "2022-09-19T00:11:40.3973451\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-19T00:11:40.5983873\u002B00:00", - "lastModifiedBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "lastModifiedByType": "Application" + "createdAt": "2022-09-23T15:27:47.5382979\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T15:27:47.5382979\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", + "lastModifiedByType": "User" } } }, @@ -1105,7 +1093,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1113,24 +1101,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:37 GMT", + "Date": "Fri, 23 Sep 2022 15:27:48 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-7ee952a0b71b94d1469ad30393fb2f34-3d049afac924b7b0-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-83bd1286050b0da5b23fe62e6195238e-b3d6989dce7cc19b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8d826ba9-03de-4c08-95f2-6a918e5e5c05", - "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-correlation-request-id": "2f9640a6-a6fc-468e-b222-a3050a8232b2", + "x-ms-ratelimit-remaining-subscription-reads": "11892", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152837Z:8d826ba9-03de-4c08-95f2-6a918e5e5c05", - "x-request-time": "0.091" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152748Z:2f9640a6-a6fc-468e-b222-a3050a8232b2", + "x-request-time": "0.113" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -1145,17 +1133,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sawcdivl5vo3cem", - "containerName": "azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-19T00:10:19.4497254\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-19T00:10:20.0957203\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -1169,7 +1157,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1177,21 +1165,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:38 GMT", + "Date": "Fri, 23 Sep 2022 15:27:48 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-b8086dbd2f8c88c69917fc31e4939661-eddb8dba0e3a03e4-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-365c34182fe6ba52b44c838a848b2176-edc6b68017bb1f0f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fcda9734-dcc6-4968-8424-a338fe37cf75", - "x-ms-ratelimit-remaining-subscription-writes": "1192", + "x-ms-correlation-request-id": "e5b0fa72-4eba-455b-a45a-7d525f64d003", + "x-ms-ratelimit-remaining-subscription-writes": "1155", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152838Z:fcda9734-dcc6-4968-8424-a338fe37cf75", - "x-request-time": "0.097" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152749Z:e5b0fa72-4eba-455b-a45a-7d525f64d003", + "x-request-time": "0.091" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1199,15 +1187,15 @@ } }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Mon, 19 Sep 2022 15:28:38 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:27:51 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -1216,9 +1204,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Mon, 19 Sep 2022 15:28:37 GMT", - "ETag": "\u00220x8DA99D37A4F8142\u0022", - "Last-Modified": "Mon, 19 Sep 2022 00:11:19 GMT", + "Date": "Fri, 23 Sep 2022 15:27:49 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1227,32 +1215,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Mon, 19 Sep 2022 00:11:19 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "3d85346b-0def-4d25-b9b1-cc4bdc4a3056", + "x-ms-meta-name": "000000000000000000000", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Mon, 19 Sep 2022 15:28:38 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:27:52 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Mon, 19 Sep 2022 15:28:37 GMT", + "Date": "Fri, 23 Sep 2022 15:27:50 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1260,12 +1248,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3d85346b-0def-4d25-b9b1-cc4bdc4a3056/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -1273,7 +1261,7 @@ "Connection": "keep-alive", "Content-Length": "288", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -1283,7 +1271,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -1291,27 +1279,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:39 GMT", + "Date": "Fri, 23 Sep 2022 15:27:50 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-9cd50c312a59bd5033da693506538f7f-f1a8d54233357a61-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-874c1088ccb317c147f9093a47890694-3f900647d2f20c17-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ae8b5935-a274-443d-a322-c0c715f8d3b8", - "x-ms-ratelimit-remaining-subscription-writes": "1185", + "x-ms-correlation-request-id": "1b6e859d-dec9-4666-b0d3-c03371bdd65d", + "x-ms-ratelimit-remaining-subscription-writes": "1120", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152840Z:ae8b5935-a274-443d-a322-c0c715f8d3b8", - "x-request-time": "0.058" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152750Z:1b6e859d-dec9-4666-b0d3-c03371bdd65d", + "x-request-time": "0.076" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3d85346b-0def-4d25-b9b1-cc4bdc4a3056/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -1323,14 +1311,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-19T00:11:20.0229231\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-19T15:28:39.997324\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T15:27:50.8302986\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -1342,9 +1330,9 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1516", + "Content-Length": "1501", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -1358,7 +1346,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo ${{inputs.component_in_number}} \u0026 echo ${{inputs.component_in_path}} \u0026 echo ${{outputs.component_out_path}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3d85346b-0def-4d25-b9b1-cc4bdc4a3056/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": 2 @@ -1402,26 +1390,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2558", + "Content-Length": "2483", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:40 GMT", + "Date": "Fri, 23 Sep 2022 15:27:51 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-5421cb2918a8201bda5bc80482ca20a3-0a9f09aa88714c4c-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-56d165d8e7f7ed90dfa7bd24b058b19b-feaa75557d604971-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "499a865c-69e5-4d26-9676-9d97b3f61d47", - "x-ms-ratelimit-remaining-subscription-writes": "1184", + "x-ms-correlation-request-id": "e23fa464-41a3-4bef-aae5-d4d18f0b9a4a", + "x-ms-ratelimit-remaining-subscription-writes": "1119", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152840Z:499a865c-69e5-4d26-9676-9d97b3f61d47", - "x-request-time": "0.346" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152752Z:e23fa464-41a3-4bef-aae5-d4d18f0b9a4a", + "x-request-time": "0.501" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/0fef09b7-e586-49c6-91bb-0f96cda4e2d1", - "name": "0fef09b7-e586-49c6-91bb-0f96cda4e2d1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b5dd4de8-56c9-4856-a6c2-edd78e074241", + "name": "b5dd4de8-56c9-4856-a6c2-edd78e074241", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1434,7 +1422,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "0fef09b7-e586-49c6-91bb-0f96cda4e2d1", + "version": "b5dd4de8-56c9-4856-a6c2-edd78e074241", "display_name": "CommandComponentTensorFlow", "is_deterministic": "True", "type": "command", @@ -1461,7 +1449,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3d85346b-0def-4d25-b9b1-cc4bdc4a3056/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "2" @@ -1476,12 +1464,12 @@ } }, "systemData": { - "createdAt": "2022-09-19T00:11:42.3924963\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-19T00:11:42.5669121\u002B00:00", - "lastModifiedBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "lastModifiedByType": "Application" + "createdAt": "2022-09-23T15:27:51.7610704\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T15:27:51.7610704\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", + "lastModifiedByType": "User" } } }, @@ -1492,7 +1480,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1500,24 +1488,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:40 GMT", + "Date": "Fri, 23 Sep 2022 15:27:52 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-e80c84bbb7127a0f2f1af8684c364fa4-5c8c6c5b8e637b65-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-74387786d4de53f2ec541cfef65fe081-a746ab943b2dcdef-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a3d565fa-23b0-41cc-8db2-f7cb8193d1df", - "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-correlation-request-id": "a0ea7479-2791-49ef-bcc5-4559e1091b50", + "x-ms-ratelimit-remaining-subscription-reads": "11891", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152840Z:a3d565fa-23b0-41cc-8db2-f7cb8193d1df", - "x-request-time": "0.093" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152752Z:a0ea7479-2791-49ef-bcc5-4559e1091b50", + "x-request-time": "0.079" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -1532,17 +1520,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sawcdivl5vo3cem", - "containerName": "azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-19T00:10:19.4497254\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-19T00:10:20.0957203\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -1556,7 +1544,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1564,21 +1552,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:41 GMT", + "Date": "Fri, 23 Sep 2022 15:27:52 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-f285f1a0c679bfb88f9b12d94e0067b5-d44ed0e2a5a176fd-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-faff0af6199f574d39572d69ca8006e4-6b61087dea57e479-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4591778f-b1d5-44ee-919d-0a1ed5e5a0d6", - "x-ms-ratelimit-remaining-subscription-writes": "1191", + "x-ms-correlation-request-id": "f283f2f8-ec80-4cfc-ac9a-930e13380134", + "x-ms-ratelimit-remaining-subscription-writes": "1154", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152841Z:4591778f-b1d5-44ee-919d-0a1ed5e5a0d6", - "x-request-time": "0.103" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152753Z:f283f2f8-ec80-4cfc-ac9a-930e13380134", + "x-request-time": "0.085" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1586,15 +1574,15 @@ } }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Mon, 19 Sep 2022 15:28:41 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:27:55 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -1603,9 +1591,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Mon, 19 Sep 2022 15:28:41 GMT", - "ETag": "\u00220x8DA99D38B9635B3\u0022", - "Last-Modified": "Mon, 19 Sep 2022 00:11:48 GMT", + "Date": "Fri, 23 Sep 2022 15:27:54 GMT", + "ETag": "\u00220x8DA9D770C570D84\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:19:46 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1614,32 +1602,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Mon, 19 Sep 2022 00:11:48 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:19:45 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "e2d419b6-f25f-4f23-a531-d35e01a30e95", + "x-ms-meta-name": "8c59cb92-112f-4c04-bda0-1342b610850d", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "0784d99d-73a6-45be-88ef-747ff5cdce30", + "x-ms-meta-version": "c1f97989-616d-4b90-a0d6-bac9ea34bade", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Mon, 19 Sep 2022 15:28:41 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:27:56 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Mon, 19 Sep 2022 15:28:41 GMT", + "Date": "Fri, 23 Sep 2022 15:27:54 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1647,20 +1635,20 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_705484414745?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_117541496257?api-version=2022-06-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "3625", + "Content-Length": "3679", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -1671,7 +1659,7 @@ "owner": "sdkteam" }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/gpu-cluster", - "displayName": "test_705484414745", + "displayName": "test_117541496257", "experimentName": "azure-ai-ml", "isArchived": false, "jobType": "Pipeline", @@ -1714,8 +1702,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1a4f6800-7e7f-4644-892c-fe37318627e5" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2f721cdb-8e05-4b3d-b9b0-6edeba1f9efe" }, "hello_world_component_pytorch": { "resources": { @@ -1744,8 +1733,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/70d1e235-4c7e-48f8-b841-50c3788cb2ea" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/36cf1404-3843-42db-a8ec-baadf82d2358" }, "hello_world_component_tensorflow": { "resources": { @@ -1775,8 +1765,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/0fef09b7-e586-49c6-91bb-0f96cda4e2d1" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b5dd4de8-56c9-4856-a6c2-edd78e074241" } }, "outputs": {}, @@ -1788,26 +1779,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "6388", + "Content-Length": "6461", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:48 GMT", + "Date": "Fri, 23 Sep 2022 15:28:00 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_705484414745?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_117541496257?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-1d7af1d9df4ad031b12a73e079ab81fc-204b12c7fb394067-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-c9681541676d87de6093de073d22b418-500128ae344b9ddb-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a07ca038-c90d-4359-9748-b1c2c284b31a", - "x-ms-ratelimit-remaining-subscription-writes": "1183", + "x-ms-correlation-request-id": "67bb6f50-ca8e-4c25-a84a-f74ed7dd5490", + "x-ms-ratelimit-remaining-subscription-writes": "1118", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152849Z:a07ca038-c90d-4359-9748-b1c2c284b31a", - "x-request-time": "4.900" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152801Z:67bb6f50-ca8e-4c25-a84a-f74ed7dd5490", + "x-request-time": "3.265" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_705484414745", - "name": "test_705484414745", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_117541496257", + "name": "test_117541496257", "type": "Microsoft.MachineLearningServices/workspaces/jobs", "properties": { "description": "The hello world pipeline job with distribution components", @@ -1827,14 +1818,14 @@ "azureml.defaultDataStoreName": "workspaceblobstore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_705484414745", + "displayName": "test_117541496257", "status": "Preparing", "experimentName": "azure-ai-ml", "services": { "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null @@ -1842,7 +1833,7 @@ "Studio": { "jobServiceType": "Studio", "port": null, - "endpoint": "https://ml.azure.com/runs/test_705484414745?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "endpoint": "https://ml.azure.com/runs/test_117541496257?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, "properties": null @@ -1884,8 +1875,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1a4f6800-7e7f-4644-892c-fe37318627e5" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2f721cdb-8e05-4b3d-b9b0-6edeba1f9efe" }, "hello_world_component_pytorch": { "resources": { @@ -1914,8 +1906,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/70d1e235-4c7e-48f8-b841-50c3788cb2ea" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/36cf1404-3843-42db-a8ec-baadf82d2358" }, "hello_world_component_tensorflow": { "resources": { @@ -1945,8 +1938,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/0fef09b7-e586-49c6-91bb-0f96cda4e2d1" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b5dd4de8-56c9-4856-a6c2-edd78e074241" } }, "inputs": { @@ -1966,20 +1960,20 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-19T15:28:48.6540009\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:28:01.1812672\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1a4f6800-7e7f-4644-892c-fe37318627e5?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2f721cdb-8e05-4b3d-b9b0-6edeba1f9efe?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1987,28 +1981,28 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:50 GMT", + "Date": "Fri, 23 Sep 2022 15:28:03 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-94ac4a7c265c71c3e7e7dfd6bca62817-9bb8b68c49eae7a7-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-467b11ee131211c4eac0ba55911fd14d-c6230ecaccf53053-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "071e6f58-4f57-4a7b-bfba-aaf7eb42c07f", - "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-correlation-request-id": "ed9b7f55-4d7c-4077-a132-a3ad57c701e6", + "x-ms-ratelimit-remaining-subscription-reads": "11890", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152850Z:071e6f58-4f57-4a7b-bfba-aaf7eb42c07f", - "x-request-time": "0.131" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152804Z:ed9b7f55-4d7c-4077-a132-a3ad57c701e6", + "x-request-time": "0.108" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1a4f6800-7e7f-4644-892c-fe37318627e5", - "name": "1a4f6800-7e7f-4644-892c-fe37318627e5", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2f721cdb-8e05-4b3d-b9b0-6edeba1f9efe", + "name": "2f721cdb-8e05-4b3d-b9b0-6edeba1f9efe", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -2021,7 +2015,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "1a4f6800-7e7f-4644-892c-fe37318627e5", + "version": "2f721cdb-8e05-4b3d-b9b0-6edeba1f9efe", "display_name": "CommandComponentMpi", "is_deterministic": "True", "type": "command", @@ -2048,7 +2042,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3d85346b-0def-4d25-b9b1-cc4bdc4a3056/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "2" @@ -2062,17 +2056,17 @@ } }, "systemData": { - "createdAt": "2022-09-19T00:11:38.6108467\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-19T00:11:38.8399583\u002B00:00", - "lastModifiedBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "lastModifiedByType": "Application" + "createdAt": "2022-09-23T15:27:42.908648\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T15:27:43.0688646\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", + "lastModifiedByType": "User" } } } ], "Variables": { - "name": "test_705484414745" + "name": "test_117541496257" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_create_with_resolve_reuse.json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_create_with_resolve_reuse.json index ee12cd04fc67..2140f3961c2a 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_create_with_resolve_reuse.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_create_with_resolve_reuse.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:40:20 GMT", + "Date": "Fri, 23 Sep 2022 15:21:42 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-95d54ce3cfc7ad522feb76bcb20148f9-097c514e7b6e9bca-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-ba67bc950da34b2aae66a8cdbf27e871-6e2a405629528c48-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f160fd81-4d95-4fd3-b148-087e10814f0a", - "x-ms-ratelimit-remaining-subscription-reads": "11966", + "x-ms-correlation-request-id": "e9839d3b-c442-43ae-b75b-b83f5aa1ca3b", + "x-ms-ratelimit-remaining-subscription-reads": "11960", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194021Z:f160fd81-4d95-4fd3-b148-087e10814f0a", - "x-request-time": "0.143" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152142Z:e9839d3b-c442-43ae-b75b-b83f5aa1ca3b", + "x-request-time": "0.131" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/microsoftsamplescommandcomponentbasic_nopaths_test/versions/1", @@ -66,7 +66,7 @@ "description": "A number" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/7e3e2698-4d1a-4bbc-b18f-beee1a20a3aa/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/CliV2AnonymousEnvironment/versions/65a57bb8969551bd51f7d3e2f734e76e", "resources": { "instance_count": "1" @@ -76,12 +76,12 @@ } }, "systemData": { - "createdAt": "2022-09-15T03:19:17.639218\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:19:17.8616901\u002B00:00", - "lastModifiedBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "lastModifiedByType": "Application" + "createdAt": "2022-09-23T15:19:11.6540484\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T15:19:11.8610827\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", + "lastModifiedByType": "User" } } }, @@ -92,7 +92,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -100,39 +100,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:40:23 GMT", + "Date": "Fri, 23 Sep 2022 15:21:45 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-16a6fa4f7afb9acbd36acebdd0220f54-b30b38a9f9fab1a4-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-5d587c79bf912c2dc0c97535b2f90903-b71d2df3e7f8d3b7-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6d2ba471-60b2-4f36-a0fc-738cf930b056", - "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-correlation-request-id": "6ef5cb24-4cf1-459b-bd7e-713936f3c4e8", + "x-ms-ratelimit-remaining-subscription-reads": "11959", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194023Z:6d2ba471-60b2-4f36-a0fc-738cf930b056", - "x-request-time": "0.043" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152145Z:6ef5cb24-4cf1-459b-bd7e-713936f3c4e8", + "x-request-time": "0.068" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.912489\u002B00:00", - "modifiedOn": "2022-09-15T03:11:50.5830108\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "eastus2", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -145,18 +145,18 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 4, + "currentNodeCount": 0, + "targetNodeCount": 3, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 2, - "idleNodeCount": 2, + "runningNodeCount": 0, + "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-16T18:30:06.83\u002B00:00", + "allocationState": "Resizing", + "allocationStateTransitionTime": "2022-09-23T15:21:36.391\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -174,7 +174,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -182,39 +182,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:40:23 GMT", + "Date": "Fri, 23 Sep 2022 15:21:46 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-0023478337cfa26a2cde08fc3b41c82f-3074fe62c1fa428d-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-50245a804883b8f94921afb02909bdca-7f811cae7f576121-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "48444341-232b-4c50-8d63-902601a3e85a", - "x-ms-ratelimit-remaining-subscription-reads": "11964", + "x-ms-correlation-request-id": "96b7fa59-82f1-4161-9d00-ebe778ae9d7f", + "x-ms-ratelimit-remaining-subscription-reads": "11958", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194023Z:48444341-232b-4c50-8d63-902601a3e85a", - "x-request-time": "0.042" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152146Z:96b7fa59-82f1-4161-9d00-ebe778ae9d7f", + "x-request-time": "0.045" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.912489\u002B00:00", - "modifiedOn": "2022-09-15T03:11:50.5830108\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "eastus2", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -227,18 +227,18 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 4, + "currentNodeCount": 0, + "targetNodeCount": 3, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 2, - "idleNodeCount": 2, + "runningNodeCount": 0, + "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-16T18:30:06.83\u002B00:00", + "allocationState": "Resizing", + "allocationStateTransitionTime": "2022-09-23T15:21:36.391\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -256,7 +256,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -264,39 +264,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:40:23 GMT", + "Date": "Fri, 23 Sep 2022 15:21:46 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-61a334dc801292f4ead7d507470f6eb4-702d7f35b7b6953a-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-12496e20b9c38e000b0592ed6b7a20e8-d622c8619796798a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0aeacf60-76f5-4f35-9d52-f1606caeac1e", - "x-ms-ratelimit-remaining-subscription-reads": "11963", + "x-ms-correlation-request-id": "adacd312-cba5-47a8-9ec2-f7ca1e6170ca", + "x-ms-ratelimit-remaining-subscription-reads": "11957", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194023Z:0aeacf60-76f5-4f35-9d52-f1606caeac1e", - "x-request-time": "0.046" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152147Z:adacd312-cba5-47a8-9ec2-f7ca1e6170ca", + "x-request-time": "0.035" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.912489\u002B00:00", - "modifiedOn": "2022-09-15T03:11:50.5830108\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "eastus2", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -309,18 +309,18 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 4, + "currentNodeCount": 0, + "targetNodeCount": 3, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 2, - "idleNodeCount": 2, + "runningNodeCount": 0, + "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-16T18:30:06.83\u002B00:00", + "allocationState": "Resizing", + "allocationStateTransitionTime": "2022-09-23T15:21:36.391\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -338,7 +338,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -346,39 +346,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:40:23 GMT", + "Date": "Fri, 23 Sep 2022 15:21:47 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-25d6cdfbc5ef17edc5b21b5ed9f423ef-326a534105fbf5e3-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-8098a7a946f13bc68c7eb0a7c1d54aa0-2358ef59fbb3e1a3-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "92c69e48-7047-4b66-aebc-7d6602dbf5ca", - "x-ms-ratelimit-remaining-subscription-reads": "11962", + "x-ms-correlation-request-id": "28871fa8-10f5-48ae-8a22-73140216cb3a", + "x-ms-ratelimit-remaining-subscription-reads": "11956", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194023Z:92c69e48-7047-4b66-aebc-7d6602dbf5ca", - "x-request-time": "0.059" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152147Z:28871fa8-10f5-48ae-8a22-73140216cb3a", + "x-request-time": "0.033" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.912489\u002B00:00", - "modifiedOn": "2022-09-15T03:11:50.5830108\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "eastus2", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -391,18 +391,18 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 4, + "currentNodeCount": 0, + "targetNodeCount": 3, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 2, - "idleNodeCount": 2, + "runningNodeCount": 0, + "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-16T18:30:06.83\u002B00:00", + "allocationState": "Resizing", + "allocationStateTransitionTime": "2022-09-23T15:21:36.391\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -420,7 +420,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -428,39 +428,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:40:23 GMT", + "Date": "Fri, 23 Sep 2022 15:21:47 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-36a4fffa0fe1676eda0c69c1644e2cfd-a96ebfeebd9212f7-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-76cc6ac28daea788f72d98e06474c009-92fde0f486664b77-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "84e97405-d3b6-4e86-8e75-689de220ff26", - "x-ms-ratelimit-remaining-subscription-reads": "11961", + "x-ms-correlation-request-id": "47fdf444-eb80-4709-bbb7-91c1b48015ad", + "x-ms-ratelimit-remaining-subscription-reads": "11955", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194023Z:84e97405-d3b6-4e86-8e75-689de220ff26", - "x-request-time": "0.048" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152148Z:47fdf444-eb80-4709-bbb7-91c1b48015ad", + "x-request-time": "0.049" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.912489\u002B00:00", - "modifiedOn": "2022-09-15T03:11:50.5830108\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "eastus2", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -473,18 +473,18 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 4, + "currentNodeCount": 0, + "targetNodeCount": 3, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 2, - "idleNodeCount": 2, + "runningNodeCount": 0, + "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-16T18:30:06.83\u002B00:00", + "allocationState": "Resizing", + "allocationStateTransitionTime": "2022-09-23T15:21:36.391\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -502,7 +502,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -510,24 +510,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:40:23 GMT", + "Date": "Fri, 23 Sep 2022 15:21:48 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-569a1c31301347b4f92117086e090341-e55d39f199354db6-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-28adaee3ee3499080e283736745e04c5-225c2935fa1c19ac-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e748fbbe-d21d-44a9-8c40-c2ea559acde6", - "x-ms-ratelimit-remaining-subscription-reads": "11960", + "x-ms-correlation-request-id": "c1e01068-f391-4e07-ac3e-cb8eac268ab6", + "x-ms-ratelimit-remaining-subscription-reads": "11954", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194024Z:e748fbbe-d21d-44a9-8c40-c2ea559acde6", - "x-request-time": "0.117" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152148Z:c1e01068-f391-4e07-ac3e-cb8eac268ab6", + "x-request-time": "0.088" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -542,17 +542,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -566,7 +566,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -574,21 +574,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:40:24 GMT", + "Date": "Fri, 23 Sep 2022 15:21:49 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-5eaccc4f72b7a23699fc7940c5b642f1-2bcc27f6f28f9be7-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-978053b05bfa18c4c87140a4e5978287-256dedf434369d6c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "52b6ffbd-b77a-4078-afec-09d7b3ad4565", - "x-ms-ratelimit-remaining-subscription-writes": "1191", + "x-ms-correlation-request-id": "0415f674-1336-4cc2-80e7-96fdc54e6e8a", + "x-ms-ratelimit-remaining-subscription-writes": "1189", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194024Z:52b6ffbd-b77a-4078-afec-09d7b3ad4565", - "x-request-time": "0.090" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152149Z:0415f674-1336-4cc2-80e7-96fdc54e6e8a", + "x-request-time": "0.165" }, "ResponseBody": { "secretsType": "AccountKey", @@ -596,15 +596,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:40:23 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:21:51 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -613,9 +613,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:40:24 GMT", - "ETag": "\u00220x8DA96C8560C1979\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:14:00 GMT", + "Date": "Fri, 23 Sep 2022 15:21:49 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -624,32 +624,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:14:00 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ac7e0240-c159-4c9c-828e-d3e8df43e80f", + "x-ms-meta-name": "000000000000000000000", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:40:23 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:21:52 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:40:24 GMT", + "Date": "Fri, 23 Sep 2022 15:21:49 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -657,12 +657,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -670,7 +670,7 @@ "Connection": "keep-alive", "Content-Length": "288", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -680,7 +680,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -688,27 +688,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:40:24 GMT", + "Date": "Fri, 23 Sep 2022 15:21:50 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-c6a100eced7ac5c6e9f4fbef743d0e15-2279146497f413f8-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-79b1cd81ed7dcee5e6378e3869f1bbbe-a588915181b6c3ff-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e516d9c0-e7e5-497c-814a-300c7338c694", - "x-ms-ratelimit-remaining-subscription-writes": "1184", + "x-ms-correlation-request-id": "ac5250ba-b82b-499f-9106-8d94a586d5d5", + "x-ms-ratelimit-remaining-subscription-writes": "1179", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194024Z:e516d9c0-e7e5-497c-814a-300c7338c694", - "x-request-time": "0.161" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152151Z:ac5250ba-b82b-499f-9106-8d94a586d5d5", + "x-request-time": "0.073" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -720,14 +720,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-15T03:14:01.4315202\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-16T19:40:24.7629371\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T15:21:51.0487356\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -739,9 +739,9 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1448", + "Content-Length": "1433", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -755,7 +755,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo $[[${{inputs.component_in_number}}]] \u0026 echo ${{inputs.component_in_path}} \u0026 echo ${{outputs.component_out_path}} \u003E ${{outputs.component_out_path}}/component_in_number", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "description": "This is the basic command component", @@ -792,26 +792,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2418", + "Content-Length": "2398", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:40:25 GMT", + "Date": "Fri, 23 Sep 2022 15:21:52 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-d3d222e5d84a3e0211a308453152ce3f-a5f158db920ea8dd-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-03d8c05aaff4dfecd764e7c3471bd45d-3b82195e9a086c24-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6d34c9a0-e5f2-426d-acfe-0df396edad71", - "x-ms-ratelimit-remaining-subscription-writes": "1183", + "x-ms-correlation-request-id": "ab037d7e-d87f-4c68-a5ba-a8999d0f4424", + "x-ms-ratelimit-remaining-subscription-writes": "1178", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194025Z:6d34c9a0-e5f2-426d-acfe-0df396edad71", - "x-request-time": "0.365" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152152Z:ab037d7e-d87f-4c68-a5ba-a8999d0f4424", + "x-request-time": "0.339" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/97773628-7861-48c4-ad89-574b3ab855d9", - "name": "97773628-7861-48c4-ad89-574b3ab855d9", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/4f589440-3f2e-4f17-a8f1-f0f3a615594b", + "name": "4f589440-3f2e-4f17-a8f1-f0f3a615594b", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -824,7 +824,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "97773628-7861-48c4-ad89-574b3ab855d9", + "version": "4f589440-3f2e-4f17-a8f1-f0f3a615594b", "display_name": "CommandComponentBasic", "is_deterministic": "True", "type": "command", @@ -851,7 +851,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -861,11 +861,11 @@ } }, "systemData": { - "createdAt": "2022-09-16T02:13:39.2731727\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:40.98508\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T02:13:39.4533584\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:20:41.170452\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -877,7 +877,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -885,24 +885,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:40:25 GMT", + "Date": "Fri, 23 Sep 2022 15:21:52 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-cd9eede9eb80f2189c96c75acf772a38-d18609292e82b0d8-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-029e3c67835a95f9703fba1cb8943524-3f8769bab6017c12-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a05c6a3f-6835-4a67-ba2e-e85297b19b79", - "x-ms-ratelimit-remaining-subscription-reads": "11959", + "x-ms-correlation-request-id": "cf430bd0-cb6d-4938-88af-dbf10487f3c1", + "x-ms-ratelimit-remaining-subscription-reads": "11953", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194025Z:a05c6a3f-6835-4a67-ba2e-e85297b19b79", - "x-request-time": "0.080" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152153Z:cf430bd0-cb6d-4938-88af-dbf10487f3c1", + "x-request-time": "0.077" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -917,17 +917,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -941,7 +941,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -949,21 +949,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:40:25 GMT", + "Date": "Fri, 23 Sep 2022 15:21:53 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-cbeb9b93e3ae2b2f4d810aea4f9414a5-ff6214dce6b8d067-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-9478c5d66d5c1232c7640d583a69364c-73e2732b9ec96c0b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "61256457-26bd-421b-969e-4ab1d83d7cba", - "x-ms-ratelimit-remaining-subscription-writes": "1190", + "x-ms-correlation-request-id": "89d3372d-261c-46a9-82d4-4449bc44ef13", + "x-ms-ratelimit-remaining-subscription-writes": "1188", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194025Z:61256457-26bd-421b-969e-4ab1d83d7cba", - "x-request-time": "0.122" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152153Z:89d3372d-261c-46a9-82d4-4449bc44ef13", + "x-request-time": "0.093" }, "ResponseBody": { "secretsType": "AccountKey", @@ -971,15 +971,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:40:24 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:21:55 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -988,9 +988,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:40:25 GMT", - "ETag": "\u00220x8DA96C8A69D2BBA\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:16:15 GMT", + "Date": "Fri, 23 Sep 2022 15:21:53 GMT", + "ETag": "\u00220x8DA9D770C570D84\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:19:46 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -999,32 +999,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:16:15 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:19:45 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "e95adacf-11cf-47c5-85eb-199ded56347d", + "x-ms-meta-name": "8c59cb92-112f-4c04-bda0-1342b610850d", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "a26e0dac-f124-4247-b13c-6e81f9a28197", + "x-ms-meta-version": "c1f97989-616d-4b90-a0d6-bac9ea34bade", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:40:24 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:21:56 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:40:25 GMT", + "Date": "Fri, 23 Sep 2022 15:21:54 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1032,20 +1032,20 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_48910304965?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_423855460443?api-version=2022-06-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "3989", + "Content-Length": "4062", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -1056,7 +1056,7 @@ "owner": "sdkteam" }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", - "displayName": "test_48910304965", + "displayName": "test_423855460443", "experimentName": "azure-ai-ml", "isArchived": false, "jobType": "Pipeline", @@ -1093,8 +1093,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/97773628-7861-48c4-ad89-574b3ab855d9" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/4f589440-3f2e-4f17-a8f1-f0f3a615594b" }, "hello_world_component_inline_file_2": { "resources": null, @@ -1117,8 +1118,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/97773628-7861-48c4-ad89-574b3ab855d9" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/4f589440-3f2e-4f17-a8f1-f0f3a615594b" }, "hello_world_component_1": { "resources": null, @@ -1137,6 +1139,7 @@ } }, "outputs": {}, + "properties": {}, "_source": "REMOTE.WORKSPACE.COMPONENT", "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/microsoftsamplescommandcomponentbasic_nopaths_test/versions/1" }, @@ -1157,6 +1160,7 @@ } }, "outputs": {}, + "properties": {}, "_source": "REMOTE.WORKSPACE.COMPONENT", "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/microsoftsamplescommandcomponentbasic_nopaths_test/versions/1" } @@ -1170,26 +1174,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "6687", + "Content-Length": "6790", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:40:31 GMT", + "Date": "Fri, 23 Sep 2022 15:22:01 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_48910304965?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_423855460443?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-3ecbca6188d882e56a779feccecb2351-ffb1732925dffb23-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-a18d321f3ad4920df89c1ea131ca94ad-d05caa9591c1d8e8-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9681defb-2a38-4e3a-afdb-982bfd3f1964", - "x-ms-ratelimit-remaining-subscription-writes": "1182", + "x-ms-correlation-request-id": "e15efcd5-e4ea-4c9b-913f-feee31e3927d", + "x-ms-ratelimit-remaining-subscription-writes": "1177", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194032Z:9681defb-2a38-4e3a-afdb-982bfd3f1964", - "x-request-time": "3.223" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152201Z:e15efcd5-e4ea-4c9b-913f-feee31e3927d", + "x-request-time": "3.107" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_48910304965", - "name": "test_48910304965", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_423855460443", + "name": "test_423855460443", "type": "Microsoft.MachineLearningServices/workspaces/jobs", "properties": { "description": "The hello world pipeline job with resolve reuse", @@ -1209,14 +1213,14 @@ "azureml.defaultDataStoreName": "workspaceblobstore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_48910304965", + "displayName": "test_423855460443", "status": "Preparing", "experimentName": "azure-ai-ml", "services": { "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null @@ -1224,7 +1228,7 @@ "Studio": { "jobServiceType": "Studio", "port": null, - "endpoint": "https://ml.azure.com/runs/test_48910304965?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "endpoint": "https://ml.azure.com/runs/test_423855460443?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, "properties": null @@ -1260,8 +1264,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/97773628-7861-48c4-ad89-574b3ab855d9" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/4f589440-3f2e-4f17-a8f1-f0f3a615594b" }, "hello_world_component_inline_file_2": { "resources": null, @@ -1284,8 +1289,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/97773628-7861-48c4-ad89-574b3ab855d9" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/4f589440-3f2e-4f17-a8f1-f0f3a615594b" }, "hello_world_component_1": { "resources": null, @@ -1304,6 +1310,7 @@ } }, "outputs": {}, + "properties": {}, "_source": "REMOTE.WORKSPACE.COMPONENT", "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/microsoftsamplescommandcomponentbasic_nopaths_test/versions/1" }, @@ -1324,6 +1331,7 @@ } }, "outputs": {}, + "properties": {}, "_source": "REMOTE.WORKSPACE.COMPONENT", "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/microsoftsamplescommandcomponentbasic_nopaths_test/versions/1" } @@ -1345,14 +1353,14 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-16T19:40:31.7522269\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:22:00.8225781\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } } ], "Variables": { - "name": "test_48910304965" + "name": "test_423855460443" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_default_datastore_compute.json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_default_datastore_compute.json index 871174eac64a..fa7f3d968717 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_default_datastore_compute.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_default_datastore_compute.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,39 +15,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:41:03 GMT", + "Date": "Fri, 23 Sep 2022 15:23:13 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-743900af2fb353d3d7332525bc2abd06-a05d940ddf038f95-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-744dfc5f6259eeccb543937a12b7e4fe-3855720c9053802a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fef997ea-300e-45d5-8114-e8122d558111", - "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-correlation-request-id": "04ffecb0-9103-4faa-baa8-d8c245ac79bd", + "x-ms-ratelimit-remaining-subscription-reads": "11936", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194104Z:fef997ea-300e-45d5-8114-e8122d558111", - "x-request-time": "0.056" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152313Z:04ffecb0-9103-4faa-baa8-d8c245ac79bd", + "x-request-time": "0.061" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.912489\u002B00:00", - "modifiedOn": "2022-09-15T03:11:50.5830108\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "eastus2", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -60,18 +60,18 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 4, + "currentNodeCount": 0, + "targetNodeCount": 3, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 2, - "idleNodeCount": 2, + "runningNodeCount": 0, + "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-16T18:30:06.83\u002B00:00", + "allocationState": "Resizing", + "allocationStateTransitionTime": "2022-09-23T15:21:36.391\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -89,7 +89,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -97,39 +97,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:41:04 GMT", + "Date": "Fri, 23 Sep 2022 15:23:14 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-c8bccec494d8c82c5d9c81cafdb22885-308f84510ef14052-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-f9d7d02628a484f006daf2c1fea4fdbe-2200c46177ad6c65-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6c7a6930-ec7f-4b6b-9665-fd7908f972a0", - "x-ms-ratelimit-remaining-subscription-reads": "11942", + "x-ms-correlation-request-id": "e586416e-2bfe-4d42-b086-a99ef3a9c2f6", + "x-ms-ratelimit-remaining-subscription-reads": "11935", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194104Z:6c7a6930-ec7f-4b6b-9665-fd7908f972a0", - "x-request-time": "0.059" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152314Z:e586416e-2bfe-4d42-b086-a99ef3a9c2f6", + "x-request-time": "0.048" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.912489\u002B00:00", - "modifiedOn": "2022-09-15T03:11:50.5830108\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "eastus2", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -142,18 +142,18 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 4, + "currentNodeCount": 0, + "targetNodeCount": 3, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 2, - "idleNodeCount": 2, + "runningNodeCount": 0, + "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-16T18:30:06.83\u002B00:00", + "allocationState": "Resizing", + "allocationStateTransitionTime": "2022-09-23T15:21:36.391\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -171,7 +171,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -179,24 +179,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:41:05 GMT", + "Date": "Fri, 23 Sep 2022 15:23:16 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-b4ec53f4e5a8682ae3d02f6875616fa4-33e5fa82fcf70815-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-499276b761e1a4b8136654191cf46389-dc168ebe421d8ccd-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f31389eb-cc23-433e-8f69-fa1ea223ce55", - "x-ms-ratelimit-remaining-subscription-reads": "11941", + "x-ms-correlation-request-id": "fe69f301-df7b-4926-ad5c-dbaff1da42c9", + "x-ms-ratelimit-remaining-subscription-reads": "11934", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194105Z:f31389eb-cc23-433e-8f69-fa1ea223ce55", - "x-request-time": "0.097" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152316Z:fe69f301-df7b-4926-ad5c-dbaff1da42c9", + "x-request-time": "0.083" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -211,17 +211,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -235,7 +235,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -243,21 +243,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:41:06 GMT", + "Date": "Fri, 23 Sep 2022 15:23:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-ba6bf0d9c5dc08aac31807dde0837c3b-daadaf0da48cc11c-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-76953e5243573bfad2c8d97027ea3307-99f415094fafcf21-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cc187204-81c2-43a7-8fc6-6d318a5d200b", - "x-ms-ratelimit-remaining-subscription-writes": "1182", + "x-ms-correlation-request-id": "56fcc33e-607a-438a-a91a-2096cc62997e", + "x-ms-ratelimit-remaining-subscription-writes": "1179", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194107Z:cc187204-81c2-43a7-8fc6-6d318a5d200b", - "x-request-time": "0.096" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152317Z:56fcc33e-607a-438a-a91a-2096cc62997e", + "x-request-time": "0.082" }, "ResponseBody": { "secretsType": "AccountKey", @@ -265,15 +265,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:41:06 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:23:19 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -282,9 +282,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:41:07 GMT", - "ETag": "\u00220x8DA975B4CC57610\u0022", - "Last-Modified": "Thu, 15 Sep 2022 20:46:01 GMT", + "Date": "Fri, 23 Sep 2022 15:23:17 GMT", + "ETag": "\u00220x8DA9D76EE2580A0\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:18:55 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -293,32 +293,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 20:46:01 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:18:53 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "f0648f42-ca3c-4aee-9d9e-f2fe26dc4430", + "x-ms-meta-name": "000000000000000000000", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/python/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/python/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:41:06 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:23:20 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:41:07 GMT", + "Date": "Fri, 23 Sep 2022 15:23:18 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -326,12 +326,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -339,7 +339,7 @@ "Connection": "keep-alive", "Content-Length": "295", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -349,7 +349,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python" } }, "StatusCode": 200, @@ -357,27 +357,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:41:07 GMT", + "Date": "Fri, 23 Sep 2022 15:23:18 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-66dfb7c2e815e25e3f0717645d8af683-1511836c02e7f411-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-5bf8782cc3f2f162b8f5e0d85e9b5070-fda7955920c49cdb-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b2911ac7-dd41-4c72-93c5-ff46fa2f67e0", - "x-ms-ratelimit-remaining-subscription-writes": "1172", + "x-ms-correlation-request-id": "1d15461b-c004-492c-b5fd-2636210d767f", + "x-ms-ratelimit-remaining-subscription-writes": "1165", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194107Z:b2911ac7-dd41-4c72-93c5-ff46fa2f67e0", - "x-request-time": "0.070" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152319Z:1d15461b-c004-492c-b5fd-2636210d767f", + "x-request-time": "0.074" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -389,14 +389,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python" }, "systemData": { - "createdAt": "2022-09-15T20:46:01.4252338\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:18:57.5027157\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T19:41:07.7523488\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:23:18.8854194\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -408,9 +408,9 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "937", + "Content-Length": "922", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -420,7 +420,7 @@ "isArchived": false, "componentSpec": { "command": "echo ${{outputs.output_path}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "tags": {}, @@ -442,26 +442,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1731", + "Content-Length": "1715", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:41:07 GMT", + "Date": "Fri, 23 Sep 2022 15:23:20 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-7ebc147cd2043b13a0c2644d7c6ca9d6-4c484175cc6e96bc-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-90c12962119fe868076ac9197ea29f93-49a52b7ff1d9cf86-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "63b29c59-ea00-4dc6-b026-9e6a7bc064fe", - "x-ms-ratelimit-remaining-subscription-writes": "1171", + "x-ms-correlation-request-id": "cb970fa3-efe8-410e-b658-98d27ae50259", + "x-ms-ratelimit-remaining-subscription-writes": "1164", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194108Z:63b29c59-ea00-4dc6-b026-9e6a7bc064fe", - "x-request-time": "0.349" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152320Z:cb970fa3-efe8-410e-b658-98d27ae50259", + "x-request-time": "0.520" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/4ce3ce6a-804a-4883-b306-8ba7a8814b6c", - "name": "4ce3ce6a-804a-4883-b306-8ba7a8814b6c", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/43d86a7f-0dca-437a-8ff0-447358c1dffe", + "name": "43d86a7f-0dca-437a-8ff0-447358c1dffe", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -471,7 +471,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "4ce3ce6a-804a-4883-b306-8ba7a8814b6c", + "version": "43d86a7f-0dca-437a-8ff0-447358c1dffe", "display_name": "hello_world_component_inline_1", "is_deterministic": "True", "type": "command", @@ -480,7 +480,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -490,11 +490,11 @@ } }, "systemData": { - "createdAt": "2022-09-16T03:15:10.2797562\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:23:19.9900524\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T03:15:10.455763\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:23:19.9900524\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -506,7 +506,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -514,24 +514,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:41:07 GMT", + "Date": "Fri, 23 Sep 2022 15:23:20 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-bca3c5feb71e12f0b9186f3f0c50adfe-d9f13473581eabcf-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-3a7a78fb421d1c9322efdc4ba81f5d9a-3cefd62131fca4ed-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d3636070-8ac3-42a4-8052-3976b8109e19", - "x-ms-ratelimit-remaining-subscription-reads": "11940", + "x-ms-correlation-request-id": "e693dfa2-a6b9-4f50-9ae3-4b786db55e88", + "x-ms-ratelimit-remaining-subscription-reads": "11933", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194108Z:d3636070-8ac3-42a4-8052-3976b8109e19", - "x-request-time": "0.074" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152321Z:e693dfa2-a6b9-4f50-9ae3-4b786db55e88", + "x-request-time": "0.077" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -546,17 +546,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -570,7 +570,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -578,21 +578,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:41:08 GMT", + "Date": "Fri, 23 Sep 2022 15:23:21 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-80c6e110d8e9a41f8a22e7c34ff183eb-11a6f58a6310bb29-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-cc4fccb313dbe865e89d0b2e773a493e-5a845b8264386458-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1935a3f4-216a-4f43-83f2-668366e7fd45", - "x-ms-ratelimit-remaining-subscription-writes": "1181", + "x-ms-correlation-request-id": "efe5ba44-c8f4-4817-9c12-0705b01e1c39", + "x-ms-ratelimit-remaining-subscription-writes": "1178", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194108Z:1935a3f4-216a-4f43-83f2-668366e7fd45", - "x-request-time": "0.095" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152321Z:efe5ba44-c8f4-4817-9c12-0705b01e1c39", + "x-request-time": "0.125" }, "ResponseBody": { "secretsType": "AccountKey", @@ -600,15 +600,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:41:07 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:23:24 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -617,9 +617,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:41:08 GMT", - "ETag": "\u00220x8DA975B4CC57610\u0022", - "Last-Modified": "Thu, 15 Sep 2022 20:46:01 GMT", + "Date": "Fri, 23 Sep 2022 15:23:22 GMT", + "ETag": "\u00220x8DA9D76EE2580A0\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:18:55 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -628,32 +628,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 20:46:01 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:18:53 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "f0648f42-ca3c-4aee-9d9e-f2fe26dc4430", + "x-ms-meta-name": "000000000000000000000", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/python/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/python/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:41:07 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:23:24 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:41:08 GMT", + "Date": "Fri, 23 Sep 2022 15:23:22 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -661,12 +661,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -674,7 +674,7 @@ "Connection": "keep-alive", "Content-Length": "295", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -684,7 +684,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python" } }, "StatusCode": 200, @@ -692,27 +692,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:41:09 GMT", + "Date": "Fri, 23 Sep 2022 15:23:23 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-d0b6522688d23495fd1335f92ef5e02d-5ef77602c4a8cc2b-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-3c8c3e757cb2f773252e4c71cc23f754-1dffc1f5e827f5d0-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "85897533-94e9-425b-850f-747d1bfc8342", - "x-ms-ratelimit-remaining-subscription-writes": "1170", + "x-ms-correlation-request-id": "820fc4b8-9728-4db1-a39d-098fc72f713e", + "x-ms-ratelimit-remaining-subscription-writes": "1163", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194110Z:85897533-94e9-425b-850f-747d1bfc8342", - "x-request-time": "0.072" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152323Z:820fc4b8-9728-4db1-a39d-098fc72f713e", + "x-request-time": "0.064" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -724,14 +724,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python" }, "systemData": { - "createdAt": "2022-09-15T20:46:01.4252338\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:18:57.5027157\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T19:41:10.0385364\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:23:23.2869956\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -743,9 +743,9 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "937", + "Content-Length": "922", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -755,7 +755,7 @@ "isArchived": false, "componentSpec": { "command": "echo ${{outputs.output_path}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "tags": {}, @@ -777,26 +777,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1732", + "Content-Length": "1715", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:41:11 GMT", + "Date": "Fri, 23 Sep 2022 15:23:24 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-cec57690435718869070be7e3a990e99-6b27d67d11ae95fe-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-fdb587dd9a18f2e388398cc2f8cd9424-3af4bffa00c3d93a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "93cd1d81-9ad0-4a62-a231-d333621953c9", - "x-ms-ratelimit-remaining-subscription-writes": "1169", + "x-ms-correlation-request-id": "b6529c29-5e5c-4502-a0f5-20868b9cb4af", + "x-ms-ratelimit-remaining-subscription-writes": "1162", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194112Z:93cd1d81-9ad0-4a62-a231-d333621953c9", - "x-request-time": "0.329" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152324Z:b6529c29-5e5c-4502-a0f5-20868b9cb4af", + "x-request-time": "0.535" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/5e2bbeaf-abc8-42eb-b92d-6a3b74f9eb14", - "name": "5e2bbeaf-abc8-42eb-b92d-6a3b74f9eb14", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/4beb9eb4-046e-423e-a3d3-73382776a076", + "name": "4beb9eb4-046e-423e-a3d3-73382776a076", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -806,7 +806,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "5e2bbeaf-abc8-42eb-b92d-6a3b74f9eb14", + "version": "4beb9eb4-046e-423e-a3d3-73382776a076", "display_name": "hello_world_component_inline_2", "is_deterministic": "True", "type": "command", @@ -815,7 +815,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -825,11 +825,11 @@ } }, "systemData": { - "createdAt": "2022-09-16T03:15:13.1945444\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:23:24.2098122\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T03:15:13.3859978\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:23:24.2098122\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -841,7 +841,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -849,24 +849,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:41:11 GMT", + "Date": "Fri, 23 Sep 2022 15:23:24 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-6e9cad4b8f638223470e4ebc083705d6-8ad49a18bf0db2e5-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-8c4d8d5404d3d1eca15ef3ea05ba9c0a-7873edcb39b28140-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f1fb4729-c72a-471b-9e09-f5dcb39f4f4a", - "x-ms-ratelimit-remaining-subscription-reads": "11939", + "x-ms-correlation-request-id": "7b0b2881-a019-4867-8892-6552f126bfd4", + "x-ms-ratelimit-remaining-subscription-reads": "11932", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194112Z:f1fb4729-c72a-471b-9e09-f5dcb39f4f4a", - "x-request-time": "0.100" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152325Z:7b0b2881-a019-4867-8892-6552f126bfd4", + "x-request-time": "0.091" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -881,17 +881,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -905,7 +905,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -913,21 +913,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:41:13 GMT", + "Date": "Fri, 23 Sep 2022 15:23:25 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-b1d8664eab9c667c1a85ad0c187a29e8-c0d8294c3590e047-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-7e2a85b9ad96414aac00ecae48725e52-dcca4cf2c60ae412-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2937a9ac-c39f-4eb1-af08-cd4c052e3d1e", - "x-ms-ratelimit-remaining-subscription-writes": "1180", + "x-ms-correlation-request-id": "28cafd66-de5d-45d9-b613-05ce8d1ad000", + "x-ms-ratelimit-remaining-subscription-writes": "1177", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194113Z:2937a9ac-c39f-4eb1-af08-cd4c052e3d1e", - "x-request-time": "0.096" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152325Z:28cafd66-de5d-45d9-b613-05ce8d1ad000", + "x-request-time": "0.088" }, "ResponseBody": { "secretsType": "AccountKey", @@ -935,15 +935,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:41:12 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:23:28 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -952,9 +952,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:41:13 GMT", - "ETag": "\u00220x8DA96C8560C1979\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:14:00 GMT", + "Date": "Fri, 23 Sep 2022 15:23:26 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -963,32 +963,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:14:00 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ac7e0240-c159-4c9c-828e-d3e8df43e80f", + "x-ms-meta-name": "000000000000000000000", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:41:12 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:23:28 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:41:13 GMT", + "Date": "Fri, 23 Sep 2022 15:23:26 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -996,12 +996,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -1009,7 +1009,7 @@ "Connection": "keep-alive", "Content-Length": "288", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -1019,7 +1019,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -1027,27 +1027,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:41:14 GMT", + "Date": "Fri, 23 Sep 2022 15:23:27 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-01504be1dc215fc51062bdf7b103fd37-725f848e6bc40201-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-3530d9005a49d32dfd79215637887dcf-dbf6a75e5c1e0247-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "01b3f5b0-464e-4018-9215-4c373a0938e9", - "x-ms-ratelimit-remaining-subscription-writes": "1168", + "x-ms-correlation-request-id": "54411b7a-989f-409d-ae1e-9a508b73867d", + "x-ms-ratelimit-remaining-subscription-writes": "1161", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194115Z:01b3f5b0-464e-4018-9215-4c373a0938e9", - "x-request-time": "0.068" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152327Z:54411b7a-989f-409d-ae1e-9a508b73867d", + "x-request-time": "0.066" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -1059,14 +1059,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-15T03:14:01.4315202\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-16T19:41:14.9622911\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T15:23:27.5121721\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -1078,9 +1078,9 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "798", + "Content-Length": "783", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -1090,7 +1090,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World Inline 3", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "tags": {}, @@ -1107,26 +1107,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1624", + "Content-Length": "1607", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:41:14 GMT", + "Date": "Fri, 23 Sep 2022 15:23:28 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-2f76af4d19f009c2942c51091355d16c-e1ee6e9b16f1d0f4-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-b43f0b4e8fc8b5d37c2b87cd83eb2879-033cf9c48bc26093-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b879d890-c5bf-40b9-9c14-3fbf51e121c3", - "x-ms-ratelimit-remaining-subscription-writes": "1167", + "x-ms-correlation-request-id": "84ce1eaf-7dcf-46cc-8e31-d92684777e75", + "x-ms-ratelimit-remaining-subscription-writes": "1160", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194115Z:b879d890-c5bf-40b9-9c14-3fbf51e121c3", - "x-request-time": "0.400" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152328Z:84ce1eaf-7dcf-46cc-8e31-d92684777e75", + "x-request-time": "0.450" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/93310951-2608-443c-a777-e01fa415cc77", - "name": "93310951-2608-443c-a777-e01fa415cc77", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/375e998c-bba4-4fab-a31a-865af3861232", + "name": "375e998c-bba4-4fab-a31a-865af3861232", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1136,11 +1136,11 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "93310951-2608-443c-a777-e01fa415cc77", + "version": "375e998c-bba4-4fab-a31a-865af3861232", "display_name": "hello_world_component_inline_3", "is_deterministic": "True", "type": "command", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -1150,11 +1150,11 @@ } }, "systemData": { - "createdAt": "2022-09-16T03:15:16.0879344\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:23:28.3662745\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T03:15:16.2724256\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:23:28.3662745\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -1166,7 +1166,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1174,24 +1174,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:41:14 GMT", + "Date": "Fri, 23 Sep 2022 15:23:28 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-ebd62946b1df96fcdb109cdea7d0e80a-772b175003ab1dc4-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-79853fd1ea13c31bbe5df6985d13b2e4-29c56eead24c3413-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b5d0204e-f774-4392-b131-e60688b3c81a", - "x-ms-ratelimit-remaining-subscription-reads": "11938", + "x-ms-correlation-request-id": "4fa65018-40fb-4b19-b716-6a64c6e05e9f", + "x-ms-ratelimit-remaining-subscription-reads": "11931", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194115Z:b5d0204e-f774-4392-b131-e60688b3c81a", - "x-request-time": "0.104" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152329Z:4fa65018-40fb-4b19-b716-6a64c6e05e9f", + "x-request-time": "0.076" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -1206,17 +1206,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -1230,7 +1230,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1238,21 +1238,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:41:17 GMT", + "Date": "Fri, 23 Sep 2022 15:23:29 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-59a72273944bd007a25bd8a552fc9227-eeb299319d68b457-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-1f2eb18abc46e166ec0c6098f578209b-17e9b8df0ae80b64-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7f1fab67-8959-43a6-a880-2603789b24e5", - "x-ms-ratelimit-remaining-subscription-writes": "1179", + "x-ms-correlation-request-id": "b8ca0c88-ebc3-4634-9927-3943db6e770b", + "x-ms-ratelimit-remaining-subscription-writes": "1176", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194118Z:7f1fab67-8959-43a6-a880-2603789b24e5", - "x-request-time": "0.088" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152329Z:b8ca0c88-ebc3-4634-9927-3943db6e770b", + "x-request-time": "0.086" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1260,15 +1260,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:41:17 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:23:32 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -1277,9 +1277,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:41:18 GMT", - "ETag": "\u00220x8DA975B4CC57610\u0022", - "Last-Modified": "Thu, 15 Sep 2022 20:46:01 GMT", + "Date": "Fri, 23 Sep 2022 15:23:30 GMT", + "ETag": "\u00220x8DA9D76EE2580A0\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:18:55 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1288,32 +1288,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 20:46:01 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:18:53 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "f0648f42-ca3c-4aee-9d9e-f2fe26dc4430", + "x-ms-meta-name": "000000000000000000000", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/python/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/python/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:41:17 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:23:32 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:41:18 GMT", + "Date": "Fri, 23 Sep 2022 15:23:30 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1321,12 +1321,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -1334,7 +1334,7 @@ "Connection": "keep-alive", "Content-Length": "295", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -1344,7 +1344,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python" } }, "StatusCode": 200, @@ -1352,27 +1352,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:41:17 GMT", + "Date": "Fri, 23 Sep 2022 15:23:30 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-e8e4340923af24205f9748c9e8c2ff04-a26071712b9aaa75-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-b12b0f2dd35647e760e9f9d1d025ecee-f02091a2b24d6612-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "12592520-9ea2-4324-82dd-0d9a850079ef", - "x-ms-ratelimit-remaining-subscription-writes": "1166", + "x-ms-correlation-request-id": "31059d46-65a4-4e47-95ac-81dbe81a5772", + "x-ms-ratelimit-remaining-subscription-writes": "1159", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194118Z:12592520-9ea2-4324-82dd-0d9a850079ef", - "x-request-time": "0.071" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152331Z:31059d46-65a4-4e47-95ac-81dbe81a5772", + "x-request-time": "0.092" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -1384,14 +1384,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python" }, "systemData": { - "createdAt": "2022-09-15T20:46:01.4252338\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:18:57.5027157\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T19:41:18.6865399\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:23:31.2864206\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -1403,9 +1403,9 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "798", + "Content-Length": "783", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -1415,7 +1415,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World Inline 4", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "tags": {}, @@ -1432,26 +1432,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1624", + "Content-Length": "1607", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:41:18 GMT", + "Date": "Fri, 23 Sep 2022 15:23:32 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-76891960f6f463a3ff7a48fb40d2fde9-4871b9a5eaef1dd8-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-c94d5bf5a4db38f87b38b1c1a9e9948e-29742d403f29d58b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9fead07c-f892-4987-9f5f-3626917c3721", - "x-ms-ratelimit-remaining-subscription-writes": "1165", + "x-ms-correlation-request-id": "61930e69-3613-4916-a56a-a2ba49f6374c", + "x-ms-ratelimit-remaining-subscription-writes": "1158", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194119Z:9fead07c-f892-4987-9f5f-3626917c3721", - "x-request-time": "0.237" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152332Z:61930e69-3613-4916-a56a-a2ba49f6374c", + "x-request-time": "0.500" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/096dc4ae-ed4f-40ab-b4ff-ecaab83fd651", - "name": "096dc4ae-ed4f-40ab-b4ff-ecaab83fd651", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/14d07510-9fc8-471c-a90a-a1dc394aedaa", + "name": "14d07510-9fc8-471c-a90a-a1dc394aedaa", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1461,11 +1461,11 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "096dc4ae-ed4f-40ab-b4ff-ecaab83fd651", + "version": "14d07510-9fc8-471c-a90a-a1dc394aedaa", "display_name": "hello_world_component_inline_4", "is_deterministic": "True", "type": "command", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -1475,25 +1475,25 @@ } }, "systemData": { - "createdAt": "2022-09-16T03:15:18.9007267\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:23:32.3856076\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T03:15:19.0912286\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:23:32.3856076\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_800619980999?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_779705928548?api-version=2022-06-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "3282", + "Content-Length": "3354", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -1504,7 +1504,7 @@ "owner": "sdkteam" }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", - "displayName": "test_800619980999", + "displayName": "test_779705928548", "experimentName": "azure-ai-ml", "isArchived": false, "jobType": "Pipeline", @@ -1527,8 +1527,9 @@ "job_output_type": "uri_folder" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/4ce3ce6a-804a-4883-b306-8ba7a8814b6c" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/43d86a7f-0dca-437a-8ff0-447358c1dffe" }, "hello_world_component_inline_2": { "resources": null, @@ -1547,8 +1548,9 @@ "job_output_type": "uri_folder" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/5e2bbeaf-abc8-42eb-b92d-6a3b74f9eb14" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/4beb9eb4-046e-423e-a3d3-73382776a076" }, "hello_world_component_inline_3": { "resources": null, @@ -1562,8 +1564,9 @@ "computeId": null, "inputs": {}, "outputs": {}, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/93310951-2608-443c-a777-e01fa415cc77" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/375e998c-bba4-4fab-a31a-865af3861232" }, "hello_world_component_inline_4": { "resources": null, @@ -1577,8 +1580,9 @@ "computeId": null, "inputs": {}, "outputs": {}, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/096dc4ae-ed4f-40ab-b4ff-ecaab83fd651" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/14d07510-9fc8-471c-a90a-a1dc394aedaa" } }, "outputs": {}, @@ -1594,26 +1598,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "5685", + "Content-Length": "5784", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:41:24 GMT", + "Date": "Fri, 23 Sep 2022 15:23:40 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_800619980999?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_779705928548?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-42733c90e2635107d6596d79333dd979-b9f57b1405c47d54-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-ec3fed5ea59b3999d79c4f5c970e95d3-08a9ac5a506c5f2e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "80ebe616-f189-4c82-9a8d-c42e0fa65a77", - "x-ms-ratelimit-remaining-subscription-writes": "1164", + "x-ms-correlation-request-id": "4d99178d-a492-4d38-8fae-db432e90f914", + "x-ms-ratelimit-remaining-subscription-writes": "1157", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194124Z:80ebe616-f189-4c82-9a8d-c42e0fa65a77", - "x-request-time": "2.586" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152341Z:4d99178d-a492-4d38-8fae-db432e90f914", + "x-request-time": "3.654" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_800619980999", - "name": "test_800619980999", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_779705928548", + "name": "test_779705928548", "type": "Microsoft.MachineLearningServices/workspaces/jobs", "properties": { "description": "The hello world pipeline job with inline components", @@ -1634,14 +1638,14 @@ "azureml.defaultDataStoreName": "workspacefilestore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_800619980999", + "displayName": "test_779705928548", "status": "Preparing", "experimentName": "azure-ai-ml", "services": { "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null @@ -1649,7 +1653,7 @@ "Studio": { "jobServiceType": "Studio", "port": null, - "endpoint": "https://ml.azure.com/runs/test_800619980999?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "endpoint": "https://ml.azure.com/runs/test_779705928548?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, "properties": null @@ -1685,8 +1689,9 @@ "job_output_type": "uri_folder" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/4ce3ce6a-804a-4883-b306-8ba7a8814b6c" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/43d86a7f-0dca-437a-8ff0-447358c1dffe" }, "hello_world_component_inline_2": { "resources": null, @@ -1705,8 +1710,9 @@ "job_output_type": "uri_folder" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/5e2bbeaf-abc8-42eb-b92d-6a3b74f9eb14" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/4beb9eb4-046e-423e-a3d3-73382776a076" }, "hello_world_component_inline_3": { "resources": null, @@ -1720,8 +1726,9 @@ "computeId": null, "inputs": {}, "outputs": {}, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/93310951-2608-443c-a777-e01fa415cc77" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/375e998c-bba4-4fab-a31a-865af3861232" }, "hello_world_component_inline_4": { "resources": null, @@ -1735,8 +1742,9 @@ "computeId": null, "inputs": {}, "outputs": {}, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/096dc4ae-ed4f-40ab-b4ff-ecaab83fd651" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/14d07510-9fc8-471c-a90a-a1dc394aedaa" } }, "inputs": {}, @@ -1744,14 +1752,14 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-16T19:41:24.1126309\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:23:40.5181479\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } } ], "Variables": { - "name": "test_800619980999" + "name": "test_779705928548" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_dependency_label_resolution.json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_dependency_label_resolution.json index 06175152f7b1..f06e6912a6cb 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_dependency_label_resolution.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_dependency_label_resolution.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:44:15 GMT", + "Date": "Fri, 23 Sep 2022 15:28:55 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-b461b3e9eac8bf3b1a639ca3eca32271-ce14be2a5d622e76-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-d7cc7c46ae6c3392ae01569dd2aac2fe-336eeb3632df757c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8c45e33f-8847-4ae1-befc-68c7bf8a12f9", - "x-ms-ratelimit-remaining-subscription-reads": "11885", + "x-ms-correlation-request-id": "2508e6f6-cd12-437f-95e1-e7052926957b", + "x-ms-ratelimit-remaining-subscription-reads": "11878", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194415Z:8c45e33f-8847-4ae1-befc-68c7bf8a12f9", - "x-request-time": "0.085" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152856Z:2508e6f6-cd12-437f-95e1-e7052926957b", + "x-request-time": "0.134" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -47,17 +47,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -71,7 +71,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -79,21 +79,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:44:15 GMT", + "Date": "Fri, 23 Sep 2022 15:28:56 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-561334dd432e9a80718bc8a54c22eca4-59d823aa85d2a704-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-4de43d26161f4ee791a2f56d2fda7257-609138ad1427b1b6-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dcf470a0-8618-465d-8939-ca57aaaeb559", - "x-ms-ratelimit-remaining-subscription-writes": "1152", + "x-ms-correlation-request-id": "cf88e1ac-d746-4510-8af1-295225e0ba44", + "x-ms-ratelimit-remaining-subscription-writes": "1149", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194415Z:dcf470a0-8618-465d-8939-ca57aaaeb559", - "x-request-time": "0.089" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152857Z:cf88e1ac-d746-4510-8af1-295225e0ba44", + "x-request-time": "0.104" }, "ResponseBody": { "secretsType": "AccountKey", @@ -101,15 +101,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:44:14 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:28:59 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -118,9 +118,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:44:15 GMT", - "ETag": "\u00220x8DA96C8560C1979\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:14:00 GMT", + "Date": "Fri, 23 Sep 2022 15:28:57 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -129,32 +129,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:14:00 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ac7e0240-c159-4c9c-828e-d3e8df43e80f", + "x-ms-meta-name": "000000000000000000000", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:44:14 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:28:59 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:44:15 GMT", + "Date": "Fri, 23 Sep 2022 15:28:58 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -162,12 +162,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -175,7 +175,7 @@ "Connection": "keep-alive", "Content-Length": "288", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -185,7 +185,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -193,27 +193,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:44:16 GMT", + "Date": "Fri, 23 Sep 2022 15:28:59 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-ac91d4b39e7bfc1d720c2c65b9b20827-2c4bf04d4eafe8c7-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-f63d7aef5f600b353c1a095ff87ce2ae-03143b7741e7141a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b284fef5-ca65-4bf4-aebe-34b0dc22219f", - "x-ms-ratelimit-remaining-subscription-writes": "1114", + "x-ms-correlation-request-id": "2dad3da1-aa8c-4840-846a-0b4884599af8", + "x-ms-ratelimit-remaining-subscription-writes": "1107", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194416Z:b284fef5-ca65-4bf4-aebe-34b0dc22219f", - "x-request-time": "0.055" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152859Z:2dad3da1-aa8c-4840-846a-0b4884599af8", + "x-request-time": "0.483" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -225,28 +225,28 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-15T03:14:01.4315202\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-16T19:44:16.9202274\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T15:28:59.5550054\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_439292096526/versions/foo?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_783310960966/versions/foo?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1437", + "Content-Length": "1422", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -260,9 +260,9 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo $[[${{inputs.component_in_number}}]] \u0026 echo ${{inputs.component_in_path}} \u0026 echo ${{outputs.component_out_path}} \u003E ${{outputs.component_out_path}}/component_in_number", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", - "name": "test_439292096526", + "name": "test_783310960966", "description": "This is the basic command component", "tags": { "tag": "tagvalue", @@ -297,25 +297,25 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2320", + "Content-Length": "2303", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:44:17 GMT", + "Date": "Fri, 23 Sep 2022 15:29:00 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_439292096526/versions/foo?api-version=2022-05-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_783310960966/versions/foo?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-d47cbf07ad7712ccbf515297ab0b5435-4d25324782b3a359-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-3a42f67f592a667f639c8c3f07efa57d-bae06d60ca6fff64-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dab49274-29a9-4a2c-a9c1-63bf66478b43", - "x-ms-ratelimit-remaining-subscription-writes": "1113", + "x-ms-correlation-request-id": "52eceaf5-4d1c-4d75-a572-6dc0cbf4a921", + "x-ms-ratelimit-remaining-subscription-writes": "1106", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194418Z:dab49274-29a9-4a2c-a9c1-63bf66478b43", - "x-request-time": "0.946" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152901Z:52eceaf5-4d1c-4d75-a572-6dc0cbf4a921", + "x-request-time": "0.645" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_439292096526/versions/foo", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_783310960966/versions/foo", "name": "foo", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { @@ -328,7 +328,7 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_439292096526", + "name": "test_783310960966", "version": "foo", "display_name": "CommandComponentBasic", "is_deterministic": "True", @@ -356,7 +356,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -366,11 +366,11 @@ } }, "systemData": { - "createdAt": "2022-09-16T19:44:17.7639149\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:29:01.0347315\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T19:44:18.0523229\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:29:01.2087838\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -382,7 +382,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -390,24 +390,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:44:18 GMT", + "Date": "Fri, 23 Sep 2022 15:29:02 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-7d868c6c7005e81c7859a3f01d6c5029-116188b620455748-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-5e309116e2e3baac89e6ebc1285ad626-89d2b0e35b414a20-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8fb4d973-5e7b-4d0c-b4b0-ceb5589ec94c", - "x-ms-ratelimit-remaining-subscription-reads": "11884", + "x-ms-correlation-request-id": "116fd1d8-2bc3-448a-9c24-64a82b274128", + "x-ms-ratelimit-remaining-subscription-reads": "11877", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194418Z:8fb4d973-5e7b-4d0c-b4b0-ceb5589ec94c", - "x-request-time": "0.088" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152902Z:116fd1d8-2bc3-448a-9c24-64a82b274128", + "x-request-time": "0.089" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -422,17 +422,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -446,7 +446,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -454,21 +454,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:44:19 GMT", + "Date": "Fri, 23 Sep 2022 15:29:02 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-d16ee7ed2380865eda3f0e57b4a20ccb-d330fa86ad835a42-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-91bb8bca420fae57304ff7f1e5cda8cd-203b59502b4dbeda-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1c53421f-de70-41ec-8afd-742c23fe62b9", - "x-ms-ratelimit-remaining-subscription-writes": "1151", + "x-ms-correlation-request-id": "8372bd50-82e9-41e4-98fe-0ee1840c60d3", + "x-ms-ratelimit-remaining-subscription-writes": "1148", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194419Z:1c53421f-de70-41ec-8afd-742c23fe62b9", - "x-request-time": "0.099" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152903Z:8372bd50-82e9-41e4-98fe-0ee1840c60d3", + "x-request-time": "0.090" }, "ResponseBody": { "secretsType": "AccountKey", @@ -476,15 +476,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:44:18 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:29:05 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -493,9 +493,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:44:19 GMT", - "ETag": "\u00220x8DA96C8560C1979\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:14:00 GMT", + "Date": "Fri, 23 Sep 2022 15:29:03 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -504,32 +504,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:14:00 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ac7e0240-c159-4c9c-828e-d3e8df43e80f", + "x-ms-meta-name": "000000000000000000000", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:44:18 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:29:06 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:44:19 GMT", + "Date": "Fri, 23 Sep 2022 15:29:04 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -537,12 +537,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -550,7 +550,7 @@ "Connection": "keep-alive", "Content-Length": "288", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -560,7 +560,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -568,27 +568,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:44:21 GMT", + "Date": "Fri, 23 Sep 2022 15:29:04 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-2e0f14093d6ca226703f13d77876d6d1-f28f81b43df3e27b-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-36b8e5e96da533d984c0c9fe7cf6bb32-c15df2d6c4e1ca91-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cfd2e696-f4c5-4ed3-a83f-7c2c61443970", - "x-ms-ratelimit-remaining-subscription-writes": "1112", + "x-ms-correlation-request-id": "e932e383-5b6a-4ce0-b5e1-6959823bb317", + "x-ms-ratelimit-remaining-subscription-writes": "1105", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194421Z:cfd2e696-f4c5-4ed3-a83f-7c2c61443970", - "x-request-time": "0.065" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152905Z:e932e383-5b6a-4ce0-b5e1-6959823bb317", + "x-request-time": "0.069" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -600,28 +600,28 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-15T03:14:01.4315202\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-16T19:44:21.7535098\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T15:29:05.0859963\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_439292096526/versions/bar?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_783310960966/versions/bar?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1437", + "Content-Length": "1422", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -635,9 +635,9 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo $[[${{inputs.component_in_number}}]] \u0026 echo ${{inputs.component_in_path}} \u0026 echo ${{outputs.component_out_path}} \u003E ${{outputs.component_out_path}}/component_in_number", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", - "name": "test_439292096526", + "name": "test_783310960966", "description": "This is the basic command component", "tags": { "tag": "tagvalue", @@ -672,25 +672,25 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2319", + "Content-Length": "2303", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:44:22 GMT", + "Date": "Fri, 23 Sep 2022 15:29:06 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_439292096526/versions/bar?api-version=2022-05-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_783310960966/versions/bar?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-57cd76c34abeb3ffa6d4035c65b6ac0d-c7074b7f075c582d-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-351fb06e76a7c7b89d9fd009b5051241-fecfe9e7ad16df9d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4cc000b3-8726-488d-af04-fc4622906d3b", - "x-ms-ratelimit-remaining-subscription-writes": "1111", + "x-ms-correlation-request-id": "2ef965ca-db83-41d9-addc-7cb9b3af281b", + "x-ms-ratelimit-remaining-subscription-writes": "1104", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194422Z:4cc000b3-8726-488d-af04-fc4622906d3b", - "x-request-time": "0.801" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152906Z:2ef965ca-db83-41d9-addc-7cb9b3af281b", + "x-request-time": "1.032" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_439292096526/versions/bar", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_783310960966/versions/bar", "name": "bar", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { @@ -703,7 +703,7 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_439292096526", + "name": "test_783310960966", "version": "bar", "display_name": "CommandComponentBasic", "is_deterministic": "True", @@ -731,7 +731,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -741,11 +741,11 @@ } }, "systemData": { - "createdAt": "2022-09-16T19:44:22.304607\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:29:06.3636549\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T19:44:22.5340392\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:29:06.5491935\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -757,7 +757,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -765,24 +765,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:44:22 GMT", + "Date": "Fri, 23 Sep 2022 15:29:07 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-21f7aba17bee6764396fe75547447eb4-3bb7c29d623a6dd5-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-19d8f6db8c5c1d78c5331e4175b70f13-6984b7c75da81832-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c096aa56-6592-46ad-b6d8-e1fec246f50c", - "x-ms-ratelimit-remaining-subscription-reads": "11883", + "x-ms-correlation-request-id": "9ceb5700-44dc-48d1-acde-482066624f60", + "x-ms-ratelimit-remaining-subscription-reads": "11876", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194423Z:c096aa56-6592-46ad-b6d8-e1fec246f50c", - "x-request-time": "0.088" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152907Z:9ceb5700-44dc-48d1-acde-482066624f60", + "x-request-time": "0.079" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -797,17 +797,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -821,7 +821,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -829,21 +829,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:44:22 GMT", + "Date": "Fri, 23 Sep 2022 15:29:07 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-82c578b0e0db43d291c927d7c7d6cbfc-a5735221c00ea85e-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-f13659be66f947c6af039224110caf75-280607c2be17f46d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2e329677-81b9-407f-ad03-2a4c0cc547ff", - "x-ms-ratelimit-remaining-subscription-writes": "1150", + "x-ms-correlation-request-id": "2c1fafcf-b8a6-473a-b2ef-5314962245f0", + "x-ms-ratelimit-remaining-subscription-writes": "1147", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194423Z:2e329677-81b9-407f-ad03-2a4c0cc547ff", - "x-request-time": "0.077" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152908Z:2c1fafcf-b8a6-473a-b2ef-5314962245f0", + "x-request-time": "0.086" }, "ResponseBody": { "secretsType": "AccountKey", @@ -851,15 +851,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:44:22 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:29:10 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -868,9 +868,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:44:23 GMT", - "ETag": "\u00220x8DA96C8560C1979\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:14:00 GMT", + "Date": "Fri, 23 Sep 2022 15:29:08 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -879,32 +879,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:14:00 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ac7e0240-c159-4c9c-828e-d3e8df43e80f", + "x-ms-meta-name": "000000000000000000000", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:44:22 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:29:11 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:44:23 GMT", + "Date": "Fri, 23 Sep 2022 15:29:09 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -912,12 +912,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -925,7 +925,7 @@ "Connection": "keep-alive", "Content-Length": "288", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -935,7 +935,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -943,27 +943,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:44:23 GMT", + "Date": "Fri, 23 Sep 2022 15:29:09 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-eb56b35590f4ca8483b46b499685e994-e0703fc18cac5b86-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-d3fa7af4012df897ef3ce451ba10398f-68d626110efffefe-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "224b7be5-5c23-499b-bc45-c45888e7e3d0", - "x-ms-ratelimit-remaining-subscription-writes": "1110", + "x-ms-correlation-request-id": "4dfcc8f4-a4c8-4ed6-a12d-f9fcb029a98b", + "x-ms-ratelimit-remaining-subscription-writes": "1103", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194424Z:224b7be5-5c23-499b-bc45-c45888e7e3d0", - "x-request-time": "0.071" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152910Z:4dfcc8f4-a4c8-4ed6-a12d-f9fcb029a98b", + "x-request-time": "0.073" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -975,28 +975,28 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-15T03:14:01.4315202\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-16T19:44:24.3802059\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T15:29:10.2519625\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_439292096526/versions/baz?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_783310960966/versions/baz?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1437", + "Content-Length": "1422", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -1010,9 +1010,9 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo $[[${{inputs.component_in_number}}]] \u0026 echo ${{inputs.component_in_path}} \u0026 echo ${{outputs.component_out_path}} \u003E ${{outputs.component_out_path}}/component_in_number", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", - "name": "test_439292096526", + "name": "test_783310960966", "description": "This is the basic command component", "tags": { "tag": "tagvalue", @@ -1047,25 +1047,25 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2320", + "Content-Length": "2302", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:44:25 GMT", + "Date": "Fri, 23 Sep 2022 15:29:11 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_439292096526/versions/baz?api-version=2022-05-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_783310960966/versions/baz?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-f009cd4bebb4cd74e20c392add5a5b76-741b46dc28620a27-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-fe1caff2aa2b97b8377f1db6a3e4be73-b1c78558b73df06e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3533b8fd-9d7d-4ea8-b35c-113bbae44c0d", - "x-ms-ratelimit-remaining-subscription-writes": "1109", + "x-ms-correlation-request-id": "14dd91c5-5087-4644-8b3c-23bdb58cc02d", + "x-ms-ratelimit-remaining-subscription-writes": "1102", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194425Z:3533b8fd-9d7d-4ea8-b35c-113bbae44c0d", - "x-request-time": "0.926" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152911Z:14dd91c5-5087-4644-8b3c-23bdb58cc02d", + "x-request-time": "0.549" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_439292096526/versions/baz", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_783310960966/versions/baz", "name": "baz", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { @@ -1078,7 +1078,7 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_439292096526", + "name": "test_783310960966", "version": "baz", "display_name": "CommandComponentBasic", "is_deterministic": "True", @@ -1106,7 +1106,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -1116,11 +1116,11 @@ } }, "systemData": { - "createdAt": "2022-09-16T19:44:25.0003875\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:29:11.322667\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T19:44:25.2643941\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:29:11.4833495\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -1132,7 +1132,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1140,24 +1140,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:44:25 GMT", + "Date": "Fri, 23 Sep 2022 15:29:11 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-0f2821a1fb6f82420e2be9c143cc7029-cf86e5604c89df30-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-96de0a84a6ad56fbf70401e6e1167b49-8bb9fc665f14f00e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "05002b2a-7b5d-451e-8b6f-7613cdcb1748", - "x-ms-ratelimit-remaining-subscription-reads": "11882", + "x-ms-correlation-request-id": "51ae54e5-5e0a-412b-be28-dfecea44b2ec", + "x-ms-ratelimit-remaining-subscription-reads": "11875", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194425Z:05002b2a-7b5d-451e-8b6f-7613cdcb1748", - "x-request-time": "0.078" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152912Z:51ae54e5-5e0a-412b-be28-dfecea44b2ec", + "x-request-time": "0.105" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -1172,17 +1172,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -1196,7 +1196,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1204,21 +1204,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:44:26 GMT", + "Date": "Fri, 23 Sep 2022 15:29:13 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-89a0ff46cf4a85303c58c75e2b100804-24a66f3e6bd28dc8-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-3c3de2e9e95c62a7620d9d95aa660c5b-2c48c633340f0ecd-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "db43e3bc-4890-4b34-9fe1-d2098426c6e9", - "x-ms-ratelimit-remaining-subscription-writes": "1149", + "x-ms-correlation-request-id": "65bc2f8b-d988-4e06-b2e5-785a169647de", + "x-ms-ratelimit-remaining-subscription-writes": "1146", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194427Z:db43e3bc-4890-4b34-9fe1-d2098426c6e9", - "x-request-time": "0.117" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152913Z:65bc2f8b-d988-4e06-b2e5-785a169647de", + "x-request-time": "0.091" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1226,15 +1226,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:44:26 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:29:16 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -1243,9 +1243,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:44:26 GMT", - "ETag": "\u00220x8DA96C8560C1979\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:14:00 GMT", + "Date": "Fri, 23 Sep 2022 15:29:14 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1254,32 +1254,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:14:00 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ac7e0240-c159-4c9c-828e-d3e8df43e80f", + "x-ms-meta-name": "000000000000000000000", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:44:26 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:29:16 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:44:27 GMT", + "Date": "Fri, 23 Sep 2022 15:29:14 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1287,12 +1287,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -1300,7 +1300,7 @@ "Connection": "keep-alive", "Content-Length": "288", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -1310,7 +1310,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -1318,27 +1318,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:44:27 GMT", + "Date": "Fri, 23 Sep 2022 15:29:15 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-b73b8cacd68041fbda6ac05d699f9c40-8c503b10801cedef-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-b734529b677da9a4bf1e592d33622457-d0201c66bad478aa-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2ffbde17-f591-454e-a44c-973ad3e398b5", - "x-ms-ratelimit-remaining-subscription-writes": "1108", + "x-ms-correlation-request-id": "4788499e-d8ef-480e-bbdd-9e4bdd42ea03", + "x-ms-ratelimit-remaining-subscription-writes": "1101", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194428Z:2ffbde17-f591-454e-a44c-973ad3e398b5", - "x-request-time": "0.072" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152915Z:4788499e-d8ef-480e-bbdd-9e4bdd42ea03", + "x-request-time": "0.069" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -1350,28 +1350,28 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-15T03:14:01.4315202\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-16T19:44:28.1595528\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T15:29:15.7292533\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_439292096526/versions/foobar?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_783310960966/versions/foobar?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1440", + "Content-Length": "1425", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -1385,9 +1385,9 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo $[[${{inputs.component_in_number}}]] \u0026 echo ${{inputs.component_in_path}} \u0026 echo ${{outputs.component_out_path}} \u003E ${{outputs.component_out_path}}/component_in_number", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", - "name": "test_439292096526", + "name": "test_783310960966", "description": "This is the basic command component", "tags": { "tag": "tagvalue", @@ -1422,25 +1422,25 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2329", + "Content-Length": "2312", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:44:29 GMT", + "Date": "Fri, 23 Sep 2022 15:29:16 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_439292096526/versions/foobar?api-version=2022-05-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_783310960966/versions/foobar?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-d13ebe6ee093a3176e84a0c06985a5f1-969e9c6115cebe67-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-aa01d81300a92cbda6cc68c215b053ea-f374e088ae51cfa1-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1d132a94-6a5b-468e-ae62-9e21efd6ec12", - "x-ms-ratelimit-remaining-subscription-writes": "1107", + "x-ms-correlation-request-id": "82d405ef-45c9-47a1-b60e-c0e16479680f", + "x-ms-ratelimit-remaining-subscription-writes": "1100", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194429Z:1d132a94-6a5b-468e-ae62-9e21efd6ec12", - "x-request-time": "0.825" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152917Z:82d405ef-45c9-47a1-b60e-c0e16479680f", + "x-request-time": "0.554" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_439292096526/versions/foobar", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_783310960966/versions/foobar", "name": "foobar", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { @@ -1453,7 +1453,7 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_439292096526", + "name": "test_783310960966", "version": "foobar", "display_name": "CommandComponentBasic", "is_deterministic": "True", @@ -1481,7 +1481,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -1491,11 +1491,11 @@ } }, "systemData": { - "createdAt": "2022-09-16T19:44:29.1368482\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:29:16.6847131\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T19:44:29.4086561\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:29:16.8505412\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -1507,7 +1507,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1515,39 +1515,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:44:40 GMT", + "Date": "Fri, 23 Sep 2022 15:29:29 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-26d4c7b0fd776aef4f2a726a3c7fb7fb-1a44f635433f4d14-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-2718912fb471d30ec3a502e682789e95-cbf96afba425c05f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "64f0f9f2-4759-4af7-ad22-14655e093f1d", - "x-ms-ratelimit-remaining-subscription-reads": "11881", + "x-ms-correlation-request-id": "b1a211ee-6548-4fff-a272-828080e73c8d", + "x-ms-ratelimit-remaining-subscription-reads": "11874", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194440Z:64f0f9f2-4759-4af7-ad22-14655e093f1d", - "x-request-time": "0.043" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152930Z:b1a211ee-6548-4fff-a272-828080e73c8d", + "x-request-time": "0.038" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.912489\u002B00:00", - "modifiedOn": "2022-09-15T03:11:50.5830108\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "eastus2", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -1571,7 +1571,7 @@ "preemptedNodeCount": 0 }, "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-16T19:43:10.707\u002B00:00", + "allocationStateTransitionTime": "2022-09-23T15:25:36.433\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -1589,7 +1589,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1597,39 +1597,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:44:40 GMT", + "Date": "Fri, 23 Sep 2022 15:29:30 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-a5b2807848413c835f50b579c4b0fe20-80deff24f9b70b53-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-20766f36303749516be271ba37fd2a3c-837808333ba28066-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "405623a3-4bad-40fc-b9f7-8d3603926f77", - "x-ms-ratelimit-remaining-subscription-reads": "11880", + "x-ms-correlation-request-id": "f0c17ce0-911b-4fed-bb67-594325873727", + "x-ms-ratelimit-remaining-subscription-reads": "11873", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194441Z:405623a3-4bad-40fc-b9f7-8d3603926f77", - "x-request-time": "0.080" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152931Z:f0c17ce0-911b-4fed-bb67-594325873727", + "x-request-time": "0.036" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.912489\u002B00:00", - "modifiedOn": "2022-09-15T03:11:50.5830108\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "eastus2", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -1653,7 +1653,7 @@ "preemptedNodeCount": 0 }, "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-16T19:43:10.707\u002B00:00", + "allocationStateTransitionTime": "2022-09-23T15:25:36.433\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -1665,13 +1665,13 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_439292096526/versions?api-version=2022-05-01\u0026$orderBy=createdtime%20desc\u0026$top=1", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_783310960966/versions?api-version=2022-05-01\u0026$orderBy=createdtime%20desc\u0026$top=1", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1679,29 +1679,29 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:44:40 GMT", + "Date": "Fri, 23 Sep 2022 15:29:31 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-b7131128727526811c08cdb1d451706c-e8c361612e18bb75-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-465fe3e6c19eab47c97f27efa0c47855-0c949b3e0bb4eeef-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5be0ec0c-e4d3-4d31-8985-7f860c3067e4", - "x-ms-ratelimit-remaining-subscription-reads": "11879", + "x-ms-correlation-request-id": "1043cdcb-a442-4bd1-b69f-b67d7fd5c8eb", + "x-ms-ratelimit-remaining-subscription-reads": "11872", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194441Z:5be0ec0c-e4d3-4d31-8985-7f860c3067e4", - "x-request-time": "0.312" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152932Z:1043cdcb-a442-4bd1-b69f-b67d7fd5c8eb", + "x-request-time": "0.197" }, "ResponseBody": { "value": [ { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_439292096526/versions/foobar", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_783310960966/versions/foobar", "name": "foobar", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { @@ -1714,7 +1714,7 @@ "isArchived": false, "isAnonymous": false, "componentSpec": { - "name": "test_439292096526", + "name": "test_783310960966", "version": "foobar", "display_name": "CommandComponentBasic", "is_deterministic": "True", @@ -1742,7 +1742,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -1752,16 +1752,16 @@ } }, "systemData": { - "createdAt": "2022-09-16T19:44:29.1368482\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:29:16.6847131\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T19:44:29.4086561\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:29:16.8505412\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } ], - "nextLink": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_439292096526/versions?api-version=2022-05-01\u0026$orderBy=createdtime\u002Bdesc\u0026$top=1\u0026$skipToken=MQ%3d%3d" + "nextLink": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_783310960966/versions?api-version=2022-05-01\u0026$orderBy=createdtime\u002Bdesc\u0026$top=1\u0026$skipToken=MQ%3d%3d" } }, { @@ -1771,7 +1771,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1779,24 +1779,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:44:40 GMT", + "Date": "Fri, 23 Sep 2022 15:29:32 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-a8a6a3001a39ced234a4c35cadaa8284-3de6e61474d7bb4a-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-176f26c31b9e207db951ad995a75d051-9a92d90fccceb2b9-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2f805c52-42de-44f6-b5b4-fd4c5dde0a27", - "x-ms-ratelimit-remaining-subscription-reads": "11878", + "x-ms-correlation-request-id": "8b49d73f-6cb9-46b0-8300-2e8b7324a301", + "x-ms-ratelimit-remaining-subscription-reads": "11871", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194441Z:2f805c52-42de-44f6-b5b4-fd4c5dde0a27", - "x-request-time": "0.084" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152933Z:8b49d73f-6cb9-46b0-8300-2e8b7324a301", + "x-request-time": "0.104" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -1811,17 +1811,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -1835,7 +1835,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1843,21 +1843,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:44:41 GMT", + "Date": "Fri, 23 Sep 2022 15:29:33 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-d7d45610e833683aa9d87489cd00dfb1-584b37f0443f3dbf-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-27079b7bf426934d42f3c413bb3ffac8-497e78c410fcdebc-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d2e60d2b-11fd-4e42-a1b2-3888db980e4c", - "x-ms-ratelimit-remaining-subscription-writes": "1148", + "x-ms-correlation-request-id": "c396bcc2-2d02-44c5-85f0-c324594a4bb5", + "x-ms-ratelimit-remaining-subscription-writes": "1145", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194442Z:d2e60d2b-11fd-4e42-a1b2-3888db980e4c", - "x-request-time": "0.084" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152933Z:c396bcc2-2d02-44c5-85f0-c324594a4bb5", + "x-request-time": "0.088" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1865,15 +1865,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:44:41 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:29:36 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -1882,9 +1882,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:44:42 GMT", - "ETag": "\u00220x8DA96C8A69D2BBA\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:16:15 GMT", + "Date": "Fri, 23 Sep 2022 15:29:34 GMT", + "ETag": "\u00220x8DA9D770C570D84\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:19:46 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1893,32 +1893,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:16:15 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:19:45 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "e95adacf-11cf-47c5-85eb-199ded56347d", + "x-ms-meta-name": "8c59cb92-112f-4c04-bda0-1342b610850d", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "a26e0dac-f124-4247-b13c-6e81f9a28197", + "x-ms-meta-version": "c1f97989-616d-4b90-a0d6-bac9ea34bade", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:44:41 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:29:36 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:44:42 GMT", + "Date": "Fri, 23 Sep 2022 15:29:34 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1926,20 +1926,20 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_846737655850?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_803012820172?api-version=2022-06-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1600", + "Content-Length": "1618", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -1950,7 +1950,7 @@ "owner": "sdkteam" }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", - "displayName": "test_846737655850", + "displayName": "test_803012820172", "experimentName": "azure-ai-ml", "isArchived": false, "jobType": "Pipeline", @@ -1987,8 +1987,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "REMOTE.WORKSPACE.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_439292096526/versions/foobar" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_783310960966/versions/foobar" } }, "outputs": {}, @@ -2000,26 +2001,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3731", + "Content-Length": "3754", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:44:49 GMT", + "Date": "Fri, 23 Sep 2022 15:29:43 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_846737655850?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_803012820172?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-57e2d303dc59019f577a25722efaac65-9d0d527c7230c2cb-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-33672c8c8e7308c8d651e591c6dcccec-a978c66a1cf1a61a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d8595a25-5b2d-4c04-bf2e-bca49a46f92d", - "x-ms-ratelimit-remaining-subscription-writes": "1106", + "x-ms-correlation-request-id": "f0ace3c5-dc7a-4677-b03b-d7141c1fc9dc", + "x-ms-ratelimit-remaining-subscription-writes": "1099", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194450Z:d8595a25-5b2d-4c04-bf2e-bca49a46f92d", - "x-request-time": "5.833" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152943Z:f0ace3c5-dc7a-4677-b03b-d7141c1fc9dc", + "x-request-time": "3.594" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_846737655850", - "name": "test_846737655850", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_803012820172", + "name": "test_803012820172", "type": "Microsoft.MachineLearningServices/workspaces/jobs", "properties": { "description": "The hello world pipeline job with file inline components", @@ -2039,14 +2040,14 @@ "azureml.defaultDataStoreName": "workspaceblobstore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_846737655850", - "status": "Running", + "displayName": "test_803012820172", + "status": "Preparing", "experimentName": "azure-ai-ml", "services": { "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null @@ -2054,7 +2055,7 @@ "Studio": { "jobServiceType": "Studio", "port": null, - "endpoint": "https://ml.azure.com/runs/test_846737655850?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "endpoint": "https://ml.azure.com/runs/test_803012820172?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, "properties": null @@ -2090,8 +2091,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "REMOTE.WORKSPACE.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_439292096526/versions/foobar" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_783310960966/versions/foobar" } }, "inputs": { @@ -2111,15 +2113,15 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-16T19:44:48.8204599\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:29:43.0183637\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } } ], "Variables": { - "component_name": "test_439292096526", - "job_name": "test_846737655850" + "component_name": "test_783310960966", + "job_name": "test_803012820172" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_download.json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_download.json deleted file mode 100644 index ec11fd195d38..000000000000 --- a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_download.json +++ /dev/null @@ -1,1085 +0,0 @@ -{ - "Entries": [ - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/helloworld_pipeline_job_quick_with_output_2022W37_test_pipeline_job_download?api-version=2022-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:44:52 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-5d32e16a34f03121be972d4b993403a9-9f7ad44e81cc0a42-01\u0022", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-eastus2euap-02", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "80e9d998-5803-449a-a7d8-ca6e0be5f1ce", - "x-ms-ratelimit-remaining-subscription-reads": "11877", - "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194453Z:80e9d998-5803-449a-a7d8-ca6e0be5f1ce", - "x-request-time": "0.059" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/helloworld_pipeline_job_quick_with_output_2022W37_test_pipeline_job_download", - "name": "helloworld_pipeline_job_quick_with_output_2022W37_test_pipeline_job_download", - "type": "Microsoft.MachineLearningServices/workspaces/jobs", - "properties": { - "description": "The hello world pipeline job with inline command job having inputs", - "tags": { - "tag": "tagvalue", - "owner": "sdkteam" - }, - "properties": { - "mlflow.source.git.repoURL": "fake_git_url", - "mlflow.source.git.commit": "fake_git_commit", - "azureml.git.dirty": "fake_git_dirty_value", - "azureml.DevPlatv2": "true", - "azureml.runsource": "azureml.PipelineRun", - "runSource": "MFE", - "runType": "HTTP", - "azureml.parameters": "{}", - "azureml.continue_on_step_failure": "False", - "azureml.continue_on_failed_optional_input": "True", - "azureml.defaultComputeName": "cpu-cluster", - "azureml.defaultDataStoreName": "workspaceblobstore", - "azureml.pipelineComponent": "pipelinerun" - }, - "displayName": "helloworld_pipeline_job_quick_with_output_2022W37_test_pipeline_job_download", - "status": "Canceled", - "experimentName": "azure-ai-ml", - "services": { - "Tracking": { - "jobServiceType": "Tracking", - "port": null, - "endpoint": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", - "status": null, - "errorMessage": null, - "properties": null - }, - "Studio": { - "jobServiceType": "Studio", - "port": null, - "endpoint": "https://ml.azure.com/runs/helloworld_pipeline_job_quick_with_output_2022W37_test_pipeline_job_download?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", - "status": null, - "errorMessage": null, - "properties": null - } - }, - "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", - "isArchived": false, - "identity": null, - "componentId": null, - "jobType": "Pipeline", - "settings": { - "_source": "YAML.JOB" - }, - "jobs": { - "hello_world_inline_commandjob_1": { - "resources": null, - "distribution": null, - "limits": null, - "environment_variables": {}, - "name": "hello_world_inline_commandjob_1", - "type": "command", - "display_name": null, - "tags": {}, - "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", - "inputs": {}, - "outputs": { - "component_out_path_1": { - "value": "${{parent.outputs.job_out_path_1}}", - "type": "literal" - } - }, - "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/96b43c0d-4130-412b-9b67-ba96e48094c5" - }, - "hello_world_inline_commandjob_2": { - "resources": null, - "distribution": null, - "limits": null, - "environment_variables": {}, - "name": "hello_world_inline_commandjob_2", - "type": "command", - "display_name": null, - "tags": {}, - "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", - "inputs": {}, - "outputs": {}, - "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/731ba56c-4e29-4cb5-b70c-88c8625a2689" - } - }, - "inputs": {}, - "outputs": { - "job_out_path_1": { - "description": null, - "uri": null, - "mode": "ReadWriteMount", - "jobOutputType": "uri_folder" - } - }, - "sourceJobId": null - }, - "systemData": { - "createdAt": "2022-09-15T03:19:40.1248192\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/helloworld_pipeline_job_quick_with_output_2022W37_test_pipeline_job_download?api-version=2022-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:44:53 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-b61780f17208104785a77cab926f43bf-b5c573049b50d69a-01\u0022", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-eastus2euap-02", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4f344960-f5fd-4b39-bfe6-d3e3329b0fd3", - "x-ms-ratelimit-remaining-subscription-reads": "11876", - "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194454Z:4f344960-f5fd-4b39-bfe6-d3e3329b0fd3", - "x-request-time": "0.054" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/helloworld_pipeline_job_quick_with_output_2022W37_test_pipeline_job_download", - "name": "helloworld_pipeline_job_quick_with_output_2022W37_test_pipeline_job_download", - "type": "Microsoft.MachineLearningServices/workspaces/jobs", - "properties": { - "description": "The hello world pipeline job with inline command job having inputs", - "tags": { - "tag": "tagvalue", - "owner": "sdkteam" - }, - "properties": { - "mlflow.source.git.repoURL": "fake_git_url", - "mlflow.source.git.commit": "fake_git_commit", - "azureml.git.dirty": "fake_git_dirty_value", - "azureml.DevPlatv2": "true", - "azureml.runsource": "azureml.PipelineRun", - "runSource": "MFE", - "runType": "HTTP", - "azureml.parameters": "{}", - "azureml.continue_on_step_failure": "False", - "azureml.continue_on_failed_optional_input": "True", - "azureml.defaultComputeName": "cpu-cluster", - "azureml.defaultDataStoreName": "workspaceblobstore", - "azureml.pipelineComponent": "pipelinerun" - }, - "displayName": "helloworld_pipeline_job_quick_with_output_2022W37_test_pipeline_job_download", - "status": "Canceled", - "experimentName": "azure-ai-ml", - "services": { - "Tracking": { - "jobServiceType": "Tracking", - "port": null, - "endpoint": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", - "status": null, - "errorMessage": null, - "properties": null - }, - "Studio": { - "jobServiceType": "Studio", - "port": null, - "endpoint": "https://ml.azure.com/runs/helloworld_pipeline_job_quick_with_output_2022W37_test_pipeline_job_download?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", - "status": null, - "errorMessage": null, - "properties": null - } - }, - "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", - "isArchived": false, - "identity": null, - "componentId": null, - "jobType": "Pipeline", - "settings": { - "_source": "YAML.JOB" - }, - "jobs": { - "hello_world_inline_commandjob_1": { - "resources": null, - "distribution": null, - "limits": null, - "environment_variables": {}, - "name": "hello_world_inline_commandjob_1", - "type": "command", - "display_name": null, - "tags": {}, - "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", - "inputs": {}, - "outputs": { - "component_out_path_1": { - "value": "${{parent.outputs.job_out_path_1}}", - "type": "literal" - } - }, - "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/96b43c0d-4130-412b-9b67-ba96e48094c5" - }, - "hello_world_inline_commandjob_2": { - "resources": null, - "distribution": null, - "limits": null, - "environment_variables": {}, - "name": "hello_world_inline_commandjob_2", - "type": "command", - "display_name": null, - "tags": {}, - "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", - "inputs": {}, - "outputs": {}, - "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/731ba56c-4e29-4cb5-b70c-88c8625a2689" - } - }, - "inputs": {}, - "outputs": { - "job_out_path_1": { - "description": null, - "uri": null, - "mode": "ReadWriteMount", - "jobOutputType": "uri_folder" - } - }, - "sourceJobId": null - }, - "systemData": { - "createdAt": "2022-09-15T03:19:40.1248192\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:44:55 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-e280e3f8655ebed2a7e776766a186119-b9524ebe6d061c32-01\u0022", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-eastus2euap-02", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "04ffb045-8ffb-406d-a695-ef293882e345", - "x-ms-ratelimit-remaining-subscription-reads": "11875", - "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194456Z:04ffb045-8ffb-406d-a695-ef293882e345", - "x-request-time": "0.022" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000", - "name": "00000", - "type": "Microsoft.MachineLearningServices/workspaces", - "location": "eastus2euap", - "tags": {}, - "etag": null, - "properties": { - "friendlyName": "00000", - "description": "", - "storageAccount": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Storage/storageAccounts/sagh4dshas62md4", - "keyVault": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.Keyvault/vaults/kvtestmx34bfy7ff4j4", - "applicationInsights": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.insights/components/aigh4dshas62md4", - "hbiWorkspace": false, - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "imageBuildCompute": null, - "provisioningState": "Succeeded", - "v1LegacyMode": false, - "softDeleteEnabled": false, - "containerRegistry": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.ContainerRegistry/registries/crgh4dshas62md4", - "notebookInfo": { - "resourceId": "98964502079047b7825992607c515ab6", - "fqdn": "ml-sdkvnextcli-eastus2euap-a6d5a3b8-8717-4928-b8f7-4c9f36d21085.eastus2euap.notebooks.azure.net", - "isPrivateLinkEnabled": false, - "notebookPreparationError": null - }, - "storageHnsEnabled": false, - "workspaceId": "a6d5a3b8-8717-4928-b8f7-4c9f36d21085", - "linkedModelInventoryArmId": null, - "privateLinkCount": 0, - "publicNetworkAccess": "Enabled", - "discoveryUrl": "https://eastus2euap.api.azureml.ms/discovery", - "mlFlowTrackingUri": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000", - "sdkTelemetryAppInsightsKey": "a8e1f1e9-194b-4beb-a878-fceea1cbcd3a", - "sasGetterUri": "" - }, - "identity": { - "type": "SystemAssigned", - "principalId": "a9597cd2-33fd-481e-8f4c-1408eb79de58", - "tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47" - }, - "sku": { - "name": "Basic", - "tier": "Basic" - }, - "systemData": { - "createdAt": "2022-09-15T03:11:27.9398247Z", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:27.9398247Z", - "lastModifiedBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "lastModifiedByType": "Application" - } - } - }, - { - "RequestUri": "https://eastus2euap.api.azureml.ms/discovery", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-core/1.25.2 Python/3.8.6 (Windows-10-10.0.22000-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Access-Control-Allow-Credentials": "false", - "Access-Control-Allow-Origin": "*", - "Access-Control-Expose-Headers": "Content-Length, Content-Range, Content-Type, Retry-After, Location, x-request-time, x-ms-client-request-id", - "Access-Control-Max-Age": "2520", - "Connection": "keep-alive", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:44:56 GMT", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-eb0a628a7131fcd0eeae4666b896924d-d22e4c9dc9422d8f-00\u0022", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", - "X-Content-Type-Options": [ - "nosniff", - "nosniff" - ], - "x-ms-response-type": "standard", - "x-request-time": "0.007" - }, - "ResponseBody": { - "api": "https://eastus2euap.api.azureml.ms", - "catalog": "https://catalog.cortanaanalytics.com", - "experimentation": "https://eastus2euap.experiments.azureml.net", - "gallery": "https://gallery.cortanaintelligence.com/project", - "history": "https://eastus2euap.experiments.azureml.net", - "hyperdrive": "https://eastus2euap.experiments.azureml.net", - "labeling": "https://eastus2euap.experiments.azureml.net", - "modelmanagement": "https://eastus2euap.modelmanagement.azureml.net", - "pipelines": "https://eastus2euap.aether.ms", - "studio": "https://ml.azure.com" - } - }, - { - "RequestUri": "https://eastus2euap.api.azureml.ms/history/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/rundata", - "RequestMethod": "POST", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "177", - "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" - }, - "RequestBody": { - "runId": "helloworld_pipeline_job_quick_with_output_2022W37_test_pipeline_job_download", - "selectRunMetadata": true, - "selectRunDefinition": true, - "selectJobSpecification": true - }, - "StatusCode": 200, - "ResponseHeaders": { - "Connection": "keep-alive", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:44:58 GMT", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", - "X-Content-Type-Options": "nosniff", - "x-ms-response-type": "standard", - "x-request-time": "0.039" - }, - "ResponseBody": { - "runMetadata": { - "runNumber": 1663211980, - "rootRunId": "helloworld_pipeline_job_quick_with_output_2022W37_test_pipeline_job_download", - "createdUtc": "2022-09-15T03:19:40.1248192\u002B00:00", - "createdBy": { - "userObjectId": "0ae0e80d-3b29-44b3-ba9d-9b0d4d82327b", - "userPuId": null, - "userIdp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", - "userAltSecId": null, - "userIss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", - "userTenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "userName": "10832f61-6ea1-44eb-9622-85f30271eec4", - "upn": null - }, - "userId": "0ae0e80d-3b29-44b3-ba9d-9b0d4d82327b", - "token": null, - "tokenExpiryTimeUtc": null, - "error": null, - "warnings": null, - "revision": 6, - "statusRevision": 0, - "runUuid": "8397f9a9-934b-42d4-82b5-d6450d183ba6", - "parentRunUuid": null, - "rootRunUuid": "8397f9a9-934b-42d4-82b5-d6450d183ba6", - "lastStartTimeUtc": null, - "currentComputeTime": null, - "computeDuration": "00:01:08.7371020", - "effectiveStartTimeUtc": null, - "lastModifiedBy": { - "userObjectId": "0ae0e80d-3b29-44b3-ba9d-9b0d4d82327b", - "userPuId": null, - "userIdp": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", - "userAltSecId": null, - "userIss": "https://sts.windows.net/72f988bf-86f1-41af-91ab-2d7cd011db47/", - "userTenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47", - "userName": "10832f61-6ea1-44eb-9622-85f30271eec4", - "upn": null - }, - "lastModifiedUtc": "2022-09-15T03:19:42.7453485\u002B00:00", - "duration": "00:01:08.7371020", - "cancelationReason": null, - "currentAttemptId": null, - "runId": "helloworld_pipeline_job_quick_with_output_2022W37_test_pipeline_job_download", - "parentRunId": null, - "experimentId": "d750c5b2-6a54-4086-86eb-7ba97a077dfc", - "status": "Canceled", - "startTimeUtc": "2022-09-15T03:19:40.5948462\u002B00:00", - "endTimeUtc": "2022-09-15T03:20:49.3319482\u002B00:00", - "scheduleId": null, - "displayName": "helloworld_pipeline_job_quick_with_output_2022W37_test_pipeline_job_download", - "name": null, - "dataContainerId": "dcid.helloworld_pipeline_job_quick_with_output_2022W37_test_pipeline_job_download", - "description": "The hello world pipeline job with inline command job having inputs", - "hidden": false, - "runType": "azureml.PipelineRun", - "runTypeV2": { - "orchestrator": "Pipeline", - "traits": [ - "azureml.PipelineRun", - "MFE", - "HTTP", - "DevPlatv2" - ], - "attribution": null, - "computeType": null - }, - "properties": { - "mlflow.source.git.repoURL": "https://msdata.visualstudio.com/Vienna/_git/sdk-cli-v2", - "mlflow.source.git.commit": "5c3002d6cdb000e7f7f5beed15b99f95b0d62cbe", - "azureml.git.dirty": "False", - "azureml.DevPlatv2": "true", - "azureml.runsource": "azureml.PipelineRun", - "runSource": "MFE", - "runType": "HTTP", - "azureml.parameters": "{}", - "azureml.continue_on_step_failure": "False", - "azureml.continue_on_failed_optional_input": "True", - "azureml.defaultComputeName": "cpu-cluster", - "azureml.defaultDataStoreName": "workspaceblobstore", - "azureml.pipelineComponent": "pipelinerun" - }, - "parameters": {}, - "actionUris": { - "Cancel": "https://eastus2euap.api.azureml.ms/studioservice/api/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/workspaces/00000/PipelineRuns/helloworld_pipeline_job_quick_with_output_2022W37_test_pipeline_job_download/cancel" - }, - "scriptName": null, - "target": null, - "uniqueChildRunComputeTargets": [ - "cpu-cluster" - ], - "tags": { - "tag": "tagvalue", - "owner": "sdkteam" - }, - "settings": {}, - "services": {}, - "inputDatasets": [], - "outputDatasets": [], - "runDefinition": null, - "jobSpecification": null, - "primaryMetricName": null, - "createdFrom": null, - "cancelUri": "https://eastus2euap.api.azureml.ms/studioservice/api/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/workspaces/00000/PipelineRuns/helloworld_pipeline_job_quick_with_output_2022W37_test_pipeline_job_download/cancel", - "completeUri": null, - "diagnosticsUri": null, - "computeRequest": null, - "compute": null, - "retainForLifetimeOfWorkspace": false, - "queueingInfo": null, - "inputs": {}, - "outputs": { - "default": { - "assetId": "azureml://locations/eastus2euap/workspaces/a6d5a3b8-8717-4928-b8f7-4c9f36d21085/data/azureml_helloworld_pipeline_job_quick_with_output_2022W37_test_pipeline_job_download_output_data_default/versions/1", - "type": "UriFolder" - } - } - }, - "runDefinition": { - "JobType": "Pipeline", - "PipelineJobType": "AzureML", - "Pipeline": null, - "ComputeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", - "RunId": null, - "Settings": { - "_source": "YAML.JOB" - }, - "ComponentJobs": null, - "Inputs": {}, - "Outputs": { - "job_out_path_1": { - "JobOutputType": 3, - "Uri": null, - "Mode": 0, - "Description": null - } - }, - "Bindings": null, - "Jobs": { - "hello_world_inline_commandjob_1": { - "resources": null, - "distribution": null, - "limits": null, - "environment_variables": {}, - "name": "hello_world_inline_commandjob_1", - "type": "command", - "display_name": null, - "tags": {}, - "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", - "inputs": {}, - "outputs": { - "component_out_path_1": { - "value": "${{parent.outputs.job_out_path_1}}", - "type": "literal" - } - }, - "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/96b43c0d-4130-412b-9b67-ba96e48094c5" - }, - "hello_world_inline_commandjob_2": { - "resources": null, - "distribution": null, - "limits": null, - "environment_variables": {}, - "name": "hello_world_inline_commandjob_2", - "type": "command", - "display_name": null, - "tags": {}, - "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", - "inputs": {}, - "outputs": {}, - "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/731ba56c-4e29-4cb5-b70c-88c8625a2689" - } - }, - "InputBindings": {}, - "OutputBindings": { - "job_out_path_1": { - "DatastoreId": null, - "PathOnDatastore": null, - "PathOnCompute": null, - "Description": null, - "Uri": null, - "Mode": "ReadWriteMount", - "AssetUri": null, - "IsAssetJobOutput": true, - "JobOutputType": 3 - } - }, - "SourceJobId": null, - "ProvisioningState": "Succeeded", - "ParentJobName": null, - "DisplayName": "helloworld_pipeline_job_quick_with_output_2022W37_test_pipeline_job_download", - "ExperimentName": "azure-ai-ml", - "Status": "NotStarted", - "InteractionEndpoints": null, - "Identity": null, - "Compute": null, - "Priority": null, - "Output": null, - "IsArchived": false, - "Schedule": null, - "ComponentId": null, - "Description": "The hello world pipeline job with inline command job having inputs", - "Tags": { - "tag": "tagvalue", - "owner": "sdkteam" - }, - "Properties": { - "mlflow.source.git.repoURL": "https://msdata.visualstudio.com/Vienna/_git/sdk-cli-v2", - "mlflow.source.git.commit": "5c3002d6cdb000e7f7f5beed15b99f95b0d62cbe", - "azureml.git.dirty": "False" - } - }, - "jobSpecification": null, - "systemSettings": null - } - }, - { - "RequestUri": "https://eastus2euap.api.azureml.ms/data/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/dataversion/batchGetResolvedUris", - "RequestMethod": "POST", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "216", - "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" - }, - "RequestBody": { - "values": [ - "azureml://locations/eastus2euap/workspaces/a6d5a3b8-8717-4928-b8f7-4c9f36d21085/data/azureml_helloworld_pipeline_job_quick_with_output_2022W37_test_pipeline_job_download_output_data_default/versions/1" - ] - }, - "StatusCode": 200, - "ResponseHeaders": { - "Connection": "keep-alive", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:44:59 GMT", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Strict-Transport-Security": "max-age=15724800; includeSubDomains; preload", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", - "X-Content-Type-Options": "nosniff", - "x-ms-response-type": "standard", - "x-request-time": "0.029" - }, - "ResponseBody": { - "values": { - "azureml://locations/eastus2euap/workspaces/a6d5a3b8-8717-4928-b8f7-4c9f36d21085/data/azureml_helloworld_pipeline_job_quick_with_output_2022W37_test_pipeline_job_download_output_data_default/versions/1": { - "uri": "azureml://subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000/datastores/workspaceartifactstore/paths/ExperimentRun/dcid.helloworld_pipeline_job_quick_with_output_2022W37_test_pipeline_job_download/", - "type": "UriFolder", - "legacyDatasetType": null - } - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores?api-version=2022-05-01\u0026count=30\u0026isDefault=true\u0026orderByAsc=false", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:45:00 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-218fd18a95dd9cd2573f42718dd6522b-f3aea7976992eb03-01\u0022", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-eastus2euap-02", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bdb5f5e2-49e7-45d7-bfeb-402dd68d5e1a", - "x-ms-ratelimit-remaining-subscription-reads": "11874", - "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194500Z:bdb5f5e2-49e7-45d7-bfeb-402dd68d5e1a", - "x-request-time": "0.076" - }, - "ResponseBody": { - "value": [ - { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", - "name": "workspaceblobstore", - "type": "Microsoft.MachineLearningServices/workspaces/datastores", - "properties": { - "description": null, - "tags": null, - "properties": null, - "isDefault": true, - "credentials": { - "credentialsType": "AccountKey" - }, - "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", - "endpoint": "core.windows.net", - "protocol": "https", - "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" - }, - "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", - "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", - "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", - "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", - "lastModifiedByType": "Application" - } - } - ] - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceartifactstore?api-version=2022-05-01", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:45:00 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-dfc993441994699c15008b36aa852bf7-3a49a69838819c93-01\u0022", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-eastus2euap-02", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6b3af0bf-ef9f-4c47-a082-bf5e96c3683f", - "x-ms-ratelimit-remaining-subscription-reads": "11873", - "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194500Z:6b3af0bf-ef9f-4c47-a082-bf5e96c3683f", - "x-request-time": "0.096" - }, - "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceartifactstore", - "name": "workspaceartifactstore", - "type": "Microsoft.MachineLearningServices/workspaces/datastores", - "properties": { - "description": null, - "tags": null, - "properties": null, - "isDefault": false, - "credentials": { - "credentialsType": "AccountKey" - }, - "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml", - "endpoint": "core.windows.net", - "protocol": "https", - "serviceDataAccessAuthIdentity": "None" - }, - "systemData": { - "createdAt": "2022-09-15T03:11:44.0176484\u002B00:00", - "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", - "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:45.0043257\u002B00:00", - "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", - "lastModifiedByType": "Application" - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceartifactstore/listSecrets?api-version=2022-05-01", - "RequestMethod": "POST", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Encoding": "gzip", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:45:00 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-575ae8cf1c76690a47242ec9290e094b-e4780e2230c35eed-01\u0022", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b658459a-8ff2-4515-94be-0c3b3c80b37c", - "x-ms-ratelimit-remaining-subscription-writes": "1147", - "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194500Z:b658459a-8ff2-4515-94be-0c3b3c80b37c", - "x-request-time": "0.142" - }, - "ResponseBody": { - "secretsType": "AccountKey", - "key": "dGhpcyBpcyBmYWtlIGtleQ==" - } - }, - { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml?restype=container\u0026comp=list\u0026prefix=ExperimentRun%2Fdcid.helloworld_pipeline_job_quick_with_output_2022W37_test_pipeline_job_download%2F\u0026include=metadata", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:44:59 GMT", - "x-ms-version": "2021-06-08" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Content-Type": "application/xml", - "Date": "Fri, 16 Sep 2022 19:45:00 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Transfer-Encoding": "chunked", - "Vary": "Origin", - "x-ms-version": "2021-06-08" - }, - "ResponseBody": "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CEnumerationResults ServiceEndpoint=\u0022https://sagh4dshas62md4.blob.core.windows.net/\u0022 ContainerName=\u0022azureml\u0022\u003E\u003CPrefix\u003EExperimentRun/dcid.helloworld_pipeline_job_quick_with_output_2022W37_test_pipeline_job_download/\u003C/Prefix\u003E\u003CBlobs\u003E\u003CBlob\u003E\u003CName\u003EExperimentRun/dcid.helloworld_pipeline_job_quick_with_output_2022W37_test_pipeline_job_download/logs/azureml/executionlogs.txt\u003C/Name\u003E\u003CProperties\u003E\u003CCreation-Time\u003EThu, 15 Sep 2022 03:19:41 GMT\u003C/Creation-Time\u003E\u003CLast-Modified\u003EThu, 15 Sep 2022 03:20:49 GMT\u003C/Last-Modified\u003E\u003CEtag\u003E0x8DA96C949ACF29D\u003C/Etag\u003E\u003CContent-Length\u003E259\u003C/Content-Length\u003E\u003CContent-Type\u003Eapplication/octet-stream\u003C/Content-Type\u003E\u003CContent-Encoding /\u003E\u003CContent-Language /\u003E\u003CContent-CRC64 /\u003E\u003CContent-MD5 /\u003E\u003CCache-Control /\u003E\u003CContent-Disposition /\u003E\u003CBlobType\u003EAppendBlob\u003C/BlobType\u003E\u003CLeaseStatus\u003Eunlocked\u003C/LeaseStatus\u003E\u003CLeaseState\u003Eavailable\u003C/LeaseState\u003E\u003CServerEncrypted\u003Etrue\u003C/ServerEncrypted\u003E\u003C/Properties\u003E\u003CMetadata /\u003E\u003COrMetadata /\u003E\u003C/Blob\u003E\u003CBlob\u003E\u003CName\u003EExperimentRun/dcid.helloworld_pipeline_job_quick_with_output_2022W37_test_pipeline_job_download/logs/azureml/stderrlogs.txt\u003C/Name\u003E\u003CProperties\u003E\u003CCreation-Time\u003EThu, 15 Sep 2022 03:19:41 GMT\u003C/Creation-Time\u003E\u003CLast-Modified\u003EThu, 15 Sep 2022 03:19:41 GMT\u003C/Last-Modified\u003E\u003CEtag\u003E0x8DA96C9210F8C8C\u003C/Etag\u003E\u003CContent-Length\u003E0\u003C/Content-Length\u003E\u003CContent-Type\u003Eapplication/octet-stream\u003C/Content-Type\u003E\u003CContent-Encoding /\u003E\u003CContent-Language /\u003E\u003CContent-CRC64 /\u003E\u003CContent-MD5 /\u003E\u003CCache-Control /\u003E\u003CContent-Disposition /\u003E\u003CBlobType\u003EAppendBlob\u003C/BlobType\u003E\u003CLeaseStatus\u003Eunlocked\u003C/LeaseStatus\u003E\u003CLeaseState\u003Eavailable\u003C/LeaseState\u003E\u003CServerEncrypted\u003Etrue\u003C/ServerEncrypted\u003E\u003C/Properties\u003E\u003CMetadata /\u003E\u003COrMetadata /\u003E\u003C/Blob\u003E\u003CBlob\u003E\u003CName\u003EExperimentRun/dcid.helloworld_pipeline_job_quick_with_output_2022W37_test_pipeline_job_download/logs/azureml/stdoutlogs.txt\u003C/Name\u003E\u003CProperties\u003E\u003CCreation-Time\u003EThu, 15 Sep 2022 03:19:41 GMT\u003C/Creation-Time\u003E\u003CLast-Modified\u003EThu, 15 Sep 2022 03:19:41 GMT\u003C/Last-Modified\u003E\u003CEtag\u003E0x8DA96C9210FDA9E\u003C/Etag\u003E\u003CContent-Length\u003E0\u003C/Content-Length\u003E\u003CContent-Type\u003Eapplication/octet-stream\u003C/Content-Type\u003E\u003CContent-Encoding /\u003E\u003CContent-Language /\u003E\u003CContent-CRC64 /\u003E\u003CContent-MD5 /\u003E\u003CCache-Control /\u003E\u003CContent-Disposition /\u003E\u003CBlobType\u003EAppendBlob\u003C/BlobType\u003E\u003CLeaseStatus\u003Eunlocked\u003C/LeaseStatus\u003E\u003CLeaseState\u003Eavailable\u003C/LeaseState\u003E\u003CServerEncrypted\u003Etrue\u003C/ServerEncrypted\u003E\u003C/Properties\u003E\u003CMetadata /\u003E\u003COrMetadata /\u003E\u003C/Blob\u003E\u003C/Blobs\u003E\u003CNextMarker /\u003E\u003C/EnumerationResults\u003E" - }, - { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml/ExperimentRun/dcid.helloworld_pipeline_job_quick_with_output_2022W37_test_pipeline_job_download/logs/azureml/executionlogs.txt", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:44:59 GMT", - "x-ms-range": "bytes=0-33554431", - "x-ms-version": "2021-06-08" - }, - "RequestBody": null, - "StatusCode": 206, - "ResponseHeaders": { - "Accept-Ranges": "bytes", - "Content-Length": "259", - "Content-Range": "bytes 0-258/259", - "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:45:00 GMT", - "ETag": "\u00220x8DA96C949ACF29D\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:20:49 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Vary": "Origin", - "x-ms-blob-committed-block-count": "2", - "x-ms-blob-type": "AppendBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:19:41 GMT", - "x-ms-lease-state": "available", - "x-ms-lease-status": "unlocked", - "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" - }, - "ResponseBody": "WzIwMjItMDktMTUgMDM6MTk6NDFaXSBTdWJtaXR0aW5nIDIgcnVucywgZmlyc3QgZml2ZSBhcmU6IDE5OTM5ODI0OjQ2MWMyMWNhLTI2ZTctNDRmNC1iNmVhLTRjMDJhMTA4N2NhMiwzNzVkYTgzOToxNWRmNjVjZi04ODcyLTQ5ZDktOGQyYS0wN2QzNTNiYTBiZjEKWzIwMjItMDktMTUgMDM6MjA6NDlaXSBFeGVjdXRpb24gb2YgZXhwZXJpbWVudCBjYW5jZWxlZCwgdXBkYXRlIGV4cGVyaW1lbnQgc3RhdHVzIGFuZCBjYW5jZWwgc3VibWl0dGVkIG5vZGVzCg==" - }, - { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml/ExperimentRun/dcid.helloworld_pipeline_job_quick_with_output_2022W37_test_pipeline_job_download/logs/azureml/stderrlogs.txt", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:44:59 GMT", - "x-ms-range": "bytes=0-33554431", - "x-ms-version": "2021-06-08" - }, - "RequestBody": null, - "StatusCode": 416, - "ResponseHeaders": { - "Content-Length": "249", - "Content-Range": "bytes */0", - "Content-Type": "application/xml", - "Date": "Fri, 16 Sep 2022 19:45:00 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Vary": "Origin", - "x-ms-error-code": "InvalidRange", - "x-ms-version": "2021-06-08" - }, - "ResponseBody": [ - "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CError\u003E\u003CCode\u003EInvalidRange\u003C/Code\u003E\u003CMessage\u003EThe range specified is invalid for the current size of the resource.\n", - "RequestId:cc9b4da8-d01e-0048-7904-ca5097000000\n", - "Time:2022-09-16T19:45:01.0878867Z\u003C/Message\u003E\u003C/Error\u003E" - ] - }, - { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml/ExperimentRun/dcid.helloworld_pipeline_job_quick_with_output_2022W37_test_pipeline_job_download/logs/azureml/stderrlogs.txt", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:45:00 GMT", - "x-ms-version": "2021-06-08" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Accept-Ranges": "bytes", - "Content-Length": "0", - "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:45:00 GMT", - "ETag": "\u00220x8DA96C9210F8C8C\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:19:41 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Vary": "Origin", - "x-ms-blob-committed-block-count": "0", - "x-ms-blob-type": "AppendBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:19:41 GMT", - "x-ms-lease-state": "available", - "x-ms-lease-status": "unlocked", - "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml/ExperimentRun/dcid.helloworld_pipeline_job_quick_with_output_2022W37_test_pipeline_job_download/logs/azureml/stdoutlogs.txt", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:45:00 GMT", - "x-ms-range": "bytes=0-33554431", - "x-ms-version": "2021-06-08" - }, - "RequestBody": null, - "StatusCode": 416, - "ResponseHeaders": { - "Content-Length": "249", - "Content-Range": "bytes */0", - "Content-Type": "application/xml", - "Date": "Fri, 16 Sep 2022 19:45:00 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Vary": "Origin", - "x-ms-error-code": "InvalidRange", - "x-ms-version": "2021-06-08" - }, - "ResponseBody": [ - "\uFEFF\u003C?xml version=\u00221.0\u0022 encoding=\u0022utf-8\u0022?\u003E\u003CError\u003E\u003CCode\u003EInvalidRange\u003C/Code\u003E\u003CMessage\u003EThe range specified is invalid for the current size of the resource.\n", - "RequestId:cc9b4dc3-d01e-0048-0e04-ca5097000000\n", - "Time:2022-09-16T19:45:01.1808326Z\u003C/Message\u003E\u003C/Error\u003E" - ] - }, - { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml/ExperimentRun/dcid.helloworld_pipeline_job_quick_with_output_2022W37_test_pipeline_job_download/logs/azureml/stdoutlogs.txt", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "application/xml", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:45:00 GMT", - "x-ms-version": "2021-06-08" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Accept-Ranges": "bytes", - "Content-Length": "0", - "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:45:00 GMT", - "ETag": "\u00220x8DA96C9210FDA9E\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:19:41 GMT", - "Server": [ - "Windows-Azure-Blob/1.0", - "Microsoft-HTTPAPI/2.0" - ], - "Vary": "Origin", - "x-ms-blob-committed-block-count": "0", - "x-ms-blob-type": "AppendBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:19:41 GMT", - "x-ms-lease-state": "available", - "x-ms-lease-status": "unlocked", - "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" - }, - "ResponseBody": null - } - ], - "Variables": { - "helloworld_pipeline_job_quick_with_output": "helloworld_pipeline_job_quick_with_output_2022W37" - } -} diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_automl_classification.json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_automl_classification.json index 0c5e79051fc8..619b1b78c684 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_automl_classification.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_automl_classification.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,39 +15,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:50:03 GMT", + "Date": "Fri, 23 Sep 2022 18:34:26 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-77d68f60bbb8a320ddf332955bf2dac4-ef63f25b64064656-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-fc6be2f509fa7632d9bebdab346a1a8d-259bf783b7e0c641-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5c0fcef1-bd26-4a59-8ac0-7e9d47508d47", - "x-ms-ratelimit-remaining-subscription-reads": "11807", + "x-ms-correlation-request-id": "1c7ab23c-14c5-4ac3-9447-5e5dfb02b732", + "x-ms-ratelimit-remaining-subscription-reads": "11994", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195004Z:5c0fcef1-bd26-4a59-8ac0-7e9d47508d47", - "x-request-time": "0.078" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183427Z:1c7ab23c-14c5-4ac3-9447-5e5dfb02b732", + "x-request-time": "0.052" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.912489\u002B00:00", - "modifiedOn": "2022-09-15T03:11:50.5830108\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "eastus2", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -60,18 +60,18 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 4, + "currentNodeCount": 2, + "targetNodeCount": 2, "nodeStateCounts": { - "preparingNodeCount": 0, - "runningNodeCount": 4, + "preparingNodeCount": 2, + "runningNodeCount": 0, "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-16T19:44:21.123\u002B00:00", + "allocationStateTransitionTime": "2022-09-23T18:33:28.045\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -89,7 +89,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -97,24 +97,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:50:04 GMT", + "Date": "Fri, 23 Sep 2022 18:34:29 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-45bc26e070710fd5b2bb9a4b047dba10-99552d43e45d9f3c-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-ab6b56845ba3bc8e90adcfe345657ac7-0cfc539ce18cb60d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "13430594-8c29-4502-afe1-cea8014e978a", - "x-ms-ratelimit-remaining-subscription-reads": "11806", + "x-ms-correlation-request-id": "9fb1ee33-d1db-4e6e-9ff9-3b185e77dd9e", + "x-ms-ratelimit-remaining-subscription-reads": "11993", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195005Z:13430594-8c29-4502-afe1-cea8014e978a", - "x-request-time": "0.117" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183430Z:9fb1ee33-d1db-4e6e-9ff9-3b185e77dd9e", + "x-request-time": "0.099" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -129,52 +129,22 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } } }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/mfeOperationResults/jc:a6d5a3b8-8717-4928-b8f7-4c9f36d21085:test_748333245781?api-version=2022-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Fri, 16 Sep 2022 19:50:05 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-46b67f545dcd5365dd3b0d8226470cf5-3d9f3e5efb12ad18-01\u0022", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9e2ed885-7748-4832-8542-afc629b2f01e", - "x-ms-ratelimit-remaining-subscription-reads": "11973", - "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195005Z:9e2ed885-7748-4832-8542-afc629b2f01e", - "x-request-time": "0.055" - }, - "ResponseBody": null - }, { "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore/listSecrets?api-version=2022-05-01", "RequestMethod": "POST", @@ -183,7 +153,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -191,21 +161,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:50:04 GMT", + "Date": "Fri, 23 Sep 2022 18:34:30 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-724d3860bc5b31777d434468915bf218-088661fe4f173f61-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-5fa0c5a6f938b341a98d3562219ec980-9b321e27acc35401-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e89d4f49-ada1-4bd8-943c-e32626d3bc26", - "x-ms-ratelimit-remaining-subscription-writes": "1102", + "x-ms-correlation-request-id": "1717dd0e-391d-4dc6-b1bb-4a6d7b2107a9", + "x-ms-ratelimit-remaining-subscription-writes": "1195", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195005Z:e89d4f49-ada1-4bd8-943c-e32626d3bc26", - "x-request-time": "0.103" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183430Z:1717dd0e-391d-4dc6-b1bb-4a6d7b2107a9", + "x-request-time": "0.080" }, "ResponseBody": { "secretsType": "AccountKey", @@ -213,15 +183,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/train/MLTable", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/train/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:50:04 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 18:34:32 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -230,9 +200,9 @@ "Content-Length": "242", "Content-MD5": "kmRcIQnGyx1Tyt/S3D45Mw==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:50:05 GMT", - "ETag": "\u00220x8DA9792C2AE667C\u0022", - "Last-Modified": "Fri, 16 Sep 2022 03:23:01 GMT", + "Date": "Fri, 23 Sep 2022 18:34:30 GMT", + "ETag": "\u00220x8DA9D7AA93D8CA1\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:45:37 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -241,32 +211,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Fri, 16 Sep 2022 03:23:01 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:45:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "15c62ba1-0a09-49e7-8fee-f6d1b87fada0", + "x-ms-meta-name": "c9f81fdd-4c82-49bb-aa8d-6a30441a587f", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "3071edef-e7d1-4a39-b99f-9bbef690a249", + "x-ms-meta-version": "3567aa39-b988-4057-86ae-6bec697d8a67", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/train/MLTable", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/train/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:50:04 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 18:34:33 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:50:05 GMT", + "Date": "Fri, 23 Sep 2022 18:34:30 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -274,7 +244,7 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, @@ -285,7 +255,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -293,24 +263,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:50:05 GMT", + "Date": "Fri, 23 Sep 2022 18:34:31 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-1c602d780c1c7fa218f272ae69aca6ae-51d4f042f0482852-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-34a3335d8d6f0c13345588effc5dbb7b-ad1ced9d21de417e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e4a3b164-1f55-47ea-a345-fbac1f59d2dc", - "x-ms-ratelimit-remaining-subscription-reads": "11805", + "x-ms-correlation-request-id": "829d4cbd-74f3-4ee7-8f0a-557db3de6183", + "x-ms-ratelimit-remaining-subscription-reads": "11992", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195005Z:e4a3b164-1f55-47ea-a345-fbac1f59d2dc", - "x-request-time": "0.081" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183432Z:829d4cbd-74f3-4ee7-8f0a-557db3de6183", + "x-request-time": "0.087" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -325,17 +295,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -349,7 +319,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -357,21 +327,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:50:05 GMT", + "Date": "Fri, 23 Sep 2022 18:34:32 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-7b5d98955d1c9ee60536d081e5ced385-3da1f4cc63e131e4-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-a2deaa8a1a017f9409842f4e42e169df-fd25135b4f33ede8-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0ea74bb9-fbc9-4c55-bf43-3c212e88ca28", - "x-ms-ratelimit-remaining-subscription-writes": "1101", + "x-ms-correlation-request-id": "a158dde2-e8fc-4fbc-81c0-c6f4ba0db913", + "x-ms-ratelimit-remaining-subscription-writes": "1194", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195006Z:0ea74bb9-fbc9-4c55-bf43-3c212e88ca28", - "x-request-time": "0.090" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183433Z:a158dde2-e8fc-4fbc-81c0-c6f4ba0db913", + "x-request-time": "0.137" }, "ResponseBody": { "secretsType": "AccountKey", @@ -379,15 +349,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/valid/MLTable", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/valid/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:50:05 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 18:34:35 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -396,9 +366,9 @@ "Content-Length": "245", "Content-MD5": "7GKuyqO9jeUS5UVRWrgMSw==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:50:05 GMT", - "ETag": "\u00220x8DA9792C30BBB37\u0022", - "Last-Modified": "Fri, 16 Sep 2022 03:23:01 GMT", + "Date": "Fri, 23 Sep 2022 18:34:32 GMT", + "ETag": "\u00220x8DA9D7AAB537532\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:45:41 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -407,32 +377,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Fri, 16 Sep 2022 03:23:01 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:45:40 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "05804135-5a7e-46a8-87b1-3f9ce6d57d28", + "x-ms-meta-name": "248a2e74-37e4-4763-aee6-00fa1447604d", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "df5012bf-31f3-4a71-8405-23ee9c264317", + "x-ms-meta-version": "a3498f45-0813-46b6-aaf1-bf82b826a960", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/valid/MLTable", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/valid/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:50:05 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 18:34:35 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:50:05 GMT", + "Date": "Fri, 23 Sep 2022 18:34:33 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -440,7 +410,7 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, @@ -451,7 +421,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -459,24 +429,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:50:05 GMT", + "Date": "Fri, 23 Sep 2022 18:34:34 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-55d2e8d11fcf2baaffb6c07d7c30f860-60628e66308d623b-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-a0366fe7e53da2b29fd297d3b873b6f5-6252d15a9b53801a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9923a059-d836-40d7-971c-7568b3545ab7", - "x-ms-ratelimit-remaining-subscription-reads": "11804", + "x-ms-correlation-request-id": "5482fc40-e6b0-4b21-b01c-7019a6456c32", + "x-ms-ratelimit-remaining-subscription-reads": "11991", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195006Z:9923a059-d836-40d7-971c-7568b3545ab7", - "x-request-time": "0.087" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183434Z:5482fc40-e6b0-4b21-b01c-7019a6456c32", + "x-request-time": "0.090" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -491,17 +461,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -515,7 +485,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -523,21 +493,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:50:07 GMT", + "Date": "Fri, 23 Sep 2022 18:34:34 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-00bf09d1bf8662589dbdc23f61b853f1-7bc0c5491c79b450-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-8adfca6738ffe8d60ea5171088aeeb07-3114592d408c3f7c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cd381f12-8000-4199-9cc1-a7adaac32411", - "x-ms-ratelimit-remaining-subscription-writes": "1100", + "x-ms-correlation-request-id": "98cf16d9-e11f-455e-927a-91617df086b1", + "x-ms-ratelimit-remaining-subscription-writes": "1193", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195008Z:cd381f12-8000-4199-9cc1-a7adaac32411", - "x-request-time": "0.113" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183435Z:98cf16d9-e11f-455e-927a-91617df086b1", + "x-request-time": "0.118" }, "ResponseBody": { "secretsType": "AccountKey", @@ -545,15 +515,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/valid/MLTable", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/valid/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:50:06 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 18:34:37 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -562,9 +532,9 @@ "Content-Length": "245", "Content-MD5": "7GKuyqO9jeUS5UVRWrgMSw==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:50:07 GMT", - "ETag": "\u00220x8DA9792C30BBB37\u0022", - "Last-Modified": "Fri, 16 Sep 2022 03:23:01 GMT", + "Date": "Fri, 23 Sep 2022 18:34:35 GMT", + "ETag": "\u00220x8DA9D7AAB537532\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:45:41 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -573,32 +543,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Fri, 16 Sep 2022 03:23:01 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:45:40 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "05804135-5a7e-46a8-87b1-3f9ce6d57d28", + "x-ms-meta-name": "248a2e74-37e4-4763-aee6-00fa1447604d", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "df5012bf-31f3-4a71-8405-23ee9c264317", + "x-ms-meta-version": "a3498f45-0813-46b6-aaf1-bf82b826a960", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/valid/MLTable", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/valid/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:50:06 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 18:34:37 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:50:07 GMT", + "Date": "Fri, 23 Sep 2022 18:34:35 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -606,12 +576,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_779172828776?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_337246824423?api-version=2022-06-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -619,7 +589,7 @@ "Connection": "keep-alive", "Content-Length": "1632", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -630,7 +600,7 @@ "owner": "sdkteam" }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", - "displayName": "test_779172828776", + "displayName": "test_337246824423", "experimentName": "my_first_experiment", "isArchived": false, "jobType": "Pipeline", @@ -685,26 +655,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3891", + "Content-Length": "3886", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:50:12 GMT", + "Date": "Fri, 23 Sep 2022 18:34:42 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_779172828776?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_337246824423?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-146032edac514958c03d6d99f9139646-c8d1518a419add12-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-acd7271b99257efadba809437087630d-98f7f273215bf955-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "375478f2-e10f-4977-9d48-41611de41c77", - "x-ms-ratelimit-remaining-subscription-writes": "1053", + "x-ms-correlation-request-id": "bb2b29b2-9ed8-4e0a-8e69-4e2c2fa43ca5", + "x-ms-ratelimit-remaining-subscription-writes": "1198", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195013Z:375478f2-e10f-4977-9d48-41611de41c77", - "x-request-time": "2.887" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183443Z:bb2b29b2-9ed8-4e0a-8e69-4e2c2fa43ca5", + "x-request-time": "3.417" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_779172828776", - "name": "test_779172828776", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_337246824423", + "name": "test_337246824423", "type": "Microsoft.MachineLearningServices/workspaces/jobs", "properties": { "description": "The hello world pipeline job", @@ -724,14 +694,14 @@ "azureml.defaultDataStoreName": "workspaceblobstore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_779172828776", + "displayName": "test_337246824423", "status": "Preparing", "experimentName": "my_first_experiment", "services": { "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null @@ -739,7 +709,7 @@ "Studio": { "jobServiceType": "Studio", "port": null, - "endpoint": "https://ml.azure.com/runs/test_779172828776?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "endpoint": "https://ml.azure.com/runs/test_337246824423?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, "properties": null @@ -805,21 +775,21 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-16T19:50:12.5102867\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T18:34:43.0870785\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_779172828776/cancel?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_337246824423/cancel?api-version=2022-06-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 202, @@ -827,25 +797,55 @@ "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:50:14 GMT", + "Date": "Fri, 23 Sep 2022 18:34:46 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/mfeOperationResults/jc:a6d5a3b8-8717-4928-b8f7-4c9f36d21085:test_779172828776?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2/mfeOperationResults/jc:e950f876-7257-4cf3-99a5-ff66812ac44c:test_337246824423?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", "x-ms-async-operation-timeout": "PT1H", - "x-ms-correlation-request-id": "5a3fc17b-9781-48b6-8605-fe0acd44b416", - "x-ms-ratelimit-remaining-subscription-writes": "1099", + "x-ms-correlation-request-id": "fd857049-e10b-46c1-84f0-79c4a76ac8e5", + "x-ms-ratelimit-remaining-subscription-writes": "1192", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195014Z:5a3fc17b-9781-48b6-8605-fe0acd44b416", - "x-request-time": "0.690" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183446Z:fd857049-e10b-46c1-84f0-79c4a76ac8e5", + "x-request-time": "0.494" }, "ResponseBody": "null" + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2/mfeOperationResults/jc:e950f876-7257-4cf3-99a5-ff66812ac44c:test_337246824423?api-version=2022-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Fri, 23 Sep 2022 18:35:16 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-2d9237062590f28278911c3f95461c53-29c6c03858642a0b-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-aml-cluster": "vienna-eastus2-02", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "7da0738c-cd61-4f7a-b5ea-ea16a6531e0d", + "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183517Z:7da0738c-cd61-4f7a-b5ea-ea16a6531e0d", + "x-request-time": "0.047" + }, + "ResponseBody": null } ], "Variables": { - "name": "test_779172828776" + "name": "test_337246824423" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_automl_forecasting.json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_automl_forecasting.json index 1c149ad53234..7b966924fdb2 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_automl_forecasting.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_automl_forecasting.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,39 +15,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:50:16 GMT", + "Date": "Fri, 23 Sep 2022 18:35:19 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-c2c807d6862fc4e04e7fb89be4cf6263-54f05536837a14a2-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-006d0125aa5489575c97b40ade70ec02-195f5d2f58ed7e2a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d7d1727e-941b-45bf-b424-d962cf08e0de", - "x-ms-ratelimit-remaining-subscription-reads": "11803", + "x-ms-correlation-request-id": "335739c9-63af-4970-90fd-d78f0fbc2577", + "x-ms-ratelimit-remaining-subscription-reads": "11989", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195016Z:d7d1727e-941b-45bf-b424-d962cf08e0de", - "x-request-time": "0.047" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183520Z:335739c9-63af-4970-90fd-d78f0fbc2577", + "x-request-time": "0.125" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.912489\u002B00:00", - "modifiedOn": "2022-09-15T03:11:50.5830108\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "eastus2", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -60,18 +60,18 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 4, + "currentNodeCount": 2, + "targetNodeCount": 2, "nodeStateCounts": { - "preparingNodeCount": 0, - "runningNodeCount": 4, + "preparingNodeCount": 2, + "runningNodeCount": 0, "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-16T19:44:21.123\u002B00:00", + "allocationStateTransitionTime": "2022-09-23T18:33:28.045\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -89,7 +89,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -97,24 +97,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:50:17 GMT", + "Date": "Fri, 23 Sep 2022 18:35:22 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-e27b4cbe3b812e30be147e6d0242fba3-9dc4738c7b01611f-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-22d2ea95e7a77142d5088370235c0863-d293574eb35ca912-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d9286052-593d-43e8-a49f-3de980aedf22", - "x-ms-ratelimit-remaining-subscription-reads": "11802", + "x-ms-correlation-request-id": "0d6bee86-19e7-4142-b2f7-c868e7002837", + "x-ms-ratelimit-remaining-subscription-reads": "11988", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195017Z:d9286052-593d-43e8-a49f-3de980aedf22", - "x-request-time": "0.097" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183523Z:0d6bee86-19e7-4142-b2f7-c868e7002837", + "x-request-time": "0.078" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -129,17 +129,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -153,7 +153,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -161,21 +161,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:50:17 GMT", + "Date": "Fri, 23 Sep 2022 18:35:23 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-e97aaa9af5514cd6754d07985a5731d6-6a6ee27ae49a2384-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-477b5ca59168901733bfc088c82758bf-c8e410d032587383-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "076f1636-255f-4965-8c21-35215dabedf9", - "x-ms-ratelimit-remaining-subscription-writes": "1098", + "x-ms-correlation-request-id": "84884191-311c-403b-a05b-058fe6ce3575", + "x-ms-ratelimit-remaining-subscription-writes": "1191", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195018Z:076f1636-255f-4965-8c21-35215dabedf9", - "x-request-time": "0.092" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183523Z:84884191-311c-403b-a05b-058fe6ce3575", + "x-request-time": "0.177" }, "ResponseBody": { "secretsType": "AccountKey", @@ -183,15 +183,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/train/MLTable", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/train/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:50:17 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 18:35:26 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -200,9 +200,9 @@ "Content-Length": "248", "Content-MD5": "gzKXoPqTu85Rz1sGY4HgaA==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:50:17 GMT", - "ETag": "\u00220x8DA9792CA175E3F\u0022", - "Last-Modified": "Fri, 16 Sep 2022 03:23:13 GMT", + "Date": "Fri, 23 Sep 2022 18:35:23 GMT", + "ETag": "\u00220x8DA9D7ABB226535\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:46:07 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -211,32 +211,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Fri, 16 Sep 2022 03:23:13 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:46:07 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "2388a35c-6dac-473a-bf17-b3d09a03bf64", + "x-ms-meta-name": "d8236b73-d96a-4168-9dfe-9ce95d09e726", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "2edb9111-2072-43dd-958d-b085942c1b29", + "x-ms-meta-version": "f70384b6-0750-4b44-855b-e2a388d24cf3", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/train/MLTable", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/train/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:50:17 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 18:35:26 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:50:17 GMT", + "Date": "Fri, 23 Sep 2022 18:35:24 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -244,42 +244,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/mfeOperationResults/jc:a6d5a3b8-8717-4928-b8f7-4c9f36d21085:test_113147588257?api-version=2022-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Fri, 16 Sep 2022 19:50:18 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-5f6de81dfbae2284b516cb50b5f52c41-c052706c2fd06d47-01\u0022", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "17d7389e-8b67-453d-ab8f-a80a49636766", - "x-ms-ratelimit-remaining-subscription-reads": "11801", - "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195019Z:17d7389e-8b67-453d-ab8f-a80a49636766", - "x-request-time": "0.030" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_393110994004?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_338036406854?api-version=2022-06-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -287,7 +257,7 @@ "Connection": "keep-alive", "Content-Length": "1308", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -298,7 +268,7 @@ "owner": "sdkteam" }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", - "displayName": "test_393110994004", + "displayName": "test_338036406854", "experimentName": "my_first_experiment", "isArchived": false, "jobType": "Pipeline", @@ -349,26 +319,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3423", + "Content-Length": "3418", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:50:22 GMT", + "Date": "Fri, 23 Sep 2022 18:35:31 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_393110994004?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_338036406854?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-0ca7bc599fb83e62d7ec6db032746ed7-69f024ecf0b7548c-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-43e275f87e62d2ade2e6fc1741cb518b-0c200c0ec8d51244-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4b98c9fd-ec4d-4dde-856b-4ef2e1c616d9", - "x-ms-ratelimit-remaining-subscription-writes": "1052", + "x-ms-correlation-request-id": "89b5cdff-ebc0-409b-b956-529f216e0bdc", + "x-ms-ratelimit-remaining-subscription-writes": "1197", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195023Z:4b98c9fd-ec4d-4dde-856b-4ef2e1c616d9", - "x-request-time": "3.068" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183532Z:89b5cdff-ebc0-409b-b956-529f216e0bdc", + "x-request-time": "2.895" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_393110994004", - "name": "test_393110994004", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_338036406854", + "name": "test_338036406854", "type": "Microsoft.MachineLearningServices/workspaces/jobs", "properties": { "description": "The hello world pipeline job", @@ -388,14 +358,14 @@ "azureml.defaultDataStoreName": "workspaceblobstore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_393110994004", + "displayName": "test_338036406854", "status": "Preparing", "experimentName": "my_first_experiment", "services": { "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null @@ -403,7 +373,7 @@ "Studio": { "jobServiceType": "Studio", "port": null, - "endpoint": "https://ml.azure.com/runs/test_393110994004?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "endpoint": "https://ml.azure.com/runs/test_338036406854?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, "properties": null @@ -461,21 +431,21 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-16T19:50:22.9784816\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T18:35:31.9182448\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_393110994004/cancel?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_338036406854/cancel?api-version=2022-06-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 202, @@ -483,25 +453,55 @@ "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:50:24 GMT", + "Date": "Fri, 23 Sep 2022 18:35:35 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/mfeOperationResults/jc:a6d5a3b8-8717-4928-b8f7-4c9f36d21085:test_393110994004?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2/mfeOperationResults/jc:e950f876-7257-4cf3-99a5-ff66812ac44c:test_338036406854?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", "x-ms-async-operation-timeout": "PT1H", - "x-ms-correlation-request-id": "e8ed2b6f-b49a-4473-8dac-939918f976eb", - "x-ms-ratelimit-remaining-subscription-writes": "1097", + "x-ms-correlation-request-id": "f3b9e74b-ee68-46e9-b7ee-32b6e11ec60c", + "x-ms-ratelimit-remaining-subscription-writes": "1190", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195025Z:e8ed2b6f-b49a-4473-8dac-939918f976eb", - "x-request-time": "0.635" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183535Z:f3b9e74b-ee68-46e9-b7ee-32b6e11ec60c", + "x-request-time": "0.482" }, "ResponseBody": "null" + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2/mfeOperationResults/jc:e950f876-7257-4cf3-99a5-ff66812ac44c:test_338036406854?api-version=2022-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Fri, 23 Sep 2022 18:36:05 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-90d49226ed4cba66c4e58eac043857ba-ead25f385f8c59aa-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-aml-cluster": "vienna-eastus2-02", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "5a38cabf-d693-4ed2-821f-e8e37d118d08", + "x-ms-ratelimit-remaining-subscription-reads": "11987", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183606Z:5a38cabf-d693-4ed2-821f-e8e37d118d08", + "x-request-time": "0.039" + }, + "ResponseBody": null } ], "Variables": { - "name": "test_393110994004" + "name": "test_338036406854" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_automl_image_instance_segmentation.json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_automl_image_instance_segmentation.json index 811130390807..cf7002ecb839 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_automl_image_instance_segmentation.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_automl_image_instance_segmentation.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,41 +15,48 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 14:56:35 GMT", + "Date": "Fri, 23 Sep 2022 18:39:41 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-6b944ad2fd87ed48200c9bdbb56b1539-2ced2efbb775fd21-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-ab41caf30a61a615255ee6f59d6a3f72-31281b47c13c8607-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cd449d9f-ee0a-407f-987d-d848f1996a9c", - "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-correlation-request-id": "07208846-647a-439a-8189-0834190a0dfe", + "x-ms-ratelimit-remaining-subscription-reads": "11968", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T145636Z:cd449d9f-ee0a-407f-987d-d848f1996a9c", - "x-request-time": "0.041" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183942Z:07208846-647a-439a-8189-0834190a0dfe", + "x-request-time": "0.022" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/gpu-cluster", "name": "gpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-19T00:10:24.4650736\u002B00:00", - "modifiedOn": "2022-09-19T00:10:31.0007111\u002B00:00", + "createdOn": "2022-09-22T03:11:29.7706914\u002B00:00", + "modifiedOn": "2022-09-22T03:11:30.2032599\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", - "provisioningState": "Succeeded", - "provisioningErrors": null, + "computeLocation": "eastus2", + "provisioningState": "Failed", + "provisioningErrors": [ + { + "error": { + "code": "VmSizeNotSupported", + "message": "STANDARD_ND6S is not supported in region eastus2. Please choose a different VM size." + } + } + ], "isAttachedCompute": false, "properties": { "vmSize": "STANDARD_ND6S", @@ -57,27 +64,17 @@ "scaleSettings": { "maxNodeCount": 4, "minNodeCount": 0, - "nodeIdleTimeBeforeScaleDown": "PT2M" + "nodeIdleTimeBeforeScaleDown": null }, "subnet": null, - "currentNodeCount": 0, - "targetNodeCount": 0, - "nodeStateCounts": { - "preparingNodeCount": 0, - "runningNodeCount": 0, - "idleNodeCount": 0, - "unusableNodeCount": 0, - "leavingNodeCount": 0, - "preemptedNodeCount": 0 - }, - "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-23T14:40:59.64\u002B00:00", + "currentNodeCount": null, + "targetNodeCount": null, + "nodeStateCounts": null, + "allocationState": null, "errors": null, - "remoteLoginPortPublicAccess": "Enabled", - "osType": "Linux", + "remoteLoginPortPublicAccess": "NotSpecified", "virtualMachineImage": null, - "isolatedNetwork": false, - "propertyBag": {} + "isolatedNetwork": false } } } @@ -89,7 +86,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -97,24 +94,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 14:56:36 GMT", + "Date": "Fri, 23 Sep 2022 18:39:44 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-8d0ebe2e012efa33961e716927312058-77a32b958c61058a-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-ba975e3261368f1c4951f4c57eb21efe-0383d5dab9e0fc0b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9a52d346-b6be-494d-95ee-342e186badc8", - "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-correlation-request-id": "51ea2009-ae35-4e89-8eea-4435fe92f76d", + "x-ms-ratelimit-remaining-subscription-reads": "11967", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T145637Z:9a52d346-b6be-494d-95ee-342e186badc8", - "x-request-time": "0.105" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183944Z:51ea2009-ae35-4e89-8eea-4435fe92f76d", + "x-request-time": "0.083" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -129,17 +126,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sawcdivl5vo3cem", - "containerName": "azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-19T00:10:19.4497254\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-19T00:10:20.0957203\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -153,7 +150,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -161,21 +158,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 14:56:37 GMT", + "Date": "Fri, 23 Sep 2022 18:39:44 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-3a3e3e1f4d35edef3079d47045414b6d-1e92c88c1920a980-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-e232d9bab4a282ed765f57d0f850dd44-01510f50f24cae29-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e748436d-7ef4-41e9-a96c-ff9158b9371a", - "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-correlation-request-id": "fbc6b992-4649-4ac2-8740-cbd2a0dc0af6", + "x-ms-ratelimit-remaining-subscription-writes": "1171", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T145638Z:e748436d-7ef4-41e9-a96c-ff9158b9371a", - "x-request-time": "0.099" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183945Z:fbc6b992-4649-4ac2-8740-cbd2a0dc0af6", + "x-request-time": "0.100" }, "ResponseBody": { "secretsType": "AccountKey", @@ -183,15 +180,15 @@ } }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000/train/MLTable", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/train/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 23 Sep 2022 14:56:38 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 18:39:47 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -200,9 +197,9 @@ "Content-Length": "264", "Content-MD5": "bxQgDk/2/IhOiVcx8\u002BLMhg==", "Content-Type": "application/octet-stream", - "Date": "Fri, 23 Sep 2022 14:56:38 GMT", - "ETag": "\u00220x8DA9CB0311A8D12\u0022", - "Last-Modified": "Thu, 22 Sep 2022 15:36:17 GMT", + "Date": "Fri, 23 Sep 2022 18:39:45 GMT", + "ETag": "\u00220x8DA9D7B10D8097C\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:48:31 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -211,32 +208,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 22 Sep 2022 15:36:17 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:48:31 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ce657398-583c-469b-b4b0-0f77431834b2", + "x-ms-meta-name": "57277494-a6cd-4903-996f-ad115e220387", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "4a0df81e-f2b3-4f78-bfe0-3412ecbc4559", + "x-ms-meta-version": "54ac021d-c648-420d-9abd-3437ef2360bb", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/az-ml-artifacts/00000000000000000000000000000000/train/MLTable", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/train/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 23 Sep 2022 14:56:38 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 18:39:48 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 23 Sep 2022 14:56:38 GMT", + "Date": "Fri, 23 Sep 2022 18:39:45 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -244,7 +241,7 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, @@ -255,7 +252,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -263,24 +260,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 14:56:37 GMT", + "Date": "Fri, 23 Sep 2022 18:39:46 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-6d1ea3b07efc953b29a7872ceddc46e1-bd646997aa4e9152-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-986d75d2e1e951a2cf40eabe8afbcb00-7156919eab0f5195-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7b16b611-d529-4b71-a698-2c575f49f7bc", - "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-correlation-request-id": "ab52f6f3-efff-46c3-9005-8320cca918e4", + "x-ms-ratelimit-remaining-subscription-reads": "11966", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T145638Z:7b16b611-d529-4b71-a698-2c575f49f7bc", - "x-request-time": "0.090" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183947Z:ab52f6f3-efff-46c3-9005-8320cca918e4", + "x-request-time": "0.075" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -295,17 +292,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sawcdivl5vo3cem", - "containerName": "azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-19T00:10:19.4497254\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-19T00:10:20.0957203\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -319,7 +316,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -327,21 +324,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 14:56:38 GMT", + "Date": "Fri, 23 Sep 2022 18:39:47 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-9890bf669e994bba729478a75e002f7d-9b78bfc0c0393f62-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-cdd839945ad0805fc2e7dfe7ef46e8b6-7dc82b59ed4adc25-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7934364f-2318-41ea-839f-6280b64a5be7", - "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-correlation-request-id": "8e676e36-832f-452b-9bfd-216fd5221760", + "x-ms-ratelimit-remaining-subscription-writes": "1170", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T145638Z:7934364f-2318-41ea-839f-6280b64a5be7", - "x-request-time": "0.098" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183948Z:8e676e36-832f-452b-9bfd-216fd5221760", + "x-request-time": "0.108" }, "ResponseBody": { "secretsType": "AccountKey", @@ -349,15 +346,15 @@ } }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000/valid/MLTable", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/valid/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 23 Sep 2022 14:56:39 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 18:39:50 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -366,9 +363,9 @@ "Content-Length": "269", "Content-MD5": "WaHfrrWZTI6RIAay8\u002BmxMg==", "Content-Type": "application/octet-stream", - "Date": "Fri, 23 Sep 2022 14:56:38 GMT", - "ETag": "\u00220x8DA9CB031787EA8\u0022", - "Last-Modified": "Thu, 22 Sep 2022 15:36:18 GMT", + "Date": "Fri, 23 Sep 2022 18:39:47 GMT", + "ETag": "\u00220x8DA9D7B12D600B7\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:48:34 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -377,32 +374,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 22 Sep 2022 15:36:18 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:48:34 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "f6e6496a-445c-4394-81cf-0495ec7fca58", + "x-ms-meta-name": "d0491f24-ae24-448f-90e4-8c725cb53a00", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "8794687c-c3c8-4a79-b191-e559926b46be", + "x-ms-meta-version": "de4cec3c-b35d-4018-b63f-bfa5fe391558", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/az-ml-artifacts/00000000000000000000000000000000/valid/MLTable", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/valid/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 23 Sep 2022 14:56:39 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 18:39:50 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 23 Sep 2022 14:56:38 GMT", + "Date": "Fri, 23 Sep 2022 18:39:48 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -410,12 +407,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_715330647514?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_927292345345?api-version=2022-06-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -423,7 +420,7 @@ "Connection": "keep-alive", "Content-Length": "2027", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -434,7 +431,7 @@ "owner": "sdkteam" }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/gpu-cluster", - "displayName": "test_715330647514", + "displayName": "test_927292345345", "experimentName": "my_first_experiment_image_instance_segmentation", "isArchived": false, "jobType": "Pipeline", @@ -504,26 +501,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4408", + "Content-Length": "4403", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 14:56:44 GMT", + "Date": "Fri, 23 Sep 2022 18:39:57 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_715330647514?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_927292345345?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-7909a24b0aee94bb67216c43ad6c6d77-3310c08f50422459-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-ec60afb3d8000a48ab51562bc7b10590-1020450bb4281b30-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c97fa4ac-dde7-4c85-8bc2-09c8599f615b", - "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-correlation-request-id": "4228c2d8-a532-4051-858d-317dbb1e00f3", + "x-ms-ratelimit-remaining-subscription-writes": "1190", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T145645Z:c97fa4ac-dde7-4c85-8bc2-09c8599f615b", - "x-request-time": "3.062" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183957Z:4228c2d8-a532-4051-858d-317dbb1e00f3", + "x-request-time": "4.646" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_715330647514", - "name": "test_715330647514", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_927292345345", + "name": "test_927292345345", "type": "Microsoft.MachineLearningServices/workspaces/jobs", "properties": { "description": "The hello world pipeline job", @@ -543,14 +540,14 @@ "azureml.defaultDataStoreName": "workspaceblobstore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_715330647514", + "displayName": "test_927292345345", "status": "Preparing", "experimentName": "my_first_experiment_image_instance_segmentation", "services": { "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null @@ -558,7 +555,7 @@ "Studio": { "jobServiceType": "Studio", "port": null, - "endpoint": "https://ml.azure.com/runs/test_715330647514?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "endpoint": "https://ml.azure.com/runs/test_927292345345?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, "properties": null @@ -637,47 +634,101 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-23T14:56:44.6986211\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T18:39:56.7305637\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_715330647514/cancel?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_927292345345/cancel?api-version=2022-06-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, - "StatusCode": 202, + "StatusCode": 400, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4", + "Content-Length": "1220", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 14:56:47 GMT", + "Date": "Fri, 23 Sep 2022 18:40:14 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/mfeOperationResults/jc:e17a3673-0df1-4734-b827-58bdbe7ad5bc:test_715330647514?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-async-operation-timeout": "PT1H", - "x-ms-correlation-request-id": "57da9a2a-066a-4428-a5f1-140e59f29330", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T145648Z:57da9a2a-066a-4428-a5f1-140e59f29330", - "x-request-time": "0.794" + "x-ms-correlation-request-id": "04a4b070-9ed9-4261-864b-c4c3ed849371", + "x-ms-ratelimit-remaining-subscription-writes": "1169", + "x-ms-response-type": "error", + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T184014Z:04a4b070-9ed9-4261-864b-c4c3ed849371", + "x-request-time": "15.038" }, - "ResponseBody": "null" + "ResponseBody": { + "error": { + "code": "UserError", + "message": "The pipeline run test_927292345345 is in terminal status, it can\u0027t be canceled.", + "details": [], + "additionalInfo": [ + { + "type": "ComponentName", + "info": { + "value": "managementfrontend" + } + }, + { + "type": "Correlation", + "info": { + "value": { + "operation": "399c3d06cf4a6c3db491a48e84f0d199", + "request": "dca4bcac233a5349" + } + } + }, + { + "type": "Environment", + "info": { + "value": "eastus2" + } + }, + { + "type": "Location", + "info": { + "value": "eastus2" + } + }, + { + "type": "Time", + "info": { + "value": "2022-09-23T18:40:14.6082083\u002B00:00" + } + }, + { + "type": "InnerError", + "info": { + "value": { + "code": "BadArgument", + "innerError": { + "code": "ArgumentInvalid", + "innerError": { + "code": "CancelPipelineRunInTerminalStatus", + "innerError": null + } + } + } + } + } + ] + } + } } ], "Variables": { - "name": "test_715330647514" + "name": "test_927292345345" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_automl_image_multiclass_classification.json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_automl_image_multiclass_classification.json index 48d1303de5af..e854166963b0 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_automl_image_multiclass_classification.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_automl_image_multiclass_classification.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,41 +15,48 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 14:51:15 GMT", + "Date": "Fri, 23 Sep 2022 18:37:55 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-08af328d317611c0faf7106811d76532-65e39cddb10d7bdb-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-e7e07a40b51422bcce20d2b0a703b061-8ec0957abb05858b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "adbe1d54-5ea3-4d8a-851d-58155166bbf2", - "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-correlation-request-id": "e09f20ec-5b28-465f-b167-218311cdbdd3", + "x-ms-ratelimit-remaining-subscription-reads": "11977", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T145115Z:adbe1d54-5ea3-4d8a-851d-58155166bbf2", - "x-request-time": "0.052" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183755Z:e09f20ec-5b28-465f-b167-218311cdbdd3", + "x-request-time": "0.034" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/gpu-cluster", "name": "gpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-19T00:10:24.4650736\u002B00:00", - "modifiedOn": "2022-09-19T00:10:31.0007111\u002B00:00", + "createdOn": "2022-09-22T03:11:29.7706914\u002B00:00", + "modifiedOn": "2022-09-22T03:11:30.2032599\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", - "provisioningState": "Succeeded", - "provisioningErrors": null, + "computeLocation": "eastus2", + "provisioningState": "Failed", + "provisioningErrors": [ + { + "error": { + "code": "VmSizeNotSupported", + "message": "STANDARD_ND6S is not supported in region eastus2. Please choose a different VM size." + } + } + ], "isAttachedCompute": false, "properties": { "vmSize": "STANDARD_ND6S", @@ -57,27 +64,17 @@ "scaleSettings": { "maxNodeCount": 4, "minNodeCount": 0, - "nodeIdleTimeBeforeScaleDown": "PT2M" + "nodeIdleTimeBeforeScaleDown": null }, "subnet": null, - "currentNodeCount": 0, - "targetNodeCount": 0, - "nodeStateCounts": { - "preparingNodeCount": 0, - "runningNodeCount": 0, - "idleNodeCount": 0, - "unusableNodeCount": 0, - "leavingNodeCount": 0, - "preemptedNodeCount": 0 - }, - "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-23T14:40:59.64\u002B00:00", + "currentNodeCount": null, + "targetNodeCount": null, + "nodeStateCounts": null, + "allocationState": null, "errors": null, - "remoteLoginPortPublicAccess": "Enabled", - "osType": "Linux", + "remoteLoginPortPublicAccess": "NotSpecified", "virtualMachineImage": null, - "isolatedNetwork": false, - "propertyBag": {} + "isolatedNetwork": false } } } @@ -89,7 +86,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -97,24 +94,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 14:51:17 GMT", + "Date": "Fri, 23 Sep 2022 18:37:57 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-bdbeb99c26cd12db6fa252cf677db2db-e1f77c29df0fa27f-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-dd31f07ef55306f7557944715572cd17-aeeec6902f8d9059-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9c1dfe68-a447-43ca-abde-0f2f60884ce1", - "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-correlation-request-id": "aea6aeac-c2d6-45ec-8c97-b0483f1e927d", + "x-ms-ratelimit-remaining-subscription-reads": "11976", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T145117Z:9c1dfe68-a447-43ca-abde-0f2f60884ce1", - "x-request-time": "0.649" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183758Z:aea6aeac-c2d6-45ec-8c97-b0483f1e927d", + "x-request-time": "0.073" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -129,17 +126,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sawcdivl5vo3cem", - "containerName": "azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-19T00:10:19.4497254\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-19T00:10:20.0957203\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -153,7 +150,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -161,21 +158,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 14:51:18 GMT", + "Date": "Fri, 23 Sep 2022 18:37:58 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-da64b4ae7c36fdbcd8ac3c8a397a9826-1676c4ec6c7ce827-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-f3ca96a13e4619f9121a2e5c899f61f3-de6a4b3c6f959dd3-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e3c32b9e-1d85-4402-b2c6-2a64bcc09a4c", - "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-correlation-request-id": "410bbd86-0de3-453c-8b67-ca4ba912816f", + "x-ms-ratelimit-remaining-subscription-writes": "1180", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T145118Z:e3c32b9e-1d85-4402-b2c6-2a64bcc09a4c", - "x-request-time": "0.130" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183759Z:410bbd86-0de3-453c-8b67-ca4ba912816f", + "x-request-time": "0.232" }, "ResponseBody": { "secretsType": "AccountKey", @@ -183,15 +180,15 @@ } }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000/train/MLTable", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/train/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 23 Sep 2022 14:51:18 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 18:38:01 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -200,9 +197,9 @@ "Content-Length": "264", "Content-MD5": "bxQgDk/2/IhOiVcx8\u002BLMhg==", "Content-Type": "application/octet-stream", - "Date": "Fri, 23 Sep 2022 14:51:17 GMT", - "ETag": "\u00220x8DA9CB0311A8D12\u0022", - "Last-Modified": "Thu, 22 Sep 2022 15:36:17 GMT", + "Date": "Fri, 23 Sep 2022 18:37:58 GMT", + "ETag": "\u00220x8DA9D7B10D8097C\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:48:31 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -211,32 +208,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 22 Sep 2022 15:36:17 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:48:31 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ce657398-583c-469b-b4b0-0f77431834b2", + "x-ms-meta-name": "57277494-a6cd-4903-996f-ad115e220387", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "4a0df81e-f2b3-4f78-bfe0-3412ecbc4559", + "x-ms-meta-version": "54ac021d-c648-420d-9abd-3437ef2360bb", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/az-ml-artifacts/00000000000000000000000000000000/train/MLTable", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/train/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 23 Sep 2022 14:51:19 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 18:38:01 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 23 Sep 2022 14:51:18 GMT", + "Date": "Fri, 23 Sep 2022 18:37:59 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -244,7 +241,7 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, @@ -255,7 +252,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -263,24 +260,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 14:51:18 GMT", + "Date": "Fri, 23 Sep 2022 18:38:00 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-80a910076d1cffb160028b27e62c0323-ed6eacbac7aa434b-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-6c00580d59510e06437238d9c661bed2-72b12cb8614e47b2-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6752cae1-2694-45c1-9363-bc9cca214071", - "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-correlation-request-id": "eb6db8b8-5f1c-4b72-a030-7ece2009d6e1", + "x-ms-ratelimit-remaining-subscription-reads": "11975", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T145119Z:6752cae1-2694-45c1-9363-bc9cca214071", - "x-request-time": "0.095" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183800Z:eb6db8b8-5f1c-4b72-a030-7ece2009d6e1", + "x-request-time": "0.077" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -295,17 +292,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sawcdivl5vo3cem", - "containerName": "azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-19T00:10:19.4497254\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-19T00:10:20.0957203\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -319,7 +316,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -327,21 +324,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 14:51:19 GMT", + "Date": "Fri, 23 Sep 2022 18:38:00 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-cfaf65c883f74433b406162e254fc273-879de6eabe14803f-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-95c5526132053856e124a53fee5b7555-62a2e557f3784d90-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "27ca3e03-dbcd-4b98-b08e-d0b9a81679fc", - "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-correlation-request-id": "80ffb724-2286-4f83-881f-9f735b819c07", + "x-ms-ratelimit-remaining-subscription-writes": "1179", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T145119Z:27ca3e03-dbcd-4b98-b08e-d0b9a81679fc", - "x-request-time": "0.093" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183801Z:80ffb724-2286-4f83-881f-9f735b819c07", + "x-request-time": "0.081" }, "ResponseBody": { "secretsType": "AccountKey", @@ -349,15 +346,15 @@ } }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000/valid/MLTable", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/valid/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 23 Sep 2022 14:51:20 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 18:38:03 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -366,9 +363,9 @@ "Content-Length": "269", "Content-MD5": "WaHfrrWZTI6RIAay8\u002BmxMg==", "Content-Type": "application/octet-stream", - "Date": "Fri, 23 Sep 2022 14:51:19 GMT", - "ETag": "\u00220x8DA9CB031787EA8\u0022", - "Last-Modified": "Thu, 22 Sep 2022 15:36:18 GMT", + "Date": "Fri, 23 Sep 2022 18:38:01 GMT", + "ETag": "\u00220x8DA9D7B12D600B7\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:48:34 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -377,32 +374,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 22 Sep 2022 15:36:18 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:48:34 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "f6e6496a-445c-4394-81cf-0495ec7fca58", + "x-ms-meta-name": "d0491f24-ae24-448f-90e4-8c725cb53a00", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "8794687c-c3c8-4a79-b191-e559926b46be", + "x-ms-meta-version": "de4cec3c-b35d-4018-b63f-bfa5fe391558", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/az-ml-artifacts/00000000000000000000000000000000/valid/MLTable", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/valid/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 23 Sep 2022 14:51:20 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 18:38:03 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 23 Sep 2022 14:51:19 GMT", + "Date": "Fri, 23 Sep 2022 18:38:01 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -410,12 +407,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_975571785825?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_188752022740?api-version=2022-06-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -423,7 +420,7 @@ "Connection": "keep-alive", "Content-Length": "1992", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -434,7 +431,7 @@ "owner": "sdkteam" }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/gpu-cluster", - "displayName": "test_975571785825", + "displayName": "test_188752022740", "experimentName": "my_first_experiment_image_multiclass_classification", "isArchived": false, "jobType": "Pipeline", @@ -503,26 +500,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4361", + "Content-Length": "4356", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 14:51:27 GMT", + "Date": "Fri, 23 Sep 2022 18:38:08 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_975571785825?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_188752022740?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-483e98cb3185fcf0a1577b706e1f53f9-c3af84cb36174d95-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-4a7144717257b5c6eefd9fbd5830e8f6-6e1c53e43cc681f7-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "35d94b9c-0fe4-484c-81dc-587ed795cbe3", - "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-correlation-request-id": "ef5cc279-c6c7-438b-8e0b-e5d448262713", + "x-ms-ratelimit-remaining-subscription-writes": "1193", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T145127Z:35d94b9c-0fe4-484c-81dc-587ed795cbe3", - "x-request-time": "3.280" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183809Z:ef5cc279-c6c7-438b-8e0b-e5d448262713", + "x-request-time": "3.375" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_975571785825", - "name": "test_975571785825", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_188752022740", + "name": "test_188752022740", "type": "Microsoft.MachineLearningServices/workspaces/jobs", "properties": { "description": "The hello world pipeline job", @@ -542,14 +539,14 @@ "azureml.defaultDataStoreName": "workspaceblobstore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_975571785825", + "displayName": "test_188752022740", "status": "Preparing", "experimentName": "my_first_experiment_image_multiclass_classification", "services": { "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null @@ -557,7 +554,7 @@ "Studio": { "jobServiceType": "Studio", "port": null, - "endpoint": "https://ml.azure.com/runs/test_975571785825?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "endpoint": "https://ml.azure.com/runs/test_188752022740?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, "properties": null @@ -635,47 +632,101 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-23T14:51:27.4123098\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T18:38:08.6511523\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_975571785825/cancel?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_188752022740/cancel?api-version=2022-06-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, - "StatusCode": 202, + "StatusCode": 400, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4", + "Content-Length": "1220", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 14:51:30 GMT", + "Date": "Fri, 23 Sep 2022 18:38:25 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/mfeOperationResults/jc:e17a3673-0df1-4734-b827-58bdbe7ad5bc:test_975571785825?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-async-operation-timeout": "PT1H", - "x-ms-correlation-request-id": "3199cc19-9da1-4af5-a0b3-7dc25047c9c6", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T145131Z:3199cc19-9da1-4af5-a0b3-7dc25047c9c6", - "x-request-time": "1.057" + "x-ms-correlation-request-id": "25be2fc1-7638-475e-92c1-1f938cf07146", + "x-ms-ratelimit-remaining-subscription-writes": "1178", + "x-ms-response-type": "error", + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183826Z:25be2fc1-7638-475e-92c1-1f938cf07146", + "x-request-time": "15.134" }, - "ResponseBody": "null" + "ResponseBody": { + "error": { + "code": "UserError", + "message": "The pipeline run test_188752022740 is in terminal status, it can\u0027t be canceled.", + "details": [], + "additionalInfo": [ + { + "type": "ComponentName", + "info": { + "value": "managementfrontend" + } + }, + { + "type": "Correlation", + "info": { + "value": { + "operation": "b722bd18d282ae98d0b3951dafbca2f4", + "request": "67baa458edbe6bcc" + } + } + }, + { + "type": "Environment", + "info": { + "value": "eastus2" + } + }, + { + "type": "Location", + "info": { + "value": "eastus2" + } + }, + { + "type": "Time", + "info": { + "value": "2022-09-23T18:38:26.6857956\u002B00:00" + } + }, + { + "type": "InnerError", + "info": { + "value": { + "code": "BadArgument", + "innerError": { + "code": "ArgumentInvalid", + "innerError": { + "code": "CancelPipelineRunInTerminalStatus", + "innerError": null + } + } + } + } + } + ] + } + } } ], "Variables": { - "name": "test_975571785825" + "name": "test_188752022740" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_automl_image_multilabel_classification.json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_automl_image_multilabel_classification.json index c7300dae6ecc..353231f885bc 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_automl_image_multilabel_classification.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_automl_image_multilabel_classification.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,41 +15,48 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 14:53:17 GMT", + "Date": "Fri, 23 Sep 2022 18:38:29 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-81f0c11402666d80063a94de558b804d-4a3ba9760ebedb22-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-12dbf40f281f0c1f7cd23a2849a44eda-ddc31af66d04e205-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d64587dd-b51d-4080-b491-190c2c4b4555", - "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-correlation-request-id": "e932b8a6-2ff8-4a8c-961e-f17160df3caf", + "x-ms-ratelimit-remaining-subscription-reads": "11974", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T145318Z:d64587dd-b51d-4080-b491-190c2c4b4555", - "x-request-time": "0.044" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183830Z:e932b8a6-2ff8-4a8c-961e-f17160df3caf", + "x-request-time": "0.033" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/gpu-cluster", "name": "gpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-19T00:10:24.4650736\u002B00:00", - "modifiedOn": "2022-09-19T00:10:31.0007111\u002B00:00", + "createdOn": "2022-09-22T03:11:29.7706914\u002B00:00", + "modifiedOn": "2022-09-22T03:11:30.2032599\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", - "provisioningState": "Succeeded", - "provisioningErrors": null, + "computeLocation": "eastus2", + "provisioningState": "Failed", + "provisioningErrors": [ + { + "error": { + "code": "VmSizeNotSupported", + "message": "STANDARD_ND6S is not supported in region eastus2. Please choose a different VM size." + } + } + ], "isAttachedCompute": false, "properties": { "vmSize": "STANDARD_ND6S", @@ -57,27 +64,17 @@ "scaleSettings": { "maxNodeCount": 4, "minNodeCount": 0, - "nodeIdleTimeBeforeScaleDown": "PT2M" + "nodeIdleTimeBeforeScaleDown": null }, "subnet": null, - "currentNodeCount": 0, - "targetNodeCount": 0, - "nodeStateCounts": { - "preparingNodeCount": 0, - "runningNodeCount": 0, - "idleNodeCount": 0, - "unusableNodeCount": 0, - "leavingNodeCount": 0, - "preemptedNodeCount": 0 - }, - "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-23T14:40:59.64\u002B00:00", + "currentNodeCount": null, + "targetNodeCount": null, + "nodeStateCounts": null, + "allocationState": null, "errors": null, - "remoteLoginPortPublicAccess": "Enabled", - "osType": "Linux", + "remoteLoginPortPublicAccess": "NotSpecified", "virtualMachineImage": null, - "isolatedNetwork": false, - "propertyBag": {} + "isolatedNetwork": false } } } @@ -89,7 +86,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -97,24 +94,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 14:53:19 GMT", + "Date": "Fri, 23 Sep 2022 18:38:31 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-2b3d6e9b7be35c72356ce926103ee676-dc160b1defa54a50-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-e9db8069ee834c0535cc6e0a541150c0-41cf604e8fb2f26c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7cb94ed5-b203-4598-8029-8191ef619af2", - "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-correlation-request-id": "28c87054-b299-4e17-9ae0-d446729a1d44", + "x-ms-ratelimit-remaining-subscription-reads": "11973", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T145320Z:7cb94ed5-b203-4598-8029-8191ef619af2", - "x-request-time": "0.099" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183832Z:28c87054-b299-4e17-9ae0-d446729a1d44", + "x-request-time": "0.271" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -129,17 +126,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sawcdivl5vo3cem", - "containerName": "azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-19T00:10:19.4497254\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-19T00:10:20.0957203\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -153,7 +150,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -161,21 +158,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 14:53:19 GMT", + "Date": "Fri, 23 Sep 2022 18:38:32 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-5a6d1bc424e29ca1b9e6581dd827fde1-9b45c520b0ef42f0-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-9a77a6c56e3ff0016c69da9453af6156-5de50420a9ab9f9b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "029290e5-c634-4371-a9b1-9df7e50780c6", - "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-correlation-request-id": "a30bcac7-280e-42fa-99d7-fc6816d895de", + "x-ms-ratelimit-remaining-subscription-writes": "1177", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T145320Z:029290e5-c634-4371-a9b1-9df7e50780c6", - "x-request-time": "0.099" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183833Z:a30bcac7-280e-42fa-99d7-fc6816d895de", + "x-request-time": "0.186" }, "ResponseBody": { "secretsType": "AccountKey", @@ -183,15 +180,15 @@ } }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000/train/MLTable", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/train/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 23 Sep 2022 14:53:20 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 18:38:36 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -200,9 +197,9 @@ "Content-Length": "264", "Content-MD5": "bxQgDk/2/IhOiVcx8\u002BLMhg==", "Content-Type": "application/octet-stream", - "Date": "Fri, 23 Sep 2022 14:53:19 GMT", - "ETag": "\u00220x8DA9CB2EBF300AB\u0022", - "Last-Modified": "Thu, 22 Sep 2022 15:55:50 GMT", + "Date": "Fri, 23 Sep 2022 18:38:33 GMT", + "ETag": "\u00220x8DA9D7B29A1C951\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:49:13 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -211,32 +208,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 22 Sep 2022 15:55:50 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:49:11 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "50fb290a-058d-4432-a6b2-d121b960f29a", + "x-ms-meta-name": "07db6ba0-8859-414d-b173-2dc3fcfad0f5", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "4401adbf-cda1-4dd1-a3ac-f5d7cae32834", + "x-ms-meta-version": "1a0c305a-236b-4659-8898-234242e2ab19", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/az-ml-artifacts/00000000000000000000000000000000/train/MLTable", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/train/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 23 Sep 2022 14:53:20 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 18:38:36 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 23 Sep 2022 14:53:19 GMT", + "Date": "Fri, 23 Sep 2022 18:38:33 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -244,7 +241,7 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, @@ -255,7 +252,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -263,24 +260,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 14:53:20 GMT", + "Date": "Fri, 23 Sep 2022 18:38:35 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-4243751b8e4ed1a51c008d0cdd95eed0-1e7be53441909091-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-5e5f45aa43a08c92e83325fd932341a2-a0c064ba6e7e6bd1-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "27f4c6b0-02e3-4103-9fd4-d85101f8b61b", - "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-correlation-request-id": "148309e2-d858-4b83-9bc8-709a8d19555f", + "x-ms-ratelimit-remaining-subscription-reads": "11972", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T145320Z:27f4c6b0-02e3-4103-9fd4-d85101f8b61b", - "x-request-time": "0.088" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183835Z:148309e2-d858-4b83-9bc8-709a8d19555f", + "x-request-time": "0.097" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -295,17 +292,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sawcdivl5vo3cem", - "containerName": "azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-19T00:10:19.4497254\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-19T00:10:20.0957203\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -319,7 +316,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -327,21 +324,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 14:53:20 GMT", + "Date": "Fri, 23 Sep 2022 18:38:36 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-6e0db49b06c4f997b45788223270174e-95b3545b3ab938e2-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-bf3e1eed8d0c5fcc45e9498698818a0f-c727b9c0923ec7b6-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4e7cf028-8aa3-40f8-8f21-28aefba62818", - "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-correlation-request-id": "55410e4e-22f4-4deb-96de-2099e6a785e8", + "x-ms-ratelimit-remaining-subscription-writes": "1176", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T145321Z:4e7cf028-8aa3-40f8-8f21-28aefba62818", - "x-request-time": "0.100" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183836Z:55410e4e-22f4-4deb-96de-2099e6a785e8", + "x-request-time": "0.083" }, "ResponseBody": { "secretsType": "AccountKey", @@ -349,15 +346,15 @@ } }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000/valid/MLTable", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/valid/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 23 Sep 2022 14:53:21 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 18:38:38 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -366,9 +363,9 @@ "Content-Length": "269", "Content-MD5": "WaHfrrWZTI6RIAay8\u002BmxMg==", "Content-Type": "application/octet-stream", - "Date": "Fri, 23 Sep 2022 14:53:20 GMT", - "ETag": "\u00220x8DA9CB2EC653AD3\u0022", - "Last-Modified": "Thu, 22 Sep 2022 15:55:51 GMT", + "Date": "Fri, 23 Sep 2022 18:38:35 GMT", + "ETag": "\u00220x8DA9D7B2BC89F62\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:49:16 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -377,32 +374,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 22 Sep 2022 15:55:51 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:49:16 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "1612782a-008e-44ff-9751-1c60ec0978bc", + "x-ms-meta-name": "cbd4b2ca-371a-4b7a-9be8-12f467ac0258", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "ea7e2705-b2ee-4451-b3c1-ab8e21fd5c70", + "x-ms-meta-version": "81064400-e9f6-4700-b346-9792ce730781", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/az-ml-artifacts/00000000000000000000000000000000/valid/MLTable", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/valid/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 23 Sep 2022 14:53:21 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 18:38:38 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 23 Sep 2022 14:53:20 GMT", + "Date": "Fri, 23 Sep 2022 18:38:36 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -410,12 +407,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_822444254559?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_521770541396?api-version=2022-06-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -423,7 +420,7 @@ "Connection": "keep-alive", "Content-Length": "1998", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -434,7 +431,7 @@ "owner": "sdkteam" }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/gpu-cluster", - "displayName": "test_822444254559", + "displayName": "test_521770541396", "experimentName": "my_first_experiment_image_multilabel_classification", "isArchived": false, "jobType": "Pipeline", @@ -503,26 +500,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4367", + "Content-Length": "4362", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 14:53:40 GMT", + "Date": "Fri, 23 Sep 2022 18:38:43 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_822444254559?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_521770541396?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-7c1847cfb34d15eecc51834acc6c525a-4104602b1c1fc402-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-563afcbcae2387aaef5fff10f06814bb-f6b879cb90fe4b38-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fb3c9b3f-c37e-444d-aa89-395223c04f42", - "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-correlation-request-id": "8eec6a32-078d-46d1-80f9-6de20377aa59", + "x-ms-ratelimit-remaining-subscription-writes": "1192", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T145341Z:fb3c9b3f-c37e-444d-aa89-395223c04f42", - "x-request-time": "16.629" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183843Z:8eec6a32-078d-46d1-80f9-6de20377aa59", + "x-request-time": "3.017" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_822444254559", - "name": "test_822444254559", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_521770541396", + "name": "test_521770541396", "type": "Microsoft.MachineLearningServices/workspaces/jobs", "properties": { "description": "The hello world pipeline job", @@ -542,14 +539,14 @@ "azureml.defaultDataStoreName": "workspaceblobstore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_822444254559", + "displayName": "test_521770541396", "status": "Preparing", "experimentName": "my_first_experiment_image_multilabel_classification", "services": { "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null @@ -557,7 +554,7 @@ "Studio": { "jobServiceType": "Studio", "port": null, - "endpoint": "https://ml.azure.com/runs/test_822444254559?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "endpoint": "https://ml.azure.com/runs/test_521770541396?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, "properties": null @@ -635,47 +632,101 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-23T14:53:40.7100665\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T18:38:43.3837535\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_822444254559/cancel?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_521770541396/cancel?api-version=2022-06-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, - "StatusCode": 202, + "StatusCode": 400, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4", + "Content-Length": "1220", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 14:53:42 GMT", + "Date": "Fri, 23 Sep 2022 18:39:01 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/mfeOperationResults/jc:e17a3673-0df1-4734-b827-58bdbe7ad5bc:test_822444254559?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-async-operation-timeout": "PT1H", - "x-ms-correlation-request-id": "0849aa5c-f327-4175-929c-c0f4bae1943e", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T145343Z:0849aa5c-f327-4175-929c-c0f4bae1943e", - "x-request-time": "1.030" + "x-ms-correlation-request-id": "cf105575-3e15-4a1d-85a0-a73e66189236", + "x-ms-ratelimit-remaining-subscription-writes": "1175", + "x-ms-response-type": "error", + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183901Z:cf105575-3e15-4a1d-85a0-a73e66189236", + "x-request-time": "15.323" }, - "ResponseBody": "null" + "ResponseBody": { + "error": { + "code": "UserError", + "message": "The pipeline run test_521770541396 is in terminal status, it can\u0027t be canceled.", + "details": [], + "additionalInfo": [ + { + "type": "ComponentName", + "info": { + "value": "managementfrontend" + } + }, + { + "type": "Correlation", + "info": { + "value": { + "operation": "325361803eb66af2fce3903379f9a9ba", + "request": "fd8849fcfb15c0af" + } + } + }, + { + "type": "Environment", + "info": { + "value": "eastus2" + } + }, + { + "type": "Location", + "info": { + "value": "eastus2" + } + }, + { + "type": "Time", + "info": { + "value": "2022-09-23T18:39:01.4717302\u002B00:00" + } + }, + { + "type": "InnerError", + "info": { + "value": { + "code": "BadArgument", + "innerError": { + "code": "ArgumentInvalid", + "innerError": { + "code": "CancelPipelineRunInTerminalStatus", + "innerError": null + } + } + } + } + } + ] + } + } } ], "Variables": { - "name": "test_822444254559" + "name": "test_521770541396" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_automl_image_object_detection.json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_automl_image_object_detection.json index 77c17ec11ffa..d2c33918f222 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_automl_image_object_detection.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_automl_image_object_detection.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,41 +15,48 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 14:54:17 GMT", + "Date": "Fri, 23 Sep 2022 18:39:05 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-42fd57ce441bad9aec7486144115948c-2e55ea4cb98ac823-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-e1d1450de736315fc6f727de8f8c8041-e66cb3720a342164-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "294aedb3-ac34-45be-946b-b6474ab13d30", - "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-correlation-request-id": "dcbd9ee4-58f7-4a77-83e6-6bb9a62b4686", + "x-ms-ratelimit-remaining-subscription-reads": "11971", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T145418Z:294aedb3-ac34-45be-946b-b6474ab13d30", - "x-request-time": "0.046" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183905Z:dcbd9ee4-58f7-4a77-83e6-6bb9a62b4686", + "x-request-time": "0.022" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/gpu-cluster", "name": "gpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-19T00:10:24.4650736\u002B00:00", - "modifiedOn": "2022-09-19T00:10:31.0007111\u002B00:00", + "createdOn": "2022-09-22T03:11:29.7706914\u002B00:00", + "modifiedOn": "2022-09-22T03:11:30.2032599\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", - "provisioningState": "Succeeded", - "provisioningErrors": null, + "computeLocation": "eastus2", + "provisioningState": "Failed", + "provisioningErrors": [ + { + "error": { + "code": "VmSizeNotSupported", + "message": "STANDARD_ND6S is not supported in region eastus2. Please choose a different VM size." + } + } + ], "isAttachedCompute": false, "properties": { "vmSize": "STANDARD_ND6S", @@ -57,27 +64,17 @@ "scaleSettings": { "maxNodeCount": 4, "minNodeCount": 0, - "nodeIdleTimeBeforeScaleDown": "PT2M" + "nodeIdleTimeBeforeScaleDown": null }, "subnet": null, - "currentNodeCount": 0, - "targetNodeCount": 0, - "nodeStateCounts": { - "preparingNodeCount": 0, - "runningNodeCount": 0, - "idleNodeCount": 0, - "unusableNodeCount": 0, - "leavingNodeCount": 0, - "preemptedNodeCount": 0 - }, - "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-23T14:40:59.64\u002B00:00", + "currentNodeCount": null, + "targetNodeCount": null, + "nodeStateCounts": null, + "allocationState": null, "errors": null, - "remoteLoginPortPublicAccess": "Enabled", - "osType": "Linux", + "remoteLoginPortPublicAccess": "NotSpecified", "virtualMachineImage": null, - "isolatedNetwork": false, - "propertyBag": {} + "isolatedNetwork": false } } } @@ -89,7 +86,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -97,24 +94,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 14:54:18 GMT", + "Date": "Fri, 23 Sep 2022 18:39:07 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-d7af19ad5710068afd6a47568a923aba-fdfc3f27ab92dfc9-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-add63ebcaadfb74218e7d9a5e5dfa060-00a796a560e168f5-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3ba73b00-1149-4483-87b5-f5d4efd319c9", - "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-correlation-request-id": "5b5050f0-cb69-4a58-b0d3-72c2e9644fdc", + "x-ms-ratelimit-remaining-subscription-reads": "11970", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T145419Z:3ba73b00-1149-4483-87b5-f5d4efd319c9", - "x-request-time": "0.125" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183907Z:5b5050f0-cb69-4a58-b0d3-72c2e9644fdc", + "x-request-time": "0.076" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -129,17 +126,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sawcdivl5vo3cem", - "containerName": "azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-19T00:10:19.4497254\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-19T00:10:20.0957203\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -153,7 +150,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -161,21 +158,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 14:54:19 GMT", + "Date": "Fri, 23 Sep 2022 18:39:09 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-e329d0b55e3c68ae2bb32ebc4a7878b5-dd712eb8ed417f6b-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-0c792ebbca9ec128943fc0c277450fb0-c383990fc21d2f6a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "50200f91-d555-4867-b7f8-49b743e349ad", - "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-correlation-request-id": "f5fe6eb1-cff7-4e46-927a-de1351e00283", + "x-ms-ratelimit-remaining-subscription-writes": "1174", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T145420Z:50200f91-d555-4867-b7f8-49b743e349ad", - "x-request-time": "0.135" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183909Z:f5fe6eb1-cff7-4e46-927a-de1351e00283", + "x-request-time": "0.114" }, "ResponseBody": { "secretsType": "AccountKey", @@ -183,15 +180,15 @@ } }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000/train/MLTable", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/train/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 23 Sep 2022 14:54:20 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 18:39:11 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -200,9 +197,9 @@ "Content-Length": "264", "Content-MD5": "bxQgDk/2/IhOiVcx8\u002BLMhg==", "Content-Type": "application/octet-stream", - "Date": "Fri, 23 Sep 2022 14:54:19 GMT", - "ETag": "\u00220x8DA9CB0311A8D12\u0022", - "Last-Modified": "Thu, 22 Sep 2022 15:36:17 GMT", + "Date": "Fri, 23 Sep 2022 18:39:09 GMT", + "ETag": "\u00220x8DA9D7B10D8097C\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:48:31 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -211,32 +208,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 22 Sep 2022 15:36:17 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:48:31 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ce657398-583c-469b-b4b0-0f77431834b2", + "x-ms-meta-name": "57277494-a6cd-4903-996f-ad115e220387", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "4a0df81e-f2b3-4f78-bfe0-3412ecbc4559", + "x-ms-meta-version": "54ac021d-c648-420d-9abd-3437ef2360bb", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/az-ml-artifacts/00000000000000000000000000000000/train/MLTable", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/train/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 23 Sep 2022 14:54:20 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 18:39:11 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 23 Sep 2022 14:54:19 GMT", + "Date": "Fri, 23 Sep 2022 18:39:09 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -244,7 +241,7 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, @@ -255,7 +252,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -263,24 +260,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 14:54:19 GMT", + "Date": "Fri, 23 Sep 2022 18:39:10 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-50a11c88e22f18eb650606452d4b3197-e967ac8de8faec84-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-6f3a001516031de4a150b5ba0b03c7ea-fbb15ae1d9737553-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cfea0b5a-0a58-4819-85d3-54d79c0495ed", - "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-correlation-request-id": "947086a8-2cb8-4647-8d3e-6dfd3964692f", + "x-ms-ratelimit-remaining-subscription-reads": "11969", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T145420Z:cfea0b5a-0a58-4819-85d3-54d79c0495ed", - "x-request-time": "0.139" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183910Z:947086a8-2cb8-4647-8d3e-6dfd3964692f", + "x-request-time": "0.097" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -295,17 +292,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sawcdivl5vo3cem", - "containerName": "azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-19T00:10:19.4497254\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-19T00:10:20.0957203\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -319,7 +316,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -327,21 +324,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 14:54:21 GMT", + "Date": "Fri, 23 Sep 2022 18:39:11 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-77ba514cd43fa73b8c9043c55e5aa39d-f637abf71577b9f1-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-80b1b1e5a0a66fe348c4d3cbe029f84f-dfb6d33293786f52-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2a2c12c4-d3f3-4317-947c-fbe2055d37ae", - "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-correlation-request-id": "084ea007-bb1a-4de8-9ec6-12e656e9c666", + "x-ms-ratelimit-remaining-subscription-writes": "1173", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T145422Z:2a2c12c4-d3f3-4317-947c-fbe2055d37ae", - "x-request-time": "0.099" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183911Z:084ea007-bb1a-4de8-9ec6-12e656e9c666", + "x-request-time": "0.083" }, "ResponseBody": { "secretsType": "AccountKey", @@ -349,15 +346,15 @@ } }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000/valid/MLTable", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/valid/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 23 Sep 2022 14:54:22 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 18:39:13 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -366,9 +363,9 @@ "Content-Length": "269", "Content-MD5": "WaHfrrWZTI6RIAay8\u002BmxMg==", "Content-Type": "application/octet-stream", - "Date": "Fri, 23 Sep 2022 14:54:21 GMT", - "ETag": "\u00220x8DA9CB031787EA8\u0022", - "Last-Modified": "Thu, 22 Sep 2022 15:36:18 GMT", + "Date": "Fri, 23 Sep 2022 18:39:11 GMT", + "ETag": "\u00220x8DA9D7B12D600B7\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:48:34 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -377,32 +374,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 22 Sep 2022 15:36:18 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:48:34 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "f6e6496a-445c-4394-81cf-0495ec7fca58", + "x-ms-meta-name": "d0491f24-ae24-448f-90e4-8c725cb53a00", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "8794687c-c3c8-4a79-b191-e559926b46be", + "x-ms-meta-version": "de4cec3c-b35d-4018-b63f-bfa5fe391558", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/az-ml-artifacts/00000000000000000000000000000000/valid/MLTable", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/valid/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 23 Sep 2022 14:54:22 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 18:39:14 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 23 Sep 2022 14:54:21 GMT", + "Date": "Fri, 23 Sep 2022 18:39:11 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -410,12 +407,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_335234919535?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_769414035001?api-version=2022-06-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -423,7 +420,7 @@ "Connection": "keep-alive", "Content-Length": "1989", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -434,7 +431,7 @@ "owner": "sdkteam" }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/gpu-cluster", - "displayName": "test_335234919535", + "displayName": "test_769414035001", "experimentName": "my_first_experiment_image_object_detection", "isArchived": false, "jobType": "Pipeline", @@ -504,26 +501,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4368", + "Content-Length": "4365", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 14:54:27 GMT", + "Date": "Fri, 23 Sep 2022 18:39:20 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_335234919535?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_769414035001?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-56b665cac0df2bb601179a7ab88f9d93-48c4eb808bdfc706-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-ea79574e28b8d2df9b07579667cbb96f-efbbb145927d9a70-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1eb2daab-634a-45a1-a98a-6c6cde04154b", - "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-correlation-request-id": "2d64cd33-0eea-4871-a7f7-4a4b34ca2eeb", + "x-ms-ratelimit-remaining-subscription-writes": "1191", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T145427Z:1eb2daab-634a-45a1-a98a-6c6cde04154b", - "x-request-time": "3.085" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183921Z:2d64cd33-0eea-4871-a7f7-4a4b34ca2eeb", + "x-request-time": "3.763" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_335234919535", - "name": "test_335234919535", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_769414035001", + "name": "test_769414035001", "type": "Microsoft.MachineLearningServices/workspaces/jobs", "properties": { "description": "The hello world pipeline job", @@ -543,14 +540,14 @@ "azureml.defaultDataStoreName": "workspaceblobstore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_335234919535", + "displayName": "test_769414035001", "status": "Preparing", "experimentName": "my_first_experiment_image_object_detection", "services": { "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null @@ -558,7 +555,7 @@ "Studio": { "jobServiceType": "Studio", "port": null, - "endpoint": "https://ml.azure.com/runs/test_335234919535?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "endpoint": "https://ml.azure.com/runs/test_769414035001?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, "properties": null @@ -637,47 +634,101 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-23T14:54:27.50762\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T18:39:20.5837357\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_335234919535/cancel?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_769414035001/cancel?api-version=2022-06-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, - "StatusCode": 202, + "StatusCode": 400, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4", + "Content-Length": "1220", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 23 Sep 2022 14:54:29 GMT", + "Date": "Fri, 23 Sep 2022 18:39:38 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/mfeOperationResults/jc:e17a3673-0df1-4734-b827-58bdbe7ad5bc:test_335234919535?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-async-operation-timeout": "PT1H", - "x-ms-correlation-request-id": "59a4ab79-0b4b-436d-9097-323969bb0bc7", - "x-ms-ratelimit-remaining-subscription-writes": "1197", - "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220923T145430Z:59a4ab79-0b4b-436d-9097-323969bb0bc7", - "x-request-time": "0.594" + "x-ms-correlation-request-id": "5a713d84-0dd5-4c7f-996e-2bc5b1b65b18", + "x-ms-ratelimit-remaining-subscription-writes": "1172", + "x-ms-response-type": "error", + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183939Z:5a713d84-0dd5-4c7f-996e-2bc5b1b65b18", + "x-request-time": "15.303" }, - "ResponseBody": "null" + "ResponseBody": { + "error": { + "code": "UserError", + "message": "The pipeline run test_769414035001 is in terminal status, it can\u0027t be canceled.", + "details": [], + "additionalInfo": [ + { + "type": "ComponentName", + "info": { + "value": "managementfrontend" + } + }, + { + "type": "Correlation", + "info": { + "value": { + "operation": "c0db89c25e50aaa160a349e83ed882c9", + "request": "23569d063603177e" + } + } + }, + { + "type": "Environment", + "info": { + "value": "eastus2" + } + }, + { + "type": "Location", + "info": { + "value": "eastus2" + } + }, + { + "type": "Time", + "info": { + "value": "2022-09-23T18:39:39.0155841\u002B00:00" + } + }, + { + "type": "InnerError", + "info": { + "value": { + "code": "BadArgument", + "innerError": { + "code": "ArgumentInvalid", + "innerError": { + "code": "CancelPipelineRunInTerminalStatus", + "innerError": null + } + } + } + } + } + ] + } + } } ], "Variables": { - "name": "test_335234919535" + "name": "test_769414035001" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_automl_regression.json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_automl_regression.json index 580f7c793fb3..95d1dac1dec2 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_automl_regression.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_automl_regression.json @@ -1,35 +1,5 @@ { "Entries": [ - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/mfeOperationResults/jc:a6d5a3b8-8717-4928-b8f7-4c9f36d21085:test_142699986723?api-version=2022-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Fri, 16 Sep 2022 19:49:51 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-b24d64cd152270f01eb2a820ddffc7b0-519512a28dfffc54-01\u0022", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2f4dd25f-d5c6-418b-8718-8b97ac2836c0", - "x-ms-ratelimit-remaining-subscription-reads": "11974", - "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194951Z:2f4dd25f-d5c6-418b-8718-8b97ac2836c0", - "x-request-time": "0.028" - }, - "ResponseBody": null - }, { "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster?api-version=2022-01-01-preview", "RequestMethod": "GET", @@ -37,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -45,39 +15,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:49:51 GMT", + "Date": "Fri, 23 Sep 2022 18:33:27 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-cacb863a2c9db6ad6a7b4f90f5f68aaf-7efba44b9e51d962-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-4d6f7101d061d0d63ce4fb9b2135b34a-d0e30acb6ced1323-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3b87da86-c7e9-49e5-a14d-e44860ea567a", - "x-ms-ratelimit-remaining-subscription-reads": "11811", + "x-ms-correlation-request-id": "b3357cb5-69a0-4f07-8ab9-12d5205b7f8d", + "x-ms-ratelimit-remaining-subscription-reads": "11999", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194951Z:3b87da86-c7e9-49e5-a14d-e44860ea567a", - "x-request-time": "0.066" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183327Z:b3357cb5-69a0-4f07-8ab9-12d5205b7f8d", + "x-request-time": "0.071" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.912489\u002B00:00", - "modifiedOn": "2022-09-15T03:11:50.5830108\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "eastus2", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -90,18 +60,18 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 4, + "currentNodeCount": 0, + "targetNodeCount": 2, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 4, + "runningNodeCount": 0, "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-16T19:44:21.123\u002B00:00", + "allocationState": "Resizing", + "allocationStateTransitionTime": "2022-09-23T18:29:36.369\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -119,7 +89,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -127,24 +97,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:49:52 GMT", + "Date": "Fri, 23 Sep 2022 18:33:30 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-0be92e2136b65c303e0864ec06b7052d-7ba4abd640a1cf6d-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-136edab72775bde815451e686dc1c32d-10aea87d7a7ead9f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f4aff3ab-4477-44e5-b8dc-f89524dea89f", - "x-ms-ratelimit-remaining-subscription-reads": "11810", + "x-ms-correlation-request-id": "4d7f0730-8a35-4d18-aaa1-d76f5af85b0e", + "x-ms-ratelimit-remaining-subscription-reads": "11998", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194952Z:f4aff3ab-4477-44e5-b8dc-f89524dea89f", - "x-request-time": "0.124" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183330Z:4d7f0730-8a35-4d18-aaa1-d76f5af85b0e", + "x-request-time": "0.629" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -159,17 +129,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -183,7 +153,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -191,21 +161,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:49:53 GMT", + "Date": "Fri, 23 Sep 2022 18:33:31 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-50c69f51aa541f41f4221359ba0afb21-87be6ab43a577721-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-3d1ce5e945be5f1f9136fc33a51c19c3-f964997487e516c5-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a59c9b15-165f-4e2b-b783-3021e5eba475", - "x-ms-ratelimit-remaining-subscription-writes": "1106", + "x-ms-correlation-request-id": "7621d3ea-d65f-497d-ae6a-0a8517f9fa31", + "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194953Z:a59c9b15-165f-4e2b-b783-3021e5eba475", - "x-request-time": "0.117" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183331Z:7621d3ea-d65f-497d-ae6a-0a8517f9fa31", + "x-request-time": "0.180" }, "ResponseBody": { "secretsType": "AccountKey", @@ -213,15 +183,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/train/MLTable", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/train/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:49:52 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 18:33:33 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -230,9 +200,9 @@ "Content-Length": "161", "Content-MD5": "h3r6/Xpef\u002BHb9IhiMc/SFQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:49:53 GMT", - "ETag": "\u00220x8DA96C8B61C3156\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:16:41 GMT", + "Date": "Fri, 23 Sep 2022 18:33:32 GMT", + "ETag": "\u00220x8DA9D7A95A994CD\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:45:04 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -241,32 +211,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:16:41 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:45:04 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "16948b70-7878-494b-bd20-50defb2fe531", + "x-ms-meta-name": "bc774afd-57f2-43b9-b726-f8edc4eb3383", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "a5bf3543-3c7b-4804-906b-9d901f5a16f2", + "x-ms-meta-version": "2c87ed00-5ed3-4609-9d91-12cdf0a4dffd", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/train/MLTable", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/train/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:49:52 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 18:33:35 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:49:53 GMT", + "Date": "Fri, 23 Sep 2022 18:33:33 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -274,7 +244,7 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, @@ -285,7 +255,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -293,24 +263,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:49:53 GMT", + "Date": "Fri, 23 Sep 2022 18:33:34 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-f11b79a2809c16a25e819fa440781cbc-e6a693842d9ad15b-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-23ee144a18a2fb86ac31e1c068f8690a-4e050e0befa274cd-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "da0b658b-c8b1-443e-bccf-337f1d1057cd", - "x-ms-ratelimit-remaining-subscription-reads": "11809", + "x-ms-correlation-request-id": "b6deafca-2027-4e7d-a1e6-48abf3193610", + "x-ms-ratelimit-remaining-subscription-reads": "11997", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194954Z:da0b658b-c8b1-443e-bccf-337f1d1057cd", - "x-request-time": "0.119" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183334Z:b6deafca-2027-4e7d-a1e6-48abf3193610", + "x-request-time": "0.102" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -325,17 +295,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -349,7 +319,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -357,21 +327,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:49:54 GMT", + "Date": "Fri, 23 Sep 2022 18:33:35 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-c50d9a823bca203fb198e8956a29ba86-86a266caf3def661-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-d20fb833345916b6a4b4d9779e4d0c96-2e6823fe7ef497bd-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1198021d-a4ee-44b6-9c07-6aa898645045", - "x-ms-ratelimit-remaining-subscription-writes": "1105", + "x-ms-correlation-request-id": "2c9b3d2e-67fd-47e1-a73e-4f33e1ff0345", + "x-ms-ratelimit-remaining-subscription-writes": "1198", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194954Z:1198021d-a4ee-44b6-9c07-6aa898645045", - "x-request-time": "0.105" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183335Z:2c9b3d2e-67fd-47e1-a73e-4f33e1ff0345", + "x-request-time": "0.078" }, "ResponseBody": { "secretsType": "AccountKey", @@ -379,15 +349,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/valid/MLTable", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/valid/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:49:53 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 18:33:37 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -396,9 +366,9 @@ "Content-Length": "161", "Content-MD5": "qA3bLWn7gYC8gSAWfKEZnQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:49:54 GMT", - "ETag": "\u00220x8DA96C8B66BA562\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:16:42 GMT", + "Date": "Fri, 23 Sep 2022 18:33:35 GMT", + "ETag": "\u00220x8DA9D7A97A764F3\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:45:08 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -407,32 +377,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:16:42 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:45:07 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "9b54e0be-fbb1-4cc3-a8e5-bb5d1af56284", + "x-ms-meta-name": "13565d14-8846-4698-8c06-507da58d7494", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "2850b6bc-b556-4666-9cb8-6453a73cfcee", + "x-ms-meta-version": "214c3221-dbc1-4934-baff-790510ec40f4", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/valid/MLTable", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/valid/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:49:53 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 18:33:37 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:49:54 GMT", + "Date": "Fri, 23 Sep 2022 18:33:35 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -440,7 +410,7 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, @@ -451,7 +421,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -459,24 +429,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:49:54 GMT", + "Date": "Fri, 23 Sep 2022 18:33:36 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-f99ef5772150c35b0f5be1e94c09a14b-3d7dd0da05d5e970-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-4715e23989a4d860e95820722256236c-add80e64de49e31b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e9cb2b6b-a8bb-4bb5-baa8-99729cafe39b", - "x-ms-ratelimit-remaining-subscription-reads": "11808", + "x-ms-correlation-request-id": "bc92f8d0-ecb9-43f4-8129-1f7696cf65fa", + "x-ms-ratelimit-remaining-subscription-reads": "11996", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194954Z:e9cb2b6b-a8bb-4bb5-baa8-99729cafe39b", - "x-request-time": "0.093" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183336Z:bc92f8d0-ecb9-43f4-8129-1f7696cf65fa", + "x-request-time": "0.102" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -491,17 +461,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -515,7 +485,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -523,21 +493,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:49:55 GMT", + "Date": "Fri, 23 Sep 2022 18:33:37 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-cc4fccdc491790ba5a38d3767dafdec0-265246821add015b-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-cd1e8e873e8e3eb226f73297e92ef233-eef5e861b335e9f2-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b7914747-d73b-4d4c-aff8-bd711dc5115f", - "x-ms-ratelimit-remaining-subscription-writes": "1104", + "x-ms-correlation-request-id": "dc7c3a00-7a81-488b-8dcb-54c5de99ec95", + "x-ms-ratelimit-remaining-subscription-writes": "1197", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194955Z:b7914747-d73b-4d4c-aff8-bd711dc5115f", - "x-request-time": "0.097" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183337Z:dc7c3a00-7a81-488b-8dcb-54c5de99ec95", + "x-request-time": "0.108" }, "ResponseBody": { "secretsType": "AccountKey", @@ -545,15 +515,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/test/MLTable", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/test/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:49:54 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 18:33:39 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -562,9 +532,9 @@ "Content-Length": "160", "Content-MD5": "\u002Bzzu\u002BdOpxOfZaP9Md/7L5A==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:49:55 GMT", - "ETag": "\u00220x8DA96C8B6BA2F2C\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:16:42 GMT", + "Date": "Fri, 23 Sep 2022 18:33:37 GMT", + "ETag": "\u00220x8DA9D7A99C7371F\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:45:11 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -573,32 +543,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:16:42 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:45:11 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "b15aad95-c535-4a4f-abaf-c301adb8453e", + "x-ms-meta-name": "f1853404-0933-46af-922a-d159df5aa250", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "ff7ad056-7716-49f1-90a8-410020a685c6", + "x-ms-meta-version": "d7676597-9bee-4a5f-863c-80a293fc6b86", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/test/MLTable", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/test/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:49:54 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 18:33:40 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:49:55 GMT", + "Date": "Fri, 23 Sep 2022 18:33:37 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -606,12 +576,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_709981259768?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_681694707469?api-version=2022-06-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -619,7 +589,7 @@ "Connection": "keep-alive", "Content-Length": "1572", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -630,7 +600,7 @@ "owner": "sdkteam" }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", - "displayName": "test_709981259768", + "displayName": "test_681694707469", "experimentName": "my_first_experiment", "isArchived": false, "jobType": "Pipeline", @@ -685,26 +655,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3831", + "Content-Length": "3826", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:50:00 GMT", + "Date": "Fri, 23 Sep 2022 18:33:47 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_709981259768?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_681694707469?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-fc18ddbd57cf25273274a8b7cc830224-ca0c3a8535f03d87-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-96a4f1450a2cb1db38241f394b45bf2b-a352aa15d32f7b06-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ce202fe1-b313-4c3f-b5f6-1bb799327e9d", - "x-ms-ratelimit-remaining-subscription-writes": "1054", + "x-ms-correlation-request-id": "13e76272-68c6-4abb-be5e-d3d4a889c3b1", + "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195000Z:ce202fe1-b313-4c3f-b5f6-1bb799327e9d", - "x-request-time": "2.717" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183348Z:13e76272-68c6-4abb-be5e-d3d4a889c3b1", + "x-request-time": "4.057" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_709981259768", - "name": "test_709981259768", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_681694707469", + "name": "test_681694707469", "type": "Microsoft.MachineLearningServices/workspaces/jobs", "properties": { "description": "The hello world pipeline job", @@ -724,14 +694,14 @@ "azureml.defaultDataStoreName": "workspaceblobstore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_709981259768", + "displayName": "test_681694707469", "status": "Preparing", "experimentName": "my_first_experiment", "services": { "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null @@ -739,7 +709,7 @@ "Studio": { "jobServiceType": "Studio", "port": null, - "endpoint": "https://ml.azure.com/runs/test_709981259768?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "endpoint": "https://ml.azure.com/runs/test_681694707469?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, "properties": null @@ -805,21 +775,21 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-16T19:50:00.2571322\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T18:33:47.7535467\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_709981259768/cancel?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_681694707469/cancel?api-version=2022-06-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 202, @@ -827,25 +797,55 @@ "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:50:01 GMT", + "Date": "Fri, 23 Sep 2022 18:33:51 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/mfeOperationResults/jc:a6d5a3b8-8717-4928-b8f7-4c9f36d21085:test_709981259768?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2/mfeOperationResults/jc:e950f876-7257-4cf3-99a5-ff66812ac44c:test_681694707469?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", "x-ms-async-operation-timeout": "PT1H", - "x-ms-correlation-request-id": "dd1bcd49-a6bd-4af3-806d-d9a10a1203f8", - "x-ms-ratelimit-remaining-subscription-writes": "1103", + "x-ms-correlation-request-id": "bc078db7-a9f7-470b-9b80-8f46676ec666", + "x-ms-ratelimit-remaining-subscription-writes": "1196", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195002Z:dd1bcd49-a6bd-4af3-806d-d9a10a1203f8", - "x-request-time": "0.586" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183352Z:bc078db7-a9f7-470b-9b80-8f46676ec666", + "x-request-time": "0.500" }, "ResponseBody": "null" + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2/mfeOperationResults/jc:e950f876-7257-4cf3-99a5-ff66812ac44c:test_681694707469?api-version=2022-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Fri, 23 Sep 2022 18:34:22 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-3fb0ab8818b5b1745595e8b5f19afad5-a8830a758986e401-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-aml-cluster": "vienna-eastus2-02", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "33dd302c-04c3-490a-a907-9ab2a19dc96b", + "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183423Z:33dd302c-04c3-490a-a907-9ab2a19dc96b", + "x-request-time": "0.028" + }, + "ResponseBody": null } ], "Variables": { - "name": "test_709981259768" + "name": "test_681694707469" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_automl_text_classification.json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_automl_text_classification.json index f32e519daeee..b9560b6be559 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_automl_text_classification.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_automl_text_classification.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,41 +15,48 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:50:26 GMT", + "Date": "Fri, 23 Sep 2022 18:36:09 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-de0f0bb2aefa187b8a77fe15476e7ed7-e6df9d4e95d24a94-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-65855e6909de518b74608d3a857e2f39-8ea9b6d42e082cb4-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0a97be34-74f3-4f0e-9ea5-831bfe0dad7e", - "x-ms-ratelimit-remaining-subscription-reads": "11800", + "x-ms-correlation-request-id": "30496c95-864d-4a3f-989e-09ab5b6f86dc", + "x-ms-ratelimit-remaining-subscription-reads": "11986", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195027Z:0a97be34-74f3-4f0e-9ea5-831bfe0dad7e", - "x-request-time": "0.102" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183609Z:30496c95-864d-4a3f-989e-09ab5b6f86dc", + "x-request-time": "0.059" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/gpu-cluster", "name": "gpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.9201731\u002B00:00", - "modifiedOn": "2022-09-15T03:11:53.646313\u002B00:00", + "createdOn": "2022-09-22T03:11:29.7706914\u002B00:00", + "modifiedOn": "2022-09-22T03:11:30.2032599\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", - "provisioningState": "Succeeded", - "provisioningErrors": null, + "computeLocation": "eastus2", + "provisioningState": "Failed", + "provisioningErrors": [ + { + "error": { + "code": "VmSizeNotSupported", + "message": "STANDARD_ND6S is not supported in region eastus2. Please choose a different VM size." + } + } + ], "isAttachedCompute": false, "properties": { "vmSize": "STANDARD_ND6S", @@ -57,27 +64,17 @@ "scaleSettings": { "maxNodeCount": 4, "minNodeCount": 0, - "nodeIdleTimeBeforeScaleDown": "PT2M" + "nodeIdleTimeBeforeScaleDown": null }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 4, - "nodeStateCounts": { - "preparingNodeCount": 0, - "runningNodeCount": 4, - "idleNodeCount": 0, - "unusableNodeCount": 0, - "leavingNodeCount": 0, - "preemptedNodeCount": 0 - }, - "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-16T19:38:30.16\u002B00:00", + "currentNodeCount": null, + "targetNodeCount": null, + "nodeStateCounts": null, + "allocationState": null, "errors": null, - "remoteLoginPortPublicAccess": "Enabled", - "osType": "Linux", + "remoteLoginPortPublicAccess": "NotSpecified", "virtualMachineImage": null, - "isolatedNetwork": false, - "propertyBag": {} + "isolatedNetwork": false } } } @@ -89,7 +86,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -97,24 +94,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:50:27 GMT", + "Date": "Fri, 23 Sep 2022 18:36:11 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-364cdf025487e75d69394dee20691550-3ed3cd54587cd339-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-e41aec9cf2d1c9da09d56aff70452330-b526e1573b89de94-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6900151a-1034-45b9-8b7e-3526e03b824b", - "x-ms-ratelimit-remaining-subscription-reads": "11799", + "x-ms-correlation-request-id": "7bdc7b29-2c3b-4679-b58d-0dc11e0a230f", + "x-ms-ratelimit-remaining-subscription-reads": "11985", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195028Z:6900151a-1034-45b9-8b7e-3526e03b824b", - "x-request-time": "0.086" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183611Z:7bdc7b29-2c3b-4679-b58d-0dc11e0a230f", + "x-request-time": "0.118" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -129,17 +126,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -153,7 +150,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -161,21 +158,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:50:28 GMT", + "Date": "Fri, 23 Sep 2022 18:36:12 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-1998c14211bdd26591a11c2fda5a7c62-833d070895c1ba65-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-ef963a42c3a9b7e7db732b190a9d34d3-cc0c894d5912995c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8ab8f704-4406-46a1-b2b4-60f08fad82d9", - "x-ms-ratelimit-remaining-subscription-writes": "1096", + "x-ms-correlation-request-id": "2180d365-6dcb-4cd6-a9cf-8f6f5f3086cc", + "x-ms-ratelimit-remaining-subscription-writes": "1189", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195029Z:8ab8f704-4406-46a1-b2b4-60f08fad82d9", - "x-request-time": "0.125" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183612Z:2180d365-6dcb-4cd6-a9cf-8f6f5f3086cc", + "x-request-time": "0.097" }, "ResponseBody": { "secretsType": "AccountKey", @@ -183,15 +180,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/train/MLTable", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/train/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:50:27 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 18:36:14 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -200,9 +197,9 @@ "Content-Length": "242", "Content-MD5": "NqAcSUWnqc4P\u002B0m2TKgOyQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:50:28 GMT", - "ETag": "\u00220x8DA9792D0A7C8A1\u0022", - "Last-Modified": "Fri, 16 Sep 2022 03:23:24 GMT", + "Date": "Fri, 23 Sep 2022 18:36:12 GMT", + "ETag": "\u00220x8DA9D7AC9C13EA8\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:46:32 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -211,32 +208,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Fri, 16 Sep 2022 03:23:24 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:46:31 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "c3d334d7-ba9a-4cba-996c-5b1379d42044", + "x-ms-meta-name": "a4451deb-23ea-4d0f-8858-6e4e8f3f9504", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "bb15f169-3fcf-4036-a774-1649926aca60", + "x-ms-meta-version": "0f3de77a-d069-47c5-8dd1-e259206b5ca2", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/train/MLTable", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/train/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:50:28 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 18:36:15 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:50:28 GMT", + "Date": "Fri, 23 Sep 2022 18:36:12 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -244,7 +241,7 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, @@ -255,7 +252,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -263,24 +260,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:50:28 GMT", + "Date": "Fri, 23 Sep 2022 18:36:13 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-433a52a631190150032bfc5ccd74d583-ea189008b79986b4-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-195b65ade6eca93de2186b551b0934e9-f6a6eaf7c2176522-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e66cc2ee-8d41-4320-95ce-5d33575ff6e5", - "x-ms-ratelimit-remaining-subscription-reads": "11798", + "x-ms-correlation-request-id": "39e323a0-c151-40f3-b864-0a81a05fa4a2", + "x-ms-ratelimit-remaining-subscription-reads": "11984", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195029Z:e66cc2ee-8d41-4320-95ce-5d33575ff6e5", - "x-request-time": "0.078" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183614Z:39e323a0-c151-40f3-b864-0a81a05fa4a2", + "x-request-time": "0.076" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -295,17 +292,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -319,7 +316,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -327,21 +324,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:50:30 GMT", + "Date": "Fri, 23 Sep 2022 18:36:14 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-03cbb65e408dc423abb94419a4b33877-4819010fc8c43901-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-339b8bc619379c87a5521429015898f0-77183412d16bd558-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9547ce7c-79d2-4887-815d-228664b05362", - "x-ms-ratelimit-remaining-subscription-writes": "1095", + "x-ms-correlation-request-id": "7bf4c9f1-441a-4fd6-acf6-517d1f58a5d9", + "x-ms-ratelimit-remaining-subscription-writes": "1188", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195030Z:9547ce7c-79d2-4887-815d-228664b05362", - "x-request-time": "0.096" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183614Z:7bf4c9f1-441a-4fd6-acf6-517d1f58a5d9", + "x-request-time": "0.101" }, "ResponseBody": { "secretsType": "AccountKey", @@ -349,15 +346,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/valid/MLTable", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/valid/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:50:29 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 18:36:16 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -366,9 +363,9 @@ "Content-Length": "242", "Content-MD5": "dSNPUJ/1XJb7PLBObFnwjg==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:50:29 GMT", - "ETag": "\u00220x8DA9792D11D35C1\u0022", - "Last-Modified": "Fri, 16 Sep 2022 03:23:25 GMT", + "Date": "Fri, 23 Sep 2022 18:36:14 GMT", + "ETag": "\u00220x8DA9D7ACBF1FE59\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:46:35 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -377,32 +374,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Fri, 16 Sep 2022 03:23:25 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:46:35 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "9b2eebe6-59fb-42d5-9570-1dbc074baba0", + "x-ms-meta-name": "d839069d-4c60-4740-84c3-6ad2d0cfa4d2", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "458a8a7c-1ed8-4f17-ae6d-ce62363d4a6a", + "x-ms-meta-version": "a078b77f-9dfc-48ab-ab8c-7487d4ec3e15", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/valid/MLTable", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/valid/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:50:29 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 18:36:17 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:50:29 GMT", + "Date": "Fri, 23 Sep 2022 18:36:14 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -410,42 +407,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/mfeOperationResults/jc:a6d5a3b8-8717-4928-b8f7-4c9f36d21085:test_709981259768?api-version=2022-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Fri, 16 Sep 2022 19:50:31 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-ee983a5aec1c4cd67a50b100259061fc-65b4f8aa24dece7f-01\u0022", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0706f932-d689-4584-b8e9-2894fcf5c96a", - "x-ms-ratelimit-remaining-subscription-reads": "11972", - "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195032Z:0706f932-d689-4584-b8e9-2894fcf5c96a", - "x-request-time": "0.030" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_683850527602?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_851271108535?api-version=2022-06-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -453,7 +420,7 @@ "Connection": "keep-alive", "Content-Length": "1323", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -463,7 +430,7 @@ "owner": "sdkteam" }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/gpu-cluster", - "displayName": "test_683850527602", + "displayName": "test_851271108535", "experimentName": "my_first_experiment", "isArchived": false, "jobType": "Pipeline", @@ -509,26 +476,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3465", + "Content-Length": "3460", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:50:35 GMT", + "Date": "Fri, 23 Sep 2022 18:36:21 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_683850527602?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_851271108535?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-03016b19574948ad2bf00c8d6c1997aa-fb3674ba28beb629-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-819a9153eed370771c998c577f72dab0-16ee6ff092daac75-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e563fe26-2fc6-4039-a0f7-5af6fd3eb3bc", - "x-ms-ratelimit-remaining-subscription-writes": "1051", + "x-ms-correlation-request-id": "ee4315ae-ba81-4db3-87e4-35a282f9f7c3", + "x-ms-ratelimit-remaining-subscription-writes": "1196", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195035Z:e563fe26-2fc6-4039-a0f7-5af6fd3eb3bc", - "x-request-time": "2.779" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183622Z:ee4315ae-ba81-4db3-87e4-35a282f9f7c3", + "x-request-time": "2.897" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_683850527602", - "name": "test_683850527602", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_851271108535", + "name": "test_851271108535", "type": "Microsoft.MachineLearningServices/workspaces/jobs", "properties": { "description": null, @@ -548,14 +515,14 @@ "azureml.defaultDataStoreName": "workspaceblobstore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_683850527602", + "displayName": "test_851271108535", "status": "Preparing", "experimentName": "my_first_experiment", "services": { "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null @@ -563,7 +530,7 @@ "Studio": { "jobServiceType": "Studio", "port": null, - "endpoint": "https://ml.azure.com/runs/test_683850527602?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "endpoint": "https://ml.azure.com/runs/test_851271108535?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, "properties": null @@ -618,47 +585,101 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-16T19:50:34.7790875\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T18:36:21.9100883\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_683850527602/cancel?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_851271108535/cancel?api-version=2022-06-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, - "StatusCode": 202, + "StatusCode": 400, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4", + "Content-Length": "1220", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:50:37 GMT", + "Date": "Fri, 23 Sep 2022 18:36:39 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/mfeOperationResults/jc:a6d5a3b8-8717-4928-b8f7-4c9f36d21085:test_683850527602?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-async-operation-timeout": "PT1H", - "x-ms-correlation-request-id": "64a687b1-48c5-4140-b1dd-4277130ac92a", - "x-ms-ratelimit-remaining-subscription-writes": "1094", - "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195037Z:64a687b1-48c5-4140-b1dd-4277130ac92a", - "x-request-time": "0.546" + "x-ms-correlation-request-id": "b00f9be4-5f07-477b-b144-6318ac245b7f", + "x-ms-ratelimit-remaining-subscription-writes": "1187", + "x-ms-response-type": "error", + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183640Z:b00f9be4-5f07-477b-b144-6318ac245b7f", + "x-request-time": "15.176" }, - "ResponseBody": "null" + "ResponseBody": { + "error": { + "code": "UserError", + "message": "The pipeline run test_851271108535 is in terminal status, it can\u0027t be canceled.", + "details": [], + "additionalInfo": [ + { + "type": "ComponentName", + "info": { + "value": "managementfrontend" + } + }, + { + "type": "Correlation", + "info": { + "value": { + "operation": "87687232d5738f6167e59138a43e6156", + "request": "1cd5d9e04e1f8f0c" + } + } + }, + { + "type": "Environment", + "info": { + "value": "eastus2" + } + }, + { + "type": "Location", + "info": { + "value": "eastus2" + } + }, + { + "type": "Time", + "info": { + "value": "2022-09-23T18:36:40.1986769\u002B00:00" + } + }, + { + "type": "InnerError", + "info": { + "value": { + "code": "BadArgument", + "innerError": { + "code": "ArgumentInvalid", + "innerError": { + "code": "CancelPipelineRunInTerminalStatus", + "innerError": null + } + } + } + } + } + ] + } + } } ], "Variables": { - "name": "test_683850527602" + "name": "test_851271108535" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_automl_text_classification_multilabel.json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_automl_text_classification_multilabel.json index 337fc8626057..d4fbb5daa2ba 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_automl_text_classification_multilabel.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_automl_text_classification_multilabel.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,41 +15,48 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:50:39 GMT", + "Date": "Fri, 23 Sep 2022 18:36:43 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-1213e16ec69adb4951d8cd13651044d0-ef5a895c9ff4ff87-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-10fbb253dca33b4b502ce3a4875503dc-9a285cd98727e490-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "43f9aa22-d9af-488a-a3ab-a7376a00f03a", - "x-ms-ratelimit-remaining-subscription-reads": "11797", + "x-ms-correlation-request-id": "c3d54008-fa7a-48db-80fa-331607bd853e", + "x-ms-ratelimit-remaining-subscription-reads": "11983", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195039Z:43f9aa22-d9af-488a-a3ab-a7376a00f03a", - "x-request-time": "0.044" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183644Z:c3d54008-fa7a-48db-80fa-331607bd853e", + "x-request-time": "0.021" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/gpu-cluster", "name": "gpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.9201731\u002B00:00", - "modifiedOn": "2022-09-15T03:11:53.646313\u002B00:00", + "createdOn": "2022-09-22T03:11:29.7706914\u002B00:00", + "modifiedOn": "2022-09-22T03:11:30.2032599\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", - "provisioningState": "Succeeded", - "provisioningErrors": null, + "computeLocation": "eastus2", + "provisioningState": "Failed", + "provisioningErrors": [ + { + "error": { + "code": "VmSizeNotSupported", + "message": "STANDARD_ND6S is not supported in region eastus2. Please choose a different VM size." + } + } + ], "isAttachedCompute": false, "properties": { "vmSize": "STANDARD_ND6S", @@ -57,27 +64,17 @@ "scaleSettings": { "maxNodeCount": 4, "minNodeCount": 0, - "nodeIdleTimeBeforeScaleDown": "PT2M" + "nodeIdleTimeBeforeScaleDown": null }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 4, - "nodeStateCounts": { - "preparingNodeCount": 0, - "runningNodeCount": 4, - "idleNodeCount": 0, - "unusableNodeCount": 0, - "leavingNodeCount": 0, - "preemptedNodeCount": 0 - }, - "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-16T19:38:30.16\u002B00:00", + "currentNodeCount": null, + "targetNodeCount": null, + "nodeStateCounts": null, + "allocationState": null, "errors": null, - "remoteLoginPortPublicAccess": "Enabled", - "osType": "Linux", + "remoteLoginPortPublicAccess": "NotSpecified", "virtualMachineImage": null, - "isolatedNetwork": false, - "propertyBag": {} + "isolatedNetwork": false } } } @@ -89,7 +86,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -97,24 +94,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:50:40 GMT", + "Date": "Fri, 23 Sep 2022 18:36:45 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-99f91b6c5c8ca67b47612f105fcd651f-9e6f2ae7784c0998-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-dc8b7b232391e0b2b04c7d5d6b53a687-5f9f4b428cd63e93-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "26174801-490e-4b4f-8171-40c998d760fb", - "x-ms-ratelimit-remaining-subscription-reads": "11796", + "x-ms-correlation-request-id": "7ba834ed-05b7-4e8e-99c4-f6fc85b67746", + "x-ms-ratelimit-remaining-subscription-reads": "11982", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195040Z:26174801-490e-4b4f-8171-40c998d760fb", - "x-request-time": "0.087" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183646Z:7ba834ed-05b7-4e8e-99c4-f6fc85b67746", + "x-request-time": "0.262" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -129,17 +126,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -153,7 +150,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -161,21 +158,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:50:42 GMT", + "Date": "Fri, 23 Sep 2022 18:36:47 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-d826966f7d44b62c845f1d8a0d508572-1c82751f33bce5ca-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-741df229df84dfb7453481c2f06e2973-c3ad2c26738e0777-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "064d418c-70fd-42c6-bdd8-da2d986bd4bf", - "x-ms-ratelimit-remaining-subscription-writes": "1093", + "x-ms-correlation-request-id": "91ff23b0-9196-48e7-80e2-c1f659aca01e", + "x-ms-ratelimit-remaining-subscription-writes": "1186", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195042Z:064d418c-70fd-42c6-bdd8-da2d986bd4bf", - "x-request-time": "0.089" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183647Z:91ff23b0-9196-48e7-80e2-c1f659aca01e", + "x-request-time": "0.084" }, "ResponseBody": { "secretsType": "AccountKey", @@ -183,15 +180,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/train/MLTable", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/train/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:50:41 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 18:36:50 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -200,9 +197,9 @@ "Content-Length": "237", "Content-MD5": "d5iUinY\u002Bmn6eahGwCIVgug==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:50:41 GMT", - "ETag": "\u00220x8DA9792D8418D55\u0022", - "Last-Modified": "Fri, 16 Sep 2022 03:23:37 GMT", + "Date": "Fri, 23 Sep 2022 18:36:47 GMT", + "ETag": "\u00220x8DA9D7AE195291D\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:47:12 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -211,32 +208,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Fri, 16 Sep 2022 03:23:37 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:47:11 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "c8687949-b107-48dc-a99f-63902a0689c2", + "x-ms-meta-name": "addec948-a549-452e-9514-df81eb17e056", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "7589e29e-5f70-425b-af1c-99029220ec7b", + "x-ms-meta-version": "a0bd7256-b71b-4a65-80b2-04d3b49aad6d", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/train/MLTable", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/train/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:50:41 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 18:36:50 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:50:41 GMT", + "Date": "Fri, 23 Sep 2022 18:36:48 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -244,7 +241,7 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, @@ -255,7 +252,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -263,24 +260,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:50:42 GMT", + "Date": "Fri, 23 Sep 2022 18:36:48 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-153d111b5ef8d1e022efd8ea808d2ed4-e7c20b55bf93d6c8-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-73561813a7172478c3ebda7e663b1dd7-ff04d7f70fc52c4b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d3c69e9e-c77e-4d6c-9bfd-90f13e157587", - "x-ms-ratelimit-remaining-subscription-reads": "11795", + "x-ms-correlation-request-id": "cc641a9f-f70a-449a-a94f-c59071af4eac", + "x-ms-ratelimit-remaining-subscription-reads": "11981", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195042Z:d3c69e9e-c77e-4d6c-9bfd-90f13e157587", - "x-request-time": "0.082" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183649Z:cc641a9f-f70a-449a-a94f-c59071af4eac", + "x-request-time": "0.132" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -295,17 +292,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -319,7 +316,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -327,21 +324,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:50:43 GMT", + "Date": "Fri, 23 Sep 2022 18:36:50 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-98ce1df516048568a7183dcd909af9c7-76b29ce22d951c8b-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-27824fe8c63d028433ff4f25e27ec487-7373529deaba757b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "03900ace-7e7e-4f94-b243-4c68140901ed", - "x-ms-ratelimit-remaining-subscription-writes": "1092", + "x-ms-correlation-request-id": "c60a20dc-ed0c-4922-a9fd-6dbb58a3e171", + "x-ms-ratelimit-remaining-subscription-writes": "1185", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195043Z:03900ace-7e7e-4f94-b243-4c68140901ed", - "x-request-time": "0.084" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183651Z:c60a20dc-ed0c-4922-a9fd-6dbb58a3e171", + "x-request-time": "0.087" }, "ResponseBody": { "secretsType": "AccountKey", @@ -349,15 +346,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/valid/MLTable", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/valid/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:50:42 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 18:36:53 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -366,9 +363,9 @@ "Content-Length": "237", "Content-MD5": "zJkcQ9x3KihpmL2EgNCrfA==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:50:42 GMT", - "ETag": "\u00220x8DA9792D8A597E0\u0022", - "Last-Modified": "Fri, 16 Sep 2022 03:23:38 GMT", + "Date": "Fri, 23 Sep 2022 18:36:50 GMT", + "ETag": "\u00220x8DA9D7AE2F0B64C\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:47:14 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -377,32 +374,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Fri, 16 Sep 2022 03:23:38 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:47:14 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ce271172-c170-4699-a5f9-49e62338369a", + "x-ms-meta-name": "6d7754bd-5313-43c3-ab3d-c80561a79355", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "237cef78-1c4c-4310-a5f3-bb73f618e344", + "x-ms-meta-version": "308a396f-d846-491f-b184-ab168720c25d", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/valid/MLTable", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/valid/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:50:42 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 18:36:53 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:50:42 GMT", + "Date": "Fri, 23 Sep 2022 18:36:51 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -410,50 +407,20 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/mfeOperationResults/jc:a6d5a3b8-8717-4928-b8f7-4c9f36d21085:test_779172828776?api-version=2022-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Fri, 16 Sep 2022 19:50:44 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-5baf2685407fa801f61454557874e5b2-680bb6a5612ff628-01\u0022", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c1c71416-6265-4700-9813-8a2f0411a149", - "x-ms-ratelimit-remaining-subscription-reads": "11794", - "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195045Z:c1c71416-6265-4700-9813-8a2f0411a149", - "x-request-time": "0.031" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_389145876426?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_57794136244?api-version=2022-06-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1358", + "Content-Length": "1357", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -463,7 +430,7 @@ "owner": "sdkteam" }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/gpu-cluster", - "displayName": "test_389145876426", + "displayName": "test_57794136244", "experimentName": "my_first_experiment", "isArchived": false, "jobType": "Pipeline", @@ -506,26 +473,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3472", + "Content-Length": "3462", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:50:48 GMT", + "Date": "Fri, 23 Sep 2022 18:36:57 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_389145876426?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_57794136244?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-e1c6f28f326140bccfab863ed18bc676-9adf6cabaaa1f29c-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-71612cc4ee34faca9c2b88afa747c49c-e9f0b076da481ba8-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e092d52a-7c2c-4234-b28f-65d5729fb883", - "x-ms-ratelimit-remaining-subscription-writes": "1050", + "x-ms-correlation-request-id": "4b3c3571-f116-4b19-b6ac-fe15da7f4e9e", + "x-ms-ratelimit-remaining-subscription-writes": "1195", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195048Z:e092d52a-7c2c-4234-b28f-65d5729fb883", - "x-request-time": "2.718" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183658Z:4b3c3571-f116-4b19-b6ac-fe15da7f4e9e", + "x-request-time": "2.768" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_389145876426", - "name": "test_389145876426", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_57794136244", + "name": "test_57794136244", "type": "Microsoft.MachineLearningServices/workspaces/jobs", "properties": { "description": null, @@ -545,14 +512,14 @@ "azureml.defaultDataStoreName": "workspaceblobstore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_389145876426", + "displayName": "test_57794136244", "status": "Preparing", "experimentName": "my_first_experiment", "services": { "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null @@ -560,7 +527,7 @@ "Studio": { "jobServiceType": "Studio", "port": null, - "endpoint": "https://ml.azure.com/runs/test_389145876426?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "endpoint": "https://ml.azure.com/runs/test_57794136244?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, "properties": null @@ -612,47 +579,101 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-16T19:50:48.1576139\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T18:36:58.358647\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_389145876426/cancel?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_57794136244/cancel?api-version=2022-06-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, - "StatusCode": 202, + "StatusCode": 400, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4", + "Content-Length": "1219", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:50:50 GMT", + "Date": "Fri, 23 Sep 2022 18:37:16 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/mfeOperationResults/jc:a6d5a3b8-8717-4928-b8f7-4c9f36d21085:test_389145876426?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-async-operation-timeout": "PT1H", - "x-ms-correlation-request-id": "fdb90ea5-d76e-47f1-8aba-52a250087b77", - "x-ms-ratelimit-remaining-subscription-writes": "1091", - "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195051Z:fdb90ea5-d76e-47f1-8aba-52a250087b77", - "x-request-time": "0.807" + "x-ms-correlation-request-id": "c1c72f94-d674-459b-bf84-c7d05796eb05", + "x-ms-ratelimit-remaining-subscription-writes": "1184", + "x-ms-response-type": "error", + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183716Z:c1c72f94-d674-459b-bf84-c7d05796eb05", + "x-request-time": "15.199" }, - "ResponseBody": "null" + "ResponseBody": { + "error": { + "code": "UserError", + "message": "The pipeline run test_57794136244 is in terminal status, it can\u0027t be canceled.", + "details": [], + "additionalInfo": [ + { + "type": "ComponentName", + "info": { + "value": "managementfrontend" + } + }, + { + "type": "Correlation", + "info": { + "value": { + "operation": "c39e3ed0e50218eabb7e2a06e2ce9348", + "request": "801374e7d2fea01a" + } + } + }, + { + "type": "Environment", + "info": { + "value": "eastus2" + } + }, + { + "type": "Location", + "info": { + "value": "eastus2" + } + }, + { + "type": "Time", + "info": { + "value": "2022-09-23T18:37:16.4453079\u002B00:00" + } + }, + { + "type": "InnerError", + "info": { + "value": { + "code": "BadArgument", + "innerError": { + "code": "ArgumentInvalid", + "innerError": { + "code": "CancelPipelineRunInTerminalStatus", + "innerError": null + } + } + } + } + } + ] + } + } } ], "Variables": { - "name": "test_389145876426" + "name": "test_57794136244" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_automl_text_ner.json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_automl_text_ner.json index a3727cd55b67..e5379d0de31f 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_automl_text_ner.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_automl_text_ner.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,41 +15,48 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:50:52 GMT", + "Date": "Fri, 23 Sep 2022 18:37:19 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-20ef18f021c58ff94e73f9d9c830caf4-7f684d7f1485f98c-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-1adab723efc13494d4869ff871a5ebe8-57f2493c57f3d6ed-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a9d353b4-61a6-4894-870e-787b29e30d97", - "x-ms-ratelimit-remaining-subscription-reads": "11793", + "x-ms-correlation-request-id": "04cebd63-73ea-4623-bb15-ee991f6fb41f", + "x-ms-ratelimit-remaining-subscription-reads": "11980", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195053Z:a9d353b4-61a6-4894-870e-787b29e30d97", - "x-request-time": "0.055" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183719Z:04cebd63-73ea-4623-bb15-ee991f6fb41f", + "x-request-time": "0.022" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/gpu-cluster", "name": "gpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.9201731\u002B00:00", - "modifiedOn": "2022-09-15T03:11:53.646313\u002B00:00", + "createdOn": "2022-09-22T03:11:29.7706914\u002B00:00", + "modifiedOn": "2022-09-22T03:11:30.2032599\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", - "provisioningState": "Succeeded", - "provisioningErrors": null, + "computeLocation": "eastus2", + "provisioningState": "Failed", + "provisioningErrors": [ + { + "error": { + "code": "VmSizeNotSupported", + "message": "STANDARD_ND6S is not supported in region eastus2. Please choose a different VM size." + } + } + ], "isAttachedCompute": false, "properties": { "vmSize": "STANDARD_ND6S", @@ -57,27 +64,17 @@ "scaleSettings": { "maxNodeCount": 4, "minNodeCount": 0, - "nodeIdleTimeBeforeScaleDown": "PT2M" + "nodeIdleTimeBeforeScaleDown": null }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 4, - "nodeStateCounts": { - "preparingNodeCount": 0, - "runningNodeCount": 4, - "idleNodeCount": 0, - "unusableNodeCount": 0, - "leavingNodeCount": 0, - "preemptedNodeCount": 0 - }, - "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-16T19:38:30.16\u002B00:00", + "currentNodeCount": null, + "targetNodeCount": null, + "nodeStateCounts": null, + "allocationState": null, "errors": null, - "remoteLoginPortPublicAccess": "Enabled", - "osType": "Linux", + "remoteLoginPortPublicAccess": "NotSpecified", "virtualMachineImage": null, - "isolatedNetwork": false, - "propertyBag": {} + "isolatedNetwork": false } } } @@ -89,7 +86,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -97,24 +94,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:50:54 GMT", + "Date": "Fri, 23 Sep 2022 18:37:22 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-d753124d44be9b7a983683b768be10d2-4df08ca86db79107-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-99b9b3b42354bcabee0f8d6700eceb37-2f8b0f297ec70b1b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "01c71aae-0f83-4776-a83b-f2ca0a990a27", - "x-ms-ratelimit-remaining-subscription-reads": "11792", + "x-ms-correlation-request-id": "4d70f7e4-07da-4922-8c84-3c77bcc83240", + "x-ms-ratelimit-remaining-subscription-reads": "11979", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195054Z:01c71aae-0f83-4776-a83b-f2ca0a990a27", - "x-request-time": "0.088" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183722Z:4d70f7e4-07da-4922-8c84-3c77bcc83240", + "x-request-time": "0.107" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -129,52 +126,22 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } } }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/mfeOperationResults/jc:a6d5a3b8-8717-4928-b8f7-4c9f36d21085:test_393110994004?api-version=2022-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Fri, 16 Sep 2022 19:50:54 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-d49c083bd1a3a0f196e63d42e5ab6eea-1445aa38b366a17c-01\u0022", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9c811bbd-aaa3-46c6-86a4-a33cbb78dce3", - "x-ms-ratelimit-remaining-subscription-reads": "11971", - "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195055Z:9c811bbd-aaa3-46c6-86a4-a33cbb78dce3", - "x-request-time": "0.029" - }, - "ResponseBody": null - }, { "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore/listSecrets?api-version=2022-05-01", "RequestMethod": "POST", @@ -183,7 +150,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -191,21 +158,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:50:55 GMT", + "Date": "Fri, 23 Sep 2022 18:37:23 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-ca19059085a478fadc3c032e7adc05f6-f5f25bff1aa24a25-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-19d2baf9dad1fe552d1325668437aa06-9bb14a116ec06a92-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8865897b-3eb5-41d5-a81b-cc9ef1414b47", - "x-ms-ratelimit-remaining-subscription-writes": "1090", + "x-ms-correlation-request-id": "835a46a2-542f-4fac-b443-5d867ba435d7", + "x-ms-ratelimit-remaining-subscription-writes": "1183", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195055Z:8865897b-3eb5-41d5-a81b-cc9ef1414b47", - "x-request-time": "0.092" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183723Z:835a46a2-542f-4fac-b443-5d867ba435d7", + "x-request-time": "0.085" }, "ResponseBody": { "secretsType": "AccountKey", @@ -213,15 +180,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/train/MLTable", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/train/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:50:54 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 18:37:25 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -230,9 +197,9 @@ "Content-Length": "147", "Content-MD5": "P7GsnZaXDEDX/DJLN0O5nA==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:50:54 GMT", - "ETag": "\u00220x8DA9792DFF4069A\u0022", - "Last-Modified": "Fri, 16 Sep 2022 03:23:50 GMT", + "Date": "Fri, 23 Sep 2022 18:37:23 GMT", + "ETag": "\u00220x8DA9D7AF8838FC1\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:47:50 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -241,32 +208,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Fri, 16 Sep 2022 03:23:50 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:47:50 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "61c95094-084b-4d0b-929f-57da858083da", + "x-ms-meta-name": "81170f10-c794-4864-a5aa-18b9c4f20f8f", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "13930891-c4d4-4c39-b91c-c987423fbb64", + "x-ms-meta-version": "97bd65c7-44d6-4c29-a758-1c034959a5fa", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/train/MLTable", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/train/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:50:54 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 18:37:25 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:50:54 GMT", + "Date": "Fri, 23 Sep 2022 18:37:23 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -274,7 +241,7 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, @@ -285,7 +252,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -293,24 +260,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:50:55 GMT", + "Date": "Fri, 23 Sep 2022 18:37:24 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-e641f20ba62ad2d819e1040a2c447b0e-71fc38f79b6d719a-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-e6644b8ecf22a4e647128f33c4fed6d4-3b1706d41d32461a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c736a724-8437-4f32-883c-6a2c1824b4c0", - "x-ms-ratelimit-remaining-subscription-reads": "11791", + "x-ms-correlation-request-id": "74127bae-b7e2-4f49-bb17-d2116e09b3b2", + "x-ms-ratelimit-remaining-subscription-reads": "11978", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195055Z:c736a724-8437-4f32-883c-6a2c1824b4c0", - "x-request-time": "0.094" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183724Z:74127bae-b7e2-4f49-bb17-d2116e09b3b2", + "x-request-time": "0.087" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -325,17 +292,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -349,7 +316,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -357,21 +324,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:50:56 GMT", + "Date": "Fri, 23 Sep 2022 18:37:25 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-ccaea90cb6c54c0f23c91ca3d70eff8f-e7f1ce082eea8a6e-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-b47230cf133eb86836609e1572b4a61f-24c2f06c12694eda-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "eff28e44-f362-497d-8ce6-0e80bc1f44ff", - "x-ms-ratelimit-remaining-subscription-writes": "1089", + "x-ms-correlation-request-id": "d6650fca-1478-4c16-a3cb-2e762453e318", + "x-ms-ratelimit-remaining-subscription-writes": "1182", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195056Z:eff28e44-f362-497d-8ce6-0e80bc1f44ff", - "x-request-time": "0.086" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183725Z:d6650fca-1478-4c16-a3cb-2e762453e318", + "x-request-time": "0.083" }, "ResponseBody": { "secretsType": "AccountKey", @@ -379,15 +346,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/valid/MLTable", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/valid/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:50:55 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 18:37:27 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -396,9 +363,9 @@ "Content-Length": "147", "Content-MD5": "rPxzBke97x5/DWxWuJSBsQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:50:55 GMT", - "ETag": "\u00220x8DA9792E086BB7E\u0022", - "Last-Modified": "Fri, 16 Sep 2022 03:23:51 GMT", + "Date": "Fri, 23 Sep 2022 18:37:25 GMT", + "ETag": "\u00220x8DA9D7AFAC6EA65\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:47:54 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -407,32 +374,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Fri, 16 Sep 2022 03:23:51 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:47:54 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "251c0f3a-c6ee-4a16-bb5a-f0798403eb94", + "x-ms-meta-name": "957dcf85-e0f5-4c3d-a804-26f8d3064ffb", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "5d0efc92-5422-4d2c-b376-6fc8d0cb0e20", + "x-ms-meta-version": "019f02b7-b1b4-475d-a25d-da57f4d89ce7", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/valid/MLTable", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/valid/MLTable", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:50:55 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 18:37:28 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:50:56 GMT", + "Date": "Fri, 23 Sep 2022 18:37:25 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -440,12 +407,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_257690621044?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_240996309104?api-version=2022-06-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -453,7 +420,7 @@ "Connection": "keep-alive", "Content-Length": "1173", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -463,7 +430,7 @@ "owner": "sdkteam" }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/gpu-cluster", - "displayName": "test_257690621044", + "displayName": "test_240996309104", "experimentName": "my_first_experiment", "isArchived": false, "jobType": "Pipeline", @@ -505,26 +472,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3279", + "Content-Length": "3274", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:51:02 GMT", + "Date": "Fri, 23 Sep 2022 18:37:33 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_257690621044?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_240996309104?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-1eedbef5023b8af796ed3ae2d2790a7c-e922a2c243eee929-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-b6827c2fae21f6a8fc649ed3953ed335-0df3a830276003d9-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ec9b47ed-8512-41cb-9fd2-8a0df16d9519", - "x-ms-ratelimit-remaining-subscription-writes": "1049", + "x-ms-correlation-request-id": "1ac3885a-b92d-4f9d-9efb-da27251a3102", + "x-ms-ratelimit-remaining-subscription-writes": "1194", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195102Z:ec9b47ed-8512-41cb-9fd2-8a0df16d9519", - "x-request-time": "3.199" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183733Z:1ac3885a-b92d-4f9d-9efb-da27251a3102", + "x-request-time": "3.065" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_257690621044", - "name": "test_257690621044", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_240996309104", + "name": "test_240996309104", "type": "Microsoft.MachineLearningServices/workspaces/jobs", "properties": { "description": null, @@ -544,14 +511,14 @@ "azureml.defaultDataStoreName": "workspaceblobstore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_257690621044", + "displayName": "test_240996309104", "status": "Preparing", "experimentName": "my_first_experiment", "services": { "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null @@ -559,7 +526,7 @@ "Studio": { "jobServiceType": "Studio", "port": null, - "endpoint": "https://ml.azure.com/runs/test_257690621044?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "endpoint": "https://ml.azure.com/runs/test_240996309104?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, "properties": null @@ -610,47 +577,101 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-16T19:51:02.5178388\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T18:37:33.0833452\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_257690621044/cancel?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_240996309104/cancel?api-version=2022-06-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, - "StatusCode": 202, + "StatusCode": 400, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4", + "Content-Length": "1220", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:51:04 GMT", + "Date": "Fri, 23 Sep 2022 18:37:51 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/mfeOperationResults/jc:a6d5a3b8-8717-4928-b8f7-4c9f36d21085:test_257690621044?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-async-operation-timeout": "PT1H", - "x-ms-correlation-request-id": "63a8d95a-55ae-45bc-b063-ea61f24f101e", - "x-ms-ratelimit-remaining-subscription-writes": "1088", - "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195105Z:63a8d95a-55ae-45bc-b063-ea61f24f101e", - "x-request-time": "0.705" + "x-ms-correlation-request-id": "c98f5ea0-fb9a-472b-9160-0dabb20fc4df", + "x-ms-ratelimit-remaining-subscription-writes": "1181", + "x-ms-response-type": "error", + "x-ms-routing-request-id": "SOUTHEASTASIA:20220923T183751Z:c98f5ea0-fb9a-472b-9160-0dabb20fc4df", + "x-request-time": "15.129" }, - "ResponseBody": "null" + "ResponseBody": { + "error": { + "code": "UserError", + "message": "The pipeline run test_240996309104 is in terminal status, it can\u0027t be canceled.", + "details": [], + "additionalInfo": [ + { + "type": "ComponentName", + "info": { + "value": "managementfrontend" + } + }, + { + "type": "Correlation", + "info": { + "value": { + "operation": "1fe11abf6945f75f4f0db0b44eccbeb9", + "request": "1448008ed3893744" + } + } + }, + { + "type": "Environment", + "info": { + "value": "eastus2" + } + }, + { + "type": "Location", + "info": { + "value": "eastus2" + } + }, + { + "type": "Time", + "info": { + "value": "2022-09-23T18:37:51.8583479\u002B00:00" + } + }, + { + "type": "InnerError", + "info": { + "value": { + "code": "BadArgument", + "innerError": { + "code": "ArgumentInvalid", + "innerError": { + "code": "CancelPipelineRunInTerminalStatus", + "innerError": null + } + } + } + } + } + ] + } + } } ], "Variables": { - "name": "test_257690621044" + "name": "test_240996309104" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_command_job_with_dataset_short_uri.json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_command_job_with_dataset_short_uri.json index c23750baa7db..ec1f88cd3d84 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_command_job_with_dataset_short_uri.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_command_job_with_dataset_short_uri.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,39 +15,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:17 GMT", + "Date": "Fri, 23 Sep 2022 15:26:41 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-2ff5307e3b07ab37f4011d777b77cf34-2a9b74613e2e9aa2-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-808a3286aa884b5f9e9cc3857cb00918-a3daf1f06b0ee6fa-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7e05a5cc-26a7-4fe2-b6f4-7b61230d7a34", - "x-ms-ratelimit-remaining-subscription-reads": "11993", + "x-ms-correlation-request-id": "cb0b8a06-279e-4904-a327-34d01e98e009", + "x-ms-ratelimit-remaining-subscription-reads": "11906", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152817Z:7e05a5cc-26a7-4fe2-b6f4-7b61230d7a34", - "x-request-time": "0.048" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152642Z:cb0b8a06-279e-4904-a327-34d01e98e009", + "x-request-time": "0.059" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-19T00:10:24.4202268\u002B00:00", - "modifiedOn": "2022-09-19T00:10:30.9839701\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "eastus2", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -64,28 +64,15 @@ "targetNodeCount": 4, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 2, - "idleNodeCount": 1, + "runningNodeCount": 3, + "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-19T14:29:24.068\u002B00:00", - "errors": [ - { - "error": { - "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_cfbcbd349a72d6d7f2aa698e8c5085e5b6ca6efe46bc772e18b585c80bd7eb63_d: There is not enough disk space on the node", - "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - } - ] - } - } - ], + "allocationStateTransitionTime": "2022-09-23T15:25:36.433\u002B00:00", + "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -102,7 +89,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -110,39 +97,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:17 GMT", + "Date": "Fri, 23 Sep 2022 15:26:42 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-f322e3ebfb37611ec7ca144fd5a1756a-95b964457cf96fae-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-3af3ac47b3a6658af0a7522b008047be-52e6d6e4355bc62e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "75f1e28e-22fc-4414-8af9-78045756a984", - "x-ms-ratelimit-remaining-subscription-reads": "11992", + "x-ms-correlation-request-id": "043705e5-0ea1-4254-b75f-3b6dbd0a3c5f", + "x-ms-ratelimit-remaining-subscription-reads": "11905", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152817Z:75f1e28e-22fc-4414-8af9-78045756a984", - "x-request-time": "0.052" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152642Z:043705e5-0ea1-4254-b75f-3b6dbd0a3c5f", + "x-request-time": "0.048" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-19T00:10:24.4202268\u002B00:00", - "modifiedOn": "2022-09-19T00:10:30.9839701\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "eastus2", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -159,28 +146,15 @@ "targetNodeCount": 4, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 2, - "idleNodeCount": 1, + "runningNodeCount": 3, + "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-19T14:29:24.068\u002B00:00", - "errors": [ - { - "error": { - "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_cfbcbd349a72d6d7f2aa698e8c5085e5b6ca6efe46bc772e18b585c80bd7eb63_d: There is not enough disk space on the node", - "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - } - ] - } - } - ], + "allocationStateTransitionTime": "2022-09-23T15:25:36.433\u002B00:00", + "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -197,7 +171,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -205,24 +179,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:19 GMT", + "Date": "Fri, 23 Sep 2022 15:26:45 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-b8871cab6d907b7711e82a826986c7b1-9ea2599b3cc365d0-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-1fcbd181c62d9c7fd1e0eb9d655ae02d-a70305527189f6aa-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a2791cc6-3fc5-45d1-940e-292030ba20ee", - "x-ms-ratelimit-remaining-subscription-reads": "11991", + "x-ms-correlation-request-id": "1e27010f-a9ef-433e-9587-eb21f4617528", + "x-ms-ratelimit-remaining-subscription-reads": "11904", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152819Z:a2791cc6-3fc5-45d1-940e-292030ba20ee", - "x-request-time": "0.104" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152645Z:1e27010f-a9ef-433e-9587-eb21f4617528", + "x-request-time": "0.117" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -237,17 +211,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sawcdivl5vo3cem", - "containerName": "azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-19T00:10:19.4497254\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-19T00:10:20.0957203\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -261,7 +235,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -269,21 +243,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:19 GMT", + "Date": "Fri, 23 Sep 2022 15:26:46 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-444e2add8715af93e96f5542215f383a-15b3e735e16b4700-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-f8ddc16e1d60b35de68b78c4f2948ab5-101dc6363408e9dd-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e71842ac-d013-478e-8250-a052dc8798c8", - "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-correlation-request-id": "ef4dcf04-2423-42bf-9714-a5bef8b0d418", + "x-ms-ratelimit-remaining-subscription-writes": "1160", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152820Z:e71842ac-d013-478e-8250-a052dc8798c8", - "x-request-time": "0.103" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152646Z:ef4dcf04-2423-42bf-9714-a5bef8b0d418", + "x-request-time": "0.088" }, "ResponseBody": { "secretsType": "AccountKey", @@ -291,15 +265,15 @@ } }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000/python/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Mon, 19 Sep 2022 15:28:19 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:26:48 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -308,9 +282,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Mon, 19 Sep 2022 15:28:19 GMT", - "ETag": "\u00220x8DA9A4ECD2041B0\u0022", - "Last-Modified": "Mon, 19 Sep 2022 14:54:06 GMT", + "Date": "Fri, 23 Sep 2022 15:26:46 GMT", + "ETag": "\u00220x8DA9D76EE2580A0\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:18:55 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -319,32 +293,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Mon, 19 Sep 2022 14:54:06 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:18:53 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "38553b6d-8c3a-4241-9e7d-ce3e7ac44d11", + "x-ms-meta-name": "000000000000000000000", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/az-ml-artifacts/00000000000000000000000000000000/python/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/python/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Mon, 19 Sep 2022 15:28:19 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:26:49 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Mon, 19 Sep 2022 15:28:19 GMT", + "Date": "Fri, 23 Sep 2022 15:26:47 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -352,12 +326,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/38553b6d-8c3a-4241-9e7d-ce3e7ac44d11/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -365,7 +339,7 @@ "Connection": "keep-alive", "Content-Length": "295", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -375,7 +349,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000/python" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python" } }, "StatusCode": 200, @@ -383,27 +357,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:20 GMT", + "Date": "Fri, 23 Sep 2022 15:26:48 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-12929c26952334d4128b14b002644b9c-2f6376f486f0b3f7-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-2eac3f99db097602c3b39a16308d79dd-5d959dfe5c2dde25-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bb4f7f42-d818-4c11-ac88-a96d058c776b", - "x-ms-ratelimit-remaining-subscription-writes": "1194", + "x-ms-correlation-request-id": "595bf325-e10c-48ed-9fa7-70c9c9ae6c88", + "x-ms-ratelimit-remaining-subscription-writes": "1132", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152820Z:bb4f7f42-d818-4c11-ac88-a96d058c776b", - "x-request-time": "0.062" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152648Z:595bf325-e10c-48ed-9fa7-70c9c9ae6c88", + "x-request-time": "0.077" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/38553b6d-8c3a-4241-9e7d-ce3e7ac44d11/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -415,14 +389,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000/python" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python" }, "systemData": { - "createdAt": "2022-09-19T14:54:07.8154588\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:18:57.5027157\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-19T15:28:20.3439912\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:26:48.2219658\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -434,9 +408,9 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1044", + "Content-Length": "1029", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -447,7 +421,7 @@ "isArchived": false, "componentSpec": { "command": "pip freeze \u0026\u0026 echo Hello World", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/38553b6d-8c3a-4241-9e7d-ce3e7ac44d11/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-Minimal/versions/1", "name": "azureml_anonymous", "description": "Train a model on the Iris dataset-1.", @@ -479,26 +453,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1997", + "Content-Length": "1980", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:20 GMT", + "Date": "Fri, 23 Sep 2022 15:26:49 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-cbe51c9b4764586b81ac9f1895a4cf13-d71e4030e1d52f89-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-7a8619ec52acf87de81000904aa863b0-ffff4a3c0b595445-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "82f8e572-bdf6-44d8-974f-f605bd26d9ff", - "x-ms-ratelimit-remaining-subscription-writes": "1193", + "x-ms-correlation-request-id": "3497be07-29db-4663-937b-276009d58334", + "x-ms-ratelimit-remaining-subscription-writes": "1131", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152820Z:82f8e572-bdf6-44d8-974f-f605bd26d9ff", - "x-request-time": "0.322" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152649Z:3497be07-29db-4663-937b-276009d58334", + "x-request-time": "0.553" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/0694f7fa-f2ed-4cb4-b262-fd0dd158a9ad", - "name": "0694f7fa-f2ed-4cb4-b262-fd0dd158a9ad", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/fc812df6-6731-4552-a22c-9de6fb8a9124", + "name": "fc812df6-6731-4552-a22c-9de6fb8a9124", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -508,7 +482,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "0694f7fa-f2ed-4cb4-b262-fd0dd158a9ad", + "version": "fc812df6-6731-4552-a22c-9de6fb8a9124", "display_name": "hello_world_inline_commandjob_1", "is_deterministic": "True", "type": "command", @@ -529,7 +503,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/38553b6d-8c3a-4241-9e7d-ce3e7ac44d11/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-Minimal/versions/1", "resources": { "instance_count": "1" @@ -539,11 +513,11 @@ } }, "systemData": { - "createdAt": "2022-09-19T15:26:01.7732275\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:26:49.4837543\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-19T15:26:01.9699169\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:26:49.4837543\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -555,7 +529,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -563,24 +537,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:20 GMT", + "Date": "Fri, 23 Sep 2022 15:26:50 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-df3983ff8aabcab2123a2b53af15759d-68b2a81b864a01ca-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-ee232a8714ab66762a82fdf3ab2af583-09b5b46b1e84b5f9-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ccd4236a-75cb-459a-b2dc-855db5874a42", - "x-ms-ratelimit-remaining-subscription-reads": "11990", + "x-ms-correlation-request-id": "35a32ecc-bb15-41b8-8d8e-d22eacf25c3a", + "x-ms-ratelimit-remaining-subscription-reads": "11903", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152821Z:ccd4236a-75cb-459a-b2dc-855db5874a42", - "x-request-time": "0.091" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152650Z:35a32ecc-bb15-41b8-8d8e-d22eacf25c3a", + "x-request-time": "0.082" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -595,17 +569,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sawcdivl5vo3cem", - "containerName": "azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-19T00:10:19.4497254\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-19T00:10:20.0957203\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -619,7 +593,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -627,21 +601,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:21 GMT", + "Date": "Fri, 23 Sep 2022 15:26:51 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-1ca2ce7a8c2d5fd998ca9d048027405d-915e8320751f7562-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-a081009136e5e4c06b06485a853feed3-ce2ee505708be41d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "12713673-652b-48d7-b12c-ce82da1652fc", - "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-correlation-request-id": "aa41bfce-bb6c-442e-892a-2f8252c9ae84", + "x-ms-ratelimit-remaining-subscription-writes": "1159", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152821Z:12713673-652b-48d7-b12c-ce82da1652fc", - "x-request-time": "0.098" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152651Z:aa41bfce-bb6c-442e-892a-2f8252c9ae84", + "x-request-time": "0.119" }, "ResponseBody": { "secretsType": "AccountKey", @@ -649,15 +623,15 @@ } }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Mon, 19 Sep 2022 15:28:21 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:26:53 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -666,9 +640,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Mon, 19 Sep 2022 15:28:20 GMT", - "ETag": "\u00220x8DA99D37A4F8142\u0022", - "Last-Modified": "Mon, 19 Sep 2022 00:11:19 GMT", + "Date": "Fri, 23 Sep 2022 15:26:52 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -677,32 +651,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Mon, 19 Sep 2022 00:11:19 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "3d85346b-0def-4d25-b9b1-cc4bdc4a3056", + "x-ms-meta-name": "000000000000000000000", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Mon, 19 Sep 2022 15:28:21 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:26:54 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Mon, 19 Sep 2022 15:28:20 GMT", + "Date": "Fri, 23 Sep 2022 15:26:52 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -710,12 +684,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3d85346b-0def-4d25-b9b1-cc4bdc4a3056/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -723,7 +697,7 @@ "Connection": "keep-alive", "Content-Length": "288", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -733,7 +707,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -741,27 +715,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:21 GMT", + "Date": "Fri, 23 Sep 2022 15:26:54 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-c8cf5bc2ff6050c591c7cb1732d4cdc7-856ba5953e72c695-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-31f355a5084217dc52fdc0010569c5a6-a3c74c9e404ebbdb-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5e0b732b-104e-4998-b555-eba3a6cddf33", - "x-ms-ratelimit-remaining-subscription-writes": "1192", + "x-ms-correlation-request-id": "0239913e-1e08-4a7d-b959-9411fcbc24ac", + "x-ms-ratelimit-remaining-subscription-writes": "1130", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152822Z:5e0b732b-104e-4998-b555-eba3a6cddf33", - "x-request-time": "0.085" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152654Z:0239913e-1e08-4a7d-b959-9411fcbc24ac", + "x-request-time": "0.116" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3d85346b-0def-4d25-b9b1-cc4bdc4a3056/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -773,14 +747,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-19T00:11:20.0229231\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-19T15:28:21.975691\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T15:26:54.3132551\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -792,9 +766,9 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "942", + "Content-Length": "927", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -805,7 +779,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3d85346b-0def-4d25-b9b1-cc4bdc4a3056/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-Minimal/versions/1", "name": "azureml_anonymous", "description": "Train a model on the Iris dataset-2.", @@ -828,26 +802,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1785", + "Content-Length": "1769", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:23 GMT", + "Date": "Fri, 23 Sep 2022 15:26:55 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-967c3630d6d9793f5c817f5e7ae43ebb-7c590b60871c39bb-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-0b2166b5249d37c0faeb0902d6357844-2abc713070616e4a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4d69dd2e-84b3-468d-a1ad-d9f0c843d272", - "x-ms-ratelimit-remaining-subscription-writes": "1191", + "x-ms-correlation-request-id": "f7ddb66d-2c48-4829-bd55-808e13f09426", + "x-ms-ratelimit-remaining-subscription-writes": "1129", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152823Z:4d69dd2e-84b3-468d-a1ad-d9f0c843d272", - "x-request-time": "0.307" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152655Z:f7ddb66d-2c48-4829-bd55-808e13f09426", + "x-request-time": "0.609" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ae60ff5e-f0a6-48ca-9fab-9e8268c1bdd1", - "name": "ae60ff5e-f0a6-48ca-9fab-9e8268c1bdd1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/8526e660-5e67-4461-a479-5711f3fcef94", + "name": "8526e660-5e67-4461-a479-5711f3fcef94", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -857,7 +831,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "ae60ff5e-f0a6-48ca-9fab-9e8268c1bdd1", + "version": "8526e660-5e67-4461-a479-5711f3fcef94", "display_name": "hello_world_inline_commandjob_2", "is_deterministic": "True", "type": "command", @@ -868,7 +842,7 @@ "optional": "False" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3d85346b-0def-4d25-b9b1-cc4bdc4a3056/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-Minimal/versions/1", "resources": { "instance_count": "1" @@ -878,25 +852,25 @@ } }, "systemData": { - "createdAt": "2022-09-19T15:26:04.2586258\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:26:55.5247835\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-19T15:26:04.459717\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:26:55.5247835\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_399858282308?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_968914636497?api-version=2022-06-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "2294", + "Content-Length": "2359", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -906,7 +880,7 @@ "tag": "tagvalue", "owner": "sdkteam" }, - "displayName": "test_399858282308", + "displayName": "test_968914636497", "experimentName": "azure-ai-ml", "isArchived": false, "jobType": "Pipeline", @@ -944,8 +918,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/0694f7fa-f2ed-4cb4-b262-fd0dd158a9ad" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/fc812df6-6731-4552-a22c-9de6fb8a9124" }, "hello_world_inline_commandjob_2": { "resources": null, @@ -965,8 +940,11 @@ } }, "outputs": {}, + "properties": { + "test_property": "test_value" + }, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ae60ff5e-f0a6-48ca-9fab-9e8268c1bdd1" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/8526e660-5e67-4461-a479-5711f3fcef94" } }, "outputs": { @@ -983,26 +961,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4677", + "Content-Length": "4773", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:28 GMT", + "Date": "Fri, 23 Sep 2022 15:27:03 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_399858282308?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_968914636497?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-efac2d0b57dc07e0f653fbffd3d755c1-e4698a9913ecb909-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-d1559cc188b4a671648c91312009bdd1-ea9474eefe4b7c57-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "828d0835-8afb-41bc-87f7-24e2e26a5fa0", - "x-ms-ratelimit-remaining-subscription-writes": "1190", + "x-ms-correlation-request-id": "9d814787-b049-4262-8b86-34335703b2c1", + "x-ms-ratelimit-remaining-subscription-writes": "1128", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152829Z:828d0835-8afb-41bc-87f7-24e2e26a5fa0", - "x-request-time": "3.729" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152704Z:9d814787-b049-4262-8b86-34335703b2c1", + "x-request-time": "3.815" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_399858282308", - "name": "test_399858282308", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_968914636497", + "name": "test_968914636497", "type": "Microsoft.MachineLearningServices/workspaces/jobs", "properties": { "description": "The hello world pipeline job with inline command job", @@ -1021,14 +999,14 @@ "azureml.defaultDataStoreName": "workspaceblobstore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_399858282308", + "displayName": "test_968914636497", "status": "Preparing", "experimentName": "azure-ai-ml", "services": { "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null @@ -1036,7 +1014,7 @@ "Studio": { "jobServiceType": "Studio", "port": null, - "endpoint": "https://ml.azure.com/runs/test_399858282308?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "endpoint": "https://ml.azure.com/runs/test_968914636497?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, "properties": null @@ -1078,8 +1056,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/0694f7fa-f2ed-4cb4-b262-fd0dd158a9ad" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/fc812df6-6731-4552-a22c-9de6fb8a9124" }, "hello_world_inline_commandjob_2": { "resources": null, @@ -1099,8 +1078,11 @@ } }, "outputs": {}, + "properties": { + "test_property": "test_value" + }, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ae60ff5e-f0a6-48ca-9fab-9e8268c1bdd1" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/8526e660-5e67-4461-a479-5711f3fcef94" } }, "inputs": { @@ -1122,14 +1104,14 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-19T15:28:28.7429043\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:27:03.6143996\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } } ], "Variables": { - "name": "test_399858282308" + "name": "test_968914636497" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_component_arm_id_create.json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_component_arm_id_create.json index 730e661b7dfe..42efa6dd02b4 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_component_arm_id_create.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_component_arm_id_create.json @@ -7,7 +7,91 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, + "StatusCode": 404, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1092", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:21:17 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-eastus2-02", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "1389f02e-525f-4a2a-b9d3-8cab7910ba26", + "x-ms-ratelimit-remaining-subscription-reads": "11965", + "x-ms-response-type": "error", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152117Z:1389f02e-525f-4a2a-b9d3-8cab7910ba26", + "x-request-time": "0.087" + }, + "ResponseBody": { + "error": { + "code": "UserError", + "message": "Not found component microsoftsamples_command_component_basic.", + "details": [], + "additionalInfo": [ + { + "type": "ComponentName", + "info": { + "value": "managementfrontend" + } + }, + { + "type": "Correlation", + "info": { + "value": { + "operation": "9e16fbe40086941b747d13f1275adae9", + "request": "1feb4cf1e0cd3c53" + } + } + }, + { + "type": "Environment", + "info": { + "value": "eastus2" + } + }, + { + "type": "Location", + "info": { + "value": "eastus2" + } + }, + { + "type": "Time", + "info": { + "value": "2022-09-23T15:21:17.7380368\u002B00:00" + } + }, + { + "type": "InnerError", + "info": { + "value": { + "code": "NotFound", + "innerError": { + "code": "ComponentNotFound", + "innerError": null + } + } + } + } + ] + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,24 +99,304 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:40:10 GMT", + "Date": "Fri, 23 Sep 2022 15:21:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-c97276670f765501db329fb8c38691c2-540fb6fc9f1c0bd4-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-56c4b58d82c9bf62c9ff6459e6cd07bd-1f3e5554bd59d572-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b1a07937-b240-4e15-829b-69e8c2e48221", - "x-ms-ratelimit-remaining-subscription-reads": "11970", + "x-ms-correlation-request-id": "efc355c2-5793-41ce-b733-237728edb14b", + "x-ms-ratelimit-remaining-subscription-reads": "11964", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194010Z:b1a07937-b240-4e15-829b-69e8c2e48221", - "x-request-time": "0.133" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152118Z:efc355c2-5793-41ce-b733-237728edb14b", + "x-request-time": "0.118" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", + "name": "workspaceblobstore", + "type": "Microsoft.MachineLearningServices/workspaces/datastores", + "properties": { + "description": null, + "tags": null, + "properties": null, + "isDefault": true, + "credentials": { + "credentialsType": "AccountKey" + }, + "datastoreType": "AzureBlob", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", + "endpoint": "core.windows.net", + "protocol": "https", + "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" + }, + "systemData": { + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", + "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", + "createdByType": "Application", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", + "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", + "lastModifiedByType": "Application" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore/listSecrets?api-version=2022-05-01", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "0", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:21:18 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-d1961a2b93927b3acd4246eeeb81268a-e8c3b69a4fa4679f-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-eastus2-02", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "1900dd4a-39ef-4e62-bd04-fa8f7af968c9", + "x-ms-ratelimit-remaining-subscription-writes": "1191", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152119Z:1900dd4a-39ef-4e62-bd04-fa8f7af968c9", + "x-request-time": "0.126" + }, + "ResponseBody": { + "secretsType": "AccountKey", + "key": "dGhpcyBpcyBmYWtlIGtleQ==" + } + }, + { + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestMethod": "HEAD", + "RequestHeaders": { + "Accept": "application/xml", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:21:21 GMT", + "x-ms-version": "2021-08-06" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Accept-Ranges": "bytes", + "Content-Length": "35", + "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", + "Content-Type": "application/octet-stream", + "Date": "Fri, 23 Sep 2022 15:21:19 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", + "Server": [ + "Windows-Azure-Blob/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": "Origin", + "x-ms-access-tier": "Hot", + "x-ms-access-tier-inferred": "true", + "x-ms-blob-type": "BlockBlob", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", + "x-ms-lease-state": "available", + "x-ms-lease-status": "unlocked", + "x-ms-meta-name": "000000000000000000000", + "x-ms-meta-upload_status": "completed", + "x-ms-meta-version": "1", + "x-ms-server-encrypted": "true", + "x-ms-version": "2021-08-06" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestMethod": "HEAD", + "RequestHeaders": { + "Accept": "application/xml", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:21:21 GMT", + "x-ms-version": "2021-08-06" + }, + "RequestBody": null, + "StatusCode": 404, + "ResponseHeaders": { + "Date": "Fri, 23 Sep 2022 15:21:19 GMT", + "Server": [ + "Windows-Azure-Blob/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Transfer-Encoding": "chunked", + "Vary": "Origin", + "x-ms-error-code": "BlobNotFound", + "x-ms-version": "2021-08-06" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1?api-version=2022-05-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "288", + "Content-Type": "application/json", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": { + "properties": { + "properties": { + "hash_sha256": "0000000000000", + "hash_version": "0000000000000" + }, + "isAnonymous": true, + "isArchived": false, + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:21:20 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-c5fd3b01e3bb771de347eb9ccc3b1b93-c206a7f26eee39e0-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-eastus2-02", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "83214d28-4b20-440b-9837-7c386152436c", + "x-ms-ratelimit-remaining-subscription-writes": "1182", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152121Z:83214d28-4b20-440b-9837-7c386152436c", + "x-request-time": "0.116" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", + "name": "1", + "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", + "properties": { + "description": null, + "tags": {}, + "properties": { + "hash_sha256": "0000000000000", + "hash_version": "0000000000000" + }, + "isArchived": false, + "isAnonymous": false, + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" + }, + "systemData": { + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T15:21:20.9201757\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", + "lastModifiedByType": "User" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/microsoftsamples_command_component_basic/versions/0.0.1?api-version=2022-05-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "1447", + "Content-Type": "application/json", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": { + "properties": { + "description": "This is the basic command component", + "properties": {}, + "tags": { + "tag": "tagvalue", + "owner": "sdkteam" + }, + "isAnonymous": false, + "isArchived": false, + "componentSpec": { + "command": "echo Hello World \u0026 echo $[[${{inputs.component_in_number}}]] \u0026 echo ${{inputs.component_in_path}} \u0026 echo ${{outputs.component_out_path}} \u003E ${{outputs.component_out_path}}/component_in_number", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", + "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", + "name": "microsoftsamples_command_component_basic", + "description": "This is the basic command component", + "tags": { + "tag": "tagvalue", + "owner": "sdkteam" + }, + "version": "0.0.1", + "$schema": "https://azuremlschemas.azureedge.net/development/commandComponent.schema.json", + "display_name": "CommandComponentBasic", + "is_deterministic": true, + "inputs": { + "component_in_number": { + "type": "number", + "optional": true, + "default": "10.99", + "description": "A number" + }, + "component_in_path": { + "type": "uri_folder", + "description": "A path" + } + }, + "outputs": { + "component_out_path": { + "type": "uri_folder" + } + }, + "type": "command", + "_source": "YAML.COMPONENT" + } + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "2355", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:21:21 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/microsoftsamples_command_component_basic/versions/0.0.1?api-version=2022-05-01", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-90c7aa716fde864723229f6ac8cd2684-762946256dfc44ef-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-aml-cluster": "vienna-eastus2-02", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "ee2e17b5-3904-484a-bec9-aa4c48f61984", + "x-ms-ratelimit-remaining-subscription-writes": "1181", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152122Z:ee2e17b5-3904-484a-bec9-aa4c48f61984", + "x-request-time": "0.695" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/microsoftsamples_command_component_basic/versions/0.0.1", @@ -76,7 +440,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -86,12 +450,12 @@ } }, "systemData": { - "createdAt": "2022-09-15T03:14:02.8157304\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:14:03.0476977\u002B00:00", - "lastModifiedBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "lastModifiedByType": "Application" + "createdAt": "2022-09-23T15:21:21.8475494\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T15:21:22.0816072\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", + "lastModifiedByType": "User" } } }, @@ -102,7 +466,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -110,39 +474,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:40:11 GMT", + "Date": "Fri, 23 Sep 2022 15:21:24 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-5d935f0149320e06de1a8fcf4799b328-a2a3e09b8575bb76-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-5f669f7f6d76edbb6a88831427af124f-00f55342fa49ed34-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3a011368-f90f-45e5-87f1-e4a50de37009", - "x-ms-ratelimit-remaining-subscription-reads": "11969", + "x-ms-correlation-request-id": "5d02e3d7-3a4f-406c-823c-9eb9330921a9", + "x-ms-ratelimit-remaining-subscription-reads": "11963", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194012Z:3a011368-f90f-45e5-87f1-e4a50de37009", - "x-request-time": "0.045" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152124Z:5d02e3d7-3a4f-406c-823c-9eb9330921a9", + "x-request-time": "0.037" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.912489\u002B00:00", - "modifiedOn": "2022-09-15T03:11:50.5830108\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "eastus2", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -155,18 +519,18 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 4, + "currentNodeCount": 0, + "targetNodeCount": 0, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 2, - "idleNodeCount": 2, + "runningNodeCount": 0, + "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-16T18:30:06.83\u002B00:00", + "allocationStateTransitionTime": "2022-09-22T03:07:53.368\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -184,7 +548,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -192,39 +556,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:40:11 GMT", + "Date": "Fri, 23 Sep 2022 15:21:24 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-a05727e66f4e7bcfc67e3524f0af5a4e-780cf538200051a3-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-bc7864338d31724a96188802925e352f-62abb2e36a809eb8-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bb5c26c1-d711-4019-840c-df27d90f2805", - "x-ms-ratelimit-remaining-subscription-reads": "11968", + "x-ms-correlation-request-id": "ba2e6022-f4e5-4d4c-8505-6dc26ae0e230", + "x-ms-ratelimit-remaining-subscription-reads": "11962", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194012Z:bb5c26c1-d711-4019-840c-df27d90f2805", - "x-request-time": "0.078" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152125Z:ba2e6022-f4e5-4d4c-8505-6dc26ae0e230", + "x-request-time": "0.034" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.912489\u002B00:00", - "modifiedOn": "2022-09-15T03:11:50.5830108\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "eastus2", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -237,18 +601,18 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 4, + "currentNodeCount": 0, + "targetNodeCount": 0, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 2, - "idleNodeCount": 2, + "runningNodeCount": 0, + "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-16T18:30:06.83\u002B00:00", + "allocationStateTransitionTime": "2022-09-22T03:07:53.368\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -266,7 +630,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -274,24 +638,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:40:11 GMT", + "Date": "Fri, 23 Sep 2022 15:21:25 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-3361be258c69c30271784112943a9fbf-1c4cda2cc487f6d7-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-6dbd17fdd43b6b21d8b3237df61a33f7-9b459d5896550223-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "17a8751e-8549-45a1-ac96-d66b40f3fbd7", - "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-correlation-request-id": "99147ead-11d9-4315-a4af-d37eb94725fd", + "x-ms-ratelimit-remaining-subscription-reads": "11961", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194012Z:17a8751e-8549-45a1-ac96-d66b40f3fbd7", - "x-request-time": "0.089" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152126Z:99147ead-11d9-4315-a4af-d37eb94725fd", + "x-request-time": "0.116" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -306,17 +670,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -330,7 +694,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -338,21 +702,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:40:11 GMT", + "Date": "Fri, 23 Sep 2022 15:21:26 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-80b5b784127d257c5556c2e2fd07af0c-ce7eefebc7bf110c-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-243d678d7e9763c9cacb07e2d5dcd9b8-9ea95a216074dc2a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6ac064bd-09af-444b-a393-9ace8797845c", - "x-ms-ratelimit-remaining-subscription-writes": "1192", + "x-ms-correlation-request-id": "524af7be-de5e-41e2-993d-096a852fafc9", + "x-ms-ratelimit-remaining-subscription-writes": "1190", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194012Z:6ac064bd-09af-444b-a393-9ace8797845c", - "x-request-time": "0.098" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152127Z:524af7be-de5e-41e2-993d-096a852fafc9", + "x-request-time": "0.119" }, "ResponseBody": { "secretsType": "AccountKey", @@ -360,15 +724,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:40:11 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:21:29 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -377,9 +741,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:40:12 GMT", - "ETag": "\u00220x8DA96C8A69D2BBA\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:16:15 GMT", + "Date": "Fri, 23 Sep 2022 15:21:27 GMT", + "ETag": "\u00220x8DA9D770C570D84\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:19:46 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -388,32 +752,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:16:15 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:19:45 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "e95adacf-11cf-47c5-85eb-199ded56347d", + "x-ms-meta-name": "8c59cb92-112f-4c04-bda0-1342b610850d", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "a26e0dac-f124-4247-b13c-6e81f9a28197", + "x-ms-meta-version": "c1f97989-616d-4b90-a0d6-bac9ea34bade", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:40:11 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:21:30 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:40:12 GMT", + "Date": "Fri, 23 Sep 2022 15:21:27 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -421,20 +785,20 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_219844025294?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_988646545862?api-version=2022-06-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1622", + "Content-Length": "1640", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -445,7 +809,7 @@ "owner": "sdkteam" }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", - "displayName": "test_219844025294", + "displayName": "test_988646545862", "experimentName": "azure-ai-ml", "isArchived": false, "jobType": "Pipeline", @@ -482,6 +846,7 @@ } }, "outputs": {}, + "properties": {}, "_source": "REMOTE.WORKSPACE.COMPONENT", "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/microsoftsamples_command_component_basic/versions/0.0.1" } @@ -495,26 +860,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3755", + "Content-Length": "3776", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:40:18 GMT", + "Date": "Fri, 23 Sep 2022 15:21:35 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_219844025294?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_988646545862?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-32f0d8ddfc602cfc0efd6921766140a3-1b3525c46a4f19a5-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-dc9b53b64fddcea2acd3a90fa4b13f93-6f64aea7622c7986-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d70ec11b-cf2d-432f-a6ff-72255383cb20", - "x-ms-ratelimit-remaining-subscription-writes": "1185", + "x-ms-correlation-request-id": "e041c94f-dcba-4bbf-b00e-872583463375", + "x-ms-ratelimit-remaining-subscription-writes": "1180", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194019Z:d70ec11b-cf2d-432f-a6ff-72255383cb20", - "x-request-time": "3.037" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152136Z:e041c94f-dcba-4bbf-b00e-872583463375", + "x-request-time": "3.116" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_219844025294", - "name": "test_219844025294", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_988646545862", + "name": "test_988646545862", "type": "Microsoft.MachineLearningServices/workspaces/jobs", "properties": { "description": "The hello world pipeline job with file inline components", @@ -534,14 +899,14 @@ "azureml.defaultDataStoreName": "workspaceblobstore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_219844025294", + "displayName": "test_988646545862", "status": "Preparing", "experimentName": "azure-ai-ml", "services": { "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null @@ -549,7 +914,7 @@ "Studio": { "jobServiceType": "Studio", "port": null, - "endpoint": "https://ml.azure.com/runs/test_219844025294?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "endpoint": "https://ml.azure.com/runs/test_988646545862?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, "properties": null @@ -585,6 +950,7 @@ } }, "outputs": {}, + "properties": {}, "_source": "REMOTE.WORKSPACE.COMPONENT", "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/microsoftsamples_command_component_basic/versions/0.0.1" } @@ -606,14 +972,14 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-16T19:40:18.5890598\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:21:35.8804714\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } } ], "Variables": { - "name": "test_219844025294" + "name": "test_988646545862" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_inline_component_create.json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_inline_component_create.json index c5875562c7ef..b0be274037b6 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_inline_component_create.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_inline_component_create.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,39 +15,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:39:26 GMT", + "Date": "Fri, 23 Sep 2022 15:20:03 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-20253a291b362ce52d1939e45a100719-dd531776b7cd22f7-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-936ffe7cd92f3d3d7529a8db6af61245-a4844db94afd6a44-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "06b5c893-0ad0-443d-b81d-8ecdcc3070c8", - "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-correlation-request-id": "b9bb6981-3066-4bdd-8d37-0478953a45d3", + "x-ms-ratelimit-remaining-subscription-reads": "11981", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T193927Z:06b5c893-0ad0-443d-b81d-8ecdcc3070c8", - "x-request-time": "0.045" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152004Z:b9bb6981-3066-4bdd-8d37-0478953a45d3", + "x-request-time": "0.036" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.912489\u002B00:00", - "modifiedOn": "2022-09-15T03:11:50.5830108\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "eastus2", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -60,18 +60,18 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 4, + "currentNodeCount": 0, + "targetNodeCount": 0, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 2, - "idleNodeCount": 2, + "runningNodeCount": 0, + "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-16T18:30:06.83\u002B00:00", + "allocationStateTransitionTime": "2022-09-22T03:07:53.368\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -89,7 +89,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -97,39 +97,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:39:26 GMT", + "Date": "Fri, 23 Sep 2022 15:20:04 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-6a9617c756e404bad70261d1f582e2b0-eefe5f18fd430777-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-7194c0c235236d0d0f4bf1676f950182-39db4743086fe897-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "de300077-1a0e-4c60-a553-96ab2dd70651", - "x-ms-ratelimit-remaining-subscription-reads": "11985", + "x-ms-correlation-request-id": "71abf0a4-9a41-48d6-a020-b6293cd0469f", + "x-ms-ratelimit-remaining-subscription-reads": "11980", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T193927Z:de300077-1a0e-4c60-a553-96ab2dd70651", - "x-request-time": "0.063" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152005Z:71abf0a4-9a41-48d6-a020-b6293cd0469f", + "x-request-time": "0.067" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.912489\u002B00:00", - "modifiedOn": "2022-09-15T03:11:50.5830108\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "eastus2", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -142,18 +142,18 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 4, + "currentNodeCount": 0, + "targetNodeCount": 0, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 2, - "idleNodeCount": 2, + "runningNodeCount": 0, + "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-16T18:30:06.83\u002B00:00", + "allocationStateTransitionTime": "2022-09-22T03:07:53.368\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -171,7 +171,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -179,39 +179,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:39:26 GMT", + "Date": "Fri, 23 Sep 2022 15:20:04 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-caa3efc7d55b0768cc32ecbd45e1bf68-3b6ae802d58e58b4-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-73009863a9083efca7817f0dcb9fee5c-6202bda69e730f6a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0fd4c0b1-da68-4fbb-98b4-5ff66c9bdfc0", - "x-ms-ratelimit-remaining-subscription-reads": "11984", + "x-ms-correlation-request-id": "9b27e3d3-3f2c-416d-be1c-3774bc7be40f", + "x-ms-ratelimit-remaining-subscription-reads": "11979", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T193927Z:0fd4c0b1-da68-4fbb-98b4-5ff66c9bdfc0", - "x-request-time": "0.040" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152005Z:9b27e3d3-3f2c-416d-be1c-3774bc7be40f", + "x-request-time": "0.042" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.912489\u002B00:00", - "modifiedOn": "2022-09-15T03:11:50.5830108\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "eastus2", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -224,18 +224,18 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 4, + "currentNodeCount": 0, + "targetNodeCount": 0, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 2, - "idleNodeCount": 2, + "runningNodeCount": 0, + "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-16T18:30:06.83\u002B00:00", + "allocationStateTransitionTime": "2022-09-22T03:07:53.368\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -253,7 +253,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -261,24 +261,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:39:28 GMT", + "Date": "Fri, 23 Sep 2022 15:20:11 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-c9ee86df2c2cf87e6217b177029d334d-cacebdc8b1e27703-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-38e2fbbd708e4a55b11b09c0097c48bb-537b82f30b79072c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a865b59f-5111-43d8-b883-dcd0138c27bd", - "x-ms-ratelimit-remaining-subscription-reads": "11983", + "x-ms-correlation-request-id": "9f8ec266-c70b-4ba4-8ebd-e805b6f54a7a", + "x-ms-ratelimit-remaining-subscription-reads": "11978", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T193929Z:a865b59f-5111-43d8-b883-dcd0138c27bd", - "x-request-time": "0.097" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152012Z:9f8ec266-c70b-4ba4-8ebd-e805b6f54a7a", + "x-request-time": "0.133" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -293,17 +293,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -317,7 +317,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -325,21 +325,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:39:28 GMT", + "Date": "Fri, 23 Sep 2022 15:20:12 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-84a9a5ce66b8df8d3edab7c2525dde5e-e8c8bbe777d45052-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-4e7c628f9d3d82fe483ca47d6d0ffbb5-3b484ed04ec284cb-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "eba9f8b1-4556-42a7-b66e-377b52c72a16", - "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-correlation-request-id": "3b47be5d-dbed-4db8-aff1-1a3c2abcdf08", + "x-ms-ratelimit-remaining-subscription-writes": "1196", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T193929Z:eba9f8b1-4556-42a7-b66e-377b52c72a16", - "x-request-time": "0.097" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152013Z:3b47be5d-dbed-4db8-aff1-1a3c2abcdf08", + "x-request-time": "0.096" }, "ResponseBody": { "secretsType": "AccountKey", @@ -347,15 +347,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:39:28 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:20:15 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -364,9 +364,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:39:29 GMT", - "ETag": "\u00220x8DA975B4CC57610\u0022", - "Last-Modified": "Thu, 15 Sep 2022 20:46:01 GMT", + "Date": "Fri, 23 Sep 2022 15:20:13 GMT", + "ETag": "\u00220x8DA9D76EE2580A0\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:18:55 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -375,32 +375,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 20:46:01 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:18:53 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "f0648f42-ca3c-4aee-9d9e-f2fe26dc4430", + "x-ms-meta-name": "000000000000000000000", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/python/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/python/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:39:28 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:20:15 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:39:29 GMT", + "Date": "Fri, 23 Sep 2022 15:20:13 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -408,12 +408,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -421,7 +421,7 @@ "Connection": "keep-alive", "Content-Length": "295", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -431,7 +431,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python" } }, "StatusCode": 200, @@ -439,27 +439,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:39:29 GMT", + "Date": "Fri, 23 Sep 2022 15:20:14 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-10a248c67a51a64ae15b48d77c9888ed-7425fe5fb11943ef-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-19904e78e6d393d754d8e0118ec28441-87d1bcafa98512b1-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "06b94c9f-6f4d-49a5-949c-3efd21749325", - "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-correlation-request-id": "882383e7-23e9-46f3-b08b-7a7eb3128d6a", + "x-ms-ratelimit-remaining-subscription-writes": "1193", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T193930Z:06b94c9f-6f4d-49a5-949c-3efd21749325", - "x-request-time": "0.326" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152015Z:882383e7-23e9-46f3-b08b-7a7eb3128d6a", + "x-request-time": "0.146" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -471,14 +471,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python" }, "systemData": { - "createdAt": "2022-09-15T20:46:01.4252338\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:18:57.5027157\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T19:39:29.9580843\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:20:14.9251999\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -490,9 +490,9 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "914", + "Content-Length": "899", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -502,7 +502,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo ${{inputs.component_in_number}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "tags": {}, @@ -525,26 +525,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1844", + "Content-Length": "1830", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:39:30 GMT", + "Date": "Fri, 23 Sep 2022 15:20:15 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-5c31d59e30f3359487d05fcd55b5ae85-e1aca068acd763a5-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-e943a80204f525a9bae4a5156769503f-3084b9cbc39d71d0-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7d4592d4-7fe1-4a9c-8828-298bf465d0c0", - "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-correlation-request-id": "20c0e599-090c-4411-b5ab-3ab2d81638fd", + "x-ms-ratelimit-remaining-subscription-writes": "1192", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T193931Z:7d4592d4-7fe1-4a9c-8828-298bf465d0c0", - "x-request-time": "0.861" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152016Z:20c0e599-090c-4411-b5ab-3ab2d81638fd", + "x-request-time": "0.574" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/06326f13-2bca-4306-b158-17caed068b45", - "name": "06326f13-2bca-4306-b158-17caed068b45", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/aa9ad94f-599e-49fa-8459-555f66a4142e", + "name": "aa9ad94f-599e-49fa-8459-555f66a4142e", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -554,7 +554,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "06326f13-2bca-4306-b158-17caed068b45", + "version": "aa9ad94f-599e-49fa-8459-555f66a4142e", "display_name": "hello_world_component_inline", "is_deterministic": "True", "type": "command", @@ -566,7 +566,7 @@ "description": "Am integer" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -576,11 +576,11 @@ } }, "systemData": { - "createdAt": "2022-09-16T03:13:36.83502\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:16.2622422\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T03:13:36.987623\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:20:16.2622422\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -592,7 +592,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -600,24 +600,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:39:30 GMT", + "Date": "Fri, 23 Sep 2022 15:20:16 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-a181f900ae3eef67b94b5db214d409aa-7fc9c8552ee0391e-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-a21d301d9c6d3a4aa54edaa80067822c-6f70962b766a417f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e552a830-2184-4419-8a0f-664bee3ca340", - "x-ms-ratelimit-remaining-subscription-reads": "11982", + "x-ms-correlation-request-id": "1149c194-cb0e-4d24-9e30-76b7d946f8de", + "x-ms-ratelimit-remaining-subscription-reads": "11977", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T193931Z:e552a830-2184-4419-8a0f-664bee3ca340", - "x-request-time": "0.086" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152017Z:1149c194-cb0e-4d24-9e30-76b7d946f8de", + "x-request-time": "0.075" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -632,17 +632,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -656,7 +656,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -664,21 +664,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:39:30 GMT", + "Date": "Fri, 23 Sep 2022 15:20:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-8684b6acad717714da1c9fbecc939204-cfc7a69127a0a3f6-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-71ffdd736aac24527ff4f46072034153-04932788dad36c99-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "487cf000-4e6f-4fd1-aaad-b2697556d84d", - "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-correlation-request-id": "0c8ab5bb-ce34-43bb-9f22-863bd79afff4", + "x-ms-ratelimit-remaining-subscription-writes": "1195", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T193931Z:487cf000-4e6f-4fd1-aaad-b2697556d84d", - "x-request-time": "0.092" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152018Z:0c8ab5bb-ce34-43bb-9f22-863bd79afff4", + "x-request-time": "0.089" }, "ResponseBody": { "secretsType": "AccountKey", @@ -686,15 +686,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:39:30 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:20:20 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -703,9 +703,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:39:31 GMT", - "ETag": "\u00220x8DA975B4CC57610\u0022", - "Last-Modified": "Thu, 15 Sep 2022 20:46:01 GMT", + "Date": "Fri, 23 Sep 2022 15:20:18 GMT", + "ETag": "\u00220x8DA9D76EE2580A0\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:18:55 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -714,32 +714,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 20:46:01 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:18:53 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "f0648f42-ca3c-4aee-9d9e-f2fe26dc4430", + "x-ms-meta-name": "000000000000000000000", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/python/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/python/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:39:30 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:20:20 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:39:31 GMT", + "Date": "Fri, 23 Sep 2022 15:20:18 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -747,12 +747,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -760,7 +760,7 @@ "Connection": "keep-alive", "Content-Length": "295", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -770,7 +770,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python" } }, "StatusCode": 200, @@ -778,27 +778,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:39:33 GMT", + "Date": "Fri, 23 Sep 2022 15:20:18 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-54760235c4f5d6e266cdf8ee4162ba4d-ecb7a227b146950f-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-b70fb8cf870bf09d65f606802051b2c6-a7bc9ba95200e67e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0b46a1e1-a542-4c14-9689-79670a509e8b", - "x-ms-ratelimit-remaining-subscription-writes": "1194", + "x-ms-correlation-request-id": "d4dfdb76-87b7-4217-9869-cb42785e8579", + "x-ms-ratelimit-remaining-subscription-writes": "1191", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T193933Z:0b46a1e1-a542-4c14-9689-79670a509e8b", - "x-request-time": "0.087" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152019Z:d4dfdb76-87b7-4217-9869-cb42785e8579", + "x-request-time": "0.153" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -810,14 +810,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python" }, "systemData": { - "createdAt": "2022-09-15T20:46:01.4252338\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:18:57.5027157\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T19:39:33.6430204\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:20:19.488351\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -829,9 +829,9 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1018", + "Content-Length": "1003", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -841,7 +841,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo ${{inputs.component_in_number}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "tags": {}, @@ -865,26 +865,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1868", + "Content-Length": "1850", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:39:34 GMT", + "Date": "Fri, 23 Sep 2022 15:20:20 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-80231ac8fc6d4bee9cb4dc9142d69e70-eff41dffd9b4d946-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-d6318a5fbd4de67fd82cd5df71b7b904-9fda5ff59b490903-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b0f1356b-41b4-4a04-9dda-9ae1d15827eb", - "x-ms-ratelimit-remaining-subscription-writes": "1193", + "x-ms-correlation-request-id": "ac626547-e6c0-40be-af6b-38792f69a80c", + "x-ms-ratelimit-remaining-subscription-writes": "1190", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T193934Z:b0f1356b-41b4-4a04-9dda-9ae1d15827eb", - "x-request-time": "0.408" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152020Z:ac626547-e6c0-40be-af6b-38792f69a80c", + "x-request-time": "0.494" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/3f34f291-9210-450b-bad0-1e8786750ea4", - "name": "3f34f291-9210-450b-bad0-1e8786750ea4", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/23fabbbc-7a9c-447d-8f26-537bcd1f7746", + "name": "23fabbbc-7a9c-447d-8f26-537bcd1f7746", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -894,7 +894,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "3f34f291-9210-450b-bad0-1e8786750ea4", + "version": "23fabbbc-7a9c-447d-8f26-537bcd1f7746", "display_name": "hello_world_component_inline_with_schema", "is_deterministic": "True", "type": "command", @@ -906,7 +906,7 @@ "description": "Am integer" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -916,25 +916,25 @@ } }, "systemData": { - "createdAt": "2022-09-16T03:13:38.804565\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:20.462934\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T03:13:38.9726572\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:20:20.462934\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_794934732549?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_987211707235?api-version=2022-06-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "2171", + "Content-Length": "2207", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -945,7 +945,7 @@ "owner": "sdkteam" }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", - "displayName": "test_794934732549", + "displayName": "test_987211707235", "experimentName": "azure-ai-ml", "isArchived": false, "jobType": "Pipeline", @@ -977,8 +977,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/06326f13-2bca-4306-b158-17caed068b45" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/aa9ad94f-599e-49fa-8459-555f66a4142e" }, "hello_world_component_inline_with_schema": { "resources": null, @@ -997,8 +998,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/3f34f291-9210-450b-bad0-1e8786750ea4" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/23fabbbc-7a9c-447d-8f26-537bcd1f7746" } }, "outputs": {}, @@ -1010,26 +1012,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4457", + "Content-Length": "4505", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:39:41 GMT", + "Date": "Fri, 23 Sep 2022 15:20:27 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_794934732549?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_987211707235?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-26f299a994ee141a5ae68d09f6495fe8-f64567bc5518daa4-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-7716db79eb7ba3417b348ea709de1625-1e27f6d0322a7593-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1f95df06-a03f-46c6-9437-5539955be1ed", - "x-ms-ratelimit-remaining-subscription-writes": "1192", + "x-ms-correlation-request-id": "efdbc168-42f7-46fd-8ee3-2ebc87174aa3", + "x-ms-ratelimit-remaining-subscription-writes": "1189", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T193941Z:1f95df06-a03f-46c6-9437-5539955be1ed", - "x-request-time": "2.982" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152027Z:efdbc168-42f7-46fd-8ee3-2ebc87174aa3", + "x-request-time": "3.217" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_794934732549", - "name": "test_794934732549", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_987211707235", + "name": "test_987211707235", "type": "Microsoft.MachineLearningServices/workspaces/jobs", "properties": { "description": "The hello world pipeline job with inline components", @@ -1049,14 +1051,14 @@ "azureml.defaultDataStoreName": "workspaceblobstore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_794934732549", + "displayName": "test_987211707235", "status": "Preparing", "experimentName": "azure-ai-ml", "services": { "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null @@ -1064,7 +1066,7 @@ "Studio": { "jobServiceType": "Studio", "port": null, - "endpoint": "https://ml.azure.com/runs/test_794934732549?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "endpoint": "https://ml.azure.com/runs/test_987211707235?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, "properties": null @@ -1096,8 +1098,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/06326f13-2bca-4306-b158-17caed068b45" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/aa9ad94f-599e-49fa-8459-555f66a4142e" }, "hello_world_component_inline_with_schema": { "resources": null, @@ -1116,8 +1119,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/3f34f291-9210-450b-bad0-1e8786750ea4" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/23fabbbc-7a9c-447d-8f26-537bcd1f7746" } }, "inputs": { @@ -1136,20 +1140,20 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-16T19:39:40.744379\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:27.1346597\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/06326f13-2bca-4306-b158-17caed068b45?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/aa9ad94f-599e-49fa-8459-555f66a4142e?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1157,28 +1161,28 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:39:42 GMT", + "Date": "Fri, 23 Sep 2022 15:20:29 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-a29a673f1c7941282befb731d67642eb-d51fa2263e5d2209-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-364f92a701eb9884a606198f0261f7b9-2f2de98e0654b7b7-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f1777727-3f37-403d-ae3d-5fec33d5b204", - "x-ms-ratelimit-remaining-subscription-reads": "11981", + "x-ms-correlation-request-id": "eb6c1a43-8984-42ec-a6df-3ec50f809c1e", + "x-ms-ratelimit-remaining-subscription-reads": "11976", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T193942Z:f1777727-3f37-403d-ae3d-5fec33d5b204", - "x-request-time": "0.254" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152030Z:eb6c1a43-8984-42ec-a6df-3ec50f809c1e", + "x-request-time": "0.104" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/06326f13-2bca-4306-b158-17caed068b45", - "name": "06326f13-2bca-4306-b158-17caed068b45", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/aa9ad94f-599e-49fa-8459-555f66a4142e", + "name": "aa9ad94f-599e-49fa-8459-555f66a4142e", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1188,7 +1192,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "06326f13-2bca-4306-b158-17caed068b45", + "version": "aa9ad94f-599e-49fa-8459-555f66a4142e", "display_name": "hello_world_component_inline", "is_deterministic": "True", "type": "command", @@ -1200,7 +1204,7 @@ "description": "Am integer" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -1210,17 +1214,17 @@ } }, "systemData": { - "createdAt": "2022-09-16T03:13:36.83502\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:16.2622422\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T03:13:36.987623\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:20:16.4228321\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } } ], "Variables": { - "name": "test_794934732549" + "name": "test_987211707235" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_inline_component_file_create.json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_inline_component_file_create.json index b0dc2326512f..d399ad319843 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_inline_component_file_create.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_inline_component_file_create.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,39 +15,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:39:43 GMT", + "Date": "Fri, 23 Sep 2022 15:20:33 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-1efab54d936cdba0c1ff20870d42e71c-c8632d8efa98032b-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-2e2291965130a61102d272b7a0d01740-59814d9ae0d83d69-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "99e442d0-c33c-4d68-b1f7-229a716f3f30", - "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-correlation-request-id": "83007261-a281-4625-a69c-87fa500d2c6d", + "x-ms-ratelimit-remaining-subscription-reads": "11975", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T193944Z:99e442d0-c33c-4d68-b1f7-229a716f3f30", - "x-request-time": "0.046" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152033Z:83007261-a281-4625-a69c-87fa500d2c6d", + "x-request-time": "0.048" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.912489\u002B00:00", - "modifiedOn": "2022-09-15T03:11:50.5830108\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "eastus2", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -60,18 +60,18 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 4, + "currentNodeCount": 0, + "targetNodeCount": 0, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 2, - "idleNodeCount": 2, + "runningNodeCount": 0, + "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-16T18:30:06.83\u002B00:00", + "allocationStateTransitionTime": "2022-09-22T03:07:53.368\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -89,7 +89,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -97,39 +97,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:39:44 GMT", + "Date": "Fri, 23 Sep 2022 15:20:33 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-ff86ee4e87d5ab32cd65e5b7ecd76f83-f34138fe2a9dee32-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-839a3327fe2b1b4ac2f1c53de4a2aaf7-6e591035b614a98d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9ffd9b7a-1e8c-46df-ab59-0826c5d21303", - "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-correlation-request-id": "84c8c9ec-e161-46a8-b3a9-a9b47ebd32dd", + "x-ms-ratelimit-remaining-subscription-reads": "11974", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T193944Z:9ffd9b7a-1e8c-46df-ab59-0826c5d21303", - "x-request-time": "0.049" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152033Z:84c8c9ec-e161-46a8-b3a9-a9b47ebd32dd", + "x-request-time": "0.036" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.912489\u002B00:00", - "modifiedOn": "2022-09-15T03:11:50.5830108\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "eastus2", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -142,18 +142,18 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 4, + "currentNodeCount": 0, + "targetNodeCount": 0, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 2, - "idleNodeCount": 2, + "runningNodeCount": 0, + "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-16T18:30:06.83\u002B00:00", + "allocationStateTransitionTime": "2022-09-22T03:07:53.368\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -171,7 +171,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -179,24 +179,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:39:45 GMT", + "Date": "Fri, 23 Sep 2022 15:20:36 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-e9acf56e691aebff8f56f22e371903e8-8606cecc0b7f3e88-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-1a4b44eb5be26d907070a733bc295f54-6f7daf974f620f00-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "650bb390-7e59-42a2-b085-04e081a7bb49", - "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-correlation-request-id": "88e08215-d8dd-4d40-981b-7d70d4ed6847", + "x-ms-ratelimit-remaining-subscription-reads": "11973", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T193945Z:650bb390-7e59-42a2-b085-04e081a7bb49", - "x-request-time": "0.098" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152036Z:88e08215-d8dd-4d40-981b-7d70d4ed6847", + "x-request-time": "0.070" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -211,17 +211,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -235,7 +235,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -243,21 +243,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:39:45 GMT", + "Date": "Fri, 23 Sep 2022 15:20:36 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-72273f76067e15287ffa3abc68b451ba-2251900df340faab-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-e64627cbf892dab107473f233e6218f3-15ad79f73a15b3b0-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c2410fb8-e12c-4384-8446-e86ea4f0e6d7", - "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-correlation-request-id": "d248a279-1613-4eb4-99fb-4691cf6ea0b4", + "x-ms-ratelimit-remaining-subscription-writes": "1194", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T193945Z:c2410fb8-e12c-4384-8446-e86ea4f0e6d7", - "x-request-time": "0.202" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152036Z:d248a279-1613-4eb4-99fb-4691cf6ea0b4", + "x-request-time": "0.107" }, "ResponseBody": { "secretsType": "AccountKey", @@ -265,73 +265,97 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:39:44 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:20:39 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 404, "ResponseHeaders": { - "Accept-Ranges": "bytes", - "Content-Length": "35", - "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", - "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:39:45 GMT", - "ETag": "\u00220x8DA96C8560C1979\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:14:00 GMT", + "Date": "Fri, 23 Sep 2022 15:20:36 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], + "Transfer-Encoding": "chunked", "Vary": "Origin", - "x-ms-access-tier": "Hot", - "x-ms-access-tier-inferred": "true", + "x-ms-error-code": "BlobNotFound", + "x-ms-version": "2021-08-06" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/xml", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "35", + "Content-Type": "application/octet-stream", + "If-None-Match": "*", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:14:00 GMT", - "x-ms-lease-state": "available", - "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ac7e0240-c159-4c9c-828e-d3e8df43e80f", - "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "1", - "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-date": "Fri, 23 Sep 2022 15:20:39 GMT", + "x-ms-version": "2021-08-06" + }, + "RequestBody": "Y29tbWFuZF9jb21wb25lbnQ6IGNvZGVfcGxhY2Vob2xkZXI=", + "StatusCode": 201, + "ResponseHeaders": { + "Content-Length": "0", + "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", + "Date": "Fri, 23 Sep 2022 15:20:37 GMT", + "ETag": "\u00220x8DA9D772B266DFD\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:37 GMT", + "Server": [ + "Windows-Azure-Blob/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-content-crc64": "KWRPkj\u002BQ\u002BTE=", + "x-ms-request-server-encrypted": "true", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", - "RequestMethod": "HEAD", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER?comp=metadata", + "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:39:44 GMT", - "x-ms-version": "2021-06-08" + "Content-Length": "0", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:20:40 GMT", + "x-ms-meta-name": "000000000000000000000", + "x-ms-meta-upload_status": "completed", + "x-ms-meta-version": "1", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 404, + "StatusCode": 200, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:39:45 GMT", + "Content-Length": "0", + "Date": "Fri, 23 Sep 2022 15:20:38 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": "chunked", - "Vary": "Origin", - "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-request-server-encrypted": "true", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -339,7 +363,7 @@ "Connection": "keep-alive", "Content-Length": "288", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -349,35 +373,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, - "StatusCode": 200, + "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "803", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:39:45 GMT", + "Date": "Fri, 23 Sep 2022 15:20:39 GMT", "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-60fdf6be6a179e800b4c2ed5cfd82973-8c7de63d2e2927a5-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-3ee694c02ffc4c641d8ddfdc533dbaf0-4c0ca22f66b21683-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "08562988-966c-4f34-91ec-56ae8fa44ae8", - "x-ms-ratelimit-remaining-subscription-writes": "1191", + "x-ms-correlation-request-id": "03a0e24c-62f8-4c17-ad6a-e5a0a83c01b7", + "x-ms-ratelimit-remaining-subscription-writes": "1188", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T193946Z:08562988-966c-4f34-91ec-56ae8fa44ae8", - "x-request-time": "0.058" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152039Z:03a0e24c-62f8-4c17-ad6a-e5a0a83c01b7", + "x-request-time": "0.213" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -389,14 +409,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-15T03:14:01.4315202\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-16T19:39:46.188823\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T15:20:39.7504863\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -408,9 +428,9 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1448", + "Content-Length": "1433", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -424,7 +444,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo $[[${{inputs.component_in_number}}]] \u0026 echo ${{inputs.component_in_path}} \u0026 echo ${{outputs.component_out_path}} \u003E ${{outputs.component_out_path}}/component_in_number", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "description": "This is the basic command component", @@ -461,26 +481,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2418", + "Content-Length": "2397", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:39:46 GMT", + "Date": "Fri, 23 Sep 2022 15:20:41 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-950c18204b7ad49eafae4af8c3003b74-06959edf0e0f4b93-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-af54fa7e942d7b1be21e703d4a5fa0dc-27c7c2965ff16b86-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "51c6775e-92f7-4ac2-8a8b-aa710dc94912", - "x-ms-ratelimit-remaining-subscription-writes": "1190", + "x-ms-correlation-request-id": "8e0f57a8-3fa8-4372-a252-9ba55daef535", + "x-ms-ratelimit-remaining-subscription-writes": "1187", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T193946Z:51c6775e-92f7-4ac2-8a8b-aa710dc94912", - "x-request-time": "0.381" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152041Z:8e0f57a8-3fa8-4372-a252-9ba55daef535", + "x-request-time": "0.609" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/97773628-7861-48c4-ad89-574b3ab855d9", - "name": "97773628-7861-48c4-ad89-574b3ab855d9", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/4f589440-3f2e-4f17-a8f1-f0f3a615594b", + "name": "4f589440-3f2e-4f17-a8f1-f0f3a615594b", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -493,7 +513,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "97773628-7861-48c4-ad89-574b3ab855d9", + "version": "4f589440-3f2e-4f17-a8f1-f0f3a615594b", "display_name": "CommandComponentBasic", "is_deterministic": "True", "type": "command", @@ -520,7 +540,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -530,11 +550,11 @@ } }, "systemData": { - "createdAt": "2022-09-16T02:13:39.2731727\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:40.98508\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T02:13:39.4533584\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:20:40.98508\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -546,7 +566,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -554,24 +574,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:39:46 GMT", + "Date": "Fri, 23 Sep 2022 15:20:42 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-2c9493df45e7664f3388c16e57c0bea9-790de897aef22133-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-01716c74cc17238157f8c72a4c88ef35-5c365c31895b957b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c430cd6d-d3f0-4236-9519-a5315a3230d2", - "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-correlation-request-id": "205f9bdb-bb18-4e21-9ac6-2f90c92c911a", + "x-ms-ratelimit-remaining-subscription-reads": "11972", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T193946Z:c430cd6d-d3f0-4236-9519-a5315a3230d2", - "x-request-time": "0.110" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152042Z:205f9bdb-bb18-4e21-9ac6-2f90c92c911a", + "x-request-time": "0.257" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -586,17 +606,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -610,7 +630,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -618,21 +638,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:39:48 GMT", + "Date": "Fri, 23 Sep 2022 15:20:42 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-7c567929e20dd90e8562a11a96609195-fe1da6ee2675bee8-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-3463f99c92e13a086b18574e34f37d17-ab713d74a8a845d7-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2a05d537-0844-4ffd-a3d1-780857e12210", - "x-ms-ratelimit-remaining-subscription-writes": "1194", + "x-ms-correlation-request-id": "3b9d7580-7777-4872-9af2-126ec5f49e81", + "x-ms-ratelimit-remaining-subscription-writes": "1193", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T193949Z:2a05d537-0844-4ffd-a3d1-780857e12210", - "x-request-time": "0.090" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152043Z:3b9d7580-7777-4872-9af2-126ec5f49e81", + "x-request-time": "0.087" }, "ResponseBody": { "secretsType": "AccountKey", @@ -640,15 +660,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:39:48 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:20:45 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -657,9 +677,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:39:49 GMT", - "ETag": "\u00220x8DA96C8A69D2BBA\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:16:15 GMT", + "Date": "Fri, 23 Sep 2022 15:20:43 GMT", + "ETag": "\u00220x8DA9D770C570D84\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:19:46 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -668,32 +688,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:16:15 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:19:45 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "e95adacf-11cf-47c5-85eb-199ded56347d", + "x-ms-meta-name": "8c59cb92-112f-4c04-bda0-1342b610850d", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "a26e0dac-f124-4247-b13c-6e81f9a28197", + "x-ms-meta-version": "c1f97989-616d-4b90-a0d6-bac9ea34bade", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:39:48 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:20:45 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:39:49 GMT", + "Date": "Fri, 23 Sep 2022 15:20:43 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -701,20 +721,20 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_805738479421?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_117326985861?api-version=2022-06-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1612", + "Content-Length": "1630", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -725,7 +745,7 @@ "owner": "sdkteam" }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", - "displayName": "test_805738479421", + "displayName": "test_117326985861", "experimentName": "azure-ai-ml", "isArchived": false, "jobType": "Pipeline", @@ -762,8 +782,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/97773628-7861-48c4-ad89-574b3ab855d9" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/4f589440-3f2e-4f17-a8f1-f0f3a615594b" } }, "outputs": {}, @@ -775,26 +796,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3745", + "Content-Length": "3765", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:39:54 GMT", + "Date": "Fri, 23 Sep 2022 15:20:50 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_805738479421?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_117326985861?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-9ec5fd87bfc349b5ba99adf12555c258-af9020e40fbf4744-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-8259c5ccb849dd5b821946c424d4388d-7cdd6cd4ba58156b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d063c799-15d9-4f20-bf76-36fae8dcc723", - "x-ms-ratelimit-remaining-subscription-writes": "1189", + "x-ms-correlation-request-id": "b9b4a8be-9f9d-4a94-bf4c-724cc80c619d", + "x-ms-ratelimit-remaining-subscription-writes": "1186", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T193955Z:d063c799-15d9-4f20-bf76-36fae8dcc723", - "x-request-time": "3.477" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152050Z:b9b4a8be-9f9d-4a94-bf4c-724cc80c619d", + "x-request-time": "3.458" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_805738479421", - "name": "test_805738479421", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_117326985861", + "name": "test_117326985861", "type": "Microsoft.MachineLearningServices/workspaces/jobs", "properties": { "description": "The hello world pipeline job with file inline components", @@ -814,14 +835,14 @@ "azureml.defaultDataStoreName": "workspaceblobstore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_805738479421", + "displayName": "test_117326985861", "status": "Preparing", "experimentName": "azure-ai-ml", "services": { "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null @@ -829,7 +850,7 @@ "Studio": { "jobServiceType": "Studio", "port": null, - "endpoint": "https://ml.azure.com/runs/test_805738479421?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "endpoint": "https://ml.azure.com/runs/test_117326985861?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, "properties": null @@ -865,8 +886,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/97773628-7861-48c4-ad89-574b3ab855d9" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/4f589440-3f2e-4f17-a8f1-f0f3a615594b" } }, "inputs": { @@ -886,20 +908,20 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-16T19:39:53.9830265\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:50.394034\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/97773628-7861-48c4-ad89-574b3ab855d9?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/4f589440-3f2e-4f17-a8f1-f0f3a615594b?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -907,28 +929,28 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:39:55 GMT", + "Date": "Fri, 23 Sep 2022 15:20:52 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-a3acc1b2a8188b0eee273cdbb85cb323-896073c67f18e471-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-e73dba8ca33417307d7a10ef010a1ef1-e55e258fd4dee5bc-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b441fc93-ce64-4970-9e98-d5ab580c3d60", - "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-correlation-request-id": "f20a0582-ccd8-44ce-92e6-4a48f1346545", + "x-ms-ratelimit-remaining-subscription-reads": "11971", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T193956Z:b441fc93-ce64-4970-9e98-d5ab580c3d60", - "x-request-time": "0.144" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152053Z:f20a0582-ccd8-44ce-92e6-4a48f1346545", + "x-request-time": "0.105" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/97773628-7861-48c4-ad89-574b3ab855d9", - "name": "97773628-7861-48c4-ad89-574b3ab855d9", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/4f589440-3f2e-4f17-a8f1-f0f3a615594b", + "name": "4f589440-3f2e-4f17-a8f1-f0f3a615594b", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -941,7 +963,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "97773628-7861-48c4-ad89-574b3ab855d9", + "version": "4f589440-3f2e-4f17-a8f1-f0f3a615594b", "display_name": "CommandComponentBasic", "is_deterministic": "True", "type": "command", @@ -968,7 +990,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -978,17 +1000,17 @@ } }, "systemData": { - "createdAt": "2022-09-16T02:13:39.2731727\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:40.98508\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T02:13:39.4533584\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:20:41.170452\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } } ], "Variables": { - "name": "test_805738479421" + "name": "test_117326985861" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_multiple_parallel_job.json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_multiple_parallel_job.json index 061b437a98ac..93f2cb649d82 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_multiple_parallel_job.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_multiple_parallel_job.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,39 +15,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:27:59 GMT", + "Date": "Mon, 26 Sep 2022 03:52:23 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-f9dd0ca1f8b99a2bf01dcec2d09b1782-a12eb1a7cc4f6569-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-07f6e71207fab1bab88348fc5f1dc818-e65dd56c115caeb7-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9ea45bad-3f51-4d3b-87a5-ed46a81e9e76", - "x-ms-ratelimit-remaining-subscription-reads": "11999", + "x-ms-correlation-request-id": "d3c671d1-f206-485f-a4e4-79bb73993241", + "x-ms-ratelimit-remaining-subscription-reads": "11991", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152759Z:9ea45bad-3f51-4d3b-87a5-ed46a81e9e76", - "x-request-time": "0.053" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T035224Z:d3c671d1-f206-485f-a4e4-79bb73993241", + "x-request-time": "0.250" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-09-19T00:10:24.4202268\u002B00:00", - "modifiedOn": "2022-09-19T00:10:30.9839701\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "centraluseuap", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -56,36 +56,23 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 3, - "targetNodeCount": 4, + "currentNodeCount": 1, + "targetNodeCount": 1, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 2, + "runningNodeCount": 0, "idleNodeCount": 1, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-19T14:29:24.068\u002B00:00", - "errors": [ - { - "error": { - "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_cfbcbd349a72d6d7f2aa698e8c5085e5b6ca6efe46bc772e18b585c80bd7eb63_d: There is not enough disk space on the node", - "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - } - ] - } - } - ], + "allocationState": "Steady", + "allocationStateTransitionTime": "2022-09-23T15:15:23.998\u002B00:00", + "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -102,7 +89,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -110,39 +97,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:00 GMT", + "Date": "Mon, 26 Sep 2022 03:52:24 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-bbae8a18c9f8f6b388390fb84ec99004-1e363d0c32f4cc2d-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-d6523f2ec557a51878b5d9455e4c7590-d9bac5dda55f825b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "69afbe1e-587d-4473-8ad9-4b11360ff9bc", - "x-ms-ratelimit-remaining-subscription-reads": "11998", + "x-ms-correlation-request-id": "a3f00beb-e55b-4cbc-a161-eacc15841c03", + "x-ms-ratelimit-remaining-subscription-reads": "11990", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152800Z:69afbe1e-587d-4473-8ad9-4b11360ff9bc", - "x-request-time": "0.077" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T035225Z:a3f00beb-e55b-4cbc-a161-eacc15841c03", + "x-request-time": "0.233" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-09-19T00:10:24.4202268\u002B00:00", - "modifiedOn": "2022-09-19T00:10:30.9839701\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "centraluseuap", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -151,36 +138,23 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 3, - "targetNodeCount": 4, + "currentNodeCount": 1, + "targetNodeCount": 1, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 2, + "runningNodeCount": 0, "idleNodeCount": 1, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-19T14:29:24.068\u002B00:00", - "errors": [ - { - "error": { - "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_cfbcbd349a72d6d7f2aa698e8c5085e5b6ca6efe46bc772e18b585c80bd7eb63_d: There is not enough disk space on the node", - "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - } - ] - } - } - ], + "allocationState": "Steady", + "allocationStateTransitionTime": "2022-09-23T15:15:23.998\u002B00:00", + "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -197,7 +171,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -205,39 +179,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:00 GMT", + "Date": "Mon, 26 Sep 2022 03:52:25 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-ae842fddae224f7452e496a7a06ffdcb-ab025c80088b2a33-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-0a5dd70856290a684059b66a5cd628a5-5566456e857a35dd-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7457961b-a38c-4770-963d-399bf30c33d4", - "x-ms-ratelimit-remaining-subscription-reads": "11997", + "x-ms-correlation-request-id": "88f0f09c-8f3d-45be-b325-275b1e8e52d0", + "x-ms-ratelimit-remaining-subscription-reads": "11989", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152800Z:7457961b-a38c-4770-963d-399bf30c33d4", - "x-request-time": "0.045" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T035225Z:88f0f09c-8f3d-45be-b325-275b1e8e52d0", + "x-request-time": "0.215" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-09-19T00:10:24.4202268\u002B00:00", - "modifiedOn": "2022-09-19T00:10:30.9839701\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "centraluseuap", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -246,36 +220,23 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 3, - "targetNodeCount": 4, + "currentNodeCount": 1, + "targetNodeCount": 1, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 2, + "runningNodeCount": 0, "idleNodeCount": 1, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-19T14:29:24.068\u002B00:00", - "errors": [ - { - "error": { - "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_cfbcbd349a72d6d7f2aa698e8c5085e5b6ca6efe46bc772e18b585c80bd7eb63_d: There is not enough disk space on the node", - "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - } - ] - } - } - ], + "allocationState": "Steady", + "allocationStateTransitionTime": "2022-09-23T15:15:23.998\u002B00:00", + "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -292,7 +253,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -300,24 +261,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:02 GMT", + "Date": "Mon, 26 Sep 2022 03:52:27 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-86f50439a264d149eeed901b978781c9-fba34f3a8285ba3b-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-997f82b918314be42a2ecf533343fea6-4a13a73ba95d7dbb-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "48cd97a8-91d4-494f-8989-119226de91ed", - "x-ms-ratelimit-remaining-subscription-reads": "11996", + "x-ms-correlation-request-id": "64d17c3f-d3a0-448b-8d49-98132d00a5b9", + "x-ms-ratelimit-remaining-subscription-reads": "11988", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152802Z:48cd97a8-91d4-494f-8989-119226de91ed", - "x-request-time": "1.079" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T035228Z:64d17c3f-d3a0-448b-8d49-98132d00a5b9", + "x-request-time": "0.119" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -332,17 +293,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sawcdivl5vo3cem", - "containerName": "azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-19T00:10:19.4497254\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-19T00:10:20.0957203\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -356,7 +317,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -364,21 +325,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:03 GMT", + "Date": "Mon, 26 Sep 2022 03:52:28 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-8305f250a275b910b05822fd572b0523-35726bcb62f8b113-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-93b343a1e2fd6f4ba18a9b059d39570e-0a6699ca0b570fb3-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "729484ba-69e4-49b9-b21b-56731e87ccf1", - "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-correlation-request-id": "46baf213-7c5e-4125-a63f-0dd7ec080fcb", + "x-ms-ratelimit-remaining-subscription-writes": "1196", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152803Z:729484ba-69e4-49b9-b21b-56731e87ccf1", - "x-request-time": "0.205" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T035229Z:46baf213-7c5e-4125-a63f-0dd7ec080fcb", + "x-request-time": "0.161" }, "ResponseBody": { "secretsType": "AccountKey", @@ -386,15 +347,15 @@ } }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000/src/convert_data.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src/convert_data.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Mon, 19 Sep 2022 15:28:02 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Mon, 26 Sep 2022 03:52:29 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -403,9 +364,9 @@ "Content-Length": "969", "Content-MD5": "DhunCanKGufSVuPKEYN51w==", "Content-Type": "application/octet-stream", - "Date": "Mon, 19 Sep 2022 15:28:02 GMT", - "ETag": "\u00220x8DA99D385F49C3B\u0022", - "Last-Modified": "Mon, 19 Sep 2022 00:11:39 GMT", + "Date": "Mon, 26 Sep 2022 03:52:29 GMT", + "ETag": "\u00220x8DA9D4A193DC816\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:58:00 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -414,32 +375,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Mon, 19 Sep 2022 00:11:38 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:57:59 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "8ace4b76-b18c-4592-8882-0a6403775f7a", + "x-ms-meta-name": "3af49689-e732-4d3f-9854-43df40223df3", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/az-ml-artifacts/00000000000000000000000000000000/src/convert_data.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/src/convert_data.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Mon, 19 Sep 2022 15:28:03 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Mon, 26 Sep 2022 03:52:30 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Mon, 19 Sep 2022 15:28:02 GMT", + "Date": "Mon, 26 Sep 2022 03:52:29 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -447,12 +408,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/8ace4b76-b18c-4592-8882-0a6403775f7a/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3af49689-e732-4d3f-9854-43df40223df3/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -460,7 +421,7 @@ "Connection": "keep-alive", "Content-Length": "292", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -470,7 +431,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src" } }, "StatusCode": 200, @@ -478,27 +439,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:05 GMT", + "Date": "Mon, 26 Sep 2022 03:52:30 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-02090654b0b6e3096dd892d7ded92155-c8b3df8eaa52a0c7-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-565e771a17eca5945c53b9599fc4fb61-6059dd9728540aff-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9bef62cd-df17-4618-ad70-b509a0ead523", - "x-ms-ratelimit-remaining-subscription-writes": "1199", + "x-ms-correlation-request-id": "bd46dbaa-b295-4dea-a8c9-e731ebc988c8", + "x-ms-ratelimit-remaining-subscription-writes": "1195", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152805Z:9bef62cd-df17-4618-ad70-b509a0ead523", - "x-request-time": "0.105" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T035231Z:bd46dbaa-b295-4dea-a8c9-e731ebc988c8", + "x-request-time": "0.525" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/8ace4b76-b18c-4592-8882-0a6403775f7a/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3af49689-e732-4d3f-9854-43df40223df3/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -510,14 +471,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src" }, "systemData": { - "createdAt": "2022-09-19T00:11:39.7317219\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-19T15:28:05.4432124\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T09:58:01.1651738\u002B00:00", + "createdBy": "Ying Chen", + "createdByType": "User", + "lastModifiedAt": "2022-09-26T03:52:31.2413906\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -531,7 +492,7 @@ "Connection": "keep-alive", "Content-Length": "1349", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -565,7 +526,7 @@ }, "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/8ace4b76-b18c-4592-8882-0a6403775f7a/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3af49689-e732-4d3f-9854-43df40223df3/versions/1", "entry_script": "score.py", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1" @@ -581,26 +542,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2317", + "Content-Length": "2307", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:06 GMT", + "Date": "Mon, 26 Sep 2022 03:52:32 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-543925066900d616e35c5f7b3cd48c92-ae9cbe49b3b48af7-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-84d372165ef6c56462f03bcffd7bb2ad-034fbf5c61d5b75c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ca7b2bde-39cc-49bc-8fb8-f4d230912a8c", - "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-correlation-request-id": "083490d1-4d6e-4453-901c-3e7b178a9129", + "x-ms-ratelimit-remaining-subscription-writes": "1194", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152806Z:ca7b2bde-39cc-49bc-8fb8-f4d230912a8c", - "x-request-time": "0.470" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T035233Z:083490d1-4d6e-4453-901c-3e7b178a9129", + "x-request-time": "1.464" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/91108e41-7e37-4dda-803a-f1ce0c74c80a", - "name": "91108e41-7e37-4dda-803a-f1ce0c74c80a", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ac502684-d0fc-4772-a57c-34aa691c50d9", + "name": "ac502684-d0fc-4772-a57c-34aa691c50d9", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -610,7 +571,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "91108e41-7e37-4dda-803a-f1ce0c74c80a", + "version": "ac502684-d0fc-4772-a57c-34aa691c50d9", "display_name": "BatchScore", "is_deterministic": "True", "type": "parallel", @@ -628,7 +589,7 @@ } }, "task": { - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/8ace4b76-b18c-4592-8882-0a6403775f7a/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3af49689-e732-4d3f-9854-43df40223df3/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "entry_script": "score.py", @@ -648,11 +609,11 @@ } }, "systemData": { - "createdAt": "2022-09-19T15:25:44.3964221\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T09:58:03.8029228\u002B00:00", + "createdBy": "Ying Chen", "createdByType": "User", - "lastModifiedAt": "2022-09-19T15:25:44.6326675\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T09:58:04.2924442\u002B00:00", + "lastModifiedBy": "Ying Chen", "lastModifiedByType": "User" } } @@ -664,7 +625,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -672,24 +633,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:06 GMT", + "Date": "Mon, 26 Sep 2022 03:52:34 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-782e665ee990091f0c82e2fdd2fab02c-6a2e8ad116a2028a-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-520dbee3e17375e4b6f57da54c3cfb8b-57d2ab5dcc7014a8-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fffb1784-5f47-4e42-a6de-e8eae34d66d0", - "x-ms-ratelimit-remaining-subscription-reads": "11995", + "x-ms-correlation-request-id": "4b3f6d35-c7ee-48da-8458-32d7db5ef8b5", + "x-ms-ratelimit-remaining-subscription-reads": "11987", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152806Z:fffb1784-5f47-4e42-a6de-e8eae34d66d0", - "x-request-time": "0.103" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T035234Z:4b3f6d35-c7ee-48da-8458-32d7db5ef8b5", + "x-request-time": "0.094" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -704,17 +665,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sawcdivl5vo3cem", - "containerName": "azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-19T00:10:19.4497254\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-19T00:10:20.0957203\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -728,7 +689,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -736,21 +697,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:07 GMT", + "Date": "Mon, 26 Sep 2022 03:52:35 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-b328364df48c20c5109ab7e54cde1da6-aec63e73c67ebb31-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-a21996e2ca5ab30e816de2a79436cc6f-4d97bfdda6b5fc24-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6ce860c4-37fe-4faa-84b9-9c87df83b986", - "x-ms-ratelimit-remaining-subscription-writes": "1198", + "x-ms-correlation-request-id": "5a4721fb-d5c7-409e-a482-0bc69bf7b2ff", + "x-ms-ratelimit-remaining-subscription-writes": "1195", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152807Z:6ce860c4-37fe-4faa-84b9-9c87df83b986", - "x-request-time": "0.134" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T035235Z:5a4721fb-d5c7-409e-a482-0bc69bf7b2ff", + "x-request-time": "0.120" }, "ResponseBody": { "secretsType": "AccountKey", @@ -758,15 +719,15 @@ } }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000/src/convert_data.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src/convert_data.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Mon, 19 Sep 2022 15:28:06 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Mon, 26 Sep 2022 03:52:35 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -775,9 +736,9 @@ "Content-Length": "969", "Content-MD5": "DhunCanKGufSVuPKEYN51w==", "Content-Type": "application/octet-stream", - "Date": "Mon, 19 Sep 2022 15:28:06 GMT", - "ETag": "\u00220x8DA99D385F49C3B\u0022", - "Last-Modified": "Mon, 19 Sep 2022 00:11:39 GMT", + "Date": "Mon, 26 Sep 2022 03:52:34 GMT", + "ETag": "\u00220x8DA9D4A193DC816\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:58:00 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -786,32 +747,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Mon, 19 Sep 2022 00:11:38 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:57:59 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "8ace4b76-b18c-4592-8882-0a6403775f7a", + "x-ms-meta-name": "3af49689-e732-4d3f-9854-43df40223df3", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/az-ml-artifacts/00000000000000000000000000000000/src/convert_data.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/src/convert_data.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Mon, 19 Sep 2022 15:28:07 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Mon, 26 Sep 2022 03:52:35 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Mon, 19 Sep 2022 15:28:06 GMT", + "Date": "Mon, 26 Sep 2022 03:52:35 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -819,12 +780,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/8ace4b76-b18c-4592-8882-0a6403775f7a/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3af49689-e732-4d3f-9854-43df40223df3/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -832,7 +793,7 @@ "Connection": "keep-alive", "Content-Length": "292", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -842,7 +803,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src" } }, "StatusCode": 200, @@ -850,27 +811,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:07 GMT", + "Date": "Mon, 26 Sep 2022 03:52:36 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-dc418e2fab843e51925c3ba967f3c787-e500089f3bdda3f7-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-e99e05d3ef224c7ef294615771df40eb-7f890831ed7c200e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "45c7ceca-e012-4816-9f50-8fefc7f9bd06", - "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-correlation-request-id": "8f7f6558-83fb-4afc-9bcb-a1be9c478216", + "x-ms-ratelimit-remaining-subscription-writes": "1193", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152807Z:45c7ceca-e012-4816-9f50-8fefc7f9bd06", - "x-request-time": "0.110" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T035236Z:8f7f6558-83fb-4afc-9bcb-a1be9c478216", + "x-request-time": "0.186" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/8ace4b76-b18c-4592-8882-0a6403775f7a/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3af49689-e732-4d3f-9854-43df40223df3/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -882,14 +843,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000/src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/src" }, "systemData": { - "createdAt": "2022-09-19T00:11:39.7317219\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-19T15:28:07.5065375\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T09:58:01.1651738\u002B00:00", + "createdBy": "Ying Chen", + "createdByType": "User", + "lastModifiedAt": "2022-09-26T03:52:36.2445431\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -903,7 +864,7 @@ "Connection": "keep-alive", "Content-Length": "956", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -913,7 +874,7 @@ "isArchived": false, "componentSpec": { "command": "python convert_data.py --input_data ${{inputs.input_data}} --file_output_data ${{outputs.file_output_data}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/8ace4b76-b18c-4592-8882-0a6403775f7a/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3af49689-e732-4d3f-9854-43df40223df3/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "name": "azureml_anonymous", "tags": {}, @@ -938,26 +899,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1926", + "Content-Length": "1915", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:09 GMT", + "Date": "Mon, 26 Sep 2022 03:52:38 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-b1deab9a58a47048eeca6beeede551d4-6b740806ee7d3901-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-09691eb72aed020ab91ee1a73d873893-81f74be389df5fdb-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b9cfa4cd-fb30-48bd-9a0a-593defebc6ca", - "x-ms-ratelimit-remaining-subscription-writes": "1196", + "x-ms-correlation-request-id": "9f581554-bccf-4179-a10a-2a25bb2622a9", + "x-ms-ratelimit-remaining-subscription-writes": "1192", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152809Z:b9cfa4cd-fb30-48bd-9a0a-593defebc6ca", - "x-request-time": "0.408" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T035238Z:9f581554-bccf-4179-a10a-2a25bb2622a9", + "x-request-time": "1.378" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/cbb27884-37a5-45f7-b3ff-62a2674996e9", - "name": "cbb27884-37a5-45f7-b3ff-62a2674996e9", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/c336f564-ff03-4f65-82ff-2ea6443c2e93", + "name": "c336f564-ff03-4f65-82ff-2ea6443c2e93", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -967,7 +928,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "cbb27884-37a5-45f7-b3ff-62a2674996e9", + "version": "c336f564-ff03-4f65-82ff-2ea6443c2e93", "display_name": "Convert_To_Mltable_File_Dataset", "is_deterministic": "True", "type": "command", @@ -982,7 +943,7 @@ "type": "mltable" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/8ace4b76-b18c-4592-8882-0a6403775f7a/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3af49689-e732-4d3f-9854-43df40223df3/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -992,11 +953,11 @@ } }, "systemData": { - "createdAt": "2022-09-19T15:25:46.5947159\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T09:58:11.040559\u002B00:00", + "createdBy": "Ying Chen", "createdByType": "User", - "lastModifiedAt": "2022-09-19T15:25:46.7968611\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T09:58:11.5038737\u002B00:00", + "lastModifiedBy": "Ying Chen", "lastModifiedByType": "User" } } @@ -1008,7 +969,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1016,24 +977,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:09 GMT", + "Date": "Mon, 26 Sep 2022 03:52:39 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-e78f1aec4a19d0b83c649b6a0d24b362-6f0f40f5830a4c98-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-4465ee2df873e2628474817a2e472eeb-f283e52cef1e05db-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ec8185a3-4305-4619-af5d-644bb9d28da6", - "x-ms-ratelimit-remaining-subscription-reads": "11994", + "x-ms-correlation-request-id": "24c34c41-0610-43d0-983a-a900ad5f34f1", + "x-ms-ratelimit-remaining-subscription-reads": "11986", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152809Z:ec8185a3-4305-4619-af5d-644bb9d28da6", - "x-request-time": "0.102" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T035239Z:24c34c41-0610-43d0-983a-a900ad5f34f1", + "x-request-time": "0.109" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -1048,17 +1009,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sawcdivl5vo3cem", - "containerName": "azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-19T00:10:19.4497254\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-19T00:10:20.0957203\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -1072,7 +1033,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1080,21 +1041,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:09 GMT", + "Date": "Mon, 26 Sep 2022 03:52:39 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-5087280119660836a846bca05693a63b-9d31708818d456f5-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-73d8c649231a20d5d5e8cbc6c34439ab-38bd01c7e04ff0a0-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "58d7fd78-0f41-421a-8f96-a94302a7a6c5", - "x-ms-ratelimit-remaining-subscription-writes": "1197", + "x-ms-correlation-request-id": "b0057949-5dae-4327-9179-188da92450cf", + "x-ms-ratelimit-remaining-subscription-writes": "1194", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152809Z:58d7fd78-0f41-421a-8f96-a94302a7a6c5", - "x-request-time": "0.099" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T035239Z:b0057949-5dae-4327-9179-188da92450cf", + "x-request-time": "0.130" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1102,15 +1063,15 @@ } }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000/mnist-data/0.png", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/mnist-data/0.png", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Mon, 19 Sep 2022 15:28:09 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Mon, 26 Sep 2022 03:52:40 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -1119,9 +1080,9 @@ "Content-Length": "223", "Content-MD5": "yLW2CQQeldeN1S7hH1/5Nw==", "Content-Type": "application/octet-stream", - "Date": "Mon, 19 Sep 2022 15:28:08 GMT", - "ETag": "\u00220x8DA99D37BB852FF\u0022", - "Last-Modified": "Mon, 19 Sep 2022 00:11:21 GMT", + "Date": "Mon, 26 Sep 2022 03:52:39 GMT", + "ETag": "\u00220x8DA9D49DDA8E2B9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:56:20 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1130,32 +1091,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Mon, 19 Sep 2022 00:11:21 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:56:19 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "mltable_mnist_model", + "x-ms-meta-name": "6d38069b-69f7-4247-bed0-fffe996f3098", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "2", + "x-ms-meta-version": "315ab246-e719-41ed-9ad8-28f2f315a8e2", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/az-ml-artifacts/00000000000000000000000000000000/mnist-data/0.png", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/mnist-data/0.png", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Mon, 19 Sep 2022 15:28:09 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Mon, 26 Sep 2022 03:52:40 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Mon, 19 Sep 2022 15:28:08 GMT", + "Date": "Mon, 26 Sep 2022 03:52:39 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1163,27 +1124,27 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_192632812055?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_669912383412?api-version=2022-06-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "4500", + "Content-Length": "4554", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { "properties": {}, "tags": {}, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", - "displayName": "test_192632812055", + "displayName": "test_669912383412", "experimentName": "azure-ai-ml", "isArchived": false, "jobType": "Pipeline", @@ -1207,7 +1168,7 @@ "max_concurrency_per_instance": 1, "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/8ace4b76-b18c-4592-8882-0a6403775f7a/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3af49689-e732-4d3f-9854-43df40223df3/versions/1", "entry_script": "score.py", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1" @@ -1224,8 +1185,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/91108e41-7e37-4dda-803a-f1ce0c74c80a", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ac502684-d0fc-4772-a57c-34aa691c50d9", "retry_settings": null, "logging_level": null, "mini_batch_size": 1 @@ -1251,8 +1213,9 @@ "job_output_type": "mltable" } }, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/cbb27884-37a5-45f7-b3ff-62a2674996e9" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/c336f564-ff03-4f65-82ff-2ea6443c2e93" }, "file_batch_inference_duplicate_node": { "type": "parallel", @@ -1266,7 +1229,7 @@ "max_concurrency_per_instance": 1, "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/8ace4b76-b18c-4592-8882-0a6403775f7a/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3af49689-e732-4d3f-9854-43df40223df3/versions/1", "entry_script": "score.py", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1" @@ -1289,8 +1252,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/91108e41-7e37-4dda-803a-f1ce0c74c80a", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ac502684-d0fc-4772-a57c-34aa691c50d9", "retry_settings": null, "logging_level": null, "mini_batch_size": 1 @@ -1310,26 +1274,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "7329", + "Content-Length": "7406", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:14 GMT", + "Date": "Mon, 26 Sep 2022 03:52:47 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_192632812055?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_669912383412?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-4f8632d57e7486a6f324caca7a06c073-95fca5f198338e1e-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-9146cc23e62a54803f80509bd12a96f7-e8ab4a02e4aba371-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ce70ee73-8ce8-4395-9c65-c3d9ac5b0f17", - "x-ms-ratelimit-remaining-subscription-writes": "1195", + "x-ms-correlation-request-id": "daa23456-a539-43b3-a8e7-790a6b4239a9", + "x-ms-ratelimit-remaining-subscription-writes": "1191", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152814Z:ce70ee73-8ce8-4395-9c65-c3d9ac5b0f17", - "x-request-time": "3.196" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T035248Z:daa23456-a539-43b3-a8e7-790a6b4239a9", + "x-request-time": "4.805" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_192632812055", - "name": "test_192632812055", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_669912383412", + "name": "test_669912383412", "type": "Microsoft.MachineLearningServices/workspaces/jobs", "properties": { "description": null, @@ -1346,14 +1310,14 @@ "azureml.defaultDataStoreName": "workspaceblobstore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_192632812055", + "displayName": "test_669912383412", "status": "Preparing", "experimentName": "azure-ai-ml", "services": { "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null @@ -1361,7 +1325,7 @@ "Studio": { "jobServiceType": "Studio", "port": null, - "endpoint": "https://ml.azure.com/runs/test_192632812055?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "endpoint": "https://ml.azure.com/runs/test_669912383412?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, "properties": null @@ -1388,7 +1352,7 @@ "max_concurrency_per_instance": 1, "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/8ace4b76-b18c-4592-8882-0a6403775f7a/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3af49689-e732-4d3f-9854-43df40223df3/versions/1", "entry_script": "score.py", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1" @@ -1405,8 +1369,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/91108e41-7e37-4dda-803a-f1ce0c74c80a", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ac502684-d0fc-4772-a57c-34aa691c50d9", "retry_settings": null, "logging_level": null, "mini_batch_size": 1 @@ -1432,8 +1397,9 @@ "job_output_type": "mltable" } }, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/cbb27884-37a5-45f7-b3ff-62a2674996e9" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/c336f564-ff03-4f65-82ff-2ea6443c2e93" }, "file_batch_inference_duplicate_node": { "type": "parallel", @@ -1447,7 +1413,7 @@ "max_concurrency_per_instance": 1, "task": { "type": "run_function", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/8ace4b76-b18c-4592-8882-0a6403775f7a/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3af49689-e732-4d3f-9854-43df40223df3/versions/1", "entry_script": "score.py", "program_arguments": "--job_output_path ${{outputs.job_output_path}}", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1" @@ -1470,8 +1436,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/91108e41-7e37-4dda-803a-f1ce0c74c80a", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/ac502684-d0fc-4772-a57c-34aa691c50d9", "retry_settings": null, "logging_level": null, "mini_batch_size": 1 @@ -1496,14 +1463,14 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-19T15:28:14.3739203\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-26T03:52:47.2940324\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } } ], "Variables": { - "name": "test_192632812055" + "name": "test_669912383412" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_output.json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_output.json index c2faf2f86355..edca001230c4 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_output.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_output.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,39 +15,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:40:34 GMT", + "Date": "Fri, 23 Sep 2022 15:22:06 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-0be9f834b4a366acb45936b2d4b598e7-5cdb378a9a57b092-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-f99724f3d142f128e5f03320bed30144-a7fb66a5919887dc-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0295ca16-141f-46f6-bd19-f90f8ef739af", - "x-ms-ratelimit-remaining-subscription-reads": "11958", + "x-ms-correlation-request-id": "333d9c65-2408-40a1-ab74-aecabee24218", + "x-ms-ratelimit-remaining-subscription-reads": "11952", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194035Z:0295ca16-141f-46f6-bd19-f90f8ef739af", - "x-request-time": "0.058" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152206Z:333d9c65-2408-40a1-ab74-aecabee24218", + "x-request-time": "0.043" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.912489\u002B00:00", - "modifiedOn": "2022-09-15T03:11:50.5830108\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "eastus2", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -60,18 +60,18 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 4, + "currentNodeCount": 0, + "targetNodeCount": 3, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 2, - "idleNodeCount": 2, + "runningNodeCount": 0, + "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-16T18:30:06.83\u002B00:00", + "allocationState": "Resizing", + "allocationStateTransitionTime": "2022-09-23T15:21:36.391\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -89,7 +89,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -97,39 +97,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:40:34 GMT", + "Date": "Fri, 23 Sep 2022 15:22:07 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-585b1519e0c3ce8dda1d2e5165c4fdad-d3f7785ce78a55d3-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-f62f7dd844cc46710e14b1036ec862ed-a65cfe4f931b547b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ca75dd33-8d74-4cfc-be3a-c10dfce19956", - "x-ms-ratelimit-remaining-subscription-reads": "11957", + "x-ms-correlation-request-id": "98117529-6f52-4a75-ac97-cb4431beb90b", + "x-ms-ratelimit-remaining-subscription-reads": "11951", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194035Z:ca75dd33-8d74-4cfc-be3a-c10dfce19956", - "x-request-time": "0.069" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152207Z:98117529-6f52-4a75-ac97-cb4431beb90b", + "x-request-time": "0.142" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.912489\u002B00:00", - "modifiedOn": "2022-09-15T03:11:50.5830108\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "eastus2", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -142,18 +142,18 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 4, + "currentNodeCount": 0, + "targetNodeCount": 3, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 2, - "idleNodeCount": 2, + "runningNodeCount": 0, + "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-16T18:30:06.83\u002B00:00", + "allocationState": "Resizing", + "allocationStateTransitionTime": "2022-09-23T15:21:36.391\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -171,7 +171,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -179,39 +179,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:40:35 GMT", + "Date": "Fri, 23 Sep 2022 15:22:07 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-cccd45d96857ba2652b504009d4e4aaa-a1d0f37e9fffe91a-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-579e2ddbcf94aa1200722f5428ddcddd-ad903c176cbb0642-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "99cb56e4-2a10-4c2e-bb2f-2a60253b2d7a", - "x-ms-ratelimit-remaining-subscription-reads": "11956", + "x-ms-correlation-request-id": "78f42edb-f1ee-4901-ac37-8746c10b1f00", + "x-ms-ratelimit-remaining-subscription-reads": "11950", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194035Z:99cb56e4-2a10-4c2e-bb2f-2a60253b2d7a", - "x-request-time": "0.043" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152207Z:78f42edb-f1ee-4901-ac37-8746c10b1f00", + "x-request-time": "0.041" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.912489\u002B00:00", - "modifiedOn": "2022-09-15T03:11:50.5830108\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "eastus2", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -224,18 +224,18 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 4, + "currentNodeCount": 0, + "targetNodeCount": 3, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 2, - "idleNodeCount": 2, + "runningNodeCount": 0, + "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-16T18:30:06.83\u002B00:00", + "allocationState": "Resizing", + "allocationStateTransitionTime": "2022-09-23T15:21:36.391\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -253,7 +253,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -261,39 +261,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:40:35 GMT", + "Date": "Fri, 23 Sep 2022 15:22:08 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-32f8fac0189e9e35255a863021f9dcdf-c83bd304a52220bd-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-e189b9c0e9b8714839c11be084f85174-366f40d6f21cd99c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3d83b0ff-2ee3-4c17-8133-eeacc2cb2dfd", - "x-ms-ratelimit-remaining-subscription-reads": "11955", + "x-ms-correlation-request-id": "69af869e-7e03-4030-b50b-c3b8139d366b", + "x-ms-ratelimit-remaining-subscription-reads": "11949", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194035Z:3d83b0ff-2ee3-4c17-8133-eeacc2cb2dfd", - "x-request-time": "0.044" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152208Z:69af869e-7e03-4030-b50b-c3b8139d366b", + "x-request-time": "0.086" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.912489\u002B00:00", - "modifiedOn": "2022-09-15T03:11:50.5830108\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "eastus2", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -306,18 +306,18 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 4, + "currentNodeCount": 0, + "targetNodeCount": 3, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 2, - "idleNodeCount": 2, + "runningNodeCount": 0, + "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-16T18:30:06.83\u002B00:00", + "allocationState": "Resizing", + "allocationStateTransitionTime": "2022-09-23T15:21:36.391\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -335,7 +335,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -343,24 +343,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:40:36 GMT", + "Date": "Fri, 23 Sep 2022 15:22:10 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-76f7e02113544c0837170030b1e3add8-2250180fb2a3e994-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-e8ce73d991aa515163b3b274c49797b6-407151527b3b3a1d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a6cd8a34-6d25-4275-9aed-3cffb0d6f02f", - "x-ms-ratelimit-remaining-subscription-reads": "11954", + "x-ms-correlation-request-id": "262008c1-cead-4fe3-8795-f23e3970ca90", + "x-ms-ratelimit-remaining-subscription-reads": "11948", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194036Z:a6cd8a34-6d25-4275-9aed-3cffb0d6f02f", - "x-request-time": "0.091" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152210Z:262008c1-cead-4fe3-8795-f23e3970ca90", + "x-request-time": "0.079" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -375,17 +375,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -399,7 +399,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -407,20 +407,20 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:40:37 GMT", + "Date": "Fri, 23 Sep 2022 15:22:11 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-8296db80928b7a8f7287f41de8f3a0c3-9f7bfe6fe1d6d5fa-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-179e72dfbc68c55a45612f997c8bcf1d-55ddc368913cb767-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a1d4056e-d3b8-4036-be3d-8216a4e5ea1e", - "x-ms-ratelimit-remaining-subscription-writes": "1189", + "x-ms-correlation-request-id": "78061997-e00e-490a-a238-1051b77dd2ac", + "x-ms-ratelimit-remaining-subscription-writes": "1187", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194037Z:a1d4056e-d3b8-4036-be3d-8216a4e5ea1e", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152211Z:78061997-e00e-490a-a238-1051b77dd2ac", "x-request-time": "0.106" }, "ResponseBody": { @@ -429,15 +429,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:40:36 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:22:13 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -446,9 +446,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:40:37 GMT", - "ETag": "\u00220x8DA975B4CC57610\u0022", - "Last-Modified": "Thu, 15 Sep 2022 20:46:01 GMT", + "Date": "Fri, 23 Sep 2022 15:22:11 GMT", + "ETag": "\u00220x8DA9D76EE2580A0\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:18:55 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -457,32 +457,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 20:46:01 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:18:53 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "f0648f42-ca3c-4aee-9d9e-f2fe26dc4430", + "x-ms-meta-name": "000000000000000000000", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/python/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/python/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:40:36 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:22:14 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:40:37 GMT", + "Date": "Fri, 23 Sep 2022 15:22:11 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -490,12 +490,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -503,7 +503,7 @@ "Connection": "keep-alive", "Content-Length": "295", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -513,7 +513,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python" } }, "StatusCode": 200, @@ -521,27 +521,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:40:37 GMT", + "Date": "Fri, 23 Sep 2022 15:22:12 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-dcb613c87aaf28544be82cbba0352816-545e3749ec2f71ff-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-8c0d81bd768d75e4de28725fbb70152b-f6451b71b7188d18-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9f006a2b-f4f8-48b6-8310-7237a41e7065", - "x-ms-ratelimit-remaining-subscription-writes": "1181", + "x-ms-correlation-request-id": "107c577d-6ae2-4edc-bad2-15e05d71ced7", + "x-ms-ratelimit-remaining-subscription-writes": "1176", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194038Z:9f006a2b-f4f8-48b6-8310-7237a41e7065", - "x-request-time": "0.054" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152213Z:107c577d-6ae2-4edc-bad2-15e05d71ced7", + "x-request-time": "0.075" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -553,14 +553,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python" }, "systemData": { - "createdAt": "2022-09-15T20:46:01.4252338\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:18:57.5027157\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T19:40:37.9899456\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:22:13.0049022\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -572,9 +572,9 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1624", + "Content-Length": "1609", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -588,7 +588,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026\u0026 echo ${{inputs.component_in_number}} \u0026\u0026 mkdir -p ${{outputs.component_out_path_1}} \u0026\u0026 cp -p -r ${{inputs.component_in_path}} ${{outputs.component_out_path_1}} \u0026\u0026 echo ${{outputs.component_out_path_2}} \u0026\u0026 echo ${{outputs.component_out_path_3}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "description": "This is the basic command component", @@ -630,26 +630,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2663", + "Content-Length": "2646", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:40:38 GMT", + "Date": "Fri, 23 Sep 2022 15:22:14 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-c73bee014c673d9fdb293c6212a7af37-2105c19df8e3a4e7-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-b42fd41d58391b7fa5e1184cf4b11e21-a4e598d4eade6de4-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b20e2a34-72f9-4264-999a-93411f5c1fce", - "x-ms-ratelimit-remaining-subscription-writes": "1180", + "x-ms-correlation-request-id": "cc37a29f-8000-4094-97f8-4ea1a5b857ef", + "x-ms-ratelimit-remaining-subscription-writes": "1175", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194038Z:b20e2a34-72f9-4264-999a-93411f5c1fce", - "x-request-time": "0.409" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152214Z:cc37a29f-8000-4094-97f8-4ea1a5b857ef", + "x-request-time": "0.543" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d7e40618-c481-4c95-b4a5-1958611816bc", - "name": "d7e40618-c481-4c95-b4a5-1958611816bc", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2712547c-ba51-450f-84fc-4867219a2ee6", + "name": "2712547c-ba51-450f-84fc-4867219a2ee6", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -662,7 +662,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "d7e40618-c481-4c95-b4a5-1958611816bc", + "version": "2712547c-ba51-450f-84fc-4867219a2ee6", "display_name": "CommandComponentBasicWithInputAndOutput", "is_deterministic": "True", "type": "command", @@ -695,7 +695,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -705,11 +705,11 @@ } }, "systemData": { - "createdAt": "2022-09-16T03:14:37.2789374\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:22:14.1271529\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T03:14:37.4725273\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:22:14.1271529\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -721,7 +721,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -729,24 +729,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:40:38 GMT", + "Date": "Fri, 23 Sep 2022 15:22:15 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-49c9fa8b77d12c60069446fd8f2f083c-7237495f7eea8849-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-216fbe606eae211529be7971b4a2a390-7e61c4960bcc7fc3-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fd46b99b-fd1e-4cd4-9ac7-959fba31fa82", - "x-ms-ratelimit-remaining-subscription-reads": "11953", + "x-ms-correlation-request-id": "d6c29c51-0c30-4252-a603-0905be66c643", + "x-ms-ratelimit-remaining-subscription-reads": "11947", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194038Z:fd46b99b-fd1e-4cd4-9ac7-959fba31fa82", - "x-request-time": "0.083" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152215Z:d6c29c51-0c30-4252-a603-0905be66c643", + "x-request-time": "0.079" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -761,17 +761,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -785,7 +785,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -793,21 +793,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:40:38 GMT", + "Date": "Fri, 23 Sep 2022 15:22:15 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-93bf98af21832dfa34d9dc297f04acb2-df436e1781bc7274-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-18a5fc1945bf3cae5c7a9049bbcd8367-5ddf09447a6d5192-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fc5936e8-efb0-49a6-826d-387172cd04e0", - "x-ms-ratelimit-remaining-subscription-writes": "1188", + "x-ms-correlation-request-id": "ebcf416b-b071-4375-b4ff-e560b666ebf4", + "x-ms-ratelimit-remaining-subscription-writes": "1186", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194039Z:fc5936e8-efb0-49a6-826d-387172cd04e0", - "x-request-time": "0.096" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152216Z:ebcf416b-b071-4375-b4ff-e560b666ebf4", + "x-request-time": "0.095" }, "ResponseBody": { "secretsType": "AccountKey", @@ -815,15 +815,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:40:38 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:22:18 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -832,9 +832,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:40:39 GMT", - "ETag": "\u00220x8DA975B4CC57610\u0022", - "Last-Modified": "Thu, 15 Sep 2022 20:46:01 GMT", + "Date": "Fri, 23 Sep 2022 15:22:16 GMT", + "ETag": "\u00220x8DA9D76EE2580A0\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:18:55 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -843,32 +843,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 20:46:01 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:18:53 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "f0648f42-ca3c-4aee-9d9e-f2fe26dc4430", + "x-ms-meta-name": "000000000000000000000", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/python/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/python/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:40:38 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:22:18 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:40:39 GMT", + "Date": "Fri, 23 Sep 2022 15:22:16 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -876,12 +876,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -889,7 +889,7 @@ "Connection": "keep-alive", "Content-Length": "295", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -899,7 +899,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python" } }, "StatusCode": 200, @@ -907,27 +907,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:40:39 GMT", + "Date": "Fri, 23 Sep 2022 15:22:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-5e040d191df395b975c6e9dd3fd2c515-37784f2521ca3566-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-8330f070f0fecbc9840f26776464c362-a35cb787242c20f3-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3aed52b9-c97a-4a2b-b273-62bffffbdbc6", - "x-ms-ratelimit-remaining-subscription-writes": "1179", + "x-ms-correlation-request-id": "1cd31df1-5174-44cd-a704-e8a9d74bcaaf", + "x-ms-ratelimit-remaining-subscription-writes": "1174", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194039Z:3aed52b9-c97a-4a2b-b273-62bffffbdbc6", - "x-request-time": "0.063" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152217Z:1cd31df1-5174-44cd-a704-e8a9d74bcaaf", + "x-request-time": "0.076" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -939,14 +939,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python" }, "systemData": { - "createdAt": "2022-09-15T20:46:01.4252338\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:18:57.5027157\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T19:40:39.4431644\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:22:17.748543\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -958,9 +958,9 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1624", + "Content-Length": "1609", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -974,7 +974,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026\u0026 echo ${{inputs.component_in_number}} \u0026\u0026 mkdir -p ${{outputs.component_out_path_1}} \u0026\u0026 cp -p -r ${{inputs.component_in_path}} ${{outputs.component_out_path_1}} \u0026\u0026 echo ${{outputs.component_out_path_2}} \u0026\u0026 echo ${{outputs.component_out_path_3}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "description": "This is the basic command component", @@ -1016,26 +1016,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2663", + "Content-Length": "2646", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:40:39 GMT", + "Date": "Fri, 23 Sep 2022 15:22:18 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-ba251e26e61dd4917e9bc21a64bc6f11-de1521b4f3c0cf6f-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-e714008c290de00d5eb1e077b848ed6b-129c019fb5528b76-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "25df6597-5363-4966-be53-6a6dff713c1b", - "x-ms-ratelimit-remaining-subscription-writes": "1178", + "x-ms-correlation-request-id": "96cbb55c-8485-4363-b546-3c5ae6d869eb", + "x-ms-ratelimit-remaining-subscription-writes": "1173", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194040Z:25df6597-5363-4966-be53-6a6dff713c1b", - "x-request-time": "0.355" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152218Z:96cbb55c-8485-4363-b546-3c5ae6d869eb", + "x-request-time": "0.306" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d7e40618-c481-4c95-b4a5-1958611816bc", - "name": "d7e40618-c481-4c95-b4a5-1958611816bc", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2712547c-ba51-450f-84fc-4867219a2ee6", + "name": "2712547c-ba51-450f-84fc-4867219a2ee6", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1048,7 +1048,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "d7e40618-c481-4c95-b4a5-1958611816bc", + "version": "2712547c-ba51-450f-84fc-4867219a2ee6", "display_name": "CommandComponentBasicWithInputAndOutput", "is_deterministic": "True", "type": "command", @@ -1081,7 +1081,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -1091,11 +1091,11 @@ } }, "systemData": { - "createdAt": "2022-09-16T03:14:37.2789374\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:22:14.1271529\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T03:14:37.4725273\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:22:14.2894486\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -1107,7 +1107,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1115,24 +1115,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:40:39 GMT", + "Date": "Fri, 23 Sep 2022 15:22:19 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-6e1aecbe209c297ae83b4547c8f344f5-0f69fc90360dad82-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-580f0717632dc745c7708a0c02ac19bd-a5339c298e553184-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c323df51-a924-47f3-b697-81a3ece6b59e", - "x-ms-ratelimit-remaining-subscription-reads": "11952", + "x-ms-correlation-request-id": "68827ab3-330f-46ce-8078-50ab59b19881", + "x-ms-ratelimit-remaining-subscription-reads": "11946", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194040Z:c323df51-a924-47f3-b697-81a3ece6b59e", - "x-request-time": "0.089" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152219Z:68827ab3-330f-46ce-8078-50ab59b19881", + "x-request-time": "0.075" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -1147,17 +1147,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -1171,7 +1171,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1179,21 +1179,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:40:41 GMT", + "Date": "Fri, 23 Sep 2022 15:22:19 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-c5a5b9ffbe2a83737a7accc1ba59fc1a-3008275f24f80b09-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-dc27058fe0bd35ca41873a096816580d-8c79be9bca9a066c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "35d4885c-f0c6-43b0-991d-0bbb4327c4f5", - "x-ms-ratelimit-remaining-subscription-writes": "1187", + "x-ms-correlation-request-id": "6689c83e-f3ac-4806-b4ce-6c4284838a2d", + "x-ms-ratelimit-remaining-subscription-writes": "1185", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194041Z:35d4885c-f0c6-43b0-991d-0bbb4327c4f5", - "x-request-time": "0.100" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152220Z:6689c83e-f3ac-4806-b4ce-6c4284838a2d", + "x-request-time": "0.117" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1201,15 +1201,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:40:40 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:22:22 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -1218,9 +1218,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:40:41 GMT", - "ETag": "\u00220x8DA975B4CC57610\u0022", - "Last-Modified": "Thu, 15 Sep 2022 20:46:01 GMT", + "Date": "Fri, 23 Sep 2022 15:22:20 GMT", + "ETag": "\u00220x8DA9D76EE2580A0\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:18:55 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1229,32 +1229,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 20:46:01 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:18:53 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "f0648f42-ca3c-4aee-9d9e-f2fe26dc4430", + "x-ms-meta-name": "000000000000000000000", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/python/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/python/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:40:40 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:22:22 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:40:41 GMT", + "Date": "Fri, 23 Sep 2022 15:22:20 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1262,12 +1262,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -1275,7 +1275,7 @@ "Connection": "keep-alive", "Content-Length": "295", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -1285,7 +1285,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python" } }, "StatusCode": 200, @@ -1293,27 +1293,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:40:41 GMT", + "Date": "Fri, 23 Sep 2022 15:22:21 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-b368744241856d80c7e6594fc37d74e7-05228505b70442a0-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-0b933d82596445f1469fd08b1db853d6-d7ffc45c59fbca56-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cd29b628-eb21-44c9-a77f-68fd00dd8bfa", - "x-ms-ratelimit-remaining-subscription-writes": "1177", + "x-ms-correlation-request-id": "3a63e85f-c860-424a-b30e-15a0c19d7188", + "x-ms-ratelimit-remaining-subscription-writes": "1172", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194041Z:cd29b628-eb21-44c9-a77f-68fd00dd8bfa", - "x-request-time": "0.088" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152221Z:3a63e85f-c860-424a-b30e-15a0c19d7188", + "x-request-time": "0.076" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -1325,14 +1325,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python" }, "systemData": { - "createdAt": "2022-09-15T20:46:01.4252338\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:18:57.5027157\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T19:40:41.8793913\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:22:21.5920849\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -1344,9 +1344,9 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1396", + "Content-Length": "1381", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -1356,7 +1356,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026\u0026 echo ${{inputs.component_in_number}} \u0026\u0026 mkdir -p ${{outputs.component_out_path_1}} \u0026\u0026 mkdir -p ${{outputs.component_out_path_2}} \u0026\u0026 cp -p -r ${{inputs.component_in_path_1}} ${{outputs.component_out_path_1}} \u0026\u0026 cp -p -r ${{inputs.component_in_path_2}} ${{outputs.component_out_path_2}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "tags": {}, @@ -1394,26 +1394,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2552", + "Content-Length": "2535", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:40:42 GMT", + "Date": "Fri, 23 Sep 2022 15:22:22 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-a72f8ba2ac1dd1dd1f0dbc643b71709c-96687f29cc278685-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-e5adc06206612e9ed252980fd25f976c-151291157d34e13c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5b2d4ed8-3c6c-4737-a356-fff997a4097b", - "x-ms-ratelimit-remaining-subscription-writes": "1176", + "x-ms-correlation-request-id": "30d69e02-a83e-4c9b-8ddf-ad666ac10ea0", + "x-ms-ratelimit-remaining-subscription-writes": "1171", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194042Z:5b2d4ed8-3c6c-4737-a356-fff997a4097b", - "x-request-time": "0.371" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152222Z:30d69e02-a83e-4c9b-8ddf-ad666ac10ea0", + "x-request-time": "0.542" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d9c27d7d-0bd3-41ad-89f7-325a4fd6e970", - "name": "d9c27d7d-0bd3-41ad-89f7-325a4fd6e970", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b34340ad-36c1-449b-8532-ce90cdee7b8c", + "name": "b34340ad-36c1-449b-8532-ce90cdee7b8c", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1423,7 +1423,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "d9c27d7d-0bd3-41ad-89f7-325a4fd6e970", + "version": "b34340ad-36c1-449b-8532-ce90cdee7b8c", "display_name": "merge_component_outputs", "is_deterministic": "True", "type": "command", @@ -1453,7 +1453,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -1463,11 +1463,11 @@ } }, "systemData": { - "createdAt": "2022-09-16T03:14:41.3405703\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:22:22.5048247\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T03:14:41.5467206\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:22:22.5048247\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -1479,7 +1479,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1487,24 +1487,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:40:42 GMT", + "Date": "Fri, 23 Sep 2022 15:22:23 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-2f5a2c58746cddf94fa0748d751574c0-f6bb5fa603a61749-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-9a1607dee33a8dfb3cf63bc9024f7155-ac66874be2e5f02d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "99f23a21-0eca-4660-a8dd-2d6a0732fad4", - "x-ms-ratelimit-remaining-subscription-reads": "11951", + "x-ms-correlation-request-id": "a67a2407-ec08-4ff3-a950-54aceddea007", + "x-ms-ratelimit-remaining-subscription-reads": "11945", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194042Z:99f23a21-0eca-4660-a8dd-2d6a0732fad4", - "x-request-time": "0.115" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152223Z:a67a2407-ec08-4ff3-a950-54aceddea007", + "x-request-time": "0.080" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -1519,17 +1519,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -1543,7 +1543,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1551,21 +1551,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:40:43 GMT", + "Date": "Fri, 23 Sep 2022 15:22:23 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-d2e63456acab6f18bee6f18967d7d98e-afafaa65f0151522-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-5eb45a90621d552942220f7332fe7ba3-654bdf03709836b0-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "57e68fb3-ff5c-450e-a4ba-fbfa8a40e93d", - "x-ms-ratelimit-remaining-subscription-writes": "1186", + "x-ms-correlation-request-id": "82cdbc88-cb84-4d4f-aa4e-6abee418cab2", + "x-ms-ratelimit-remaining-subscription-writes": "1184", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194044Z:57e68fb3-ff5c-450e-a4ba-fbfa8a40e93d", - "x-request-time": "0.123" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152224Z:82cdbc88-cb84-4d4f-aa4e-6abee418cab2", + "x-request-time": "0.110" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1573,15 +1573,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:40:43 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:22:26 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -1590,9 +1590,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:40:44 GMT", - "ETag": "\u00220x8DA96C8A69D2BBA\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:16:15 GMT", + "Date": "Fri, 23 Sep 2022 15:22:24 GMT", + "ETag": "\u00220x8DA9D770C570D84\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:19:46 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1601,32 +1601,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:16:15 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:19:45 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "e95adacf-11cf-47c5-85eb-199ded56347d", + "x-ms-meta-name": "8c59cb92-112f-4c04-bda0-1342b610850d", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "a26e0dac-f124-4247-b13c-6e81f9a28197", + "x-ms-meta-version": "c1f97989-616d-4b90-a0d6-bac9ea34bade", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:40:43 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:22:26 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:40:44 GMT", + "Date": "Fri, 23 Sep 2022 15:22:24 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1634,7 +1634,7 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, @@ -1645,7 +1645,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1653,24 +1653,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:40:44 GMT", + "Date": "Fri, 23 Sep 2022 15:22:25 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-83a67463d15f5797e22c3c0caa75eed7-3df7774078050005-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-663dc6b9c200341f26f0409206f4a7f6-360284dae92e7fdc-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cfda3f05-6ecc-492a-b371-958a14d89bdb", - "x-ms-ratelimit-remaining-subscription-reads": "11950", + "x-ms-correlation-request-id": "94d07695-5cfe-473c-ad7b-fb2f4c61e886", + "x-ms-ratelimit-remaining-subscription-reads": "11944", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194044Z:cfda3f05-6ecc-492a-b371-958a14d89bdb", - "x-request-time": "0.156" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152225Z:94d07695-5cfe-473c-ad7b-fb2f4c61e886", + "x-request-time": "0.102" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -1685,17 +1685,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -1709,7 +1709,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1717,21 +1717,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:40:44 GMT", + "Date": "Fri, 23 Sep 2022 15:22:25 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-e9420328c7a117b3959e3b19790a8ac2-388fa1b43faedcec-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-d4fd703cd21b0807805db9d88563fb66-010f79c36ef1052f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2e437078-0ae7-405c-b4aa-946c5a23c92a", - "x-ms-ratelimit-remaining-subscription-writes": "1185", + "x-ms-correlation-request-id": "fb4e7def-4ec3-4604-9176-1e1562ea53b4", + "x-ms-ratelimit-remaining-subscription-writes": "1183", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194044Z:2e437078-0ae7-405c-b4aa-946c5a23c92a", - "x-request-time": "0.136" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152226Z:fb4e7def-4ec3-4604-9176-1e1562ea53b4", + "x-request-time": "0.086" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1739,15 +1739,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:40:43 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:22:28 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -1756,9 +1756,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:40:44 GMT", - "ETag": "\u00220x8DA96C8A69D2BBA\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:16:15 GMT", + "Date": "Fri, 23 Sep 2022 15:22:26 GMT", + "ETag": "\u00220x8DA9D770C570D84\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:19:46 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1767,32 +1767,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:16:15 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:19:45 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "e95adacf-11cf-47c5-85eb-199ded56347d", + "x-ms-meta-name": "8c59cb92-112f-4c04-bda0-1342b610850d", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "a26e0dac-f124-4247-b13c-6e81f9a28197", + "x-ms-meta-version": "c1f97989-616d-4b90-a0d6-bac9ea34bade", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:40:43 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:22:28 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:40:44 GMT", + "Date": "Fri, 23 Sep 2022 15:22:26 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1800,20 +1800,20 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_912225847447?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_953531962766?api-version=2022-06-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "4267", + "Content-Length": "4321", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -1824,7 +1824,7 @@ "tag": "tagvalue" }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", - "displayName": "test_912225847447", + "displayName": "test_953531962766", "experimentName": "azure-ai-ml", "isArchived": false, "jobType": "Pipeline", @@ -1867,8 +1867,9 @@ "job_output_type": "uri_folder" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d7e40618-c481-4c95-b4a5-1958611816bc" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2712547c-ba51-450f-84fc-4867219a2ee6" }, "hello_world_component_2": { "resources": null, @@ -1896,8 +1897,9 @@ "job_output_type": "uri_folder" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d7e40618-c481-4c95-b4a5-1958611816bc" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2712547c-ba51-450f-84fc-4867219a2ee6" }, "merge_component_outputs": { "resources": null, @@ -1933,8 +1935,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d9c27d7d-0bd3-41ad-89f7-325a4fd6e970" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b34340ad-36c1-449b-8532-ce90cdee7b8c" } }, "outputs": { @@ -1956,26 +1959,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "7284", + "Content-Length": "7357", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:40:49 GMT", + "Date": "Fri, 23 Sep 2022 15:22:34 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_912225847447?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_953531962766?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-44349479d71f522d45d9f838b53a22c3-0d804cdb388850c7-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-bef8768fb05bf0de2490191ab8386897-955649d8c12f43ee-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "85c0a34d-c9c0-481a-889a-2c1f29df00de", - "x-ms-ratelimit-remaining-subscription-writes": "1175", + "x-ms-correlation-request-id": "2b793fc5-cb1f-47e8-9523-15f58180ca2e", + "x-ms-ratelimit-remaining-subscription-writes": "1170", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194050Z:85c0a34d-c9c0-481a-889a-2c1f29df00de", - "x-request-time": "2.945" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152235Z:2b793fc5-cb1f-47e8-9523-15f58180ca2e", + "x-request-time": "3.667" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_912225847447", - "name": "test_912225847447", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_953531962766", + "name": "test_953531962766", "type": "Microsoft.MachineLearningServices/workspaces/jobs", "properties": { "description": "The hello world pipeline job with component output", @@ -1995,14 +1998,14 @@ "azureml.defaultDataStoreName": "workspaceblobstore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_912225847447", + "displayName": "test_953531962766", "status": "Preparing", "experimentName": "azure-ai-ml", "services": { "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null @@ -2010,7 +2013,7 @@ "Studio": { "jobServiceType": "Studio", "port": null, - "endpoint": "https://ml.azure.com/runs/test_912225847447?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "endpoint": "https://ml.azure.com/runs/test_953531962766?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, "properties": null @@ -2053,8 +2056,9 @@ "job_output_type": "uri_folder" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d7e40618-c481-4c95-b4a5-1958611816bc" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2712547c-ba51-450f-84fc-4867219a2ee6" }, "hello_world_component_2": { "resources": null, @@ -2082,8 +2086,9 @@ "job_output_type": "uri_folder" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d7e40618-c481-4c95-b4a5-1958611816bc" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2712547c-ba51-450f-84fc-4867219a2ee6" }, "merge_component_outputs": { "resources": null, @@ -2119,8 +2124,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d9c27d7d-0bd3-41ad-89f7-325a4fd6e970" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b34340ad-36c1-449b-8532-ce90cdee7b8c" } }, "inputs": { @@ -2153,14 +2159,14 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-16T19:40:49.9295569\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:22:34.6073133\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } } ], "Variables": { - "name": "test_912225847447" + "name": "test_953531962766" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_path_inputs.json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_path_inputs.json index b4ff2f053105..6ce8ff1a9f51 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_path_inputs.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_path_inputs.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,24 +15,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:40:52 GMT", + "Date": "Mon, 26 Sep 2022 03:58:09 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-205c17b6e9a936520b6c73a654539162-ed62366626480f11-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-e6e4a61889ba2334f2b3228ff7b87588-1fc9cc2100209bec-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7fe81523-6e7d-4ba3-ba09-aaed683481bb", - "x-ms-ratelimit-remaining-subscription-reads": "11949", + "x-ms-correlation-request-id": "73bf98d5-4a2f-484b-a4cb-2fb4b0940a8f", + "x-ms-ratelimit-remaining-subscription-reads": "11988", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194052Z:7fe81523-6e7d-4ba3-ba09-aaed683481bb", - "x-request-time": "0.150" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T035810Z:73bf98d5-4a2f-484b-a4cb-2fb4b0940a8f", + "x-request-time": "1.279" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/microsoftsamples_command_component_basic_with_paths_test/versions/1", @@ -74,7 +74,7 @@ "description": "A number" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/76881335-dcdc-4f95-9abb-ab5bfb5c8ce4/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/00733a51-04f4-4ca8-ae80-0297867c549c/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -84,12 +84,12 @@ } }, "systemData": { - "createdAt": "2022-09-15T03:19:16.9942385\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:19:17.2005634\u002B00:00", - "lastModifiedBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "lastModifiedByType": "Application" + "createdAt": "2022-09-23T09:53:07.3185827\u002B00:00", + "createdBy": "Ying Chen", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T09:53:07.9929019\u002B00:00", + "lastModifiedBy": "Ying Chen", + "lastModifiedByType": "User" } } }, @@ -100,7 +100,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -108,24 +108,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:40:52 GMT", + "Date": "Mon, 26 Sep 2022 03:58:10 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-e4e2cae9e8a3eabba235d0dffb1017ae-218c1fe0e5c7fdd5-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-cda9844ca7f280caf258d0d2c332f9cd-6cbaa870fb5b0b7c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "31a0b885-d9e1-4ecf-9df9-0415e28c6ce1", - "x-ms-ratelimit-remaining-subscription-reads": "11948", + "x-ms-correlation-request-id": "7d9e2611-5ec3-4f22-947d-492fa2a1690f", + "x-ms-ratelimit-remaining-subscription-reads": "11987", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194053Z:31a0b885-d9e1-4ecf-9df9-0415e28c6ce1", - "x-request-time": "0.080" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T035810Z:7d9e2611-5ec3-4f22-947d-492fa2a1690f", + "x-request-time": "0.136" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -140,17 +140,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -164,7 +164,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -172,21 +172,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:40:53 GMT", + "Date": "Mon, 26 Sep 2022 03:58:11 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-dbdbfdc224660dedef0e2dc42cf52a8c-f4741ba0c26ce1d6-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-f8fbc3fe725f3f7edc71651c74871f1f-741a143b4e65e3dc-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ac6b91a4-5a36-4e9e-bad1-b031e0274cab", - "x-ms-ratelimit-remaining-subscription-writes": "1184", + "x-ms-correlation-request-id": "97262540-0474-40ea-b210-a73c92d8ae89", + "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194053Z:ac6b91a4-5a36-4e9e-bad1-b031e0274cab", - "x-request-time": "0.093" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T035811Z:97262540-0474-40ea-b210-a73c92d8ae89", + "x-request-time": "0.135" }, "ResponseBody": { "secretsType": "AccountKey", @@ -194,15 +194,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:40:52 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Mon, 26 Sep 2022 03:58:11 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -211,9 +211,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:40:53 GMT", - "ETag": "\u00220x8DA96C8A69D2BBA\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:16:15 GMT", + "Date": "Mon, 26 Sep 2022 03:58:11 GMT", + "ETag": "\u00220x8DA9D48AFBCE5A6\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:47:53 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -222,32 +222,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:16:15 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:47:53 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "e95adacf-11cf-47c5-85eb-199ded56347d", + "x-ms-meta-name": "da405283-c0d4-42bf-9cd0-2d052c9da84b", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "a26e0dac-f124-4247-b13c-6e81f9a28197", + "x-ms-meta-version": "bcdecfd5-08fc-40e1-af7f-364ca3525a76", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:40:52 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Mon, 26 Sep 2022 03:58:12 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:40:53 GMT", + "Date": "Mon, 26 Sep 2022 03:58:11 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -255,12 +255,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/data/test_948831575285/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/data/test_966438922455/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -268,7 +268,7 @@ "Connection": "keep-alive", "Content-Length": "256", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -284,25 +284,25 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "841", + "Content-Length": "838", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:40:53 GMT", + "Date": "Mon, 26 Sep 2022 03:58:13 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/data/test_948831575285/versions/1?api-version=2022-05-01", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/data/test_966438922455/versions/1?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-686303eb19b3a89cbaeecbb6ab2e04ec-aebb68f8478cfd5b-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-9e554714fecb98b886317ed7adfdf031-181e12f2d1c5b9bd-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e1e9b765-7bc1-4121-a18b-efefbf7894f2", - "x-ms-ratelimit-remaining-subscription-writes": "1174", + "x-ms-correlation-request-id": "8a0e8f9f-7462-44f6-a67b-c9c35bf5e18d", + "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194054Z:e1e9b765-7bc1-4121-a18b-efefbf7894f2", - "x-request-time": "0.311" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T035814Z:8a0e8f9f-7462-44f6-a67b-c9c35bf5e18d", + "x-request-time": "0.428" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/data/test_948831575285/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/data/test_966438922455/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/data/versions", "properties": { @@ -315,10 +315,10 @@ "dataType": "uri_folder" }, "systemData": { - "createdAt": "2022-09-16T19:40:54.0884512\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-26T03:58:14.028937\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T19:40:54.1071791\u002B00:00" + "lastModifiedAt": "2022-09-26T03:58:14.079057\u002B00:00" } } }, @@ -329,7 +329,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -337,39 +337,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:40:54 GMT", + "Date": "Mon, 26 Sep 2022 03:58:16 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-a28df4ac890a2d02714a6ae0b3b91250-a6fa9bcca58f06ff-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-0c65ef3a199f85400ae20650ff98d180-c378a63db803ab81-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8917f481-2f97-4807-878c-964c83279a5a", - "x-ms-ratelimit-remaining-subscription-reads": "11947", + "x-ms-correlation-request-id": "d133eac1-4456-438a-8803-f8c8a71e7f9e", + "x-ms-ratelimit-remaining-subscription-reads": "11986", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194055Z:8917f481-2f97-4807-878c-964c83279a5a", - "x-request-time": "0.047" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T035817Z:d133eac1-4456-438a-8803-f8c8a71e7f9e", + "x-request-time": "0.435" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.912489\u002B00:00", - "modifiedOn": "2022-09-15T03:11:50.5830108\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "centraluseuap", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -378,22 +378,22 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 4, + "currentNodeCount": 1, + "targetNodeCount": 2, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 2, - "idleNodeCount": 2, + "runningNodeCount": 1, + "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-16T18:30:06.83\u002B00:00", + "allocationState": "Resizing", + "allocationStateTransitionTime": "2022-09-26T03:57:45.398\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -411,7 +411,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -419,39 +419,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:40:54 GMT", + "Date": "Mon, 26 Sep 2022 03:58:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-fa3d974a4e4ec84ca6138b3242f288ec-f14ba792d07d259e-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-4fc31776d6d3236e6c90d8ac878d548b-6feb3df3b0afa4d8-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4821a109-9571-4674-a7fc-31ad7af38fc1", - "x-ms-ratelimit-remaining-subscription-reads": "11946", + "x-ms-correlation-request-id": "5ba11528-df94-4151-ac45-355d72745d0e", + "x-ms-ratelimit-remaining-subscription-reads": "11985", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194055Z:4821a109-9571-4674-a7fc-31ad7af38fc1", - "x-request-time": "0.051" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T035818Z:5ba11528-df94-4151-ac45-355d72745d0e", + "x-request-time": "0.228" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.912489\u002B00:00", - "modifiedOn": "2022-09-15T03:11:50.5830108\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "centraluseuap", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -460,22 +460,22 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 4, + "currentNodeCount": 1, + "targetNodeCount": 2, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 2, - "idleNodeCount": 2, + "runningNodeCount": 1, + "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-16T18:30:06.83\u002B00:00", + "allocationState": "Resizing", + "allocationStateTransitionTime": "2022-09-26T03:57:45.398\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -493,7 +493,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -501,39 +501,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:40:55 GMT", + "Date": "Mon, 26 Sep 2022 03:58:18 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-6af7fa740ad9eb2a7db4b8c222fde03c-d21349425af3f1f6-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-6f5f0fa4cf382c5dfb8097787a84b1ee-1eac2116403040e7-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "971f4534-38b8-43c5-a11c-18bc8c9792b7", - "x-ms-ratelimit-remaining-subscription-reads": "11945", + "x-ms-correlation-request-id": "4cc3d7e7-0ba1-46ec-a160-af37bf39e51b", + "x-ms-ratelimit-remaining-subscription-reads": "11984", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194055Z:971f4534-38b8-43c5-a11c-18bc8c9792b7", - "x-request-time": "0.066" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T035818Z:4cc3d7e7-0ba1-46ec-a160-af37bf39e51b", + "x-request-time": "0.228" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.912489\u002B00:00", - "modifiedOn": "2022-09-15T03:11:50.5830108\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "centraluseuap", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -542,22 +542,22 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 4, + "currentNodeCount": 1, + "targetNodeCount": 2, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 2, - "idleNodeCount": 2, + "runningNodeCount": 1, + "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-16T18:30:06.83\u002B00:00", + "allocationState": "Resizing", + "allocationStateTransitionTime": "2022-09-26T03:57:45.398\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -575,7 +575,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -583,24 +583,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:40:55 GMT", + "Date": "Mon, 26 Sep 2022 03:58:19 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-485890d755c0376f84db4ca4d4deb46a-88474a6ac159f386-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-acdd9ec4ccff224ee51d6fe9f9d99f30-1b6a58c6784cd884-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "664bd3de-a69b-4937-b725-018f45ce79f2", - "x-ms-ratelimit-remaining-subscription-reads": "11944", + "x-ms-correlation-request-id": "8dd6d6af-a523-4b0c-88fb-242a0d59b74a", + "x-ms-ratelimit-remaining-subscription-reads": "11983", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194055Z:664bd3de-a69b-4937-b725-018f45ce79f2", - "x-request-time": "0.129" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T035819Z:8dd6d6af-a523-4b0c-88fb-242a0d59b74a", + "x-request-time": "0.091" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -615,17 +615,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -639,7 +639,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -647,21 +647,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:40:55 GMT", + "Date": "Mon, 26 Sep 2022 03:58:20 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-db62f3c049dded6b0591c40e2d91b484-94094c0e4ef3a118-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-9df06978c777a71435c81893485accf7-81d8c8297e057908-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "96854193-37b2-4db4-bcd2-216e2270aaaf", - "x-ms-ratelimit-remaining-subscription-writes": "1183", + "x-ms-correlation-request-id": "5b1f60cd-3736-44a7-b8e3-22d3354066df", + "x-ms-ratelimit-remaining-subscription-writes": "1198", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194056Z:96854193-37b2-4db4-bcd2-216e2270aaaf", - "x-request-time": "0.114" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T035820Z:5b1f60cd-3736-44a7-b8e3-22d3354066df", + "x-request-time": "0.134" }, "ResponseBody": { "secretsType": "AccountKey", @@ -669,15 +669,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:40:55 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Mon, 26 Sep 2022 03:58:20 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -686,9 +686,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:40:56 GMT", - "ETag": "\u00220x8DA96C8A69D2BBA\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:16:15 GMT", + "Date": "Mon, 26 Sep 2022 03:58:19 GMT", + "ETag": "\u00220x8DA9D48AFBCE5A6\u0022", + "Last-Modified": "Fri, 23 Sep 2022 09:47:53 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -697,32 +697,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:16:15 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 09:47:53 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "e95adacf-11cf-47c5-85eb-199ded56347d", + "x-ms-meta-name": "da405283-c0d4-42bf-9cd0-2d052c9da84b", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "a26e0dac-f124-4247-b13c-6e81f9a28197", + "x-ms-meta-version": "bcdecfd5-08fc-40e1-af7f-364ca3525a76", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:40:55 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Mon, 26 Sep 2022 03:58:20 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:40:56 GMT", + "Date": "Mon, 26 Sep 2022 03:58:20 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -730,20 +730,20 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_517004193967?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_606411110142?api-version=2022-06-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "3000", + "Content-Length": "3036", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -754,7 +754,7 @@ "owner": "sdkteam" }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", - "displayName": "test_517004193967", + "displayName": "test_606411110142", "experimentName": "my_first_experiment", "isArchived": false, "jobType": "Pipeline", @@ -804,6 +804,7 @@ } }, "outputs": {}, + "properties": {}, "_source": "REMOTE.WORKSPACE.COMPONENT", "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/microsoftsamples_command_component_basic_with_paths_test/versions/1" }, @@ -832,6 +833,7 @@ } }, "outputs": {}, + "properties": {}, "_source": "REMOTE.WORKSPACE.COMPONENT", "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/microsoftsamples_command_component_basic_with_paths_test/versions/1" } @@ -845,26 +847,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "5602", + "Content-Length": "5653", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:41:01 GMT", + "Date": "Mon, 26 Sep 2022 03:58:28 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_517004193967?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_606411110142?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-bd8c2ceb9b103d2acea4cb7e827523dc-57ce6f7b4374b9f1-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-262ad5b39017b978ae2af67015e47a85-f93ffb70164a937b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "049b7e98-f1ae-436c-89b9-4d8184a092d1", - "x-ms-ratelimit-remaining-subscription-writes": "1173", + "x-ms-correlation-request-id": "f0ae30a6-643e-43ab-9bb5-993d9d2874d6", + "x-ms-ratelimit-remaining-subscription-writes": "1198", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194101Z:049b7e98-f1ae-436c-89b9-4d8184a092d1", - "x-request-time": "3.004" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T035828Z:f0ae30a6-643e-43ab-9bb5-993d9d2874d6", + "x-request-time": "4.560" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_517004193967", - "name": "test_517004193967", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_606411110142", + "name": "test_606411110142", "type": "Microsoft.MachineLearningServices/workspaces/jobs", "properties": { "description": "The hello world pipeline job", @@ -884,14 +886,14 @@ "azureml.defaultDataStoreName": "workspaceblobstore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_517004193967", + "displayName": "test_606411110142", "status": "Preparing", "experimentName": "my_first_experiment", "services": { "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null @@ -899,7 +901,7 @@ "Studio": { "jobServiceType": "Studio", "port": null, - "endpoint": "https://ml.azure.com/runs/test_517004193967?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "endpoint": "https://ml.azure.com/runs/test_606411110142?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, "properties": null @@ -939,6 +941,7 @@ } }, "outputs": {}, + "properties": {}, "_source": "REMOTE.WORKSPACE.COMPONENT", "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/microsoftsamples_command_component_basic_with_paths_test/versions/1" }, @@ -967,6 +970,7 @@ } }, "outputs": {}, + "properties": {}, "_source": "REMOTE.WORKSPACE.COMPONENT", "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/microsoftsamples_command_component_basic_with_paths_test/versions/1" } @@ -999,15 +1003,15 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-16T19:41:01.2426397\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-26T03:58:27.1747743\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } } ], "Variables": { - "data_override_name": "test_948831575285", - "job_name": "test_517004193967" + "data_override_name": "test_966438922455", + "job_name": "test_606411110142" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_sweep_node.json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_sweep_node.json index 55eea6e53e33..b2cecba9e6b5 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_sweep_node.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_sweep_node.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,39 +15,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:45:20 GMT", + "Date": "Fri, 23 Sep 2022 15:35:29 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-6532266bd4ed1f1cf9e044a476f0f0e4-f8583cb13cd5592f-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-71e637b34827cf2c01f5c8359e6efa1b-b123a52ad8487673-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3181833a-90b3-4a30-b5dc-b00aea20f2a4", - "x-ms-ratelimit-remaining-subscription-reads": "11866", + "x-ms-correlation-request-id": "fa04f766-b384-4482-928b-19d374895f7c", + "x-ms-ratelimit-remaining-subscription-reads": "11971", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194520Z:3181833a-90b3-4a30-b5dc-b00aea20f2a4", - "x-request-time": "0.049" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153529Z:fa04f766-b384-4482-928b-19d374895f7c", + "x-request-time": "0.043" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.912489\u002B00:00", - "modifiedOn": "2022-09-15T03:11:50.5830108\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "eastus2", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -61,17 +61,17 @@ }, "subnet": null, "currentNodeCount": 4, - "targetNodeCount": 4, + "targetNodeCount": 3, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 4, - "idleNodeCount": 0, + "runningNodeCount": 2, + "idleNodeCount": 1, "unusableNodeCount": 0, - "leavingNodeCount": 0, + "leavingNodeCount": 1, "preemptedNodeCount": 0 }, - "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-16T19:44:21.123\u002B00:00", + "allocationState": "Resizing", + "allocationStateTransitionTime": "2022-09-23T15:31:36.126\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -89,7 +89,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -97,41 +97,48 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:45:20 GMT", + "Date": "Fri, 23 Sep 2022 15:35:30 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-c0b5ecdcd06eee23c0abd0aba2bea12e-25b41a27b2d46d6a-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-9fc7fdc3eb0f47706479441e34ed1a73-a3e5a42f608710c5-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "84ddbed7-688a-44f8-a6ba-e78aae9270c1", - "x-ms-ratelimit-remaining-subscription-reads": "11865", + "x-ms-correlation-request-id": "a6399677-1f84-456c-a709-0640d4f1f865", + "x-ms-ratelimit-remaining-subscription-reads": "11970", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194520Z:84ddbed7-688a-44f8-a6ba-e78aae9270c1", - "x-request-time": "0.044" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153530Z:a6399677-1f84-456c-a709-0640d4f1f865", + "x-request-time": "0.049" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/gpu-cluster", "name": "gpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.9201731\u002B00:00", - "modifiedOn": "2022-09-15T03:11:53.646313\u002B00:00", + "createdOn": "2022-09-22T03:11:29.7706914\u002B00:00", + "modifiedOn": "2022-09-22T03:11:30.2032599\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", - "provisioningState": "Succeeded", - "provisioningErrors": null, + "computeLocation": "eastus2", + "provisioningState": "Failed", + "provisioningErrors": [ + { + "error": { + "code": "VmSizeNotSupported", + "message": "STANDARD_ND6S is not supported in region eastus2. Please choose a different VM size." + } + } + ], "isAttachedCompute": false, "properties": { "vmSize": "STANDARD_ND6S", @@ -139,27 +146,17 @@ "scaleSettings": { "maxNodeCount": 4, "minNodeCount": 0, - "nodeIdleTimeBeforeScaleDown": "PT2M" + "nodeIdleTimeBeforeScaleDown": null }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 4, - "nodeStateCounts": { - "preparingNodeCount": 0, - "runningNodeCount": 1, - "idleNodeCount": 3, - "unusableNodeCount": 0, - "leavingNodeCount": 0, - "preemptedNodeCount": 0 - }, - "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-16T19:38:30.16\u002B00:00", + "currentNodeCount": null, + "targetNodeCount": null, + "nodeStateCounts": null, + "allocationState": null, "errors": null, - "remoteLoginPortPublicAccess": "Enabled", - "osType": "Linux", + "remoteLoginPortPublicAccess": "NotSpecified", "virtualMachineImage": null, - "isolatedNetwork": false, - "propertyBag": {} + "isolatedNetwork": false } } } @@ -171,7 +168,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -179,24 +176,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:45:21 GMT", + "Date": "Fri, 23 Sep 2022 15:35:33 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-b4a60be69661cf353c5d765477a93f56-2e31804bdb3ce192-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-4a2d00148f17373e1dee149535644dc6-6412d30001230df0-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3291240d-7603-48e7-a982-cecf506e1904", - "x-ms-ratelimit-remaining-subscription-reads": "11864", + "x-ms-correlation-request-id": "73e08a70-2585-454d-9a21-9961389485ca", + "x-ms-ratelimit-remaining-subscription-reads": "11969", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194521Z:3291240d-7603-48e7-a982-cecf506e1904", - "x-request-time": "0.075" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153533Z:73e08a70-2585-454d-9a21-9961389485ca", + "x-request-time": "0.104" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -211,17 +208,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -235,7 +232,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -243,21 +240,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:45:22 GMT", + "Date": "Fri, 23 Sep 2022 15:35:35 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-dd995d60404a35043d1fb7802c5bc472-78d73792d3a36435-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-3955442f726f7e27295665a29ef6c3eb-0733391e364b6b5f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1aaa85e4-85ae-4cd3-98a6-06db92990363", - "x-ms-ratelimit-remaining-subscription-writes": "1144", + "x-ms-correlation-request-id": "820106fc-974c-42dc-a8b1-0011b789ea6b", + "x-ms-ratelimit-remaining-subscription-writes": "1193", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194522Z:1aaa85e4-85ae-4cd3-98a6-06db92990363", - "x-request-time": "0.109" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153535Z:820106fc-974c-42dc-a8b1-0011b789ea6b", + "x-request-time": "0.081" }, "ResponseBody": { "secretsType": "AccountKey", @@ -265,15 +262,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:45:21 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:35:37 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -282,9 +279,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:45:22 GMT", - "ETag": "\u00220x8DA975B4CC57610\u0022", - "Last-Modified": "Thu, 15 Sep 2022 20:46:01 GMT", + "Date": "Fri, 23 Sep 2022 15:35:35 GMT", + "ETag": "\u00220x8DA9D76EE2580A0\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:18:55 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -293,32 +290,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 20:46:01 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:18:53 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "f0648f42-ca3c-4aee-9d9e-f2fe26dc4430", + "x-ms-meta-name": "000000000000000000000", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/python/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/python/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:45:21 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:35:38 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:45:22 GMT", + "Date": "Fri, 23 Sep 2022 15:35:36 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -326,12 +323,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -339,7 +336,7 @@ "Connection": "keep-alive", "Content-Length": "295", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -349,7 +346,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python" } }, "StatusCode": 200, @@ -357,27 +354,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:45:22 GMT", + "Date": "Fri, 23 Sep 2022 15:35:37 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-455f374e6c3c1d4fc8291f789ead496d-9d13e4b7a18e5b30-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-60747a0bb3c08602b816caa1feadfeda-9d16293ef5511042-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3814a55f-46d0-460b-8d4b-6a205a178c19", - "x-ms-ratelimit-remaining-subscription-writes": "1100", + "x-ms-correlation-request-id": "f0fb344d-1bd9-4317-ab2d-b655ceda88ff", + "x-ms-ratelimit-remaining-subscription-writes": "1189", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194522Z:3814a55f-46d0-460b-8d4b-6a205a178c19", - "x-request-time": "0.066" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153537Z:f0fb344d-1bd9-4317-ab2d-b655ceda88ff", + "x-request-time": "0.126" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -389,14 +386,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python" }, "systemData": { - "createdAt": "2022-09-15T20:46:01.4252338\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:18:57.5027157\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T19:45:22.6026091\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:35:37.3291013\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -408,9 +405,9 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "866", + "Content-Length": "851", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -420,7 +417,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo ${{inputs.component_in_number}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "tags": {}, @@ -442,26 +439,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1793", + "Content-Length": "1776", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:45:22 GMT", + "Date": "Fri, 23 Sep 2022 15:35:38 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-066a11a281f1015ece4aa0cc2a86782c-6ca5d8f92becf6a3-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-f64fca65c9424f14e38f9f42c90a106e-446b69ccc7298527-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0fe04004-42d9-494a-90ce-8ff0e910fe82", - "x-ms-ratelimit-remaining-subscription-writes": "1099", + "x-ms-correlation-request-id": "6ae58c1f-320b-4ed6-b7c1-fe78b0b71b43", + "x-ms-ratelimit-remaining-subscription-writes": "1188", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194523Z:0fe04004-42d9-494a-90ce-8ff0e910fe82", - "x-request-time": "0.279" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153539Z:6ae58c1f-320b-4ed6-b7c1-fe78b0b71b43", + "x-request-time": "0.611" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/78c7032b-86c2-4bde-9269-20720112cb98", - "name": "78c7032b-86c2-4bde-9269-20720112cb98", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/34b9dac7-553f-4917-a661-cb25b4cbae4b", + "name": "34b9dac7-553f-4917-a661-cb25b4cbae4b", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -471,7 +468,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "78c7032b-86c2-4bde-9269-20720112cb98", + "version": "34b9dac7-553f-4917-a661-cb25b4cbae4b", "is_deterministic": "True", "type": "command", "inputs": { @@ -482,7 +479,7 @@ "description": "Am integer" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -492,11 +489,11 @@ } }, "systemData": { - "createdAt": "2022-09-16T03:19:02.6191232\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:35:38.7955906\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T03:19:02.8150347\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:35:38.7955906\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -508,7 +505,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -516,24 +513,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:45:23 GMT", + "Date": "Fri, 23 Sep 2022 15:35:40 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-261820bf2de6d6fb728c57abaab9d890-1f5dbfa38be3a1e7-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-c2fcd6185f3af4bfcd59cb4abc1521e2-93d30dfef3a4c29e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "74f9aae9-73a8-4d57-a8d3-245cd7f7ecc7", - "x-ms-ratelimit-remaining-subscription-reads": "11863", + "x-ms-correlation-request-id": "50257786-2978-435f-aa78-036c9cc5e824", + "x-ms-ratelimit-remaining-subscription-reads": "11968", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194523Z:74f9aae9-73a8-4d57-a8d3-245cd7f7ecc7", - "x-request-time": "0.086" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153540Z:50257786-2978-435f-aa78-036c9cc5e824", + "x-request-time": "0.110" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -548,17 +545,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -572,7 +569,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -580,21 +577,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:45:23 GMT", + "Date": "Fri, 23 Sep 2022 15:35:40 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-cb994dc1df358014bd3d219cfd932e1b-c225bd36712f3371-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-d7253c9346d25278b774f5802d723097-b281bb647fe7880d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d4033dcc-7011-48dc-b984-5a5543fcdd84", - "x-ms-ratelimit-remaining-subscription-writes": "1143", + "x-ms-correlation-request-id": "38bda087-0ede-4cfb-a9a0-371c5dd64d4d", + "x-ms-ratelimit-remaining-subscription-writes": "1192", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194523Z:d4033dcc-7011-48dc-b984-5a5543fcdd84", - "x-request-time": "0.103" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153541Z:38bda087-0ede-4cfb-a9a0-371c5dd64d4d", + "x-request-time": "0.079" }, "ResponseBody": { "secretsType": "AccountKey", @@ -602,15 +599,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:45:22 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:35:43 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -619,9 +616,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:45:23 GMT", - "ETag": "\u00220x8DA96C8560C1979\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:14:00 GMT", + "Date": "Fri, 23 Sep 2022 15:35:41 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -630,32 +627,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:14:00 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ac7e0240-c159-4c9c-828e-d3e8df43e80f", + "x-ms-meta-name": "000000000000000000000", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:45:22 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:35:43 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:45:23 GMT", + "Date": "Fri, 23 Sep 2022 15:35:41 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -663,12 +660,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -676,7 +673,7 @@ "Connection": "keep-alive", "Content-Length": "288", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -686,7 +683,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -694,27 +691,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:45:24 GMT", + "Date": "Fri, 23 Sep 2022 15:35:42 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-b80c2f3889bebc0e7e157f19dffe3688-b34719e51140c3b7-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-cb269368bef789c055e0a0297c8a55d8-604582e0aecb3f96-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1c76506a-19b2-4b39-b704-4c95b56cc2c0", - "x-ms-ratelimit-remaining-subscription-writes": "1098", + "x-ms-correlation-request-id": "472214c9-8b37-4aac-913b-378ffddf866a", + "x-ms-ratelimit-remaining-subscription-writes": "1187", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194524Z:1c76506a-19b2-4b39-b704-4c95b56cc2c0", - "x-request-time": "0.061" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153543Z:472214c9-8b37-4aac-913b-378ffddf866a", + "x-request-time": "0.071" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -726,14 +723,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-15T03:14:01.4315202\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-16T19:45:24.6216791\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T15:35:42.9865028\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -745,9 +742,9 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "2048", + "Content-Length": "2033", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -761,7 +758,7 @@ "isArchived": false, "componentSpec": { "command": "echo \u0022Start training ...\u0022 \u0026\u0026 python mnist.py --data_folder ${{inputs.data_folder}} --batch_size ${{inputs.batch_size}} --first_layer_neurons ${{inputs.first_layer_neurons}} --second_layer_neurons ${{inputs.second_layer_neurons}} --third_layer_neurons ${{inputs.third_layer_neurons}} --epochs ${{inputs.epochs}} --f1 ${{inputs.f1}} --f2 ${{inputs.f2}} --weight_decay ${{inputs.weight_decay}} --momentum ${{inputs.momentum}} --learning_rate ${{inputs.learning_rate}} --saved_model ${{outputs.trained_model_dir}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "description": "This is the command component for sweep", @@ -825,26 +822,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3603", + "Content-Length": "3586", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:45:24 GMT", + "Date": "Fri, 23 Sep 2022 15:35:44 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-1cee9bf888f09d2eb884d6022436ba99-17e0117a7391fc3e-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-b26df54a311d9c229e584d23bf198c4f-7fbe1e5ea5b0da4f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6b86149f-65b2-4df9-8895-ede09e8b2035", - "x-ms-ratelimit-remaining-subscription-writes": "1097", + "x-ms-correlation-request-id": "a1d7fa00-ecd6-4c53-8c12-0434bd48bcbb", + "x-ms-ratelimit-remaining-subscription-writes": "1186", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194525Z:6b86149f-65b2-4df9-8895-ede09e8b2035", - "x-request-time": "0.388" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153544Z:a1d7fa00-ecd6-4c53-8c12-0434bd48bcbb", + "x-request-time": "0.598" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d94eedd7-db72-48fd-935c-64e678ac8cf6", - "name": "d94eedd7-db72-48fd-935c-64e678ac8cf6", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/332c11f1-9fc5-4a0f-baf5-f4299e0424b1", + "name": "332c11f1-9fc5-4a0f-baf5-f4299e0424b1", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -857,7 +854,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "d94eedd7-db72-48fd-935c-64e678ac8cf6", + "version": "332c11f1-9fc5-4a0f-baf5-f4299e0424b1", "display_name": "CommandComponentForSweep", "is_deterministic": "True", "type": "command", @@ -922,7 +919,7 @@ "type": "mlflow_model" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -932,11 +929,11 @@ } }, "systemData": { - "createdAt": "2022-09-16T03:19:04.8869756\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:35:44.2605882\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T03:19:05.0957064\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:35:44.2605882\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -948,7 +945,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -956,24 +953,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:45:25 GMT", + "Date": "Fri, 23 Sep 2022 15:35:44 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-a0f011a7048711b0a70bb47f606c766c-9ab80b52d3b963ae-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-9193fdd6e4245e3f650de875f776e02a-8fa9d534cca81682-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dc4b2626-e538-4df4-9ab6-3a68dcbfd427", - "x-ms-ratelimit-remaining-subscription-reads": "11862", + "x-ms-correlation-request-id": "8d2d4b7d-4636-485c-98dc-05a804a58996", + "x-ms-ratelimit-remaining-subscription-reads": "11967", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194525Z:dc4b2626-e538-4df4-9ab6-3a68dcbfd427", - "x-request-time": "0.117" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153545Z:8d2d4b7d-4636-485c-98dc-05a804a58996", + "x-request-time": "0.076" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -988,17 +985,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -1012,7 +1009,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1020,21 +1017,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:45:25 GMT", + "Date": "Fri, 23 Sep 2022 15:35:45 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-fd8633f9fb621b3004bbd2d339e04214-43965c4a31a33588-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-b061bfe6a0833ba67445c10832eb4f34-eccd18bb6c9b22e0-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e0e46591-3882-407a-952a-5556332ad0b2", - "x-ms-ratelimit-remaining-subscription-writes": "1142", + "x-ms-correlation-request-id": "13418df9-2f6c-4010-95c8-a387c36d86f2", + "x-ms-ratelimit-remaining-subscription-writes": "1191", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194526Z:e0e46591-3882-407a-952a-5556332ad0b2", - "x-request-time": "0.107" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153546Z:13418df9-2f6c-4010-95c8-a387c36d86f2", + "x-request-time": "0.120" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1042,15 +1039,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:45:25 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:35:48 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -1059,9 +1056,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:45:25 GMT", - "ETag": "\u00220x8DA96C8A69D2BBA\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:16:15 GMT", + "Date": "Fri, 23 Sep 2022 15:35:46 GMT", + "ETag": "\u00220x8DA9D770C570D84\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:19:46 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1070,32 +1067,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:16:15 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:19:45 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "e95adacf-11cf-47c5-85eb-199ded56347d", + "x-ms-meta-name": "8c59cb92-112f-4c04-bda0-1342b610850d", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "a26e0dac-f124-4247-b13c-6e81f9a28197", + "x-ms-meta-version": "c1f97989-616d-4b90-a0d6-bac9ea34bade", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:45:25 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:35:49 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:45:25 GMT", + "Date": "Fri, 23 Sep 2022 15:35:47 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1103,20 +1100,20 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_316846883132?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_697617630715?api-version=2022-06-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "4217", + "Content-Length": "4271", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -1127,7 +1124,7 @@ "owner": "sdkteam" }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", - "displayName": "test_316846883132", + "displayName": "test_697617630715", "experimentName": "azure-ai-ml", "isArchived": false, "jobType": "Pipeline", @@ -1178,9 +1175,10 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.JOB", "trial": { - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/78c7032b-86c2-4bde-9269-20720112cb98" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/34b9dac7-553f-4917-a661-cb25b4cbae4b" } }, "hello_sweep_inline_file_trial": { @@ -1295,9 +1293,10 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.JOB", "trial": { - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d94eedd7-db72-48fd-935c-64e678ac8cf6" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/332c11f1-9fc5-4a0f-baf5-f4299e0424b1" } }, "hello_sweep_inline_remote_trial": { @@ -1325,6 +1324,7 @@ "computeId": null, "inputs": {}, "outputs": {}, + "properties": {}, "_source": "REMOTE.WORKSPACE.COMPONENT", "trial": { "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/microsoftsamplescommandcomponentbasic_nopaths_test/versions/1" @@ -1340,26 +1340,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "8125", + "Content-Length": "8197", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:45:32 GMT", + "Date": "Fri, 23 Sep 2022 15:35:59 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_316846883132?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_697617630715?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-ca5f8f8512b10df8aeae6ff0ae475963-ef97bd9aa8735291-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-068de2b5571024cca866930436827dda-23a6d1ae099d03a8-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "aaae6dcd-b4c9-4d00-8758-c77975fea284", - "x-ms-ratelimit-remaining-subscription-writes": "1096", + "x-ms-correlation-request-id": "fa400b9c-4867-4b3a-acf5-76bc1bb69a0c", + "x-ms-ratelimit-remaining-subscription-writes": "1185", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194532Z:aaae6dcd-b4c9-4d00-8758-c77975fea284", - "x-request-time": "3.678" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153600Z:fa400b9c-4867-4b3a-acf5-76bc1bb69a0c", + "x-request-time": "6.452" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_316846883132", - "name": "test_316846883132", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_697617630715", + "name": "test_697617630715", "type": "Microsoft.MachineLearningServices/workspaces/jobs", "properties": { "description": "The hello world pipeline job with inline components", @@ -1379,14 +1379,14 @@ "azureml.defaultDataStoreName": "workspaceblobstore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_316846883132", - "status": "Preparing", + "displayName": "test_697617630715", + "status": "Running", "experimentName": "azure-ai-ml", "services": { "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null @@ -1394,7 +1394,7 @@ "Studio": { "jobServiceType": "Studio", "port": null, - "endpoint": "https://ml.azure.com/runs/test_316846883132?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "endpoint": "https://ml.azure.com/runs/test_697617630715?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, "properties": null @@ -1445,9 +1445,10 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.JOB", "trial": { - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/78c7032b-86c2-4bde-9269-20720112cb98" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/34b9dac7-553f-4917-a661-cb25b4cbae4b" } }, "hello_sweep_inline_file_trial": { @@ -1562,9 +1563,10 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.JOB", "trial": { - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d94eedd7-db72-48fd-935c-64e678ac8cf6" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/332c11f1-9fc5-4a0f-baf5-f4299e0424b1" } }, "hello_sweep_inline_remote_trial": { @@ -1592,6 +1594,7 @@ "computeId": null, "inputs": {}, "outputs": {}, + "properties": {}, "_source": "REMOTE.WORKSPACE.COMPONENT", "trial": { "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/microsoftsamplescommandcomponentbasic_nopaths_test/versions/1" @@ -1614,14 +1617,14 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-16T19:45:31.642753\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:35:58.2746047\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } } ], "Variables": { - "name": "test_316846883132" + "name": "test_697617630715" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_sweep_node_early_termination_policy[policy_yaml_dict0].json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_sweep_node_early_termination_policy[policy_yaml_dict0].json index e20cc9741b8f..20031cc5b33a 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_sweep_node_early_termination_policy[policy_yaml_dict0].json +++ b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_sweep_node_early_termination_policy[policy_yaml_dict0].json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,39 +15,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:45:35 GMT", + "Date": "Fri, 23 Sep 2022 15:36:08 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-ecc880eaf76a6842e02b3ad452169ec8-d8a13df1a3673c52-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-d0b532b95751400c646d04b98f09677f-0168d0a9785afdd1-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7137b765-8aae-44e5-af81-1b74268a557b", - "x-ms-ratelimit-remaining-subscription-reads": "11861", + "x-ms-correlation-request-id": "8b501fae-7822-4e20-ba58-780d11ab953c", + "x-ms-ratelimit-remaining-subscription-reads": "11966", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194535Z:7137b765-8aae-44e5-af81-1b74268a557b", - "x-request-time": "0.074" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153609Z:8b501fae-7822-4e20-ba58-780d11ab953c", + "x-request-time": "0.036" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.912489\u002B00:00", - "modifiedOn": "2022-09-15T03:11:50.5830108\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "eastus2", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -60,18 +60,18 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 4, + "currentNodeCount": 3, + "targetNodeCount": 3, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 4, - "idleNodeCount": 0, + "runningNodeCount": 2, + "idleNodeCount": 1, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-16T19:44:21.123\u002B00:00", + "allocationStateTransitionTime": "2022-09-23T15:34:23.647\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -89,7 +89,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -97,41 +97,48 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:45:35 GMT", + "Date": "Fri, 23 Sep 2022 15:36:09 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-f06f393187c860699028723d46e6f3db-4e4f2c19941b89a6-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-dc2293bbf2f1e3e92dd9d47a625836cc-ead8776194cfd802-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1fa94d71-3ced-42d6-871a-5c83b9e19475", - "x-ms-ratelimit-remaining-subscription-reads": "11860", + "x-ms-correlation-request-id": "590b7070-79b7-4e1e-9767-33671b291955", + "x-ms-ratelimit-remaining-subscription-reads": "11965", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194535Z:1fa94d71-3ced-42d6-871a-5c83b9e19475", - "x-request-time": "0.075" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153610Z:590b7070-79b7-4e1e-9767-33671b291955", + "x-request-time": "0.023" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/gpu-cluster", "name": "gpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.9201731\u002B00:00", - "modifiedOn": "2022-09-15T03:11:53.646313\u002B00:00", + "createdOn": "2022-09-22T03:11:29.7706914\u002B00:00", + "modifiedOn": "2022-09-22T03:11:30.2032599\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", - "provisioningState": "Succeeded", - "provisioningErrors": null, + "computeLocation": "eastus2", + "provisioningState": "Failed", + "provisioningErrors": [ + { + "error": { + "code": "VmSizeNotSupported", + "message": "STANDARD_ND6S is not supported in region eastus2. Please choose a different VM size." + } + } + ], "isAttachedCompute": false, "properties": { "vmSize": "STANDARD_ND6S", @@ -139,27 +146,17 @@ "scaleSettings": { "maxNodeCount": 4, "minNodeCount": 0, - "nodeIdleTimeBeforeScaleDown": "PT2M" + "nodeIdleTimeBeforeScaleDown": null }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 4, - "nodeStateCounts": { - "preparingNodeCount": 0, - "runningNodeCount": 1, - "idleNodeCount": 3, - "unusableNodeCount": 0, - "leavingNodeCount": 0, - "preemptedNodeCount": 0 - }, - "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-16T19:38:30.16\u002B00:00", + "currentNodeCount": null, + "targetNodeCount": null, + "nodeStateCounts": null, + "allocationState": null, "errors": null, - "remoteLoginPortPublicAccess": "Enabled", - "osType": "Linux", + "remoteLoginPortPublicAccess": "NotSpecified", "virtualMachineImage": null, - "isolatedNetwork": false, - "propertyBag": {} + "isolatedNetwork": false } } } @@ -171,7 +168,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -179,24 +176,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:45:36 GMT", + "Date": "Fri, 23 Sep 2022 15:36:12 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-9cf44ec46f617693717c360867023f19-30550fec8d814026-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-4240baa733bab996cfa1ad22bf081b39-6c48840d7dbfdfe1-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "003f95f4-3a3c-41d9-8081-52ecf6e2e303", - "x-ms-ratelimit-remaining-subscription-reads": "11859", + "x-ms-correlation-request-id": "f7dd33ee-903f-4b6a-9fe8-308d85b831dd", + "x-ms-ratelimit-remaining-subscription-reads": "11964", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194536Z:003f95f4-3a3c-41d9-8081-52ecf6e2e303", - "x-request-time": "0.103" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153613Z:f7dd33ee-903f-4b6a-9fe8-308d85b831dd", + "x-request-time": "0.163" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -211,17 +208,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -235,7 +232,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -243,21 +240,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:45:36 GMT", + "Date": "Fri, 23 Sep 2022 15:36:13 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-8e08605470202c5d86e54ad0060f1666-f679085c45d51fd4-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-268cab2a4f8c137f5f87ee755de72896-d4319716d1bcd2b4-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "02ddd932-67f0-4718-a0a8-05fcc9d9ee9c", - "x-ms-ratelimit-remaining-subscription-writes": "1141", + "x-ms-correlation-request-id": "b7d0b017-21f2-423e-9ee9-a725e8c1b1be", + "x-ms-ratelimit-remaining-subscription-writes": "1190", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194536Z:02ddd932-67f0-4718-a0a8-05fcc9d9ee9c", - "x-request-time": "0.112" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153614Z:b7d0b017-21f2-423e-9ee9-a725e8c1b1be", + "x-request-time": "0.087" }, "ResponseBody": { "secretsType": "AccountKey", @@ -265,15 +262,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:45:35 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:36:17 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -282,9 +279,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:45:36 GMT", - "ETag": "\u00220x8DA975B4CC57610\u0022", - "Last-Modified": "Thu, 15 Sep 2022 20:46:01 GMT", + "Date": "Fri, 23 Sep 2022 15:36:15 GMT", + "ETag": "\u00220x8DA9D76EE2580A0\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:18:55 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -293,32 +290,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 20:46:01 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:18:53 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "f0648f42-ca3c-4aee-9d9e-f2fe26dc4430", + "x-ms-meta-name": "000000000000000000000", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/python/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/python/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:45:35 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:36:17 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:45:36 GMT", + "Date": "Fri, 23 Sep 2022 15:36:15 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -326,12 +323,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -339,7 +336,7 @@ "Connection": "keep-alive", "Content-Length": "295", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -349,7 +346,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python" } }, "StatusCode": 200, @@ -357,27 +354,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:45:36 GMT", + "Date": "Fri, 23 Sep 2022 15:36:15 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-eb1612e645b00f7acf51b6254af7e9c0-c7a29e0082ea2c79-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-5cad0b7d0b95c7f732a8fa0102fa0b6d-79ff692d20eda466-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "23738e94-666f-4e52-b11b-631f1526fc88", - "x-ms-ratelimit-remaining-subscription-writes": "1095", + "x-ms-correlation-request-id": "78ec371a-c708-499b-85ef-52b1a920480c", + "x-ms-ratelimit-remaining-subscription-writes": "1184", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194537Z:23738e94-666f-4e52-b11b-631f1526fc88", - "x-request-time": "0.060" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153616Z:78ec371a-c708-499b-85ef-52b1a920480c", + "x-request-time": "0.103" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -389,14 +386,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python" }, "systemData": { - "createdAt": "2022-09-15T20:46:01.4252338\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:18:57.5027157\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T19:45:37.2551642\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:36:16.2795856\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -408,9 +405,9 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "866", + "Content-Length": "851", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -420,7 +417,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo ${{inputs.component_in_number}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "tags": {}, @@ -442,26 +439,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1793", + "Content-Length": "1776", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:45:37 GMT", + "Date": "Fri, 23 Sep 2022 15:36:17 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-d14845bffdd39cdb06799e20d97c4ace-198a81b0d30a76f0-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-039c4ee9bfecc8715c0cf7da2a8a066f-3ffec9f91889c784-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "10cc32a5-bf5d-427c-8145-05f9863a00d6", - "x-ms-ratelimit-remaining-subscription-writes": "1094", + "x-ms-correlation-request-id": "3c0c3b54-b822-472a-b84c-027b9d6b289d", + "x-ms-ratelimit-remaining-subscription-writes": "1183", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194537Z:10cc32a5-bf5d-427c-8145-05f9863a00d6", - "x-request-time": "0.266" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153617Z:3c0c3b54-b822-472a-b84c-027b9d6b289d", + "x-request-time": "0.260" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/78c7032b-86c2-4bde-9269-20720112cb98", - "name": "78c7032b-86c2-4bde-9269-20720112cb98", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/34b9dac7-553f-4917-a661-cb25b4cbae4b", + "name": "34b9dac7-553f-4917-a661-cb25b4cbae4b", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -471,7 +468,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "78c7032b-86c2-4bde-9269-20720112cb98", + "version": "34b9dac7-553f-4917-a661-cb25b4cbae4b", "is_deterministic": "True", "type": "command", "inputs": { @@ -482,7 +479,7 @@ "description": "Am integer" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -492,11 +489,11 @@ } }, "systemData": { - "createdAt": "2022-09-16T03:19:02.6191232\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:35:38.7955906\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T03:19:02.8150347\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:35:38.9978013\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -508,7 +505,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -516,24 +513,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:45:37 GMT", + "Date": "Fri, 23 Sep 2022 15:36:18 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-590018222a304f6ce4b0687806772bff-d477faa2ccc71dad-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-9e9915fd8354b5f5691108efdeedaa1b-30754b8d08e41288-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7e7f6f24-3dff-4be5-8431-046acb8e40f8", - "x-ms-ratelimit-remaining-subscription-reads": "11858", + "x-ms-correlation-request-id": "1f56b9b3-03ea-4508-9501-57485c7dbec1", + "x-ms-ratelimit-remaining-subscription-reads": "11963", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194537Z:7e7f6f24-3dff-4be5-8431-046acb8e40f8", - "x-request-time": "0.077" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153619Z:1f56b9b3-03ea-4508-9501-57485c7dbec1", + "x-request-time": "0.112" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -548,17 +545,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -572,7 +569,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -580,21 +577,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:45:38 GMT", + "Date": "Fri, 23 Sep 2022 15:36:19 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-dfd1f51838455c7a679ec554d59f4d39-d98391bfc5a14469-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-bf1ff02025bad80b19797ce7333eae0e-4ad6c5bc070e8bfd-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d9ee4d71-4205-4d9b-aa60-4f264a0d77b0", - "x-ms-ratelimit-remaining-subscription-writes": "1140", + "x-ms-correlation-request-id": "0326094e-27bf-4bd6-8865-51c4fb201d0e", + "x-ms-ratelimit-remaining-subscription-writes": "1189", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194539Z:d9ee4d71-4205-4d9b-aa60-4f264a0d77b0", - "x-request-time": "0.138" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153620Z:0326094e-27bf-4bd6-8865-51c4fb201d0e", + "x-request-time": "0.144" }, "ResponseBody": { "secretsType": "AccountKey", @@ -602,15 +599,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:45:37 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:36:22 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -619,9 +616,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:45:38 GMT", - "ETag": "\u00220x8DA96C8560C1979\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:14:00 GMT", + "Date": "Fri, 23 Sep 2022 15:36:20 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -630,32 +627,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:14:00 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ac7e0240-c159-4c9c-828e-d3e8df43e80f", + "x-ms-meta-name": "000000000000000000000", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:45:38 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:36:22 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:45:38 GMT", + "Date": "Fri, 23 Sep 2022 15:36:20 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -663,12 +660,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -676,7 +673,7 @@ "Connection": "keep-alive", "Content-Length": "288", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -686,7 +683,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -694,27 +691,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:45:39 GMT", + "Date": "Fri, 23 Sep 2022 15:36:21 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-4e615fa10c1d7c27278c43fe0d38e680-02c37d8360438c8f-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-7c11bc16971c9d3fefd855bce9a6e397-c7f82f6dc0672c4a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a1f1bd5e-0dc9-4a39-a714-37480f81d106", - "x-ms-ratelimit-remaining-subscription-writes": "1093", + "x-ms-correlation-request-id": "44020297-c343-4897-88ba-0fe4d4f7c30d", + "x-ms-ratelimit-remaining-subscription-writes": "1182", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194539Z:a1f1bd5e-0dc9-4a39-a714-37480f81d106", - "x-request-time": "0.068" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153621Z:44020297-c343-4897-88ba-0fe4d4f7c30d", + "x-request-time": "0.066" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -726,14 +723,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-15T03:14:01.4315202\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-16T19:45:39.3198123\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T15:36:21.8101452\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -745,9 +742,9 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "2048", + "Content-Length": "2033", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -761,7 +758,7 @@ "isArchived": false, "componentSpec": { "command": "echo \u0022Start training ...\u0022 \u0026\u0026 python mnist.py --data_folder ${{inputs.data_folder}} --batch_size ${{inputs.batch_size}} --first_layer_neurons ${{inputs.first_layer_neurons}} --second_layer_neurons ${{inputs.second_layer_neurons}} --third_layer_neurons ${{inputs.third_layer_neurons}} --epochs ${{inputs.epochs}} --f1 ${{inputs.f1}} --f2 ${{inputs.f2}} --weight_decay ${{inputs.weight_decay}} --momentum ${{inputs.momentum}} --learning_rate ${{inputs.learning_rate}} --saved_model ${{outputs.trained_model_dir}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "description": "This is the command component for sweep", @@ -825,26 +822,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3603", + "Content-Length": "3586", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:45:40 GMT", + "Date": "Fri, 23 Sep 2022 15:36:22 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-624a6aae43647d473e468d229fe33f3f-14a128f43b066f1d-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-5d9bff641d8d71dfc810a99c472d7a55-34a5442916e9d642-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0548bd20-5dcb-4371-a703-b3cc592cce29", - "x-ms-ratelimit-remaining-subscription-writes": "1092", + "x-ms-correlation-request-id": "e4e5e335-14fb-4afa-8a82-e83d0d364960", + "x-ms-ratelimit-remaining-subscription-writes": "1181", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194541Z:0548bd20-5dcb-4371-a703-b3cc592cce29", - "x-request-time": "0.344" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153623Z:e4e5e335-14fb-4afa-8a82-e83d0d364960", + "x-request-time": "0.328" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d94eedd7-db72-48fd-935c-64e678ac8cf6", - "name": "d94eedd7-db72-48fd-935c-64e678ac8cf6", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/332c11f1-9fc5-4a0f-baf5-f4299e0424b1", + "name": "332c11f1-9fc5-4a0f-baf5-f4299e0424b1", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -857,7 +854,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "d94eedd7-db72-48fd-935c-64e678ac8cf6", + "version": "332c11f1-9fc5-4a0f-baf5-f4299e0424b1", "display_name": "CommandComponentForSweep", "is_deterministic": "True", "type": "command", @@ -922,7 +919,7 @@ "type": "mlflow_model" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -932,11 +929,11 @@ } }, "systemData": { - "createdAt": "2022-09-16T03:19:04.8869756\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:35:44.2605882\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T03:19:05.0957064\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:35:44.4410829\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -948,7 +945,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -956,24 +953,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:45:41 GMT", + "Date": "Fri, 23 Sep 2022 15:36:22 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-7badab14e1a1a71ec4e7831f634bfb7b-60df82a12f682015-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-24d5a8d5150ab9b5768cbdd751e71c44-4ba0ce3abb7c6ba8-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bbb1392a-aebe-4d59-85a6-9f332a11940d", - "x-ms-ratelimit-remaining-subscription-reads": "11857", + "x-ms-correlation-request-id": "bc00cc52-25b0-406b-9930-1d8dcf476b5d", + "x-ms-ratelimit-remaining-subscription-reads": "11962", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194541Z:bbb1392a-aebe-4d59-85a6-9f332a11940d", - "x-request-time": "0.126" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153623Z:bc00cc52-25b0-406b-9930-1d8dcf476b5d", + "x-request-time": "0.101" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -988,17 +985,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -1012,7 +1009,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1020,21 +1017,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:45:41 GMT", + "Date": "Fri, 23 Sep 2022 15:36:23 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-c1d55113fef608bd4f9db8413bdfc2d3-db83d4f09dd70af0-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-8778a326d72151c2051baaead3c81dd1-6796374e10ee2c3f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f8346960-fba9-44b8-8209-7b70a11e8890", - "x-ms-ratelimit-remaining-subscription-writes": "1139", + "x-ms-correlation-request-id": "e1e5ed22-f3af-4758-96cf-f48d120b7e6c", + "x-ms-ratelimit-remaining-subscription-writes": "1188", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194541Z:f8346960-fba9-44b8-8209-7b70a11e8890", - "x-request-time": "0.107" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153624Z:e1e5ed22-f3af-4758-96cf-f48d120b7e6c", + "x-request-time": "0.115" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1042,15 +1039,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:45:40 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:36:26 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -1059,9 +1056,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:45:41 GMT", - "ETag": "\u00220x8DA96C8A69D2BBA\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:16:15 GMT", + "Date": "Fri, 23 Sep 2022 15:36:24 GMT", + "ETag": "\u00220x8DA9D770C570D84\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:19:46 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1070,32 +1067,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:16:15 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:19:45 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "e95adacf-11cf-47c5-85eb-199ded56347d", + "x-ms-meta-name": "8c59cb92-112f-4c04-bda0-1342b610850d", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "a26e0dac-f124-4247-b13c-6e81f9a28197", + "x-ms-meta-version": "c1f97989-616d-4b90-a0d6-bac9ea34bade", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:45:40 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:36:27 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:45:41 GMT", + "Date": "Fri, 23 Sep 2022 15:36:25 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1103,20 +1100,20 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_611612476084?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_330137865624?api-version=2022-06-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "4217", + "Content-Length": "4271", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -1127,7 +1124,7 @@ "owner": "sdkteam" }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", - "displayName": "test_611612476084", + "displayName": "test_330137865624", "experimentName": "azure-ai-ml", "isArchived": false, "jobType": "Pipeline", @@ -1178,9 +1175,10 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.JOB", "trial": { - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/78c7032b-86c2-4bde-9269-20720112cb98" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/34b9dac7-553f-4917-a661-cb25b4cbae4b" } }, "hello_sweep_inline_file_trial": { @@ -1295,9 +1293,10 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.JOB", "trial": { - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d94eedd7-db72-48fd-935c-64e678ac8cf6" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/332c11f1-9fc5-4a0f-baf5-f4299e0424b1" } }, "hello_sweep_inline_remote_trial": { @@ -1325,6 +1324,7 @@ "computeId": null, "inputs": {}, "outputs": {}, + "properties": {}, "_source": "REMOTE.WORKSPACE.COMPONENT", "trial": { "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/microsoftsamplescommandcomponentbasic_nopaths_test/versions/1" @@ -1340,26 +1340,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "8126", + "Content-Length": "8199", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:45:50 GMT", + "Date": "Fri, 23 Sep 2022 15:36:32 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_611612476084?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_330137865624?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-a47a20bf59a0bf563e21bd5b7e113ede-0314aae0f5191edf-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-608154134456374447ce599f362856fb-6ab0e90d7eb8b4cb-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "117782db-ea2b-4047-8e10-5a4f242f5f9e", - "x-ms-ratelimit-remaining-subscription-writes": "1091", + "x-ms-correlation-request-id": "44ac968a-59cb-4278-b6a1-9e3ccec7835e", + "x-ms-ratelimit-remaining-subscription-writes": "1180", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194550Z:117782db-ea2b-4047-8e10-5a4f242f5f9e", - "x-request-time": "6.081" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153633Z:44ac968a-59cb-4278-b6a1-9e3ccec7835e", + "x-request-time": "4.041" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_611612476084", - "name": "test_611612476084", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_330137865624", + "name": "test_330137865624", "type": "Microsoft.MachineLearningServices/workspaces/jobs", "properties": { "description": "The hello world pipeline job with inline components", @@ -1379,14 +1379,14 @@ "azureml.defaultDataStoreName": "workspaceblobstore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_611612476084", + "displayName": "test_330137865624", "status": "Preparing", "experimentName": "azure-ai-ml", "services": { "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null @@ -1394,7 +1394,7 @@ "Studio": { "jobServiceType": "Studio", "port": null, - "endpoint": "https://ml.azure.com/runs/test_611612476084?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "endpoint": "https://ml.azure.com/runs/test_330137865624?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, "properties": null @@ -1445,9 +1445,10 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.JOB", "trial": { - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/78c7032b-86c2-4bde-9269-20720112cb98" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/34b9dac7-553f-4917-a661-cb25b4cbae4b" } }, "hello_sweep_inline_file_trial": { @@ -1562,9 +1563,10 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.JOB", "trial": { - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d94eedd7-db72-48fd-935c-64e678ac8cf6" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/332c11f1-9fc5-4a0f-baf5-f4299e0424b1" } }, "hello_sweep_inline_remote_trial": { @@ -1592,6 +1594,7 @@ "computeId": null, "inputs": {}, "outputs": {}, + "properties": {}, "_source": "REMOTE.WORKSPACE.COMPONENT", "trial": { "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/microsoftsamplescommandcomponentbasic_nopaths_test/versions/1" @@ -1614,14 +1617,14 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-16T19:45:47.9112864\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:36:33.0671345\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } } ], "Variables": { - "randstr": "test_611612476084" + "randstr": "test_330137865624" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_sweep_node_early_termination_policy[policy_yaml_dict1].json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_sweep_node_early_termination_policy[policy_yaml_dict1].json index 1632f17124d4..7dd8691108f0 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_sweep_node_early_termination_policy[policy_yaml_dict1].json +++ b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_sweep_node_early_termination_policy[policy_yaml_dict1].json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,39 +15,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:45:53 GMT", + "Date": "Fri, 23 Sep 2022 15:36:39 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-579b25bb133d6ece99f3be9cba94dfc1-1812d66d5686a122-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-431b9e707fc41d9753d4281a898a56e1-d32b22b9b3af56e7-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f4b268fa-d731-4984-9b8c-6d72424e7a8a", - "x-ms-ratelimit-remaining-subscription-reads": "11856", + "x-ms-correlation-request-id": "2b2630c7-7eb5-4ca5-8a3d-702a019139e2", + "x-ms-ratelimit-remaining-subscription-reads": "11961", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194553Z:f4b268fa-d731-4984-9b8c-6d72424e7a8a", - "x-request-time": "0.050" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153640Z:2b2630c7-7eb5-4ca5-8a3d-702a019139e2", + "x-request-time": "0.068" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.912489\u002B00:00", - "modifiedOn": "2022-09-15T03:11:50.5830108\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "eastus2", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -60,18 +60,18 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 4, + "currentNodeCount": 3, + "targetNodeCount": 3, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 4, - "idleNodeCount": 0, + "runningNodeCount": 2, + "idleNodeCount": 1, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-16T19:44:21.123\u002B00:00", + "allocationStateTransitionTime": "2022-09-23T15:34:23.647\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -89,7 +89,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -97,41 +97,48 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:45:53 GMT", + "Date": "Fri, 23 Sep 2022 15:36:40 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-79cbc60f9f1707e2af3c354a078049d2-4d2f8cfeb9f7779c-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-d6a34228a7bafcb2aaa7124f7ddc06ec-97863e8ee749be15-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1b54b4c0-52e3-4ab9-91bf-85ac2527ff2d", - "x-ms-ratelimit-remaining-subscription-reads": "11855", + "x-ms-correlation-request-id": "875db8f5-fdcf-45bd-a150-6d2267c5229b", + "x-ms-ratelimit-remaining-subscription-reads": "11960", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194553Z:1b54b4c0-52e3-4ab9-91bf-85ac2527ff2d", - "x-request-time": "0.054" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153641Z:875db8f5-fdcf-45bd-a150-6d2267c5229b", + "x-request-time": "0.033" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/gpu-cluster", "name": "gpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.9201731\u002B00:00", - "modifiedOn": "2022-09-15T03:11:53.646313\u002B00:00", + "createdOn": "2022-09-22T03:11:29.7706914\u002B00:00", + "modifiedOn": "2022-09-22T03:11:30.2032599\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", - "provisioningState": "Succeeded", - "provisioningErrors": null, + "computeLocation": "eastus2", + "provisioningState": "Failed", + "provisioningErrors": [ + { + "error": { + "code": "VmSizeNotSupported", + "message": "STANDARD_ND6S is not supported in region eastus2. Please choose a different VM size." + } + } + ], "isAttachedCompute": false, "properties": { "vmSize": "STANDARD_ND6S", @@ -139,27 +146,17 @@ "scaleSettings": { "maxNodeCount": 4, "minNodeCount": 0, - "nodeIdleTimeBeforeScaleDown": "PT2M" + "nodeIdleTimeBeforeScaleDown": null }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 4, - "nodeStateCounts": { - "preparingNodeCount": 0, - "runningNodeCount": 1, - "idleNodeCount": 3, - "unusableNodeCount": 0, - "leavingNodeCount": 0, - "preemptedNodeCount": 0 - }, - "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-16T19:38:30.16\u002B00:00", + "currentNodeCount": null, + "targetNodeCount": null, + "nodeStateCounts": null, + "allocationState": null, "errors": null, - "remoteLoginPortPublicAccess": "Enabled", - "osType": "Linux", + "remoteLoginPortPublicAccess": "NotSpecified", "virtualMachineImage": null, - "isolatedNetwork": false, - "propertyBag": {} + "isolatedNetwork": false } } } @@ -171,7 +168,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -179,24 +176,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:45:54 GMT", + "Date": "Fri, 23 Sep 2022 15:36:45 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-83d45450b9e3f30b993ef51f176c770b-6b79d44a234a3994-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-df9d835f453bb1d4db72efc3087d8af2-9f805c39c5f201e9-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cc44cbca-cee7-4bc9-8efc-8184c9646e70", - "x-ms-ratelimit-remaining-subscription-reads": "11854", + "x-ms-correlation-request-id": "21ab641d-4920-4105-b008-76c75462ab93", + "x-ms-ratelimit-remaining-subscription-reads": "11959", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194554Z:cc44cbca-cee7-4bc9-8efc-8184c9646e70", - "x-request-time": "0.103" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153645Z:21ab641d-4920-4105-b008-76c75462ab93", + "x-request-time": "0.118" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -211,17 +208,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -235,7 +232,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -243,21 +240,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:45:54 GMT", + "Date": "Fri, 23 Sep 2022 15:36:46 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-898927605c254cf6bf7c762b7d69f402-dbee048b5f4465f4-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-2299e3f46a4aa7aff38c6a7b0ffe802d-3c50698d4152a6e8-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bdcbf767-36c7-48ce-b8df-00e93f5a81e1", - "x-ms-ratelimit-remaining-subscription-writes": "1138", + "x-ms-correlation-request-id": "a940c0bd-3ea7-44c6-81b6-4a08629ad00b", + "x-ms-ratelimit-remaining-subscription-writes": "1187", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194555Z:bdcbf767-36c7-48ce-b8df-00e93f5a81e1", - "x-request-time": "0.099" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153646Z:a940c0bd-3ea7-44c6-81b6-4a08629ad00b", + "x-request-time": "0.093" }, "ResponseBody": { "secretsType": "AccountKey", @@ -265,15 +262,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:45:54 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:36:48 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -282,9 +279,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:45:54 GMT", - "ETag": "\u00220x8DA975B4CC57610\u0022", - "Last-Modified": "Thu, 15 Sep 2022 20:46:01 GMT", + "Date": "Fri, 23 Sep 2022 15:36:46 GMT", + "ETag": "\u00220x8DA9D76EE2580A0\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:18:55 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -293,32 +290,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 20:46:01 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:18:53 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "f0648f42-ca3c-4aee-9d9e-f2fe26dc4430", + "x-ms-meta-name": "000000000000000000000", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/python/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/python/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:45:54 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:36:49 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:45:54 GMT", + "Date": "Fri, 23 Sep 2022 15:36:47 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -326,12 +323,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -339,7 +336,7 @@ "Connection": "keep-alive", "Content-Length": "295", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -349,7 +346,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python" } }, "StatusCode": 200, @@ -357,27 +354,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:45:55 GMT", + "Date": "Fri, 23 Sep 2022 15:36:48 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-91c1c4b2b6a01af0fe15741da7a9dccd-953a3bd4b8223e63-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-1389c8020c35332935e1f9d3f2034e5c-93aac7bf2ab6a102-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ac562499-7f1e-4381-986a-af18d104d988", - "x-ms-ratelimit-remaining-subscription-writes": "1090", + "x-ms-correlation-request-id": "7795addb-617d-472a-9f36-651b7870f491", + "x-ms-ratelimit-remaining-subscription-writes": "1179", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194555Z:ac562499-7f1e-4381-986a-af18d104d988", - "x-request-time": "0.065" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153648Z:7795addb-617d-472a-9f36-651b7870f491", + "x-request-time": "0.084" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -389,14 +386,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python" }, "systemData": { - "createdAt": "2022-09-15T20:46:01.4252338\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:18:57.5027157\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T19:45:55.5295034\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:36:48.6972789\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -408,9 +405,9 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "866", + "Content-Length": "851", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -420,7 +417,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo ${{inputs.component_in_number}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "tags": {}, @@ -442,26 +439,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1793", + "Content-Length": "1776", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:45:55 GMT", + "Date": "Fri, 23 Sep 2022 15:36:50 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-38cf2f8e560ec726aaf9ee1f3ba76c82-daa7f4bd9eefc765-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-1d7bb2dac0cd1c306a1aa8ce9770f97e-73103dcd08779048-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d07cebf6-71ff-4089-a2a4-2e3d316e82b3", - "x-ms-ratelimit-remaining-subscription-writes": "1089", + "x-ms-correlation-request-id": "a14850ba-7700-4e7f-a447-12822c1365c6", + "x-ms-ratelimit-remaining-subscription-writes": "1178", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194556Z:d07cebf6-71ff-4089-a2a4-2e3d316e82b3", - "x-request-time": "0.237" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153650Z:a14850ba-7700-4e7f-a447-12822c1365c6", + "x-request-time": "0.275" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/78c7032b-86c2-4bde-9269-20720112cb98", - "name": "78c7032b-86c2-4bde-9269-20720112cb98", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/34b9dac7-553f-4917-a661-cb25b4cbae4b", + "name": "34b9dac7-553f-4917-a661-cb25b4cbae4b", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -471,7 +468,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "78c7032b-86c2-4bde-9269-20720112cb98", + "version": "34b9dac7-553f-4917-a661-cb25b4cbae4b", "is_deterministic": "True", "type": "command", "inputs": { @@ -482,7 +479,7 @@ "description": "Am integer" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -492,11 +489,11 @@ } }, "systemData": { - "createdAt": "2022-09-16T03:19:02.6191232\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:35:38.7955906\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T03:19:02.8150347\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:35:38.9978013\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -508,7 +505,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -516,24 +513,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:45:55 GMT", + "Date": "Fri, 23 Sep 2022 15:36:51 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-2ec27c6428d8e1461985b14f92a593ef-c27fcd50b2906123-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-cdf045d640cc185d97a7e6afb0ea1840-651bdff729f6df08-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "adf2ee1a-12f5-454f-9f40-dae024a849db", - "x-ms-ratelimit-remaining-subscription-reads": "11853", + "x-ms-correlation-request-id": "0fe62ef0-beb2-48fd-b544-6bef4fc8264f", + "x-ms-ratelimit-remaining-subscription-reads": "11958", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194556Z:adf2ee1a-12f5-454f-9f40-dae024a849db", - "x-request-time": "0.092" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153651Z:0fe62ef0-beb2-48fd-b544-6bef4fc8264f", + "x-request-time": "0.115" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -548,17 +545,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -572,7 +569,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -580,21 +577,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:45:59 GMT", + "Date": "Fri, 23 Sep 2022 15:36:52 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-261275b71188ebb3833d100d33b5b021-a71b240278b3a3fc-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-76240910a1682fb19a9e30c23a8f71bc-cbd06352d9c2bbbf-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "170ce403-7807-4cf5-8b7f-9669b6f1408a", - "x-ms-ratelimit-remaining-subscription-writes": "1137", + "x-ms-correlation-request-id": "ce98dc94-cc72-4ef1-9261-8b9b23dd8427", + "x-ms-ratelimit-remaining-subscription-writes": "1186", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194559Z:170ce403-7807-4cf5-8b7f-9669b6f1408a", - "x-request-time": "0.080" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153652Z:ce98dc94-cc72-4ef1-9261-8b9b23dd8427", + "x-request-time": "0.106" }, "ResponseBody": { "secretsType": "AccountKey", @@ -602,15 +599,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:45:58 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:36:54 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -619,9 +616,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:45:59 GMT", - "ETag": "\u00220x8DA96C8560C1979\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:14:00 GMT", + "Date": "Fri, 23 Sep 2022 15:36:52 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -630,32 +627,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:14:00 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ac7e0240-c159-4c9c-828e-d3e8df43e80f", + "x-ms-meta-name": "000000000000000000000", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:45:58 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:36:55 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:45:59 GMT", + "Date": "Fri, 23 Sep 2022 15:36:53 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -663,12 +660,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -676,7 +673,7 @@ "Connection": "keep-alive", "Content-Length": "288", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -686,7 +683,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -694,27 +691,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:45:59 GMT", + "Date": "Fri, 23 Sep 2022 15:36:54 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-0bb9ceacff251ac0d6880825e630784c-b1c14c378851eae3-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-f2e6f34e2dc349bc0cc1a6fa379c82d2-295d1db4bb66eb12-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a7028d57-c745-4c12-8700-0114bf76ed47", - "x-ms-ratelimit-remaining-subscription-writes": "1088", + "x-ms-correlation-request-id": "d31ccf85-440b-4375-9cfd-77c9be304dfa", + "x-ms-ratelimit-remaining-subscription-writes": "1177", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194559Z:a7028d57-c745-4c12-8700-0114bf76ed47", - "x-request-time": "0.057" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153654Z:d31ccf85-440b-4375-9cfd-77c9be304dfa", + "x-request-time": "0.066" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -726,14 +723,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-15T03:14:01.4315202\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-16T19:45:59.8495595\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T15:36:54.0697214\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -745,9 +742,9 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "2048", + "Content-Length": "2033", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -761,7 +758,7 @@ "isArchived": false, "componentSpec": { "command": "echo \u0022Start training ...\u0022 \u0026\u0026 python mnist.py --data_folder ${{inputs.data_folder}} --batch_size ${{inputs.batch_size}} --first_layer_neurons ${{inputs.first_layer_neurons}} --second_layer_neurons ${{inputs.second_layer_neurons}} --third_layer_neurons ${{inputs.third_layer_neurons}} --epochs ${{inputs.epochs}} --f1 ${{inputs.f1}} --f2 ${{inputs.f2}} --weight_decay ${{inputs.weight_decay}} --momentum ${{inputs.momentum}} --learning_rate ${{inputs.learning_rate}} --saved_model ${{outputs.trained_model_dir}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "description": "This is the command component for sweep", @@ -825,26 +822,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3603", + "Content-Length": "3586", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:45:59 GMT", + "Date": "Fri, 23 Sep 2022 15:36:55 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-5743812c9317ccdb444feaa3edae4d4b-0191a02064709df0-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-cdafb08880a010fa3834d9c5f0b3c906-adafe0c6633df97a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cfe84d4a-5efa-4def-8751-7bc94fba7aa7", - "x-ms-ratelimit-remaining-subscription-writes": "1087", + "x-ms-correlation-request-id": "2b2679b4-30bc-465d-a7bc-e1ba9e2b4c70", + "x-ms-ratelimit-remaining-subscription-writes": "1176", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194600Z:cfe84d4a-5efa-4def-8751-7bc94fba7aa7", - "x-request-time": "0.383" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153655Z:2b2679b4-30bc-465d-a7bc-e1ba9e2b4c70", + "x-request-time": "0.393" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d94eedd7-db72-48fd-935c-64e678ac8cf6", - "name": "d94eedd7-db72-48fd-935c-64e678ac8cf6", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/332c11f1-9fc5-4a0f-baf5-f4299e0424b1", + "name": "332c11f1-9fc5-4a0f-baf5-f4299e0424b1", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -857,7 +854,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "d94eedd7-db72-48fd-935c-64e678ac8cf6", + "version": "332c11f1-9fc5-4a0f-baf5-f4299e0424b1", "display_name": "CommandComponentForSweep", "is_deterministic": "True", "type": "command", @@ -922,7 +919,7 @@ "type": "mlflow_model" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -932,11 +929,11 @@ } }, "systemData": { - "createdAt": "2022-09-16T03:19:04.8869756\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:35:44.2605882\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T03:19:05.0957064\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:35:44.4410829\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -948,7 +945,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -956,24 +953,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:46:00 GMT", + "Date": "Fri, 23 Sep 2022 15:36:55 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-a064e7271dab21fca47e3a9b9d456a37-38f522a33234d28c-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-85ac034c61252af48d07bc84fd0f660c-9d340882d78895dc-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a51e6b9e-c568-41b9-ac2b-b335ce58a674", - "x-ms-ratelimit-remaining-subscription-reads": "11852", + "x-ms-correlation-request-id": "38ed99a4-9f1b-4916-bd24-518a4f061c1f", + "x-ms-ratelimit-remaining-subscription-reads": "11957", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194600Z:a51e6b9e-c568-41b9-ac2b-b335ce58a674", - "x-request-time": "0.075" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153655Z:38ed99a4-9f1b-4916-bd24-518a4f061c1f", + "x-request-time": "0.077" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -988,17 +985,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -1012,7 +1009,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1020,21 +1017,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:46:00 GMT", + "Date": "Fri, 23 Sep 2022 15:36:56 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-484783f51b060b85d0b9732af1750d59-0f300c82fa9241fc-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-8a3de7191b5e55a43fb103c368350900-30143e1ee49d5b5a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7ba9bff2-9c0e-45dd-9817-21e6b96f836d", - "x-ms-ratelimit-remaining-subscription-writes": "1136", + "x-ms-correlation-request-id": "7a326982-21f9-4d0d-bcac-4497fd6c7192", + "x-ms-ratelimit-remaining-subscription-writes": "1185", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194600Z:7ba9bff2-9c0e-45dd-9817-21e6b96f836d", - "x-request-time": "0.121" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153656Z:7a326982-21f9-4d0d-bcac-4497fd6c7192", + "x-request-time": "0.085" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1042,15 +1039,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:45:59 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:36:58 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -1059,9 +1056,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:46:00 GMT", - "ETag": "\u00220x8DA96C8A69D2BBA\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:16:15 GMT", + "Date": "Fri, 23 Sep 2022 15:36:56 GMT", + "ETag": "\u00220x8DA9D770C570D84\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:19:46 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1070,32 +1067,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:16:15 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:19:45 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "e95adacf-11cf-47c5-85eb-199ded56347d", + "x-ms-meta-name": "8c59cb92-112f-4c04-bda0-1342b610850d", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "a26e0dac-f124-4247-b13c-6e81f9a28197", + "x-ms-meta-version": "c1f97989-616d-4b90-a0d6-bac9ea34bade", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:45:59 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:36:59 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:46:00 GMT", + "Date": "Fri, 23 Sep 2022 15:36:57 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1103,20 +1100,20 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_176794355053?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_492228591124?api-version=2022-06-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "4226", + "Content-Length": "4280", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -1127,7 +1124,7 @@ "owner": "sdkteam" }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", - "displayName": "test_176794355053", + "displayName": "test_492228591124", "experimentName": "azure-ai-ml", "isArchived": false, "jobType": "Pipeline", @@ -1179,9 +1176,10 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.JOB", "trial": { - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/78c7032b-86c2-4bde-9269-20720112cb98" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/34b9dac7-553f-4917-a661-cb25b4cbae4b" } }, "hello_sweep_inline_file_trial": { @@ -1296,9 +1294,10 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.JOB", "trial": { - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d94eedd7-db72-48fd-935c-64e678ac8cf6" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/332c11f1-9fc5-4a0f-baf5-f4299e0424b1" } }, "hello_sweep_inline_remote_trial": { @@ -1326,6 +1325,7 @@ "computeId": null, "inputs": {}, "outputs": {}, + "properties": {}, "_source": "REMOTE.WORKSPACE.COMPONENT", "trial": { "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/microsoftsamplescommandcomponentbasic_nopaths_test/versions/1" @@ -1341,26 +1341,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "8144", + "Content-Length": "8218", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:46:06 GMT", + "Date": "Fri, 23 Sep 2022 15:37:05 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_176794355053?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_492228591124?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-39a7b6ab3625ae93a47d1b04ec38dd8d-9e77eb874d6e7adf-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-9ce9c6838ee2e9930190ee1fd0055195-1401f0e4628dfb11-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e6a7473c-b512-483c-b9b1-be3e8bb472d4", - "x-ms-ratelimit-remaining-subscription-writes": "1086", + "x-ms-correlation-request-id": "fce1caa5-f665-467f-b023-a00fafbe4bdd", + "x-ms-ratelimit-remaining-subscription-writes": "1175", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194607Z:e6a7473c-b512-483c-b9b1-be3e8bb472d4", - "x-request-time": "3.255" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153705Z:fce1caa5-f665-467f-b023-a00fafbe4bdd", + "x-request-time": "4.094" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_176794355053", - "name": "test_176794355053", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_492228591124", + "name": "test_492228591124", "type": "Microsoft.MachineLearningServices/workspaces/jobs", "properties": { "description": "The hello world pipeline job with inline components", @@ -1380,14 +1380,14 @@ "azureml.defaultDataStoreName": "workspaceblobstore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_176794355053", + "displayName": "test_492228591124", "status": "Preparing", "experimentName": "azure-ai-ml", "services": { "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null @@ -1395,7 +1395,7 @@ "Studio": { "jobServiceType": "Studio", "port": null, - "endpoint": "https://ml.azure.com/runs/test_176794355053?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "endpoint": "https://ml.azure.com/runs/test_492228591124?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, "properties": null @@ -1447,9 +1447,10 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.JOB", "trial": { - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/78c7032b-86c2-4bde-9269-20720112cb98" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/34b9dac7-553f-4917-a661-cb25b4cbae4b" } }, "hello_sweep_inline_file_trial": { @@ -1564,9 +1565,10 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.JOB", "trial": { - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d94eedd7-db72-48fd-935c-64e678ac8cf6" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/332c11f1-9fc5-4a0f-baf5-f4299e0424b1" } }, "hello_sweep_inline_remote_trial": { @@ -1594,6 +1596,7 @@ "computeId": null, "inputs": {}, "outputs": {}, + "properties": {}, "_source": "REMOTE.WORKSPACE.COMPONENT", "trial": { "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/microsoftsamplescommandcomponentbasic_nopaths_test/versions/1" @@ -1616,14 +1619,14 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-16T19:46:07.012355\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:37:04.9522505\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } } ], "Variables": { - "randstr": "test_176794355053" + "randstr": "test_492228591124" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_sweep_node_early_termination_policy[policy_yaml_dict2].json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_sweep_node_early_termination_policy[policy_yaml_dict2].json index 880234bf700c..b0f2164eba9c 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_sweep_node_early_termination_policy[policy_yaml_dict2].json +++ b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_sweep_node_early_termination_policy[policy_yaml_dict2].json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,39 +15,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:46:09 GMT", + "Date": "Fri, 23 Sep 2022 15:37:12 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-cc19ae8b654f5f9fe51a165db5fc8fc8-4f30016bb3629ce1-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-0c9d3e6809bf9a5e23d46d500ba897c6-bea641f803c117c3-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b3702c15-8795-4efc-8141-cb76b95fc9be", - "x-ms-ratelimit-remaining-subscription-reads": "11851", + "x-ms-correlation-request-id": "3eaddb4e-f382-4eb1-a93a-3d7e442b00e0", + "x-ms-ratelimit-remaining-subscription-reads": "11956", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194610Z:b3702c15-8795-4efc-8141-cb76b95fc9be", - "x-request-time": "0.044" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153712Z:3eaddb4e-f382-4eb1-a93a-3d7e442b00e0", + "x-request-time": "0.068" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.912489\u002B00:00", - "modifiedOn": "2022-09-15T03:11:50.5830108\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "eastus2", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -60,18 +60,18 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 4, + "currentNodeCount": 3, + "targetNodeCount": 3, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 4, - "idleNodeCount": 0, + "runningNodeCount": 2, + "idleNodeCount": 1, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-16T19:44:21.123\u002B00:00", + "allocationStateTransitionTime": "2022-09-23T15:34:23.647\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -89,7 +89,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -97,41 +97,48 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:46:09 GMT", + "Date": "Fri, 23 Sep 2022 15:37:13 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-4b4def5b3a3ab612f5067a059fe2d194-575d7c1c87fcead4-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-ad0f412a9b7d465e1b256a9f9cc9e34c-efbaec2d75067913-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "83baba34-3f93-48d6-a4d1-a1c1fa045f00", - "x-ms-ratelimit-remaining-subscription-reads": "11850", + "x-ms-correlation-request-id": "b7f734ac-a125-4654-913f-4dc1c4aa3605", + "x-ms-ratelimit-remaining-subscription-reads": "11955", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194610Z:83baba34-3f93-48d6-a4d1-a1c1fa045f00", - "x-request-time": "0.042" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153713Z:b7f734ac-a125-4654-913f-4dc1c4aa3605", + "x-request-time": "0.024" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/gpu-cluster", "name": "gpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.9201731\u002B00:00", - "modifiedOn": "2022-09-15T03:11:53.646313\u002B00:00", + "createdOn": "2022-09-22T03:11:29.7706914\u002B00:00", + "modifiedOn": "2022-09-22T03:11:30.2032599\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", - "provisioningState": "Succeeded", - "provisioningErrors": null, + "computeLocation": "eastus2", + "provisioningState": "Failed", + "provisioningErrors": [ + { + "error": { + "code": "VmSizeNotSupported", + "message": "STANDARD_ND6S is not supported in region eastus2. Please choose a different VM size." + } + } + ], "isAttachedCompute": false, "properties": { "vmSize": "STANDARD_ND6S", @@ -139,27 +146,17 @@ "scaleSettings": { "maxNodeCount": 4, "minNodeCount": 0, - "nodeIdleTimeBeforeScaleDown": "PT2M" + "nodeIdleTimeBeforeScaleDown": null }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 4, - "nodeStateCounts": { - "preparingNodeCount": 0, - "runningNodeCount": 1, - "idleNodeCount": 3, - "unusableNodeCount": 0, - "leavingNodeCount": 0, - "preemptedNodeCount": 0 - }, - "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-16T19:38:30.16\u002B00:00", + "currentNodeCount": null, + "targetNodeCount": null, + "nodeStateCounts": null, + "allocationState": null, "errors": null, - "remoteLoginPortPublicAccess": "Enabled", - "osType": "Linux", + "remoteLoginPortPublicAccess": "NotSpecified", "virtualMachineImage": null, - "isolatedNetwork": false, - "propertyBag": {} + "isolatedNetwork": false } } } @@ -171,7 +168,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -179,24 +176,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:46:11 GMT", + "Date": "Fri, 23 Sep 2022 15:37:16 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-3c67719f7a9ebdcafe002fb5b881e422-ee958ac3c7075dd6-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-8b467d8dbba82d9fde9e105fbf74b3d4-960364da27af60e4-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "75e68d21-c805-492e-a60a-d647448a9d08", - "x-ms-ratelimit-remaining-subscription-reads": "11849", + "x-ms-correlation-request-id": "18b73031-d2fe-4c42-afdd-c2478981be1c", + "x-ms-ratelimit-remaining-subscription-reads": "11954", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194611Z:75e68d21-c805-492e-a60a-d647448a9d08", - "x-request-time": "0.131" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153717Z:18b73031-d2fe-4c42-afdd-c2478981be1c", + "x-request-time": "0.076" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -211,17 +208,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -235,7 +232,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -243,21 +240,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:46:11 GMT", + "Date": "Fri, 23 Sep 2022 15:37:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-c07a46a08310b2b6b8a5edcfd1103fb0-aa47883b63c6846e-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-35395f9dcc215816084991a1aa247394-471e3c67106202fb-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e3e05596-e5c6-4465-9d5c-3661d92751c9", - "x-ms-ratelimit-remaining-subscription-writes": "1135", + "x-ms-correlation-request-id": "6d2fab39-9eb5-4f86-9ded-fc204a6d8671", + "x-ms-ratelimit-remaining-subscription-writes": "1184", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194612Z:e3e05596-e5c6-4465-9d5c-3661d92751c9", - "x-request-time": "0.116" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153718Z:6d2fab39-9eb5-4f86-9ded-fc204a6d8671", + "x-request-time": "0.090" }, "ResponseBody": { "secretsType": "AccountKey", @@ -265,15 +262,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:46:11 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:37:20 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -282,9 +279,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:46:11 GMT", - "ETag": "\u00220x8DA975B4CC57610\u0022", - "Last-Modified": "Thu, 15 Sep 2022 20:46:01 GMT", + "Date": "Fri, 23 Sep 2022 15:37:18 GMT", + "ETag": "\u00220x8DA9D76EE2580A0\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:18:55 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -293,32 +290,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 20:46:01 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:18:53 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "f0648f42-ca3c-4aee-9d9e-f2fe26dc4430", + "x-ms-meta-name": "000000000000000000000", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/python/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/python/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:46:11 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:37:20 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:46:11 GMT", + "Date": "Fri, 23 Sep 2022 15:37:18 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -326,12 +323,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -339,7 +336,7 @@ "Connection": "keep-alive", "Content-Length": "295", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -349,7 +346,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python" } }, "StatusCode": 200, @@ -357,27 +354,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:46:11 GMT", + "Date": "Fri, 23 Sep 2022 15:37:19 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-2bc00358af4031197e45c0d8d758ace2-cdf3a92cf5cc9cca-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-d4b07925c6b1b7868b3f4e306500b522-9025741a2aab7707-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d53cb090-0f6e-406f-a268-d2fd18894cb1", - "x-ms-ratelimit-remaining-subscription-writes": "1085", + "x-ms-correlation-request-id": "ece57ae7-68bc-43f4-b038-0454edb2fdbf", + "x-ms-ratelimit-remaining-subscription-writes": "1174", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194612Z:d53cb090-0f6e-406f-a268-d2fd18894cb1", - "x-request-time": "0.057" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153720Z:ece57ae7-68bc-43f4-b038-0454edb2fdbf", + "x-request-time": "0.072" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -389,14 +386,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python" }, "systemData": { - "createdAt": "2022-09-15T20:46:01.4252338\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:18:57.5027157\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T19:46:12.3869091\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:37:19.9725769\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -408,9 +405,9 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "866", + "Content-Length": "851", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -420,7 +417,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo ${{inputs.component_in_number}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "tags": {}, @@ -442,26 +439,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1793", + "Content-Length": "1776", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:46:13 GMT", + "Date": "Fri, 23 Sep 2022 15:37:20 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-67057ee8b7cea8035790dd0e6b82f919-05b7cd8928f5d698-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-5405220790b594f639213d11e7ab43e1-1ad735f2b2bdd094-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "07c87f49-8b26-4fd8-b037-2b463dc5badb", - "x-ms-ratelimit-remaining-subscription-writes": "1084", + "x-ms-correlation-request-id": "3a865853-fac2-40da-8147-0d1e3876e828", + "x-ms-ratelimit-remaining-subscription-writes": "1173", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194614Z:07c87f49-8b26-4fd8-b037-2b463dc5badb", - "x-request-time": "0.302" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153720Z:3a865853-fac2-40da-8147-0d1e3876e828", + "x-request-time": "0.253" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/78c7032b-86c2-4bde-9269-20720112cb98", - "name": "78c7032b-86c2-4bde-9269-20720112cb98", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/34b9dac7-553f-4917-a661-cb25b4cbae4b", + "name": "34b9dac7-553f-4917-a661-cb25b4cbae4b", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -471,7 +468,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "78c7032b-86c2-4bde-9269-20720112cb98", + "version": "34b9dac7-553f-4917-a661-cb25b4cbae4b", "is_deterministic": "True", "type": "command", "inputs": { @@ -482,7 +479,7 @@ "description": "Am integer" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -492,11 +489,11 @@ } }, "systemData": { - "createdAt": "2022-09-16T03:19:02.6191232\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:35:38.7955906\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T03:19:02.8150347\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:35:38.9978013\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -508,7 +505,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -516,24 +513,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:46:13 GMT", + "Date": "Fri, 23 Sep 2022 15:37:21 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-238a65a9213aafbf5024414321b47682-4c478fbe63f83b0b-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-0d915b24664ea63c2e7072b6e2a7c3e8-3e557b76731a869d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4b78defd-4d54-4974-91e2-23c0500efce4", - "x-ms-ratelimit-remaining-subscription-reads": "11848", + "x-ms-correlation-request-id": "08bb7bfe-acb7-4b8d-af78-96fd6c080a51", + "x-ms-ratelimit-remaining-subscription-reads": "11953", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194614Z:4b78defd-4d54-4974-91e2-23c0500efce4", - "x-request-time": "0.086" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153721Z:08bb7bfe-acb7-4b8d-af78-96fd6c080a51", + "x-request-time": "0.083" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -548,17 +545,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -572,7 +569,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -580,21 +577,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:46:13 GMT", + "Date": "Fri, 23 Sep 2022 15:37:22 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-864c90f2ca378f21d0e666ab81d96f8e-0be17f099fe113af-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-fab11c77d92fa7666b798c3dc66c5782-40b45c6e7a5a914e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8cc1f401-fa1c-4c6f-8890-8185b6a8cba6", - "x-ms-ratelimit-remaining-subscription-writes": "1134", + "x-ms-correlation-request-id": "2b51b4b9-6730-4c50-8492-ce7371c3f717", + "x-ms-ratelimit-remaining-subscription-writes": "1183", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194614Z:8cc1f401-fa1c-4c6f-8890-8185b6a8cba6", - "x-request-time": "0.084" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153722Z:2b51b4b9-6730-4c50-8492-ce7371c3f717", + "x-request-time": "0.099" }, "ResponseBody": { "secretsType": "AccountKey", @@ -602,15 +599,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:46:13 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:37:24 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -619,9 +616,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:46:14 GMT", - "ETag": "\u00220x8DA96C8560C1979\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:14:00 GMT", + "Date": "Fri, 23 Sep 2022 15:37:22 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -630,32 +627,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:14:00 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ac7e0240-c159-4c9c-828e-d3e8df43e80f", + "x-ms-meta-name": "000000000000000000000", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:46:13 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:37:25 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:46:14 GMT", + "Date": "Fri, 23 Sep 2022 15:37:22 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -663,12 +660,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -676,7 +673,7 @@ "Connection": "keep-alive", "Content-Length": "288", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -686,7 +683,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -694,27 +691,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:46:14 GMT", + "Date": "Fri, 23 Sep 2022 15:37:23 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-d9b569bf68b06a4c3589db32467f4fc9-c1c76ba2a75ea672-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-5b6a30e25e04e53b4b608265e73d0890-17db3772ece444a5-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4a06e15e-d72c-4e0a-8ba3-484dceb29781", - "x-ms-ratelimit-remaining-subscription-writes": "1083", + "x-ms-correlation-request-id": "acc4be30-de88-4216-abae-0d5faa18fbe4", + "x-ms-ratelimit-remaining-subscription-writes": "1172", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194614Z:4a06e15e-d72c-4e0a-8ba3-484dceb29781", - "x-request-time": "0.054" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153724Z:acc4be30-de88-4216-abae-0d5faa18fbe4", + "x-request-time": "0.090" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -726,14 +723,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-15T03:14:01.4315202\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-16T19:46:14.8746671\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T15:37:23.9726596\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -745,9 +742,9 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "2048", + "Content-Length": "2033", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -761,7 +758,7 @@ "isArchived": false, "componentSpec": { "command": "echo \u0022Start training ...\u0022 \u0026\u0026 python mnist.py --data_folder ${{inputs.data_folder}} --batch_size ${{inputs.batch_size}} --first_layer_neurons ${{inputs.first_layer_neurons}} --second_layer_neurons ${{inputs.second_layer_neurons}} --third_layer_neurons ${{inputs.third_layer_neurons}} --epochs ${{inputs.epochs}} --f1 ${{inputs.f1}} --f2 ${{inputs.f2}} --weight_decay ${{inputs.weight_decay}} --momentum ${{inputs.momentum}} --learning_rate ${{inputs.learning_rate}} --saved_model ${{outputs.trained_model_dir}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "description": "This is the command component for sweep", @@ -825,26 +822,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3603", + "Content-Length": "3586", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:46:14 GMT", + "Date": "Fri, 23 Sep 2022 15:37:24 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-8b86b65585cf472b77e2268d9847be8f-69bf5d074b897e9c-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-bebeee30a457a40d8249f8e04ca42b9a-c54893bb88f6b2f8-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "215cdc19-c02f-40fe-8645-41f16d89af7d", - "x-ms-ratelimit-remaining-subscription-writes": "1082", + "x-ms-correlation-request-id": "d70148a9-04ea-4218-b627-4580647f8a9a", + "x-ms-ratelimit-remaining-subscription-writes": "1171", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194615Z:215cdc19-c02f-40fe-8645-41f16d89af7d", - "x-request-time": "0.356" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153725Z:d70148a9-04ea-4218-b627-4580647f8a9a", + "x-request-time": "0.334" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d94eedd7-db72-48fd-935c-64e678ac8cf6", - "name": "d94eedd7-db72-48fd-935c-64e678ac8cf6", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/332c11f1-9fc5-4a0f-baf5-f4299e0424b1", + "name": "332c11f1-9fc5-4a0f-baf5-f4299e0424b1", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -857,7 +854,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "d94eedd7-db72-48fd-935c-64e678ac8cf6", + "version": "332c11f1-9fc5-4a0f-baf5-f4299e0424b1", "display_name": "CommandComponentForSweep", "is_deterministic": "True", "type": "command", @@ -922,7 +919,7 @@ "type": "mlflow_model" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -932,11 +929,11 @@ } }, "systemData": { - "createdAt": "2022-09-16T03:19:04.8869756\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:35:44.2605882\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T03:19:05.0957064\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:35:44.4410829\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -948,7 +945,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -956,24 +953,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:46:14 GMT", + "Date": "Fri, 23 Sep 2022 15:37:25 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-59506b56ecd51f8cd7f171675ec04724-4c8daaa4e4cdc504-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-6812901797608898e161fcfb9dede241-257780c6194a02ce-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e01b2d56-f1f9-4488-9fdc-1c689cb1eb33", - "x-ms-ratelimit-remaining-subscription-reads": "11847", + "x-ms-correlation-request-id": "1cae1027-d828-41d3-9701-17684cc3b551", + "x-ms-ratelimit-remaining-subscription-reads": "11952", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194615Z:e01b2d56-f1f9-4488-9fdc-1c689cb1eb33", - "x-request-time": "0.082" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153726Z:1cae1027-d828-41d3-9701-17684cc3b551", + "x-request-time": "0.113" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -988,17 +985,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -1012,7 +1009,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1020,21 +1017,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:46:15 GMT", + "Date": "Fri, 23 Sep 2022 15:37:26 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-fcc7bccc5da2dc0adac0500140042147-1afd9caf71680bd9-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-5348d085dc1342a18f6c986b613718a5-ecd97d02ea237cae-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "195a447c-c031-40a2-afd2-2248056d4d69", - "x-ms-ratelimit-remaining-subscription-writes": "1133", + "x-ms-correlation-request-id": "71b488e9-9542-44eb-bb47-6cc5f8b15346", + "x-ms-ratelimit-remaining-subscription-writes": "1182", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194615Z:195a447c-c031-40a2-afd2-2248056d4d69", - "x-request-time": "0.146" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153726Z:71b488e9-9542-44eb-bb47-6cc5f8b15346", + "x-request-time": "0.121" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1042,15 +1039,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:46:14 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:37:29 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -1059,9 +1056,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:46:15 GMT", - "ETag": "\u00220x8DA96C8A69D2BBA\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:16:15 GMT", + "Date": "Fri, 23 Sep 2022 15:37:27 GMT", + "ETag": "\u00220x8DA9D770C570D84\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:19:46 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1070,32 +1067,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:16:15 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:19:45 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "e95adacf-11cf-47c5-85eb-199ded56347d", + "x-ms-meta-name": "8c59cb92-112f-4c04-bda0-1342b610850d", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "a26e0dac-f124-4247-b13c-6e81f9a28197", + "x-ms-meta-version": "c1f97989-616d-4b90-a0d6-bac9ea34bade", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:46:14 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:37:29 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:46:15 GMT", + "Date": "Fri, 23 Sep 2022 15:37:27 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1103,20 +1100,20 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_420832534140?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_941038907128?api-version=2022-06-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "4226", + "Content-Length": "4280", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -1127,7 +1124,7 @@ "owner": "sdkteam" }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", - "displayName": "test_420832534140", + "displayName": "test_941038907128", "experimentName": "azure-ai-ml", "isArchived": false, "jobType": "Pipeline", @@ -1179,9 +1176,10 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.JOB", "trial": { - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/78c7032b-86c2-4bde-9269-20720112cb98" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/34b9dac7-553f-4917-a661-cb25b4cbae4b" } }, "hello_sweep_inline_file_trial": { @@ -1296,9 +1294,10 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.JOB", "trial": { - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d94eedd7-db72-48fd-935c-64e678ac8cf6" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/332c11f1-9fc5-4a0f-baf5-f4299e0424b1" } }, "hello_sweep_inline_remote_trial": { @@ -1326,6 +1325,7 @@ "computeId": null, "inputs": {}, "outputs": {}, + "properties": {}, "_source": "REMOTE.WORKSPACE.COMPONENT", "trial": { "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/microsoftsamplescommandcomponentbasic_nopaths_test/versions/1" @@ -1341,26 +1341,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "8145", + "Content-Length": "8217", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:46:20 GMT", + "Date": "Fri, 23 Sep 2022 15:37:36 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_420832534140?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_941038907128?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-885a9539d8f6986086053de14aefafc5-f89b74865b8a8f8d-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-348e539a4ec8b638115f99c34f01382f-1f1cdd996c05d1bd-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "004b50a4-833e-4edb-91b2-f62704e47d71", - "x-ms-ratelimit-remaining-subscription-writes": "1081", + "x-ms-correlation-request-id": "931a7333-04e6-4aa2-8c05-95ed371791ac", + "x-ms-ratelimit-remaining-subscription-writes": "1170", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194621Z:004b50a4-833e-4edb-91b2-f62704e47d71", - "x-request-time": "3.359" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153736Z:931a7333-04e6-4aa2-8c05-95ed371791ac", + "x-request-time": "4.156" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_420832534140", - "name": "test_420832534140", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_941038907128", + "name": "test_941038907128", "type": "Microsoft.MachineLearningServices/workspaces/jobs", "properties": { "description": "The hello world pipeline job with inline components", @@ -1380,14 +1380,14 @@ "azureml.defaultDataStoreName": "workspaceblobstore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_420832534140", + "displayName": "test_941038907128", "status": "Preparing", "experimentName": "azure-ai-ml", "services": { "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null @@ -1395,7 +1395,7 @@ "Studio": { "jobServiceType": "Studio", "port": null, - "endpoint": "https://ml.azure.com/runs/test_420832534140?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "endpoint": "https://ml.azure.com/runs/test_941038907128?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, "properties": null @@ -1447,9 +1447,10 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.JOB", "trial": { - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/78c7032b-86c2-4bde-9269-20720112cb98" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/34b9dac7-553f-4917-a661-cb25b4cbae4b" } }, "hello_sweep_inline_file_trial": { @@ -1564,9 +1565,10 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.JOB", "trial": { - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d94eedd7-db72-48fd-935c-64e678ac8cf6" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/332c11f1-9fc5-4a0f-baf5-f4299e0424b1" } }, "hello_sweep_inline_remote_trial": { @@ -1594,6 +1596,7 @@ "computeId": null, "inputs": {}, "outputs": {}, + "properties": {}, "_source": "REMOTE.WORKSPACE.COMPONENT", "trial": { "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/microsoftsamplescommandcomponentbasic_nopaths_test/versions/1" @@ -1616,14 +1619,14 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-16T19:46:21.0418036\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:37:36.154611\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } } ], "Variables": { - "randstr": "test_420832534140" + "randstr": "test_941038907128" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_sweep_node_early_termination_policy[policy_yaml_dict3].json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_sweep_node_early_termination_policy[policy_yaml_dict3].json index a6f6e2e61f32..b75163f646a0 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_sweep_node_early_termination_policy[policy_yaml_dict3].json +++ b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_with_sweep_node_early_termination_policy[policy_yaml_dict3].json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,39 +15,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:46:24 GMT", + "Date": "Fri, 23 Sep 2022 15:37:43 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-422859d0ae58177b19cea0f96d0216a4-dc08103cc0a3915c-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-869f967073c7a3997bdebc30ba09d6ff-8191400227fe90d9-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2ecb7c06-269a-4cfd-8697-2010735caf5d", - "x-ms-ratelimit-remaining-subscription-reads": "11846", + "x-ms-correlation-request-id": "d4ca1bab-4ec1-4691-9a03-9828d9d13da5", + "x-ms-ratelimit-remaining-subscription-reads": "11951", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194624Z:2ecb7c06-269a-4cfd-8697-2010735caf5d", - "x-request-time": "0.094" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153743Z:d4ca1bab-4ec1-4691-9a03-9828d9d13da5", + "x-request-time": "0.079" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.912489\u002B00:00", - "modifiedOn": "2022-09-15T03:11:50.5830108\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "eastus2", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -60,18 +60,18 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 4, + "currentNodeCount": 3, + "targetNodeCount": 3, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 4, - "idleNodeCount": 0, + "runningNodeCount": 2, + "idleNodeCount": 1, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-16T19:44:21.123\u002B00:00", + "allocationStateTransitionTime": "2022-09-23T15:34:23.647\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -89,7 +89,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -97,41 +97,48 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:46:24 GMT", + "Date": "Fri, 23 Sep 2022 15:37:44 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-1391437a7a6f68d898b511c18ce76c79-8e3fb6b48de1c1bc-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-9bfb11cc964ea371afaa2e69e19d1215-95b91cc764043c15-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "74e3b05c-85de-4efd-91ed-48805ffb811b", - "x-ms-ratelimit-remaining-subscription-reads": "11845", + "x-ms-correlation-request-id": "064386c9-108b-415b-8c4f-7b40ffad75ef", + "x-ms-ratelimit-remaining-subscription-reads": "11950", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194624Z:74e3b05c-85de-4efd-91ed-48805ffb811b", - "x-request-time": "0.048" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153745Z:064386c9-108b-415b-8c4f-7b40ffad75ef", + "x-request-time": "0.024" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/gpu-cluster", "name": "gpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.9201731\u002B00:00", - "modifiedOn": "2022-09-15T03:11:53.646313\u002B00:00", + "createdOn": "2022-09-22T03:11:29.7706914\u002B00:00", + "modifiedOn": "2022-09-22T03:11:30.2032599\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", - "provisioningState": "Succeeded", - "provisioningErrors": null, + "computeLocation": "eastus2", + "provisioningState": "Failed", + "provisioningErrors": [ + { + "error": { + "code": "VmSizeNotSupported", + "message": "STANDARD_ND6S is not supported in region eastus2. Please choose a different VM size." + } + } + ], "isAttachedCompute": false, "properties": { "vmSize": "STANDARD_ND6S", @@ -139,27 +146,17 @@ "scaleSettings": { "maxNodeCount": 4, "minNodeCount": 0, - "nodeIdleTimeBeforeScaleDown": "PT2M" + "nodeIdleTimeBeforeScaleDown": null }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 4, - "nodeStateCounts": { - "preparingNodeCount": 0, - "runningNodeCount": 1, - "idleNodeCount": 3, - "unusableNodeCount": 0, - "leavingNodeCount": 0, - "preemptedNodeCount": 0 - }, - "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-16T19:38:30.16\u002B00:00", + "currentNodeCount": null, + "targetNodeCount": null, + "nodeStateCounts": null, + "allocationState": null, "errors": null, - "remoteLoginPortPublicAccess": "Enabled", - "osType": "Linux", + "remoteLoginPortPublicAccess": "NotSpecified", "virtualMachineImage": null, - "isolatedNetwork": false, - "propertyBag": {} + "isolatedNetwork": false } } } @@ -171,7 +168,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -179,24 +176,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:46:25 GMT", + "Date": "Fri, 23 Sep 2022 15:37:47 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-ae93bb2f6f21fd1e25c5f4a2efd75256-9ed280f860e8a0f3-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-cef17e933da8db818e59fa4bcce28d1e-bc18078b317c1a43-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "261720f9-fc1d-4cb8-bd01-8ddace6ed4b1", - "x-ms-ratelimit-remaining-subscription-reads": "11844", + "x-ms-correlation-request-id": "75c11fb2-499c-47e3-87fb-60cb5cfd0401", + "x-ms-ratelimit-remaining-subscription-reads": "11949", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194625Z:261720f9-fc1d-4cb8-bd01-8ddace6ed4b1", - "x-request-time": "0.071" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153748Z:75c11fb2-499c-47e3-87fb-60cb5cfd0401", + "x-request-time": "0.095" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -211,17 +208,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -235,7 +232,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -243,21 +240,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:46:26 GMT", + "Date": "Fri, 23 Sep 2022 15:37:48 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-7938f1ed9227275015d00fc765dec32a-18350c1d2a8502c1-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-e90085aa959241597c21d176cfe9bcea-2d9d46672322542c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7eaa75bd-b4f0-42fa-b256-39bc3df6672c", - "x-ms-ratelimit-remaining-subscription-writes": "1132", + "x-ms-correlation-request-id": "15cb6b96-3496-4bb3-b83d-e74f6d610acb", + "x-ms-ratelimit-remaining-subscription-writes": "1181", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194626Z:7eaa75bd-b4f0-42fa-b256-39bc3df6672c", - "x-request-time": "0.104" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153749Z:15cb6b96-3496-4bb3-b83d-e74f6d610acb", + "x-request-time": "0.120" }, "ResponseBody": { "secretsType": "AccountKey", @@ -265,15 +262,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:46:25 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:37:51 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -282,9 +279,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:46:25 GMT", - "ETag": "\u00220x8DA975B4CC57610\u0022", - "Last-Modified": "Thu, 15 Sep 2022 20:46:01 GMT", + "Date": "Fri, 23 Sep 2022 15:37:49 GMT", + "ETag": "\u00220x8DA9D76EE2580A0\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:18:55 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -293,32 +290,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 20:46:01 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:18:53 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "f0648f42-ca3c-4aee-9d9e-f2fe26dc4430", + "x-ms-meta-name": "000000000000000000000", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/python/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/python/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:46:25 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:37:51 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:46:25 GMT", + "Date": "Fri, 23 Sep 2022 15:37:49 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -326,12 +323,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -339,7 +336,7 @@ "Connection": "keep-alive", "Content-Length": "295", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -349,7 +346,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python" } }, "StatusCode": 200, @@ -357,27 +354,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:46:26 GMT", + "Date": "Fri, 23 Sep 2022 15:37:50 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-2b51d162e3c0bf97ab23e4c4fe17ac0f-11e8dec33098c9e7-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-ccf6fd6d585fc5c436a7464bb7e3fbeb-1063fb40ac06a92d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6a98d9ab-b600-4f0e-b64b-eb8f015fb98c", - "x-ms-ratelimit-remaining-subscription-writes": "1080", + "x-ms-correlation-request-id": "7fc00121-0881-45f9-b360-50aaa05cbf58", + "x-ms-ratelimit-remaining-subscription-writes": "1169", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194626Z:6a98d9ab-b600-4f0e-b64b-eb8f015fb98c", - "x-request-time": "0.089" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153751Z:7fc00121-0881-45f9-b360-50aaa05cbf58", + "x-request-time": "0.071" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -389,14 +386,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/python" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/python" }, "systemData": { - "createdAt": "2022-09-15T20:46:01.4252338\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:18:57.5027157\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T19:46:26.8776934\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:37:51.1312781\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -408,9 +405,9 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "866", + "Content-Length": "851", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -420,7 +417,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo ${{inputs.component_in_number}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "tags": {}, @@ -442,26 +439,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1793", + "Content-Length": "1776", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:46:28 GMT", + "Date": "Fri, 23 Sep 2022 15:37:52 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-8748e877ad1f25176bf57110d261eca4-d3b89490fc174f7f-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-72eb9516a1c5d207e50284172f18bae0-6426366c16cea7df-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ef803cd5-d200-4b79-89b6-86c6860f9471", - "x-ms-ratelimit-remaining-subscription-writes": "1079", + "x-ms-correlation-request-id": "1bfe0bd5-01e4-4cae-9a75-b95c34a61ff7", + "x-ms-ratelimit-remaining-subscription-writes": "1168", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194628Z:ef803cd5-d200-4b79-89b6-86c6860f9471", - "x-request-time": "0.292" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153753Z:1bfe0bd5-01e4-4cae-9a75-b95c34a61ff7", + "x-request-time": "0.289" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/78c7032b-86c2-4bde-9269-20720112cb98", - "name": "78c7032b-86c2-4bde-9269-20720112cb98", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/34b9dac7-553f-4917-a661-cb25b4cbae4b", + "name": "34b9dac7-553f-4917-a661-cb25b4cbae4b", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -471,7 +468,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "78c7032b-86c2-4bde-9269-20720112cb98", + "version": "34b9dac7-553f-4917-a661-cb25b4cbae4b", "is_deterministic": "True", "type": "command", "inputs": { @@ -482,7 +479,7 @@ "description": "Am integer" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f0648f42-ca3c-4aee-9d9e-f2fe26dc4430/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -492,11 +489,11 @@ } }, "systemData": { - "createdAt": "2022-09-16T03:19:02.6191232\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:35:38.7955906\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T03:19:02.8150347\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:35:38.9978013\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -508,7 +505,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -516,24 +513,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:46:28 GMT", + "Date": "Fri, 23 Sep 2022 15:37:53 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-ded143769f56f8ff9e5c2eb900283143-4d61ffa646e02e20-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-3fd3a105a509e902ee51c78737e7d300-c7abc4f80f3740a9-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d5731771-eb0e-4280-9ce0-3105728cf024", - "x-ms-ratelimit-remaining-subscription-reads": "11843", + "x-ms-correlation-request-id": "ff9a2868-ccc1-48c7-8e53-c9396f49a2f3", + "x-ms-ratelimit-remaining-subscription-reads": "11948", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194628Z:d5731771-eb0e-4280-9ce0-3105728cf024", - "x-request-time": "0.107" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153754Z:ff9a2868-ccc1-48c7-8e53-c9396f49a2f3", + "x-request-time": "0.140" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -548,17 +545,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -572,7 +569,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -580,21 +577,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:46:29 GMT", + "Date": "Fri, 23 Sep 2022 15:37:54 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-d7f10c2f22a567dfc2ca5f89b2ebfca7-7756ee7c796cfb24-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-058fabbbe77ae0154728d2e4e0c4c024-2614ce0b9dffcbc4-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d976e9c5-2ec8-4e6a-9c46-eb0a3d789d9b", - "x-ms-ratelimit-remaining-subscription-writes": "1131", + "x-ms-correlation-request-id": "0bfaffa9-6b02-4b11-98bc-767e60bc8596", + "x-ms-ratelimit-remaining-subscription-writes": "1180", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194629Z:d976e9c5-2ec8-4e6a-9c46-eb0a3d789d9b", - "x-request-time": "0.101" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153755Z:0bfaffa9-6b02-4b11-98bc-767e60bc8596", + "x-request-time": "0.107" }, "ResponseBody": { "secretsType": "AccountKey", @@ -602,15 +599,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:46:28 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:37:57 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -619,9 +616,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:46:29 GMT", - "ETag": "\u00220x8DA96C8560C1979\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:14:00 GMT", + "Date": "Fri, 23 Sep 2022 15:37:55 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -630,32 +627,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:14:00 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ac7e0240-c159-4c9c-828e-d3e8df43e80f", + "x-ms-meta-name": "000000000000000000000", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:46:28 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:37:57 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:46:29 GMT", + "Date": "Fri, 23 Sep 2022 15:37:55 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -663,12 +660,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -676,7 +673,7 @@ "Connection": "keep-alive", "Content-Length": "288", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -686,7 +683,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -694,27 +691,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:46:30 GMT", + "Date": "Fri, 23 Sep 2022 15:37:55 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-faa885b650c895dc8556acc1d111bb62-f75ebee060bb61a5-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-e6bec49c106499ed0630e426c6e1cfdb-7679da0f362460eb-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4d392cb9-a103-4d6f-8971-24626d9fdda1", - "x-ms-ratelimit-remaining-subscription-writes": "1078", + "x-ms-correlation-request-id": "11358d3b-db54-4ea3-a1d6-96b63861fb40", + "x-ms-ratelimit-remaining-subscription-writes": "1167", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194630Z:4d392cb9-a103-4d6f-8971-24626d9fdda1", - "x-request-time": "0.052" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153756Z:11358d3b-db54-4ea3-a1d6-96b63861fb40", + "x-request-time": "0.072" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -726,14 +723,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-15T03:14:01.4315202\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-16T19:46:30.8550201\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T15:37:56.5065892\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -745,9 +742,9 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "2048", + "Content-Length": "2033", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -761,7 +758,7 @@ "isArchived": false, "componentSpec": { "command": "echo \u0022Start training ...\u0022 \u0026\u0026 python mnist.py --data_folder ${{inputs.data_folder}} --batch_size ${{inputs.batch_size}} --first_layer_neurons ${{inputs.first_layer_neurons}} --second_layer_neurons ${{inputs.second_layer_neurons}} --third_layer_neurons ${{inputs.third_layer_neurons}} --epochs ${{inputs.epochs}} --f1 ${{inputs.f1}} --f2 ${{inputs.f2}} --weight_decay ${{inputs.weight_decay}} --momentum ${{inputs.momentum}} --learning_rate ${{inputs.learning_rate}} --saved_model ${{outputs.trained_model_dir}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "description": "This is the command component for sweep", @@ -825,26 +822,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3603", + "Content-Length": "3586", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:46:31 GMT", + "Date": "Fri, 23 Sep 2022 15:37:56 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-32c240bbcd3a01db1475197a4b9cec94-bf4da19d3efcdaa2-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-fdd7e9ee39dc1f90d8395c9722fa065c-a2d71218a1ba0cc5-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3f2a30a3-04d5-4963-b022-3e7644718f68", - "x-ms-ratelimit-remaining-subscription-writes": "1077", + "x-ms-correlation-request-id": "cd1e9c0e-44e4-4679-b603-d1f2dc133198", + "x-ms-ratelimit-remaining-subscription-writes": "1166", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194631Z:3f2a30a3-04d5-4963-b022-3e7644718f68", - "x-request-time": "0.331" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153757Z:cd1e9c0e-44e4-4679-b603-d1f2dc133198", + "x-request-time": "0.345" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d94eedd7-db72-48fd-935c-64e678ac8cf6", - "name": "d94eedd7-db72-48fd-935c-64e678ac8cf6", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/332c11f1-9fc5-4a0f-baf5-f4299e0424b1", + "name": "332c11f1-9fc5-4a0f-baf5-f4299e0424b1", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -857,7 +854,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "d94eedd7-db72-48fd-935c-64e678ac8cf6", + "version": "332c11f1-9fc5-4a0f-baf5-f4299e0424b1", "display_name": "CommandComponentForSweep", "is_deterministic": "True", "type": "command", @@ -922,7 +919,7 @@ "type": "mlflow_model" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -932,11 +929,11 @@ } }, "systemData": { - "createdAt": "2022-09-16T03:19:04.8869756\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:35:44.2605882\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T03:19:05.0957064\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:35:44.4410829\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -948,7 +945,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -956,24 +953,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:46:31 GMT", + "Date": "Fri, 23 Sep 2022 15:37:58 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-107fe00b311ab45fd3230edb6484d81f-8e2c499839e72c2a-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-0ba7c3300d955f89d033ff49e7b623c1-6c6fa429aea3a404-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4f7b3804-4116-4ea3-806c-9a8eac871c54", - "x-ms-ratelimit-remaining-subscription-reads": "11842", + "x-ms-correlation-request-id": "b3682261-7a6b-4b14-9aad-d93de073af2a", + "x-ms-ratelimit-remaining-subscription-reads": "11947", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194631Z:4f7b3804-4116-4ea3-806c-9a8eac871c54", - "x-request-time": "0.163" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153759Z:b3682261-7a6b-4b14-9aad-d93de073af2a", + "x-request-time": "0.075" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -988,17 +985,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -1012,7 +1009,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1020,21 +1017,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:46:31 GMT", + "Date": "Fri, 23 Sep 2022 15:37:59 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-e33d3d9d8e4d0d65492b75e286837307-0b35e0ec41dbf306-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-61efcf65d334af3b9b12c4a854a4fcff-6105024d4709dcb4-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1e5b835f-b1d5-4d88-a82b-36ead9848d75", - "x-ms-ratelimit-remaining-subscription-writes": "1130", + "x-ms-correlation-request-id": "2d6d396d-7213-4aed-8ec4-4eca2c84c92e", + "x-ms-ratelimit-remaining-subscription-writes": "1179", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194631Z:1e5b835f-b1d5-4d88-a82b-36ead9848d75", - "x-request-time": "0.078" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153800Z:2d6d396d-7213-4aed-8ec4-4eca2c84c92e", + "x-request-time": "0.198" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1042,15 +1039,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:46:30 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:38:02 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -1059,9 +1056,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:46:31 GMT", - "ETag": "\u00220x8DA96C8A69D2BBA\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:16:15 GMT", + "Date": "Fri, 23 Sep 2022 15:38:00 GMT", + "ETag": "\u00220x8DA9D770C570D84\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:19:46 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1070,32 +1067,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:16:15 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:19:45 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "e95adacf-11cf-47c5-85eb-199ded56347d", + "x-ms-meta-name": "8c59cb92-112f-4c04-bda0-1342b610850d", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "a26e0dac-f124-4247-b13c-6e81f9a28197", + "x-ms-meta-version": "c1f97989-616d-4b90-a0d6-bac9ea34bade", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:46:30 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:38:02 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:46:31 GMT", + "Date": "Fri, 23 Sep 2022 15:38:00 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1103,20 +1100,20 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_258615196791?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_762860863188?api-version=2022-06-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "4247", + "Content-Length": "4301", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -1127,7 +1124,7 @@ "owner": "sdkteam" }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", - "displayName": "test_258615196791", + "displayName": "test_762860863188", "experimentName": "azure-ai-ml", "isArchived": false, "jobType": "Pipeline", @@ -1179,9 +1176,10 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.JOB", "trial": { - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/78c7032b-86c2-4bde-9269-20720112cb98" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/34b9dac7-553f-4917-a661-cb25b4cbae4b" } }, "hello_sweep_inline_file_trial": { @@ -1296,9 +1294,10 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.JOB", "trial": { - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d94eedd7-db72-48fd-935c-64e678ac8cf6" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/332c11f1-9fc5-4a0f-baf5-f4299e0424b1" } }, "hello_sweep_inline_remote_trial": { @@ -1326,6 +1325,7 @@ "computeId": null, "inputs": {}, "outputs": {}, + "properties": {}, "_source": "REMOTE.WORKSPACE.COMPONENT", "trial": { "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/microsoftsamplescommandcomponentbasic_nopaths_test/versions/1" @@ -1341,26 +1341,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "8166", + "Content-Length": "8239", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:46:39 GMT", + "Date": "Fri, 23 Sep 2022 15:38:09 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_258615196791?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_762860863188?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-9384f11d71b65699a2a0b4619167a102-6984340c1f09a875-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-a2264f801a64f1c89219ac82a4899d16-6ce3f6e808c4e395-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6aee837c-3949-4735-b0c9-da0e66afdccd", - "x-ms-ratelimit-remaining-subscription-writes": "1076", + "x-ms-correlation-request-id": "2560cf6c-ac66-4b1f-95ea-a29d73e763a8", + "x-ms-ratelimit-remaining-subscription-writes": "1165", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194639Z:6aee837c-3949-4735-b0c9-da0e66afdccd", - "x-request-time": "2.805" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153810Z:2560cf6c-ac66-4b1f-95ea-a29d73e763a8", + "x-request-time": "4.381" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_258615196791", - "name": "test_258615196791", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_762860863188", + "name": "test_762860863188", "type": "Microsoft.MachineLearningServices/workspaces/jobs", "properties": { "description": "The hello world pipeline job with inline components", @@ -1380,14 +1380,14 @@ "azureml.defaultDataStoreName": "workspaceblobstore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_258615196791", + "displayName": "test_762860863188", "status": "Preparing", "experimentName": "azure-ai-ml", "services": { "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null @@ -1395,7 +1395,7 @@ "Studio": { "jobServiceType": "Studio", "port": null, - "endpoint": "https://ml.azure.com/runs/test_258615196791?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "endpoint": "https://ml.azure.com/runs/test_762860863188?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, "properties": null @@ -1447,9 +1447,10 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.JOB", "trial": { - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/78c7032b-86c2-4bde-9269-20720112cb98" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/34b9dac7-553f-4917-a661-cb25b4cbae4b" } }, "hello_sweep_inline_file_trial": { @@ -1564,9 +1565,10 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.JOB", "trial": { - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d94eedd7-db72-48fd-935c-64e678ac8cf6" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/332c11f1-9fc5-4a0f-baf5-f4299e0424b1" } }, "hello_sweep_inline_remote_trial": { @@ -1594,6 +1596,7 @@ "computeId": null, "inputs": {}, "outputs": {}, + "properties": {}, "_source": "REMOTE.WORKSPACE.COMPONENT", "trial": { "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/microsoftsamplescommandcomponentbasic_nopaths_test/versions/1" @@ -1616,14 +1619,14 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-16T19:46:38.8725961\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:38:09.2781164\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } } ], "Variables": { - "randstr": "test_258615196791" + "randstr": "test_762860863188" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_without_component_snapshot.json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_without_component_snapshot.json index cf38fd06b32a..1d2f401ebb18 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_without_component_snapshot.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_job_without_component_snapshot.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,39 +15,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:43:10 GMT", + "Date": "Fri, 23 Sep 2022 15:27:09 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-6ec8b4273c0586a76bf82bf234cbca8d-567abcdfc10135d3-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-cc5791155db951ddaa9e286657608c4f-88654b53ce11c46e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a8b71075-807b-4969-9130-6f36bf06a8bf", - "x-ms-ratelimit-remaining-subscription-reads": "11909", + "x-ms-correlation-request-id": "8dd147f1-c993-4532-b087-ce35a581b1ba", + "x-ms-ratelimit-remaining-subscription-reads": "11902", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194310Z:a8b71075-807b-4969-9130-6f36bf06a8bf", - "x-request-time": "0.049" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152710Z:8dd147f1-c993-4532-b087-ce35a581b1ba", + "x-request-time": "0.039" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.912489\u002B00:00", - "modifiedOn": "2022-09-15T03:11:50.5830108\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "eastus2", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -61,7 +61,7 @@ }, "subnet": null, "currentNodeCount": 3, - "targetNodeCount": 3, + "targetNodeCount": 4, "nodeStateCounts": { "preparingNodeCount": 0, "runningNodeCount": 3, @@ -70,8 +70,8 @@ "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-16T19:42:50.695\u002B00:00", + "allocationState": "Resizing", + "allocationStateTransitionTime": "2022-09-23T15:25:36.433\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -89,7 +89,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -97,39 +97,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:43:10 GMT", + "Date": "Fri, 23 Sep 2022 15:27:10 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-df3fc1fd8bf16ea76d2551a1adb0bbdb-7fbc5a5c7c579679-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-7a5ffc53fbc2d96a85966b9ee5306a75-13dc686e792e4d0b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "65e623b8-4002-4c9f-a32c-c808997b677d", - "x-ms-ratelimit-remaining-subscription-reads": "11908", + "x-ms-correlation-request-id": "90dc42a7-fcdb-4ab4-a6f1-5dcb77fc27c9", + "x-ms-ratelimit-remaining-subscription-reads": "11901", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194310Z:65e623b8-4002-4c9f-a32c-c808997b677d", - "x-request-time": "0.049" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152710Z:90dc42a7-fcdb-4ab4-a6f1-5dcb77fc27c9", + "x-request-time": "0.040" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.912489\u002B00:00", - "modifiedOn": "2022-09-15T03:11:50.5830108\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "eastus2", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -153,7 +153,7 @@ "preemptedNodeCount": 0 }, "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-16T19:43:10.707\u002B00:00", + "allocationStateTransitionTime": "2022-09-23T15:25:36.433\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -171,7 +171,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -179,24 +179,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:43:11 GMT", + "Date": "Fri, 23 Sep 2022 15:27:13 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-6beb56012fcd1d6dddd34680b6cd79a0-c6d6e692e4508153-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-ed9aa044bb7125a83561d769f60b2e20-9903c50bc42103ad-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "387c8ae7-4c4a-472e-84a5-d3597491b079", - "x-ms-ratelimit-remaining-subscription-reads": "11907", + "x-ms-correlation-request-id": "b9a3fb8b-fd7b-4a2f-973f-cfb2909f05a8", + "x-ms-ratelimit-remaining-subscription-reads": "11900", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194312Z:387c8ae7-4c4a-472e-84a5-d3597491b079", - "x-request-time": "0.110" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152714Z:b9a3fb8b-fd7b-4a2f-973f-cfb2909f05a8", + "x-request-time": "0.146" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -211,17 +211,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -235,7 +235,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -243,21 +243,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:43:12 GMT", + "Date": "Fri, 23 Sep 2022 15:27:15 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-2bcd7523915ca429dda115d6172114d8-63a754838ee2b7d3-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-9ea8a485b07f38386f9c85d0dcb9c9e2-6b998c173e7df7cd-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c4660897-c2d1-442e-b0ce-5e3c18f1d361", - "x-ms-ratelimit-remaining-subscription-writes": "1161", + "x-ms-correlation-request-id": "26355654-5ca6-4c80-9808-c79c06c1c973", + "x-ms-ratelimit-remaining-subscription-writes": "1158", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194312Z:c4660897-c2d1-442e-b0ce-5e3c18f1d361", - "x-request-time": "0.092" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152716Z:26355654-5ca6-4c80-9808-c79c06c1c973", + "x-request-time": "0.085" }, "ResponseBody": { "secretsType": "AccountKey", @@ -265,15 +265,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:43:11 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:27:18 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -282,9 +282,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:43:12 GMT", - "ETag": "\u00220x8DA96C8560C1979\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:14:00 GMT", + "Date": "Fri, 23 Sep 2022 15:27:16 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -293,32 +293,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:14:00 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "ac7e0240-c159-4c9c-828e-d3e8df43e80f", + "x-ms-meta-name": "000000000000000000000", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:43:11 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:27:18 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:43:12 GMT", + "Date": "Fri, 23 Sep 2022 15:27:17 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -326,12 +326,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -339,7 +339,7 @@ "Connection": "keep-alive", "Content-Length": "288", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -349,7 +349,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -357,27 +357,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:43:13 GMT", + "Date": "Fri, 23 Sep 2022 15:27:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-d9f76260d1254b2a65920fb53980412a-d42c2234c5a1d98b-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-418f17434aba3de963b1a4b4d3de28a3-da2a49d89ced8cb0-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "59ae638c-d675-4736-bc92-b31a9b6e2a66", - "x-ms-ratelimit-remaining-subscription-writes": "1134", + "x-ms-correlation-request-id": "068a04d5-5018-400c-a3c0-39eb5bb64b1a", + "x-ms-ratelimit-remaining-subscription-writes": "1127", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194313Z:59ae638c-d675-4736-bc92-b31a9b6e2a66", - "x-request-time": "0.070" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152718Z:068a04d5-5018-400c-a3c0-39eb5bb64b1a", + "x-request-time": "0.096" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -389,14 +389,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-15T03:14:01.4315202\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-16T19:43:13.2512439\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T15:27:17.9540762\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -408,9 +408,9 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "914", + "Content-Length": "899", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -420,7 +420,7 @@ "isArchived": false, "componentSpec": { "command": "echo Hello World \u0026 echo ${{inputs.component_in_number}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "tags": {}, @@ -443,26 +443,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1847", + "Content-Length": "1830", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:43:13 GMT", + "Date": "Fri, 23 Sep 2022 15:27:18 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-933f6746f25b5be1e1e51a151d7432b7-3a5c921f8c0e71dc-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-4267bad175491caa23483c02c617f115-f8de9a1c4269b571-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "cee98436-bff2-43fa-b64e-dc46e737a608", - "x-ms-ratelimit-remaining-subscription-writes": "1133", + "x-ms-correlation-request-id": "d46e47e3-3d27-4e17-a77e-d2b14825bc85", + "x-ms-ratelimit-remaining-subscription-writes": "1126", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194313Z:cee98436-bff2-43fa-b64e-dc46e737a608", - "x-request-time": "0.253" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152719Z:d46e47e3-3d27-4e17-a77e-d2b14825bc85", + "x-request-time": "0.476" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1100bc14-b14c-4ff2-8e3f-0bdb4f91b7e9", - "name": "1100bc14-b14c-4ff2-8e3f-0bdb4f91b7e9", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/dcc27358-a607-4a77-ac3b-82271f5ee1d9", + "name": "dcc27358-a607-4a77-ac3b-82271f5ee1d9", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -472,7 +472,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "1100bc14-b14c-4ff2-8e3f-0bdb4f91b7e9", + "version": "dcc27358-a607-4a77-ac3b-82271f5ee1d9", "display_name": "hello_world_component_inline", "is_deterministic": "True", "type": "command", @@ -484,7 +484,7 @@ "description": "Am integer" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -494,25 +494,25 @@ } }, "systemData": { - "createdAt": "2022-09-16T03:17:15.2355057\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:27:19.2231886\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T03:17:15.4376366\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:27:19.2231886\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_753645281014?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_620390496203?api-version=2022-06-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1390", + "Content-Length": "1408", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -523,7 +523,7 @@ "owner": "sdkteam" }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", - "displayName": "test_753645281014", + "displayName": "test_620390496203", "experimentName": "azure-ai-ml", "isArchived": false, "jobType": "Pipeline", @@ -555,8 +555,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1100bc14-b14c-4ff2-8e3f-0bdb4f91b7e9" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/dcc27358-a607-4a77-ac3b-82271f5ee1d9" } }, "outputs": {}, @@ -568,26 +569,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "3500", + "Content-Length": "3521", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:43:19 GMT", + "Date": "Fri, 23 Sep 2022 15:27:25 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_753645281014?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_620390496203?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-67ae570a93f5b0af3129745e4f60ed0f-603e00871f174e60-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-5bbb95c644b70f047952cd947678c2b3-50e76fe37e4457c6-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4397bed5-cb50-4997-a7ed-c0fed550b616", - "x-ms-ratelimit-remaining-subscription-writes": "1132", + "x-ms-correlation-request-id": "d4eff412-52dd-40b6-8e24-924ea2a4c449", + "x-ms-ratelimit-remaining-subscription-writes": "1125", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194320Z:4397bed5-cb50-4997-a7ed-c0fed550b616", - "x-request-time": "2.934" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152726Z:d4eff412-52dd-40b6-8e24-924ea2a4c449", + "x-request-time": "3.111" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_753645281014", - "name": "test_753645281014", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_620390496203", + "name": "test_620390496203", "type": "Microsoft.MachineLearningServices/workspaces/jobs", "properties": { "description": "The hello world pipeline job with inline components", @@ -607,14 +608,14 @@ "azureml.defaultDataStoreName": "workspaceblobstore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_753645281014", + "displayName": "test_620390496203", "status": "Preparing", "experimentName": "azure-ai-ml", "services": { "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null @@ -622,7 +623,7 @@ "Studio": { "jobServiceType": "Studio", "port": null, - "endpoint": "https://ml.azure.com/runs/test_753645281014?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "endpoint": "https://ml.azure.com/runs/test_620390496203?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, "properties": null @@ -654,8 +655,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1100bc14-b14c-4ff2-8e3f-0bdb4f91b7e9" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/dcc27358-a607-4a77-ac3b-82271f5ee1d9" } }, "inputs": { @@ -674,20 +676,20 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-16T19:43:19.5917828\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:27:25.9153061\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1100bc14-b14c-4ff2-8e3f-0bdb4f91b7e9?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/dcc27358-a607-4a77-ac3b-82271f5ee1d9?api-version=2022-05-01", "RequestMethod": "GET", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -695,28 +697,28 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:43:20 GMT", + "Date": "Fri, 23 Sep 2022 15:27:28 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-5dd3046f4a0a2dece3e5064203ade97e-9d138d06f84d156f-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-3e448de489451adf255a8806477b55ed-a2ef843b5dcf68f0-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "dfce3efb-1e64-424a-8f8a-a50448bfbb65", - "x-ms-ratelimit-remaining-subscription-reads": "11906", + "x-ms-correlation-request-id": "b54878ea-afc3-4703-9893-f8f537f34b48", + "x-ms-ratelimit-remaining-subscription-reads": "11899", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T194321Z:dfce3efb-1e64-424a-8f8a-a50448bfbb65", - "x-request-time": "0.112" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T152729Z:b54878ea-afc3-4703-9893-f8f537f34b48", + "x-request-time": "0.081" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1100bc14-b14c-4ff2-8e3f-0bdb4f91b7e9", - "name": "1100bc14-b14c-4ff2-8e3f-0bdb4f91b7e9", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/dcc27358-a607-4a77-ac3b-82271f5ee1d9", + "name": "dcc27358-a607-4a77-ac3b-82271f5ee1d9", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -726,7 +728,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "1100bc14-b14c-4ff2-8e3f-0bdb4f91b7e9", + "version": "dcc27358-a607-4a77-ac3b-82271f5ee1d9", "display_name": "hello_world_component_inline", "is_deterministic": "True", "type": "command", @@ -738,7 +740,7 @@ "description": "Am integer" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/ac7e0240-c159-4c9c-828e-d3e8df43e80f/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -748,17 +750,17 @@ } }, "systemData": { - "createdAt": "2022-09-16T03:17:15.2355057\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:27:19.2231886\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T03:17:15.4376366\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:27:19.3918871\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } } ], "Variables": { - "name": "test_753645281014" + "name": "test_620390496203" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_with_inline_job_setting_binding_node_and_pipeline_level.json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_with_inline_job_setting_binding_node_and_pipeline_level.json index 2be78d1fe68e..279c59671c5d 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_with_inline_job_setting_binding_node_and_pipeline_level.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_with_inline_job_setting_binding_node_and_pipeline_level.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,39 +15,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:29:05 GMT", + "Date": "Fri, 23 Sep 2022 15:52:54 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-21aa10b0ec3bb639635dbd13c60c7eb5-05da67d0de77a400-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-3b7e84bb2a6083f49e7d35c9ef1a8789-2493be52fa2fe2c2-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1d627b31-3d0e-4754-95e7-d60fc4af392f", - "x-ms-ratelimit-remaining-subscription-reads": "11975", + "x-ms-correlation-request-id": "54be98a8-3d1e-4957-9c9f-47520920fe5d", + "x-ms-ratelimit-remaining-subscription-reads": "11957", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152906Z:1d627b31-3d0e-4754-95e7-d60fc4af392f", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T155254Z:54be98a8-3d1e-4957-9c9f-47520920fe5d", "x-request-time": "0.048" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-19T00:10:24.4202268\u002B00:00", - "modifiedOn": "2022-09-19T00:10:30.9839701\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "eastus2", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -60,32 +60,19 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 3, - "targetNodeCount": 4, + "currentNodeCount": 1, + "targetNodeCount": 1, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 2, + "runningNodeCount": 0, "idleNodeCount": 1, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-19T14:29:24.068\u002B00:00", - "errors": [ - { - "error": { - "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_cfbcbd349a72d6d7f2aa698e8c5085e5b6ca6efe46bc772e18b585c80bd7eb63_d: There is not enough disk space on the node", - "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - } - ] - } - } - ], + "allocationState": "Steady", + "allocationStateTransitionTime": "2022-09-23T15:47:48.622\u002B00:00", + "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -102,7 +89,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -110,24 +97,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:29:07 GMT", + "Date": "Fri, 23 Sep 2022 15:52:58 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-84c3264165baf3369ee00c5ec367cefd-70e3f4ec22abe57a-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-180d5c23d73ecf95ebcaca446101a037-cd2c4ab558a42af6-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "0e09e36e-bc62-4c56-bd86-3af727d9000a", - "x-ms-ratelimit-remaining-subscription-reads": "11974", + "x-ms-correlation-request-id": "c73fc801-cb27-40a5-b1c9-ae9f874a4092", + "x-ms-ratelimit-remaining-subscription-reads": "11956", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152907Z:0e09e36e-bc62-4c56-bd86-3af727d9000a", - "x-request-time": "0.099" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T155259Z:c73fc801-cb27-40a5-b1c9-ae9f874a4092", + "x-request-time": "0.118" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -142,17 +129,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sawcdivl5vo3cem", - "containerName": "azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-19T00:10:19.4497254\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-19T00:10:20.0957203\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -166,7 +153,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -174,21 +161,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:29:07 GMT", + "Date": "Fri, 23 Sep 2022 15:52:59 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-e9f7ead0292cb171638142a9c69a21de-c54e9024f0c8680d-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-6ed72aed9ec409bc426242077a852d82-72e858aa9382a0bf-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "88cd63de-8884-4e41-916d-074301613dce", - "x-ms-ratelimit-remaining-subscription-writes": "1188", + "x-ms-correlation-request-id": "4c062a24-b553-4f6a-be63-a9ac83f36863", + "x-ms-ratelimit-remaining-subscription-writes": "1163", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152908Z:88cd63de-8884-4e41-916d-074301613dce", - "x-request-time": "0.100" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T155300Z:4c062a24-b553-4f6a-be63-a9ac83f36863", + "x-request-time": "0.198" }, "ResponseBody": { "secretsType": "AccountKey", @@ -196,15 +183,15 @@ } }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000/train_src/train.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/train_src/train.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Mon, 19 Sep 2022 15:29:08 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:53:02 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -213,9 +200,9 @@ "Content-Length": "1502", "Content-MD5": "zAix1RSwqgjraik/VOQjSg==", "Content-Type": "application/octet-stream", - "Date": "Mon, 19 Sep 2022 15:29:07 GMT", - "ETag": "\u00220x8DA99D38A132903\u0022", - "Last-Modified": "Mon, 19 Sep 2022 00:11:46 GMT", + "Date": "Fri, 23 Sep 2022 15:53:00 GMT", + "ETag": "\u00220x8DA9D7B70E8EC67\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:51:12 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -224,32 +211,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Mon, 19 Sep 2022 00:11:45 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:51:12 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "aedc8172-f2f5-4b18-bd14-2c3563bfbd33", + "x-ms-meta-name": "000000000000000000000", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/az-ml-artifacts/00000000000000000000000000000000/train_src/train.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/train_src/train.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Mon, 19 Sep 2022 15:29:08 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:53:02 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Mon, 19 Sep 2022 15:29:08 GMT", + "Date": "Fri, 23 Sep 2022 15:53:00 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -257,12 +244,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/aedc8172-f2f5-4b18-bd14-2c3563bfbd33/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -270,7 +257,7 @@ "Connection": "keep-alive", "Content-Length": "298", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -280,7 +267,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000/train_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/train_src" } }, "StatusCode": 200, @@ -288,27 +275,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:29:09 GMT", + "Date": "Fri, 23 Sep 2022 15:53:01 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-1cb6a9be47cc1094ae454865c43997f6-5dd90e01fe3eeb74-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-e6675a5e9df6fe639fe22bae1b2e1869-012a9b4d932991bc-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "62c32eed-6d6c-4179-bd5f-d4a7986548f6", - "x-ms-ratelimit-remaining-subscription-writes": "1177", + "x-ms-correlation-request-id": "788bbd60-b09a-49b7-baa1-73b5ef61c40a", + "x-ms-ratelimit-remaining-subscription-writes": "1178", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152909Z:62c32eed-6d6c-4179-bd5f-d4a7986548f6", - "x-request-time": "0.061" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T155301Z:788bbd60-b09a-49b7-baa1-73b5ef61c40a", + "x-request-time": "0.110" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/aedc8172-f2f5-4b18-bd14-2c3563bfbd33/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -320,14 +307,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000/train_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/train_src" }, "systemData": { - "createdAt": "2022-09-19T00:11:46.8741508\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-19T15:29:09.8174552\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:51:13.8769644\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T15:53:01.8016399\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -339,9 +326,9 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1221", + "Content-Length": "1206", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -351,7 +338,7 @@ "isArchived": false, "componentSpec": { "command": "python train.py --training_data ${{inputs.training_data}} --max_epochs ${{inputs.max_epochs}} --learning_rate ${{inputs.learning_rate}} --learning_rate_schedule ${{inputs.learning_rate_schedule}} --model_output ${{outputs.model_output}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/aedc8172-f2f5-4b18-bd14-2c3563bfbd33/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "name": "azureml_anonymous", "tags": {}, @@ -387,26 +374,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2330", + "Content-Length": "2313", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:29:10 GMT", + "Date": "Fri, 23 Sep 2022 15:53:03 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-a26333fc3c71906ecee43ff59659ee4a-53297047a160838e-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-1a5619410336aefb2874135db1503b95-3fc51b3506582e5f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f1a37872-8270-488d-9a1e-f4b003f844f0", - "x-ms-ratelimit-remaining-subscription-writes": "1176", + "x-ms-correlation-request-id": "505f5a5c-4109-4beb-8e7b-84788e9852d3", + "x-ms-ratelimit-remaining-subscription-writes": "1177", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152911Z:f1a37872-8270-488d-9a1e-f4b003f844f0", - "x-request-time": "0.337" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T155304Z:505f5a5c-4109-4beb-8e7b-84788e9852d3", + "x-request-time": "0.591" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a63ca93f-bb5e-40e8-94bf-5fc6daafa50a", - "name": "a63ca93f-bb5e-40e8-94bf-5fc6daafa50a", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2f0e9e0e-6ff3-4460-8b8e-83ecd8827a38", + "name": "2f0e9e0e-6ff3-4460-8b8e-83ecd8827a38", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -416,7 +403,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "a63ca93f-bb5e-40e8-94bf-5fc6daafa50a", + "version": "2f0e9e0e-6ff3-4460-8b8e-83ecd8827a38", "display_name": "train_job", "is_deterministic": "True", "type": "command", @@ -443,7 +430,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/aedc8172-f2f5-4b18-bd14-2c3563bfbd33/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -453,11 +440,11 @@ } }, "systemData": { - "createdAt": "2022-09-19T15:26:49.6704385\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:53:03.6797952\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-19T15:26:49.8611193\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:53:03.6797952\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -469,7 +456,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -477,24 +464,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:29:10 GMT", + "Date": "Fri, 23 Sep 2022 15:53:05 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-646dfba74d656cde102f2a96def603f5-8151a39f1bc6c453-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-ee57c3ef7b675b2d49032558190e63b6-43ce4cee69102ea4-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e004f0d5-8940-41c5-a762-dfcee1b6b3bf", - "x-ms-ratelimit-remaining-subscription-reads": "11973", + "x-ms-correlation-request-id": "f13b49cb-5dc3-4be5-847b-b6798d160e81", + "x-ms-ratelimit-remaining-subscription-reads": "11955", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152911Z:e004f0d5-8940-41c5-a762-dfcee1b6b3bf", - "x-request-time": "0.099" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T155305Z:f13b49cb-5dc3-4be5-847b-b6798d160e81", + "x-request-time": "0.161" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -509,17 +496,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sawcdivl5vo3cem", - "containerName": "azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-19T00:10:19.4497254\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-19T00:10:20.0957203\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -533,7 +520,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -541,21 +528,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:29:10 GMT", + "Date": "Fri, 23 Sep 2022 15:53:05 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-aa2a692f7fcf15e4b9f4088678bb36c7-6259a99d8eb40d81-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-7ae8c6efbe778d3dcca0a030a0be78e7-28058727c98d4ab7-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "61051a5a-6164-4e7e-98c3-098c228884b0", - "x-ms-ratelimit-remaining-subscription-writes": "1187", + "x-ms-correlation-request-id": "ed2212f7-09e0-46a3-bbe6-243e5c6d04d6", + "x-ms-ratelimit-remaining-subscription-writes": "1162", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152911Z:61051a5a-6164-4e7e-98c3-098c228884b0", - "x-request-time": "0.103" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T155306Z:ed2212f7-09e0-46a3-bbe6-243e5c6d04d6", + "x-request-time": "0.102" }, "ResponseBody": { "secretsType": "AccountKey", @@ -563,15 +550,15 @@ } }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Mon, 19 Sep 2022 15:29:11 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:53:09 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -580,9 +567,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Mon, 19 Sep 2022 15:29:10 GMT", - "ETag": "\u00220x8DA99D38B9635B3\u0022", - "Last-Modified": "Mon, 19 Sep 2022 00:11:48 GMT", + "Date": "Fri, 23 Sep 2022 15:53:07 GMT", + "ETag": "\u00220x8DA9D770C570D84\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:19:46 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -591,32 +578,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Mon, 19 Sep 2022 00:11:48 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:19:45 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "e2d419b6-f25f-4f23-a531-d35e01a30e95", + "x-ms-meta-name": "8c59cb92-112f-4c04-bda0-1342b610850d", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "0784d99d-73a6-45be-88ef-747ff5cdce30", + "x-ms-meta-version": "c1f97989-616d-4b90-a0d6-bac9ea34bade", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Mon, 19 Sep 2022 15:29:11 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:53:09 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Mon, 19 Sep 2022 15:29:10 GMT", + "Date": "Fri, 23 Sep 2022 15:53:07 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -624,26 +611,26 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_964407574539?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_210388859900?api-version=2022-06-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1844", + "Content-Length": "1862", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { "properties": {}, "tags": {}, - "displayName": "test_964407574539", + "displayName": "test_210388859900", "experimentName": "azure-ai-ml", "isArchived": false, "jobType": "Pipeline", @@ -703,8 +690,9 @@ "mode": "Upload" } }, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a63ca93f-bb5e-40e8-94bf-5fc6daafa50a" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2f0e9e0e-6ff3-4460-8b8e-83ecd8827a38" } }, "outputs": { @@ -721,26 +709,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4407", + "Content-Length": "4427", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:29:16 GMT", + "Date": "Fri, 23 Sep 2022 15:53:14 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_964407574539?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_210388859900?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-1ddcb38a5cabe416d3bc8f606a68c8eb-b2ca826f25133ab6-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-d43135aebd43ad1c27cf07207300ca65-635ea50959502c4e-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "acbec98f-ac0e-47d1-bb43-0e87a4271808", - "x-ms-ratelimit-remaining-subscription-writes": "1175", + "x-ms-correlation-request-id": "e746e35e-b57f-4ac0-99bd-de175b1fc8a4", + "x-ms-ratelimit-remaining-subscription-writes": "1176", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152917Z:acbec98f-ac0e-47d1-bb43-0e87a4271808", - "x-request-time": "2.534" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T155315Z:e746e35e-b57f-4ac0-99bd-de175b1fc8a4", + "x-request-time": "3.287" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_964407574539", - "name": "test_964407574539", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_210388859900", + "name": "test_210388859900", "type": "Microsoft.MachineLearningServices/workspaces/jobs", "properties": { "description": null, @@ -756,14 +744,14 @@ "azureml.defaultDataStoreName": "workspaceblobstore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_964407574539", + "displayName": "test_210388859900", "status": "Preparing", "experimentName": "azure-ai-ml", "services": { "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null @@ -771,7 +759,7 @@ "Studio": { "jobServiceType": "Studio", "port": null, - "endpoint": "https://ml.azure.com/runs/test_964407574539?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "endpoint": "https://ml.azure.com/runs/test_210388859900?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, "properties": null @@ -822,8 +810,9 @@ "mode": "Upload" } }, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a63ca93f-bb5e-40e8-94bf-5fc6daafa50a" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/2f0e9e0e-6ff3-4460-8b8e-83ecd8827a38" } }, "inputs": { @@ -860,14 +849,14 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-19T15:29:16.6878372\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:53:14.737386\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } } ], "Variables": { - "name": "test_964407574539" + "name": "test_210388859900" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_with_only_setting_binding_node.json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_with_only_setting_binding_node.json index c979af8fde25..1dfa1c0b0304 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_with_only_setting_binding_node.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_with_only_setting_binding_node.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,39 +15,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:52:20 GMT", + "Date": "Fri, 23 Sep 2022 15:51:56 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-b27366ec47402d33e98e08ccf13b448c-10371ee2bdbf2ede-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-4e26399bff48dba1366da5a5ed6de3d2-644e896c9ed6c2dc-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c43efcd2-9d9b-4ee4-a20c-6c8e1c5b3b22", - "x-ms-ratelimit-remaining-subscription-reads": "11768", + "x-ms-correlation-request-id": "2502e2a8-8821-45db-9185-d82b2997e6eb", + "x-ms-ratelimit-remaining-subscription-reads": "11963", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195220Z:c43efcd2-9d9b-4ee4-a20c-6c8e1c5b3b22", - "x-request-time": "0.050" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T155156Z:2502e2a8-8821-45db-9185-d82b2997e6eb", + "x-request-time": "0.035" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.912489\u002B00:00", - "modifiedOn": "2022-09-15T03:11:50.5830108\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "eastus2", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -60,18 +60,18 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 4, + "currentNodeCount": 1, + "targetNodeCount": 1, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 4, - "idleNodeCount": 0, + "runningNodeCount": 0, + "idleNodeCount": 1, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-16T19:44:21.123\u002B00:00", + "allocationStateTransitionTime": "2022-09-23T15:47:48.622\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -89,7 +89,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -97,24 +97,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:52:21 GMT", + "Date": "Fri, 23 Sep 2022 15:51:59 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-84d92cc204224fc6acf52482f9bc9803-4a0b845e4a6362e2-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-80b16303a9016ecc1ca5ff6923073632-356faf21232c2357-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b4deadce-63fa-446c-9b85-41faa95b342f", - "x-ms-ratelimit-remaining-subscription-reads": "11767", + "x-ms-correlation-request-id": "a7009d92-8e0e-4117-8d42-2bca190a57ad", + "x-ms-ratelimit-remaining-subscription-reads": "11962", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195221Z:b4deadce-63fa-446c-9b85-41faa95b342f", - "x-request-time": "0.078" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T155159Z:a7009d92-8e0e-4117-8d42-2bca190a57ad", + "x-request-time": "0.080" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -129,17 +129,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -153,7 +153,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -161,21 +161,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:52:23 GMT", + "Date": "Fri, 23 Sep 2022 15:52:00 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-46f492244070aa7cec37aa5d7a30d2d8-9d9ef29ce2831a70-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-6ea923d1e1026877fe365323ebb78110-415499ef5fdc20c8-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "aecb41fa-c8e7-422b-a2ae-1dc8b3e1b403", - "x-ms-ratelimit-remaining-subscription-writes": "1071", + "x-ms-correlation-request-id": "a858df34-1183-4476-8962-17e9f6a52085", + "x-ms-ratelimit-remaining-subscription-writes": "1167", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195223Z:aecb41fa-c8e7-422b-a2ae-1dc8b3e1b403", - "x-request-time": "0.104" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T155201Z:a858df34-1183-4476-8962-17e9f6a52085", + "x-request-time": "0.088" }, "ResponseBody": { "secretsType": "AccountKey", @@ -183,45 +183,15 @@ } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/mfeOperationResults/jc:a6d5a3b8-8717-4928-b8f7-4c9f36d21085:test_652839511638?api-version=2022-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Fri, 16 Sep 2022 19:52:23 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-1ea1008a2207d5682fb354114c5e89f9-f96d6a81099aa2b4-01\u0022", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "db03ccbb-d8fa-4dc8-b2f7-84fe8940bac8", - "x-ms-ratelimit-remaining-subscription-reads": "11968", - "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195223Z:db03ccbb-d8fa-4dc8-b2f7-84fe8940bac8", - "x-request-time": "0.079" - }, - "ResponseBody": null - }, - { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/train_src/train.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/train_src/train.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:52:22 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:52:03 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -230,9 +200,9 @@ "Content-Length": "1502", "Content-MD5": "zAix1RSwqgjraik/VOQjSg==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:52:22 GMT", - "ETag": "\u00220x8DA96C8A5875023\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:16:14 GMT", + "Date": "Fri, 23 Sep 2022 15:52:02 GMT", + "ETag": "\u00220x8DA9D7B70E8EC67\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:51:12 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -241,32 +211,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:16:14 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:51:12 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "76b899b0-a694-4624-a9e5-b0f4f6464cad", + "x-ms-meta-name": "000000000000000000000", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/train_src/train.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/train_src/train.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:52:22 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:52:04 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:52:22 GMT", + "Date": "Fri, 23 Sep 2022 15:52:02 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -274,12 +244,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/76b899b0-a694-4624-a9e5-b0f4f6464cad/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -287,7 +257,7 @@ "Connection": "keep-alive", "Content-Length": "298", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -297,7 +267,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/train_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/train_src" } }, "StatusCode": 200, @@ -305,27 +275,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:52:23 GMT", + "Date": "Fri, 23 Sep 2022 15:52:03 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-e48f8b4fc02ee7d08ec719f76a73e23c-11c860ba0cc13d2c-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-937f526293a004f5f46ba093e96f10cc-5b301e636f072735-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fc60f945-c6f4-46b0-852e-174f76ffdcb0", - "x-ms-ratelimit-remaining-subscription-writes": "1182", + "x-ms-correlation-request-id": "da79d934-6b19-43b6-82d2-ea199a70bf84", + "x-ms-ratelimit-remaining-subscription-writes": "1184", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195224Z:fc60f945-c6f4-46b0-852e-174f76ffdcb0", - "x-request-time": "0.079" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T155203Z:da79d934-6b19-43b6-82d2-ea199a70bf84", + "x-request-time": "0.156" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/76b899b0-a694-4624-a9e5-b0f4f6464cad/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -337,14 +307,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/train_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/train_src" }, "systemData": { - "createdAt": "2022-09-15T03:16:14.6600574\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-16T19:52:24.0308957\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:51:13.8769644\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T15:52:03.8280673\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -356,9 +326,9 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1429", + "Content-Length": "1414", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -369,7 +339,7 @@ "isArchived": false, "componentSpec": { "command": "python train.py --training_data ${{inputs.training_data}} $[[--max_epochs ${{inputs.max_epochs}}]] --learning_rate ${{inputs.learning_rate}} --learning_rate_schedule ${{inputs.learning_rate_schedule}} --model_output ${{outputs.model_output}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/76b899b0-a694-4624-a9e5-b0f4f6464cad/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "name": "azureml_anonymous", "description": "A dummy training component", @@ -408,26 +378,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2456", + "Content-Length": "2439", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:52:25 GMT", + "Date": "Fri, 23 Sep 2022 15:52:05 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-47649b5fa4047c5ca803a3655fb3c922-ee333be7d58e1697-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-8c621e946b17e91a7be462f6fcd3aedb-a76488801d78c870-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "19e816be-906c-4849-b78d-2f058e881a25", - "x-ms-ratelimit-remaining-subscription-writes": "1181", + "x-ms-correlation-request-id": "6effd7c9-3357-4053-bf57-03b6969c3c64", + "x-ms-ratelimit-remaining-subscription-writes": "1183", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195226Z:19e816be-906c-4849-b78d-2f058e881a25", - "x-request-time": "0.414" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T155205Z:6effd7c9-3357-4053-bf57-03b6969c3c64", + "x-request-time": "0.381" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1b3c9e54-cf15-46bf-87be-2dcabac6c4fb", - "name": "1b3c9e54-cf15-46bf-87be-2dcabac6c4fb", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/58c537a2-1443-41b5-a294-955f3307d78d", + "name": "58c537a2-1443-41b5-a294-955f3307d78d", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -437,7 +407,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "1b3c9e54-cf15-46bf-87be-2dcabac6c4fb", + "version": "58c537a2-1443-41b5-a294-955f3307d78d", "display_name": "Train Model", "is_deterministic": "True", "type": "command", @@ -467,7 +437,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/76b899b0-a694-4624-a9e5-b0f4f6464cad/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -477,11 +447,11 @@ } }, "systemData": { - "createdAt": "2022-09-16T03:25:11.5302547\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:51:15.3559889\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T03:25:11.7395881\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:51:15.6047589\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -493,7 +463,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -501,24 +471,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:52:26 GMT", + "Date": "Fri, 23 Sep 2022 15:52:07 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-086684539a4cfca53d1f830c18213106-b525793cfc105f07-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-4e433da254adc8b455e03336187b2747-0b1e6d53ef3f0c45-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "120be84c-e315-4834-90c1-da2437a511a3", - "x-ms-ratelimit-remaining-subscription-reads": "11967", + "x-ms-correlation-request-id": "df1d5173-2235-4c53-a776-52e3d7a5cd90", + "x-ms-ratelimit-remaining-subscription-reads": "11961", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195226Z:120be84c-e315-4834-90c1-da2437a511a3", - "x-request-time": "0.100" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T155207Z:df1d5173-2235-4c53-a776-52e3d7a5cd90", + "x-request-time": "0.083" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -533,17 +503,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -557,7 +527,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -565,21 +535,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:52:26 GMT", + "Date": "Fri, 23 Sep 2022 15:52:07 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-62a25b7311883346a56368343a190617-1b9be75feeee2cf6-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-0758a96f88f73cea74fc8a49dc4e9f48-83e2ca63a75f467d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "d770b011-3740-4b5a-89b5-109847d9e37a", - "x-ms-ratelimit-remaining-subscription-writes": "1176", + "x-ms-correlation-request-id": "b4597075-4bf2-4505-875d-5afd3ce3dfee", + "x-ms-ratelimit-remaining-subscription-writes": "1166", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195226Z:d770b011-3740-4b5a-89b5-109847d9e37a", - "x-request-time": "0.093" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T155208Z:b4597075-4bf2-4505-875d-5afd3ce3dfee", + "x-request-time": "0.094" }, "ResponseBody": { "secretsType": "AccountKey", @@ -587,15 +557,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:52:25 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:52:11 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -604,9 +574,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:52:25 GMT", - "ETag": "\u00220x8DA96C8A69D2BBA\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:16:15 GMT", + "Date": "Fri, 23 Sep 2022 15:52:08 GMT", + "ETag": "\u00220x8DA9D770C570D84\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:19:46 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -615,32 +585,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:16:15 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:19:45 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "e95adacf-11cf-47c5-85eb-199ded56347d", + "x-ms-meta-name": "8c59cb92-112f-4c04-bda0-1342b610850d", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "a26e0dac-f124-4247-b13c-6e81f9a28197", + "x-ms-meta-version": "c1f97989-616d-4b90-a0d6-bac9ea34bade", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:52:25 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:52:11 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:52:25 GMT", + "Date": "Fri, 23 Sep 2022 15:52:09 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -648,26 +618,26 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_303691556780?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_412797338495?api-version=2022-06-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1798", + "Content-Length": "1816", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { "properties": {}, "tags": {}, - "displayName": "test_303691556780", + "displayName": "test_412797338495", "experimentName": "azure-ai-ml", "isArchived": false, "jobType": "Pipeline", @@ -726,160 +696,9 @@ "mode": "Upload" } }, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1b3c9e54-cf15-46bf-87be-2dcabac6c4fb" - } - }, - "outputs": { - "trained_model": { - "jobOutputType": "uri_folder" - } - }, - "settings": { - "_source": "YAML.JOB" - } - } - }, - "StatusCode": 504, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Connection": "close", - "Content-Length": "1264", - "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:53:01 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "94270690-6f64-4e46-8fb2-b628755900c4", - "x-ms-failure-cause": "service", - "x-ms-ratelimit-remaining-subscription-writes": "1180", - "x-ms-response-type": "error", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195301Z:94270690-6f64-4e46-8fb2-b628755900c4", - "x-request-time": "31.439" - }, - "ResponseBody": { - "error": { - "code": "TransientError", - "message": "Service invocation timed out. \r\nRequest: POST eastus2euap.api.azureml.ms/studioservice/api/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/workspaces/00000/PipelineRuns/SubmitUnsavedPipelineRunWithGraph \r\n Message: Time waited: 00:00:30.0015911", - "target": "POST https://eastus2euap.api.azureml.ms/studioservice/api/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/workspaces/00000/PipelineRuns/SubmitUnsavedPipelineRunWithGraph", - "details": [], - "additionalInfo": [ - { - "type": "ComponentName", - "info": { - "value": "managementfrontend" - } - }, - { - "type": "Correlation", - "info": { - "value": { - "operation": "019f84873e868ec6a729137f7d427214", - "request": "510dd0cd80b166e3" - } - } - }, - { - "type": "Environment", - "info": { - "value": "eastus2euap" - } - }, - { - "type": "Location", - "info": { - "value": "eastus2euap" - } - }, - { - "type": "Time", - "info": { - "value": "2022-09-16T19:53:01.5634472\u002B00:00" - } - } - ] - } - } - }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_303691556780?api-version=2022-06-01-preview", - "RequestMethod": "PUT", - "RequestHeaders": { - "Accept": "application/json", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "Content-Length": "1798", - "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" - }, - "RequestBody": { - "properties": { - "properties": {}, - "tags": {}, - "displayName": "test_303691556780", - "experimentName": "azure-ai-ml", - "isArchived": false, - "jobType": "Pipeline", - "inputs": { - "training_input": { - "uri": "azureml://datastores/workspaceblobstore/paths/LocalUpload/00000000000000000000000000000000/data/", - "jobInputType": "uri_folder" - }, - "training_max_epochs": { - "jobInputType": "literal", - "value": "20" - }, - "training_learning_rate": { - "jobInputType": "literal", - "value": "1.8" - }, - "learning_rate_schedule": { - "jobInputType": "literal", - "value": "time-based" - } - }, - "jobs": { - "train_job": { - "resources": null, - "distribution": null, - "limits": null, - "environment_variables": {}, - "name": "train_job", - "type": "command", - "display_name": null, - "tags": {}, - "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", - "inputs": { - "training_data": { - "job_input_type": "literal", - "value": "${{parent.inputs.training_input}}", - "mode": "ReadOnlyMount" - }, - "max_epochs": { - "job_input_type": "literal", - "value": "${{parent.inputs.training_max_epochs}}" - }, - "learning_rate": { - "job_input_type": "literal", - "value": "${{parent.inputs.training_learning_rate}}" - }, - "learning_rate_schedule": { - "job_input_type": "literal", - "value": "${{parent.inputs.learning_rate_schedule}}" - } - }, - "outputs": { - "model_output": { - "value": "${{parent.outputs.trained_model}}", - "type": "literal", - "mode": "Upload" - } - }, - "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1b3c9e54-cf15-46bf-87be-2dcabac6c4fb" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/58c537a2-1443-41b5-a294-955f3307d78d" } }, "outputs": { @@ -895,26 +714,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4412", + "Content-Length": "4433", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:53:04 GMT", + "Date": "Fri, 23 Sep 2022 15:52:16 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_303691556780?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_412797338495?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-aab658aa79dcef65ae87d5be728b623a-63123d0f91fbfac0-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-c3e9c187f37570d6acaf5d9834782bc2-014acb17514d0493-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "3798c338-d7ed-4b81-bbda-bae9a3afdeec", - "x-ms-ratelimit-remaining-subscription-writes": "1038", + "x-ms-correlation-request-id": "b2500bc2-9ed6-4644-8b66-c156428dcf05", + "x-ms-ratelimit-remaining-subscription-writes": "1182", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195305Z:3798c338-d7ed-4b81-bbda-bae9a3afdeec", - "x-request-time": "3.228" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T155217Z:b2500bc2-9ed6-4644-8b66-c156428dcf05", + "x-request-time": "3.160" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_303691556780", - "name": "test_303691556780", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_412797338495", + "name": "test_412797338495", "type": "Microsoft.MachineLearningServices/workspaces/jobs", "properties": { "description": null, @@ -930,14 +749,14 @@ "azureml.defaultDataStoreName": "workspaceblobstore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_303691556780", + "displayName": "test_412797338495", "status": "Preparing", "experimentName": "azure-ai-ml", "services": { "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null @@ -945,7 +764,7 @@ "Studio": { "jobServiceType": "Studio", "port": null, - "endpoint": "https://ml.azure.com/runs/test_303691556780?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "endpoint": "https://ml.azure.com/runs/test_412797338495?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, "properties": null @@ -996,8 +815,9 @@ "mode": "Upload" } }, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1b3c9e54-cf15-46bf-87be-2dcabac6c4fb" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/58c537a2-1443-41b5-a294-955f3307d78d" } }, "inputs": { @@ -1034,14 +854,14 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-16T19:53:04.5519026\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:52:16.9479757\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } } ], "Variables": { - "name": "test_303691556780" + "name": "test_412797338495" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_with_only_setting_pipeline_level.json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_with_only_setting_pipeline_level.json index e6c824d2e085..e4efb86bd51c 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_with_only_setting_pipeline_level.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_with_only_setting_pipeline_level.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,39 +15,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:52:07 GMT", + "Date": "Fri, 23 Sep 2022 15:51:31 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-e8046de5d13ecba170aa77eebecea38a-7ead9d0ebc552e17-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-b449ac4c648499e8ae9f3275858a18f0-905bbebd8d6a12e2-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "58a0a401-b891-4193-9f8c-766036580ba5", - "x-ms-ratelimit-remaining-subscription-reads": "11771", + "x-ms-correlation-request-id": "1a176eec-da79-42b7-97f5-7a53a99b0102", + "x-ms-ratelimit-remaining-subscription-reads": "11966", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195207Z:58a0a401-b891-4193-9f8c-766036580ba5", - "x-request-time": "0.048" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T155131Z:1a176eec-da79-42b7-97f5-7a53a99b0102", + "x-request-time": "0.035" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.912489\u002B00:00", - "modifiedOn": "2022-09-15T03:11:50.5830108\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "eastus2", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -60,18 +60,18 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 4, + "currentNodeCount": 1, + "targetNodeCount": 1, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 4, - "idleNodeCount": 0, + "runningNodeCount": 0, + "idleNodeCount": 1, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-16T19:44:21.123\u002B00:00", + "allocationStateTransitionTime": "2022-09-23T15:47:48.622\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -89,7 +89,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -97,24 +97,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:52:08 GMT", + "Date": "Fri, 23 Sep 2022 15:51:35 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-46309a1c4567efe3a126b7b309ba4445-4a3ea84d47d423ec-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-e39fc9a4fbaebc9b105aa52e3822dbe0-aa1148d22558544f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ccef40c7-c427-411f-85c8-95cd836daee2", - "x-ms-ratelimit-remaining-subscription-reads": "11770", + "x-ms-correlation-request-id": "2c7d5908-0035-4dc5-b92d-274d7cdf2931", + "x-ms-ratelimit-remaining-subscription-reads": "11965", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195208Z:ccef40c7-c427-411f-85c8-95cd836daee2", - "x-request-time": "0.084" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T155135Z:2c7d5908-0035-4dc5-b92d-274d7cdf2931", + "x-request-time": "0.156" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -129,17 +129,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -153,7 +153,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -161,21 +161,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:52:08 GMT", + "Date": "Fri, 23 Sep 2022 15:51:36 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-c8b351b614928c3d86921621da2ce183-0b83672cdaeda02a-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-bd19d1aaab0351241ce00d7bb99927f4-2658b61b2ebdccc4-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "95fd31c1-39be-41af-9e3c-6f2191657785", - "x-ms-ratelimit-remaining-subscription-writes": "1073", + "x-ms-correlation-request-id": "d9a84a15-402d-46cc-b1ad-730ad083a26a", + "x-ms-ratelimit-remaining-subscription-writes": "1169", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195209Z:95fd31c1-39be-41af-9e3c-6f2191657785", - "x-request-time": "0.088" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T155136Z:d9a84a15-402d-46cc-b1ad-730ad083a26a", + "x-request-time": "0.103" }, "ResponseBody": { "secretsType": "AccountKey", @@ -183,15 +183,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/train_src/train.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/train_src/train.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:52:07 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:51:38 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -200,9 +200,9 @@ "Content-Length": "1502", "Content-MD5": "zAix1RSwqgjraik/VOQjSg==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:52:08 GMT", - "ETag": "\u00220x8DA96C8A5875023\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:16:14 GMT", + "Date": "Fri, 23 Sep 2022 15:51:36 GMT", + "ETag": "\u00220x8DA9D7B70E8EC67\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:51:12 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -211,32 +211,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:16:14 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:51:12 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "76b899b0-a694-4624-a9e5-b0f4f6464cad", + "x-ms-meta-name": "000000000000000000000", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/train_src/train.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/train_src/train.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:52:08 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:51:38 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:52:08 GMT", + "Date": "Fri, 23 Sep 2022 15:51:36 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -244,12 +244,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/76b899b0-a694-4624-a9e5-b0f4f6464cad/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -257,7 +257,7 @@ "Connection": "keep-alive", "Content-Length": "298", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -267,7 +267,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/train_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/train_src" } }, "StatusCode": 200, @@ -275,27 +275,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:52:09 GMT", + "Date": "Fri, 23 Sep 2022 15:51:38 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-00c0b26302905362ed66c295be6dd6f3-32af7549b49eb047-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-30bee384b23ae3f33a4904c2e4387c9a-d61a450c1fb4bb47-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "8b41ee79-d578-4dd7-9bd3-6817b21110cd", - "x-ms-ratelimit-remaining-subscription-writes": "1041", + "x-ms-correlation-request-id": "2b9b6926-a431-40a8-a39a-dc2f494940d5", + "x-ms-ratelimit-remaining-subscription-writes": "1187", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195209Z:8b41ee79-d578-4dd7-9bd3-6817b21110cd", - "x-request-time": "0.092" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T155138Z:2b9b6926-a431-40a8-a39a-dc2f494940d5", + "x-request-time": "0.145" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/76b899b0-a694-4624-a9e5-b0f4f6464cad/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -307,48 +307,18 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/train_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/train_src" }, "systemData": { - "createdAt": "2022-09-15T03:16:14.6600574\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-16T19:52:09.3128013\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:51:13.8769644\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T15:51:37.9051754\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, - { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/mfeOperationResults/jc:a6d5a3b8-8717-4928-b8f7-4c9f36d21085:test_953864231847?api-version=2022-06-01-preview", - "RequestMethod": "GET", - "RequestHeaders": { - "Accept": "*/*", - "Accept-Encoding": "gzip, deflate", - "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" - }, - "RequestBody": null, - "StatusCode": 200, - "ResponseHeaders": { - "Cache-Control": "no-cache", - "Content-Length": "0", - "Date": "Fri, 16 Sep 2022 19:52:10 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-030cf94f9c51415500b572e21e5fd49f-8049d1ff6a84d5aa-01\u0022", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "879f1e39-1cfb-483c-9b3c-528c85926c16", - "x-ms-ratelimit-remaining-subscription-reads": "11969", - "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195210Z:879f1e39-1cfb-483c-9b3c-528c85926c16", - "x-request-time": "0.033" - }, - "ResponseBody": null - }, { "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "RequestMethod": "PUT", @@ -356,9 +326,9 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1429", + "Content-Length": "1414", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -369,7 +339,7 @@ "isArchived": false, "componentSpec": { "command": "python train.py --training_data ${{inputs.training_data}} $[[--max_epochs ${{inputs.max_epochs}}]] --learning_rate ${{inputs.learning_rate}} --learning_rate_schedule ${{inputs.learning_rate_schedule}} --model_output ${{outputs.model_output}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/76b899b0-a694-4624-a9e5-b0f4f6464cad/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "name": "azureml_anonymous", "description": "A dummy training component", @@ -408,26 +378,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2456", + "Content-Length": "2439", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:52:10 GMT", + "Date": "Fri, 23 Sep 2022 15:51:39 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-0a17faf312e90f3c8a310dc5043fdc34-28621650111a69aa-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-67738b7bb79c869a5e644fe433c3e882-9e913f1ba02bced4-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f01ad3b8-f332-46cf-91b5-739ec6a1ed29", - "x-ms-ratelimit-remaining-subscription-writes": "1040", + "x-ms-correlation-request-id": "e08855fb-fe04-4d93-ab3f-879ccb9183d9", + "x-ms-ratelimit-remaining-subscription-writes": "1186", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195211Z:f01ad3b8-f332-46cf-91b5-739ec6a1ed29", - "x-request-time": "0.384" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T155139Z:e08855fb-fe04-4d93-ab3f-879ccb9183d9", + "x-request-time": "0.416" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1b3c9e54-cf15-46bf-87be-2dcabac6c4fb", - "name": "1b3c9e54-cf15-46bf-87be-2dcabac6c4fb", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/58c537a2-1443-41b5-a294-955f3307d78d", + "name": "58c537a2-1443-41b5-a294-955f3307d78d", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -437,7 +407,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "1b3c9e54-cf15-46bf-87be-2dcabac6c4fb", + "version": "58c537a2-1443-41b5-a294-955f3307d78d", "display_name": "Train Model", "is_deterministic": "True", "type": "command", @@ -467,7 +437,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/76b899b0-a694-4624-a9e5-b0f4f6464cad/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -477,11 +447,11 @@ } }, "systemData": { - "createdAt": "2022-09-16T03:25:11.5302547\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:51:15.3559889\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T03:25:11.7395881\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:51:15.6047589\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -493,7 +463,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -501,24 +471,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:52:10 GMT", + "Date": "Fri, 23 Sep 2022 15:51:39 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-94244aa512f22612b24a9b50d72800aa-f853f3fd0fa4e5ac-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-cb6464f9d60852f7dcb55678fef97b34-6ac4ca3c0bdc7278-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "89e16506-53f1-4127-912c-0f34be8a8cfa", - "x-ms-ratelimit-remaining-subscription-reads": "11769", + "x-ms-correlation-request-id": "5373aa64-27fc-48e0-8526-2b0401f9225b", + "x-ms-ratelimit-remaining-subscription-reads": "11964", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195211Z:89e16506-53f1-4127-912c-0f34be8a8cfa", - "x-request-time": "0.086" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T155139Z:5373aa64-27fc-48e0-8526-2b0401f9225b", + "x-request-time": "0.079" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -533,17 +503,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -557,7 +527,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -565,21 +535,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:52:11 GMT", + "Date": "Fri, 23 Sep 2022 15:51:40 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-62549121a7212b36e405e680812f28ad-ab7ea11eec9ab765-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-723c0b56f313a20901b25f060c53db3c-4361edc6e07f376c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "726299b2-93a2-412f-96e0-88550a8029f8", - "x-ms-ratelimit-remaining-subscription-writes": "1072", + "x-ms-correlation-request-id": "5ee3594d-ed32-49f3-9502-5fab4f397177", + "x-ms-ratelimit-remaining-subscription-writes": "1168", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195211Z:726299b2-93a2-412f-96e0-88550a8029f8", - "x-request-time": "0.096" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T155140Z:5ee3594d-ed32-49f3-9502-5fab4f397177", + "x-request-time": "0.157" }, "ResponseBody": { "secretsType": "AccountKey", @@ -587,15 +557,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:52:10 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:51:43 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -604,9 +574,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:52:10 GMT", - "ETag": "\u00220x8DA96C8A69D2BBA\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:16:15 GMT", + "Date": "Fri, 23 Sep 2022 15:51:40 GMT", + "ETag": "\u00220x8DA9D770C570D84\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:19:46 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -615,32 +585,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:16:15 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:19:45 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "e95adacf-11cf-47c5-85eb-199ded56347d", + "x-ms-meta-name": "8c59cb92-112f-4c04-bda0-1342b610850d", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "a26e0dac-f124-4247-b13c-6e81f9a28197", + "x-ms-meta-version": "c1f97989-616d-4b90-a0d6-bac9ea34bade", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:52:10 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:51:43 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:52:10 GMT", + "Date": "Fri, 23 Sep 2022 15:51:41 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -648,26 +618,26 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_515187649697?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_579348350690?api-version=2022-06-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1798", + "Content-Length": "1816", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { "properties": {}, "tags": {}, - "displayName": "test_515187649697", + "displayName": "test_579348350690", "experimentName": "azure-ai-ml", "isArchived": false, "jobType": "Pipeline", @@ -725,8 +695,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1b3c9e54-cf15-46bf-87be-2dcabac6c4fb" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/58c537a2-1443-41b5-a294-955f3307d78d" } }, "outputs": { @@ -743,26 +714,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4337", + "Content-Length": "4358", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:52:17 GMT", + "Date": "Fri, 23 Sep 2022 15:51:48 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_515187649697?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_579348350690?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-9e77d51a7ebf421e56074ed3b9aaf499-3fdd53bc74b4c811-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-8918c0e8cd4b6d040fff935593fedd2c-f25f3a1229c544d5-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "24f11bff-5a8c-4bc1-9923-188d46fbc2c9", - "x-ms-ratelimit-remaining-subscription-writes": "1039", + "x-ms-correlation-request-id": "7e1a0a6a-851f-4afd-b516-15b3571a5579", + "x-ms-ratelimit-remaining-subscription-writes": "1185", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195217Z:24f11bff-5a8c-4bc1-9923-188d46fbc2c9", - "x-request-time": "3.090" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T155148Z:7e1a0a6a-851f-4afd-b516-15b3571a5579", + "x-request-time": "3.127" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_515187649697", - "name": "test_515187649697", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_579348350690", + "name": "test_579348350690", "type": "Microsoft.MachineLearningServices/workspaces/jobs", "properties": { "description": null, @@ -778,14 +749,14 @@ "azureml.defaultDataStoreName": "workspaceblobstore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_515187649697", + "displayName": "test_579348350690", "status": "Preparing", "experimentName": "azure-ai-ml", "services": { "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null @@ -793,7 +764,7 @@ "Studio": { "jobServiceType": "Studio", "port": null, - "endpoint": "https://ml.azure.com/runs/test_515187649697?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "endpoint": "https://ml.azure.com/runs/test_579348350690?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, "properties": null @@ -842,8 +813,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1b3c9e54-cf15-46bf-87be-2dcabac6c4fb" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/58c537a2-1443-41b5-a294-955f3307d78d" } }, "inputs": { @@ -880,14 +852,14 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-16T19:52:17.3847355\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:51:48.5254314\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } } ], "Variables": { - "name": "test_515187649697" + "name": "test_579348350690" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_with_pipeline_component.json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_with_pipeline_component.json index 700409897329..50b4300f7e52 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_with_pipeline_component.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_with_pipeline_component.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,39 +15,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:53:34 GMT", + "Date": "Mon, 26 Sep 2022 08:37:02 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-e2ab55f31c4d66d6443ee74c35e7faac-a33bb084c00d5719-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-ea86d21439a8456111ecfc96557a9c3a-3d127efc72f3eb70-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5732c5a7-1be2-4bf1-8456-fd7bc6f2b55a", - "x-ms-ratelimit-remaining-subscription-reads": "11760", + "x-ms-correlation-request-id": "dcb36b2c-30db-442e-911d-4750f163e51d", + "x-ms-ratelimit-remaining-subscription-reads": "11996", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195334Z:5732c5a7-1be2-4bf1-8456-fd7bc6f2b55a", - "x-request-time": "0.057" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T083702Z:dcb36b2c-30db-442e-911d-4750f163e51d", + "x-request-time": "0.276" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.912489\u002B00:00", - "modifiedOn": "2022-09-15T03:11:50.5830108\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "centraluseuap", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -56,22 +56,22 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 4, + "currentNodeCount": 1, + "targetNodeCount": 2, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 4, + "runningNodeCount": 1, "idleNodeCount": 0, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, - "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-16T19:44:21.123\u002B00:00", + "allocationState": "Resizing", + "allocationStateTransitionTime": "2022-09-26T08:35:24.254\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -89,7 +89,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -97,24 +97,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:53:35 GMT", + "Date": "Mon, 26 Sep 2022 08:37:04 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-bbf297a97e19bbe1c235b864861a8aaf-3364a3b3c68061f4-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-2b35e29a267f4ea205967790102f8b94-e5480b876fa21482-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "7db63fdf-0dc9-48a7-af00-f469f2379da6", - "x-ms-ratelimit-remaining-subscription-reads": "11759", + "x-ms-correlation-request-id": "ac22e26c-0f37-44a7-8782-0646584404f8", + "x-ms-ratelimit-remaining-subscription-reads": "11995", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195335Z:7db63fdf-0dc9-48a7-af00-f469f2379da6", - "x-request-time": "0.086" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T083705Z:ac22e26c-0f37-44a7-8782-0646584404f8", + "x-request-time": "0.102" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -129,17 +129,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -153,7 +153,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -161,21 +161,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:53:35 GMT", + "Date": "Mon, 26 Sep 2022 08:37:05 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-33d282091d103be0233a79b8ef6242bd-072efcac1298eddf-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-ef239e13b819177b0860c1c0e1992d4a-a62a1622c178a440-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "05058e90-275f-44e8-a3b0-4b7fbacf4fa9", - "x-ms-ratelimit-remaining-subscription-writes": "1066", + "x-ms-correlation-request-id": "8ed4eb62-8f31-43b8-bf71-81fb465320d5", + "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195335Z:05058e90-275f-44e8-a3b0-4b7fbacf4fa9", - "x-request-time": "0.094" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T083706Z:8ed4eb62-8f31-43b8-bf71-81fb465320d5", + "x-request-time": "0.207" }, "ResponseBody": { "secretsType": "AccountKey", @@ -183,26 +183,26 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/train_src/train.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/train_src/train.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:53:34 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Mon, 26 Sep 2022 08:37:06 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Accept-Ranges": "bytes", - "Content-Length": "1502", - "Content-MD5": "EQ00rYDpw0NQnGfvdnx9Rw==", + "Content-Length": "1459", + "Content-MD5": "AopRoh0TIOT2l3zRkNs9IQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:53:34 GMT", - "ETag": "\u00220x8DA96C8B5E9B6F9\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:16:41 GMT", + "Date": "Mon, 26 Sep 2022 08:37:06 GMT", + "ETag": "\u00220x8DA9F7B8DD71155\u0022", + "Last-Modified": "Mon, 26 Sep 2022 04:57:03 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -211,32 +211,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:16:41 GMT", + "x-ms-creation-time": "Mon, 26 Sep 2022 04:57:03 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "2cabb61f-ca8b-4ea7-87c9-1f74be564f7d", + "x-ms-meta-name": "f2eacb43-fef3-4e78-9f5b-5b62a785f2ef", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/train_src/train.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/train_src/train.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:53:34 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Mon, 26 Sep 2022 08:37:07 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:53:35 GMT", + "Date": "Mon, 26 Sep 2022 08:37:06 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -244,12 +244,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2cabb61f-ca8b-4ea7-87c9-1f74be564f7d/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f2eacb43-fef3-4e78-9f5b-5b62a785f2ef/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -257,7 +257,7 @@ "Connection": "keep-alive", "Content-Length": "298", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -267,7 +267,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/train_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/train_src" } }, "StatusCode": 200, @@ -275,27 +275,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:53:36 GMT", + "Date": "Mon, 26 Sep 2022 08:37:09 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-6d81e8c8f8f0bb6704ab169061c12704-b0b627c415fa2dea-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-514695cfa583c9dbbd75c09732bf87cf-4a467bba3015a971-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "f7f98e51-31b6-40ac-acc7-6e005aed68f3", - "x-ms-ratelimit-remaining-subscription-writes": "1031", + "x-ms-correlation-request-id": "86a33c8c-f891-45db-8177-86f20e83d2f4", + "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195336Z:f7f98e51-31b6-40ac-acc7-6e005aed68f3", - "x-request-time": "0.084" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T083709Z:86a33c8c-f891-45db-8177-86f20e83d2f4", + "x-request-time": "0.813" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2cabb61f-ca8b-4ea7-87c9-1f74be564f7d/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f2eacb43-fef3-4e78-9f5b-5b62a785f2ef/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -307,14 +307,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/train_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/train_src" }, "systemData": { - "createdAt": "2022-09-15T03:16:41.7448483\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-16T19:53:36.081069\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-26T04:57:04.6712132\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-26T08:37:09.4311871\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -328,7 +328,7 @@ "Connection": "keep-alive", "Content-Length": "1435", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -339,7 +339,7 @@ "isArchived": false, "componentSpec": { "command": "python train.py --training_data ${{inputs.training_data}} $[[--max_epochs ${{inputs.max_epochs}}]] --learning_rate ${{inputs.learning_rate}} --learning_rate_schedule ${{inputs.learning_rate_schedule}} --model_output ${{outputs.model_output}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2cabb61f-ca8b-4ea7-87c9-1f74be564f7d/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f2eacb43-fef3-4e78-9f5b-5b62a785f2ef/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "name": "azureml_anonymous", "description": "A dummy training component", @@ -378,26 +378,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2513", + "Content-Length": "2454", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:53:37 GMT", + "Date": "Mon, 26 Sep 2022 08:37:12 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-8508f3e565940a081aae944f5614d055-ea1d9f1e7a5b8a32-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-fb7ffa766017f973a8651e80c2fece49-853bdece952e1aec-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "83a612d3-81d9-4ae0-94af-eee5a9798176", - "x-ms-ratelimit-remaining-subscription-writes": "1030", + "x-ms-correlation-request-id": "f69dd6e4-105b-4b5e-9b72-9b9f8cbd88a0", + "x-ms-ratelimit-remaining-subscription-writes": "1198", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195337Z:83a612d3-81d9-4ae0-94af-eee5a9798176", - "x-request-time": "0.303" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T083712Z:f69dd6e4-105b-4b5e-9b72-9b9f8cbd88a0", + "x-request-time": "1.991" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/28bfe7e7-831e-4ca9-9f64-51d75909f647", - "name": "28bfe7e7-831e-4ca9-9f64-51d75909f647", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/53fb7724-62e3-4322-a500-839056a8d805", + "name": "53fb7724-62e3-4322-a500-839056a8d805", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -407,7 +407,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "28bfe7e7-831e-4ca9-9f64-51d75909f647", + "version": "53fb7724-62e3-4322-a500-839056a8d805", "display_name": "Train Model", "is_deterministic": "True", "type": "command", @@ -437,7 +437,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2cabb61f-ca8b-4ea7-87c9-1f74be564f7d/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f2eacb43-fef3-4e78-9f5b-5b62a785f2ef/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -447,12 +447,12 @@ } }, "systemData": { - "createdAt": "2022-09-15T03:16:42.235074\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:16:42.4316309\u002B00:00", - "lastModifiedBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "lastModifiedByType": "Application" + "createdAt": "2022-09-26T04:57:07.2245293\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-26T04:57:07.6687591\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", + "lastModifiedByType": "User" } } }, @@ -463,7 +463,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -471,24 +471,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:53:37 GMT", + "Date": "Mon, 26 Sep 2022 08:37:12 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-b35ab93006ecbd094339afa1ba66ae4a-bda2996558c434c2-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-d4ce02393081b8d121e16a2d442ad074-896829f7713a0165-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ff7cfd04-5f3b-4938-8f4c-e6336a3b61ba", - "x-ms-ratelimit-remaining-subscription-reads": "11758", + "x-ms-correlation-request-id": "5b46a92d-4258-4b8a-9e09-8cde318edffa", + "x-ms-ratelimit-remaining-subscription-reads": "11994", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195337Z:ff7cfd04-5f3b-4938-8f4c-e6336a3b61ba", - "x-request-time": "0.077" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T083713Z:5b46a92d-4258-4b8a-9e09-8cde318edffa", + "x-request-time": "0.104" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -503,17 +503,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -527,7 +527,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -535,21 +535,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:53:37 GMT", + "Date": "Mon, 26 Sep 2022 08:37:13 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-40502a10fbae201cd075c35c840e9e1e-9169b9063636ad87-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-2358ea0e8d422c24cf37338a6e5bc277-fe749f6e431a406a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "850fbe0d-fa5f-4be2-bfc5-e86018fd0e5b", - "x-ms-ratelimit-remaining-subscription-writes": "1065", + "x-ms-correlation-request-id": "d2572f0b-4925-4898-8b1e-a42e615baca2", + "x-ms-ratelimit-remaining-subscription-writes": "1198", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195337Z:850fbe0d-fa5f-4be2-bfc5-e86018fd0e5b", - "x-request-time": "0.096" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T083714Z:d2572f0b-4925-4898-8b1e-a42e615baca2", + "x-request-time": "0.234" }, "ResponseBody": { "secretsType": "AccountKey", @@ -557,26 +557,26 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/score_src/score.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/score_src/score.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:53:36 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Mon, 26 Sep 2022 08:37:14 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Accept-Ranges": "bytes", - "Content-Length": "939", - "Content-MD5": "Q2DIK4bErnWv1LgcGzUh0A==", + "Content-Length": "910", + "Content-MD5": "\u002B1r7nD6TWo52vxs0R/FCxg==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:53:37 GMT", - "ETag": "\u00220x8DA96C8AC84EB16\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:16:25 GMT", + "Date": "Mon, 26 Sep 2022 08:37:13 GMT", + "ETag": "\u00220x8DA9F7B91FD3C58\u0022", + "Last-Modified": "Mon, 26 Sep 2022 04:57:10 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -585,32 +585,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:16:25 GMT", + "x-ms-creation-time": "Mon, 26 Sep 2022 04:57:10 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "941bc9f7-b1ae-46fa-8d9b-86f382a3b057", + "x-ms-meta-name": "284f77a7-5a19-4a67-bde7-4db6a6e4b1aa", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/score_src/score.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/score_src/score.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:53:37 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Mon, 26 Sep 2022 08:37:14 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:53:37 GMT", + "Date": "Mon, 26 Sep 2022 08:37:14 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -618,12 +618,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/941bc9f7-b1ae-46fa-8d9b-86f382a3b057/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/284f77a7-5a19-4a67-bde7-4db6a6e4b1aa/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -631,7 +631,7 @@ "Connection": "keep-alive", "Content-Length": "298", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -641,7 +641,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/score_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/score_src" } }, "StatusCode": 200, @@ -649,27 +649,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:53:38 GMT", + "Date": "Mon, 26 Sep 2022 08:37:14 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-724a2db8a9cea37317b5e346884885ad-496b7263ef8d098c-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-ea6eda634a9b293166bac2533b34a952-e5065b75c54ce6b2-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "daa8c527-9d3d-409c-8119-70540f60dfb7", - "x-ms-ratelimit-remaining-subscription-writes": "1029", + "x-ms-correlation-request-id": "c3f44907-05c4-44d7-8ac3-74e612ebdbd2", + "x-ms-ratelimit-remaining-subscription-writes": "1197", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195338Z:daa8c527-9d3d-409c-8119-70540f60dfb7", - "x-request-time": "0.116" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T083715Z:c3f44907-05c4-44d7-8ac3-74e612ebdbd2", + "x-request-time": "0.248" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/941bc9f7-b1ae-46fa-8d9b-86f382a3b057/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/284f77a7-5a19-4a67-bde7-4db6a6e4b1aa/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -681,14 +681,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/score_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/score_src" }, "systemData": { - "createdAt": "2022-09-15T03:16:25.9909208\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-16T19:53:38.8512076\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-26T04:57:11.4178827\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-26T08:37:15.2516383\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -702,7 +702,7 @@ "Connection": "keep-alive", "Content-Length": "1174", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -713,7 +713,7 @@ "isArchived": false, "componentSpec": { "command": "python score.py --model_input ${{inputs.model_input}} --test_data ${{inputs.test_data}} --score_output ${{outputs.score_output}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/941bc9f7-b1ae-46fa-8d9b-86f382a3b057/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/284f77a7-5a19-4a67-bde7-4db6a6e4b1aa/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "name": "azureml_anonymous", "description": "A dummy scoring component", @@ -743,26 +743,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2135", + "Content-Length": "2075", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:53:39 GMT", + "Date": "Mon, 26 Sep 2022 08:37:16 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-d59f5b6a117d8dea20e2163f4f73f961-ce6b86334cd6a2d4-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-e4b35b642ef3be46f19e02f8d53be834-49825058f88dc7ae-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "28852f78-4d9f-47df-8e74-977c46250c1b", - "x-ms-ratelimit-remaining-subscription-writes": "1028", + "x-ms-correlation-request-id": "dbd67afe-8d06-4cd9-a032-a65db11a3448", + "x-ms-ratelimit-remaining-subscription-writes": "1196", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195339Z:28852f78-4d9f-47df-8e74-977c46250c1b", - "x-request-time": "0.403" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T083717Z:dbd67afe-8d06-4cd9-a032-a65db11a3448", + "x-request-time": "1.249" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bc6b678b-21e4-428e-bfe2-717d04afa950", - "name": "bc6b678b-21e4-428e-bfe2-717d04afa950", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/57dff646-2a8f-497a-a36d-ffdb49dab46f", + "name": "57dff646-2a8f-497a-a36d-ffdb49dab46f", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -772,7 +772,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "bc6b678b-21e4-428e-bfe2-717d04afa950", + "version": "57dff646-2a8f-497a-a36d-ffdb49dab46f", "display_name": "Score Data", "is_deterministic": "True", "type": "command", @@ -792,7 +792,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/941bc9f7-b1ae-46fa-8d9b-86f382a3b057/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/284f77a7-5a19-4a67-bde7-4db6a6e4b1aa/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -802,12 +802,12 @@ } }, "systemData": { - "createdAt": "2022-09-15T03:16:43.7416455\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:16:43.9408174\u002B00:00", - "lastModifiedBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "lastModifiedByType": "Application" + "createdAt": "2022-09-26T04:57:13.5720427\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-26T04:57:14.0277035\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", + "lastModifiedByType": "User" } } }, @@ -818,7 +818,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -826,24 +826,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:53:39 GMT", + "Date": "Mon, 26 Sep 2022 08:37:17 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-1c41a0b9cbf2c32d9371988d9e5aa02b-d9a912b8ee5f7f82-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-11d490a445befb5802b46f9622c46a7a-d41eb5c01d282790-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6f615173-1529-4eca-8225-bf0b0c127041", - "x-ms-ratelimit-remaining-subscription-reads": "11757", + "x-ms-correlation-request-id": "ab637ed2-2c73-4abd-af49-4f85b6559b27", + "x-ms-ratelimit-remaining-subscription-reads": "11993", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195340Z:6f615173-1529-4eca-8225-bf0b0c127041", - "x-request-time": "0.083" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T083718Z:ab637ed2-2c73-4abd-af49-4f85b6559b27", + "x-request-time": "0.169" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -858,17 +858,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -882,7 +882,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -890,21 +890,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:53:40 GMT", + "Date": "Mon, 26 Sep 2022 08:37:19 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-bfa8fec9f35b8f3c8584b9d6b4907f9e-9b97bb280336d5d6-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-228ce8a92704e4155896559931651d4c-b44052fb3f7e98a0-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ef5fd623-8f93-4032-8f30-27918c8c0940", - "x-ms-ratelimit-remaining-subscription-writes": "1064", + "x-ms-correlation-request-id": "ad87d30c-4bd7-4feb-b732-0661bc5bce32", + "x-ms-ratelimit-remaining-subscription-writes": "1197", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195340Z:ef5fd623-8f93-4032-8f30-27918c8c0940", - "x-request-time": "0.093" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T083719Z:ad87d30c-4bd7-4feb-b732-0661bc5bce32", + "x-request-time": "0.115" }, "ResponseBody": { "secretsType": "AccountKey", @@ -912,26 +912,26 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/eval_src/eval.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/eval_src/eval.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:53:39 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Mon, 26 Sep 2022 08:37:19 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Accept-Ranges": "bytes", - "Content-Length": "795", - "Content-MD5": "DCyaJK0A7h/5O4tRl1ENtA==", + "Content-Length": "770", + "Content-MD5": "eVnVLloYfT16aDnyQ2oJnQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:53:39 GMT", - "ETag": "\u00220x8DA96C8B7BE5A14\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:16:44 GMT", + "Date": "Mon, 26 Sep 2022 08:37:19 GMT", + "ETag": "\u00220x8DA9F7B957DA2B3\u0022", + "Last-Modified": "Mon, 26 Sep 2022 04:57:16 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -940,32 +940,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:16:44 GMT", + "x-ms-creation-time": "Mon, 26 Sep 2022 04:57:16 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "70f1a735-2e10-46f8-a612-c40ea70cdc81", + "x-ms-meta-name": "074a4307-55b5-4b48-a411-5e42418db08c", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/eval_src/eval.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/eval_src/eval.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:53:39 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Mon, 26 Sep 2022 08:37:19 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:53:39 GMT", + "Date": "Mon, 26 Sep 2022 08:37:19 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -973,12 +973,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/70f1a735-2e10-46f8-a612-c40ea70cdc81/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/074a4307-55b5-4b48-a411-5e42418db08c/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -986,7 +986,7 @@ "Connection": "keep-alive", "Content-Length": "297", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -996,7 +996,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/eval_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/eval_src" } }, "StatusCode": 200, @@ -1004,27 +1004,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:53:40 GMT", + "Date": "Mon, 26 Sep 2022 08:37:21 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-b4ac24c63ef007a5ba6e47eee997dbb5-402af2e5752edb35-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-b3fa0d3543a916d5198dd1da8625cc5d-20bb112bd2a6315f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fe2c328f-8fb0-4ae7-b174-53266873abaa", - "x-ms-ratelimit-remaining-subscription-writes": "1027", + "x-ms-correlation-request-id": "59753863-a264-4c87-87f6-1fc49ef2df15", + "x-ms-ratelimit-remaining-subscription-writes": "1195", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195340Z:fe2c328f-8fb0-4ae7-b174-53266873abaa", - "x-request-time": "0.058" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T083721Z:59753863-a264-4c87-87f6-1fc49ef2df15", + "x-request-time": "0.252" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/70f1a735-2e10-46f8-a612-c40ea70cdc81/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/074a4307-55b5-4b48-a411-5e42418db08c/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -1036,14 +1036,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/eval_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/eval_src" }, "systemData": { - "createdAt": "2022-09-15T03:16:44.8365639\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-16T19:53:40.9485722\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-26T04:57:17.1654119\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-26T08:37:21.397064\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -1057,7 +1057,7 @@ "Connection": "keep-alive", "Content-Length": "1110", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -1068,7 +1068,7 @@ "isArchived": false, "componentSpec": { "command": "python eval.py --scoring_result ${{inputs.scoring_result}} --eval_output ${{outputs.eval_output}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/70f1a735-2e10-46f8-a612-c40ea70cdc81/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/074a4307-55b5-4b48-a411-5e42418db08c/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "name": "azureml_anonymous", "description": "A dummy evaluate component", @@ -1095,26 +1095,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2011", + "Content-Length": "1951", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:53:41 GMT", + "Date": "Mon, 26 Sep 2022 08:37:23 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-75ec44670ed6af8331f52c489791dba5-01ee2e5746f4e66a-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-3039db0e689b14326f0d3d07b6e3b428-272357157056fae6-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "797eeba3-4a5b-4b3a-9702-199dc75f38d2", - "x-ms-ratelimit-remaining-subscription-writes": "1026", + "x-ms-correlation-request-id": "36d7074a-3f85-4fd7-a154-30a80cd0e251", + "x-ms-ratelimit-remaining-subscription-writes": "1194", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195341Z:797eeba3-4a5b-4b3a-9702-199dc75f38d2", - "x-request-time": "0.306" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T083724Z:36d7074a-3f85-4fd7-a154-30a80cd0e251", + "x-request-time": "1.878" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/15ddf527-5b31-4c94-951b-8e790c000bff", - "name": "15ddf527-5b31-4c94-951b-8e790c000bff", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/dce32903-0d6d-434c-ac02-531c69d3418d", + "name": "dce32903-0d6d-434c-ac02-531c69d3418d", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1124,7 +1124,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "15ddf527-5b31-4c94-951b-8e790c000bff", + "version": "dce32903-0d6d-434c-ac02-531c69d3418d", "display_name": "Eval Model", "is_deterministic": "True", "type": "command", @@ -1140,7 +1140,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/70f1a735-2e10-46f8-a612-c40ea70cdc81/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/074a4307-55b5-4b48-a411-5e42418db08c/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -1150,12 +1150,12 @@ } }, "systemData": { - "createdAt": "2022-09-15T03:16:45.3796054\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:16:45.5576952\u002B00:00", - "lastModifiedBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "lastModifiedByType": "Application" + "createdAt": "2022-09-26T04:57:19.7299294\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-26T04:57:20.1912937\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", + "lastModifiedByType": "User" } } }, @@ -1166,9 +1166,9 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "3212", + "Content-Length": "3266", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -1245,8 +1245,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/28bfe7e7-831e-4ca9-9f64-51d75909f647" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/53fb7724-62e3-4322-a500-839056a8d805" }, "score_job": { "resources": null, @@ -1274,8 +1275,9 @@ "job_output_type": "uri_folder" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bc6b678b-21e4-428e-bfe2-717d04afa950" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/57dff646-2a8f-497a-a36d-ffdb49dab46f" }, "evaluate_job": { "resources": null, @@ -1299,8 +1301,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/15ddf527-5b31-4c94-951b-8e790c000bff" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/dce32903-0d6d-434c-ac02-531c69d3418d" } }, "_source": "YAML.COMPONENT", @@ -1311,26 +1314,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1932", + "Content-Length": "1930", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:53:42 GMT", + "Date": "Mon, 26 Sep 2022 08:37:27 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-18d3527fffbb2bd6b213a8cc65926444-41163e9c0384e0b8-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-5062d338ea4d0f374b0a3a0303db7813-a1721ab90d6b5877-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9b2f29c4-abac-4f3f-b59c-cf071b1a6490", - "x-ms-ratelimit-remaining-subscription-writes": "1025", + "x-ms-correlation-request-id": "3d7919ed-cc8d-47b3-ae8a-257e6a07c839", + "x-ms-ratelimit-remaining-subscription-writes": "1193", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195343Z:9b2f29c4-abac-4f3f-b59c-cf071b1a6490", - "x-request-time": "1.345" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T083728Z:3d7919ed-cc8d-47b3-ae8a-257e6a07c839", + "x-request-time": "2.900" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b78be728-b5b9-4f02-962c-c6f7f7212a73", - "name": "b78be728-b5b9-4f02-962c-c6f7f7212a73", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/0a1cc54c-bda7-4a9b-a378-845eb0a8351e", + "name": "0a1cc54c-bda7-4a9b-a378-845eb0a8351e", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1340,7 +1343,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "b78be728-b5b9-4f02-962c-c6f7f7212a73", + "version": "0a1cc54c-bda7-4a9b-a378-845eb0a8351e", "display_name": "train_pipeline_component", "is_deterministic": "True", "type": "pipeline", @@ -1381,11 +1384,11 @@ } }, "systemData": { - "createdAt": "2022-09-16T19:53:42.8222967\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-26T08:37:27.5258985\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T19:53:42.8222967\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-26T08:37:27.5258985\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -1397,7 +1400,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1405,24 +1408,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:53:43 GMT", + "Date": "Mon, 26 Sep 2022 08:37:28 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-905f378b4738c9e7db774253fa44c23d-7f2d81451c1618bd-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-7ab58f775645f3a746f50859ff576fd4-9a6cf934aabbe1bc-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "4c3f2c6c-f0d6-4319-8117-7d130e8cc3e3", - "x-ms-ratelimit-remaining-subscription-reads": "11756", + "x-ms-correlation-request-id": "34ef952d-551b-4d74-9633-f1f01f920050", + "x-ms-ratelimit-remaining-subscription-reads": "11992", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195343Z:4c3f2c6c-f0d6-4319-8117-7d130e8cc3e3", - "x-request-time": "0.094" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T083729Z:34ef952d-551b-4d74-9633-f1f01f920050", + "x-request-time": "0.142" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -1437,17 +1440,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -1461,7 +1464,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1469,21 +1472,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:53:43 GMT", + "Date": "Mon, 26 Sep 2022 08:37:29 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-1dae4a5fae747b53416d4ecc6275f837-c5f9d5df6ba9c164-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-d5091186f5e3a80aa980d33351d18f95-f688496eb8b72f74-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5c8421c4-f53d-48ed-bd1b-b153f766e9e3", - "x-ms-ratelimit-remaining-subscription-writes": "1063", + "x-ms-correlation-request-id": "19ed6295-11ec-4b10-b020-458e71372e31", + "x-ms-ratelimit-remaining-subscription-writes": "1196", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195343Z:5c8421c4-f53d-48ed-bd1b-b153f766e9e3", - "x-request-time": "0.087" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T083729Z:19ed6295-11ec-4b10-b020-458e71372e31", + "x-request-time": "0.117" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1491,26 +1494,26 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/train_src/train.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/train_src/train.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:53:42 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Mon, 26 Sep 2022 08:37:29 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Accept-Ranges": "bytes", - "Content-Length": "1502", - "Content-MD5": "EQ00rYDpw0NQnGfvdnx9Rw==", + "Content-Length": "1459", + "Content-MD5": "AopRoh0TIOT2l3zRkNs9IQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:53:42 GMT", - "ETag": "\u00220x8DA96C8B5E9B6F9\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:16:41 GMT", + "Date": "Mon, 26 Sep 2022 08:37:29 GMT", + "ETag": "\u00220x8DA9F7B8DD71155\u0022", + "Last-Modified": "Mon, 26 Sep 2022 04:57:03 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1519,32 +1522,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:16:41 GMT", + "x-ms-creation-time": "Mon, 26 Sep 2022 04:57:03 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "2cabb61f-ca8b-4ea7-87c9-1f74be564f7d", + "x-ms-meta-name": "f2eacb43-fef3-4e78-9f5b-5b62a785f2ef", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/train_src/train.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/train_src/train.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:53:42 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Mon, 26 Sep 2022 08:37:30 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:53:43 GMT", + "Date": "Mon, 26 Sep 2022 08:37:29 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1552,12 +1555,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2cabb61f-ca8b-4ea7-87c9-1f74be564f7d/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f2eacb43-fef3-4e78-9f5b-5b62a785f2ef/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -1565,7 +1568,7 @@ "Connection": "keep-alive", "Content-Length": "298", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -1575,7 +1578,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/train_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/train_src" } }, "StatusCode": 200, @@ -1583,27 +1586,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:53:44 GMT", + "Date": "Mon, 26 Sep 2022 08:37:30 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-b4cb50476f09ab99981f53b566975937-5ae302572a996817-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-5e4cefbfd0a713365318453100c6b92c-4659f94c7b24c74f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c67bf956-ee60-41ab-a06c-dfb1a088670c", - "x-ms-ratelimit-remaining-subscription-writes": "1024", + "x-ms-correlation-request-id": "1b06b80f-5a9e-4434-9c20-dbde61f1d333", + "x-ms-ratelimit-remaining-subscription-writes": "1192", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195344Z:c67bf956-ee60-41ab-a06c-dfb1a088670c", - "x-request-time": "0.066" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T083730Z:1b06b80f-5a9e-4434-9c20-dbde61f1d333", + "x-request-time": "0.179" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2cabb61f-ca8b-4ea7-87c9-1f74be564f7d/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f2eacb43-fef3-4e78-9f5b-5b62a785f2ef/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -1615,14 +1618,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/train_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/train_src" }, "systemData": { - "createdAt": "2022-09-15T03:16:41.7448483\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-16T19:53:44.2529211\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-26T04:57:04.6712132\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-26T08:37:30.7603925\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -1636,7 +1639,7 @@ "Connection": "keep-alive", "Content-Length": "1435", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -1647,7 +1650,7 @@ "isArchived": false, "componentSpec": { "command": "python train.py --training_data ${{inputs.training_data}} $[[--max_epochs ${{inputs.max_epochs}}]] --learning_rate ${{inputs.learning_rate}} --learning_rate_schedule ${{inputs.learning_rate_schedule}} --model_output ${{outputs.model_output}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2cabb61f-ca8b-4ea7-87c9-1f74be564f7d/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f2eacb43-fef3-4e78-9f5b-5b62a785f2ef/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "name": "azureml_anonymous", "description": "A dummy training component", @@ -1686,26 +1689,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2513", + "Content-Length": "2454", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:53:44 GMT", + "Date": "Mon, 26 Sep 2022 08:37:32 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-a14a75e7815d83e28db42ee492c79495-11b488e3d73b7aca-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-b020f369155301f8ba19f4bfbf69e924-d835d92b2ef737ad-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6109e6ce-5525-419c-8d1e-0607a962c819", - "x-ms-ratelimit-remaining-subscription-writes": "1023", + "x-ms-correlation-request-id": "cdd7ba97-3738-4fb3-a415-412bfba0ab35", + "x-ms-ratelimit-remaining-subscription-writes": "1191", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195344Z:6109e6ce-5525-419c-8d1e-0607a962c819", - "x-request-time": "0.365" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T083732Z:cdd7ba97-3738-4fb3-a415-412bfba0ab35", + "x-request-time": "1.229" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/28bfe7e7-831e-4ca9-9f64-51d75909f647", - "name": "28bfe7e7-831e-4ca9-9f64-51d75909f647", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/53fb7724-62e3-4322-a500-839056a8d805", + "name": "53fb7724-62e3-4322-a500-839056a8d805", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -1715,7 +1718,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "28bfe7e7-831e-4ca9-9f64-51d75909f647", + "version": "53fb7724-62e3-4322-a500-839056a8d805", "display_name": "Train Model", "is_deterministic": "True", "type": "command", @@ -1745,7 +1748,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/2cabb61f-ca8b-4ea7-87c9-1f74be564f7d/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/f2eacb43-fef3-4e78-9f5b-5b62a785f2ef/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -1755,12 +1758,12 @@ } }, "systemData": { - "createdAt": "2022-09-15T03:16:42.235074\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:16:42.4316309\u002B00:00", - "lastModifiedBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "lastModifiedByType": "Application" + "createdAt": "2022-09-26T04:57:07.2245293\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-26T04:57:07.6687591\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", + "lastModifiedByType": "User" } } }, @@ -1771,7 +1774,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1779,24 +1782,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:53:44 GMT", + "Date": "Mon, 26 Sep 2022 08:37:33 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-911a577f119e1c24c3b557781b40f47a-91070ec00cae7d7b-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-c175b1783ebbc1b12576444aabf52965-2c9e2408b151421a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "61370fcd-b472-4523-b7fd-01494f2dcab0", - "x-ms-ratelimit-remaining-subscription-reads": "11755", + "x-ms-correlation-request-id": "a92f42e7-dba6-48cc-b86b-349cc7b96f9d", + "x-ms-ratelimit-remaining-subscription-reads": "11991", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195345Z:61370fcd-b472-4523-b7fd-01494f2dcab0", - "x-request-time": "0.078" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T083733Z:a92f42e7-dba6-48cc-b86b-349cc7b96f9d", + "x-request-time": "0.098" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -1811,17 +1814,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -1835,7 +1838,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -1843,21 +1846,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:53:45 GMT", + "Date": "Mon, 26 Sep 2022 08:37:33 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-f9b14bdc4bc2a38913c9e57e4e51ba6e-21d2df56bcdaba52-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-a1000c6f2adbecc45f24e3de0658f17e-a99423afc730db41-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ce04a43d-c737-4f6d-8395-6253439e879d", - "x-ms-ratelimit-remaining-subscription-writes": "1062", + "x-ms-correlation-request-id": "151897d7-2650-46bb-9389-37f4d52ddbec", + "x-ms-ratelimit-remaining-subscription-writes": "1195", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195345Z:ce04a43d-c737-4f6d-8395-6253439e879d", - "x-request-time": "0.086" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T083734Z:151897d7-2650-46bb-9389-37f4d52ddbec", + "x-request-time": "0.117" }, "ResponseBody": { "secretsType": "AccountKey", @@ -1865,26 +1868,26 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/score_src/score.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/score_src/score.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:53:44 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Mon, 26 Sep 2022 08:37:34 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Accept-Ranges": "bytes", - "Content-Length": "939", - "Content-MD5": "Q2DIK4bErnWv1LgcGzUh0A==", + "Content-Length": "910", + "Content-MD5": "\u002B1r7nD6TWo52vxs0R/FCxg==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:53:45 GMT", - "ETag": "\u00220x8DA96C8AC84EB16\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:16:25 GMT", + "Date": "Mon, 26 Sep 2022 08:37:34 GMT", + "ETag": "\u00220x8DA9F7B91FD3C58\u0022", + "Last-Modified": "Mon, 26 Sep 2022 04:57:10 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1893,32 +1896,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:16:25 GMT", + "x-ms-creation-time": "Mon, 26 Sep 2022 04:57:10 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "941bc9f7-b1ae-46fa-8d9b-86f382a3b057", + "x-ms-meta-name": "284f77a7-5a19-4a67-bde7-4db6a6e4b1aa", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/score_src/score.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/score_src/score.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:53:44 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Mon, 26 Sep 2022 08:37:34 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:53:45 GMT", + "Date": "Mon, 26 Sep 2022 08:37:34 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -1926,12 +1929,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/941bc9f7-b1ae-46fa-8d9b-86f382a3b057/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/284f77a7-5a19-4a67-bde7-4db6a6e4b1aa/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -1939,7 +1942,7 @@ "Connection": "keep-alive", "Content-Length": "298", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -1949,7 +1952,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/score_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/score_src" } }, "StatusCode": 200, @@ -1957,27 +1960,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:53:46 GMT", + "Date": "Mon, 26 Sep 2022 08:37:35 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-7f807961354294f64bdb7b5dc2ff5a60-924903b16860455e-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-c64c97b290ad0dbdf47c2eafe8d7d88b-6990d3e718b062d8-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6056dda9-528b-4efa-8645-28a33fc028f6", - "x-ms-ratelimit-remaining-subscription-writes": "1022", + "x-ms-correlation-request-id": "62fb0f94-0a1c-439d-8fd2-cb675117d821", + "x-ms-ratelimit-remaining-subscription-writes": "1190", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195346Z:6056dda9-528b-4efa-8645-28a33fc028f6", - "x-request-time": "0.076" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T083736Z:62fb0f94-0a1c-439d-8fd2-cb675117d821", + "x-request-time": "0.188" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/941bc9f7-b1ae-46fa-8d9b-86f382a3b057/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/284f77a7-5a19-4a67-bde7-4db6a6e4b1aa/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -1989,14 +1992,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/score_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/score_src" }, "systemData": { - "createdAt": "2022-09-15T03:16:25.9909208\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-16T19:53:46.250074\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-26T04:57:11.4178827\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-26T08:37:35.8338035\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -2010,7 +2013,7 @@ "Connection": "keep-alive", "Content-Length": "1174", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -2021,7 +2024,7 @@ "isArchived": false, "componentSpec": { "command": "python score.py --model_input ${{inputs.model_input}} --test_data ${{inputs.test_data}} --score_output ${{outputs.score_output}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/941bc9f7-b1ae-46fa-8d9b-86f382a3b057/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/284f77a7-5a19-4a67-bde7-4db6a6e4b1aa/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "name": "azureml_anonymous", "description": "A dummy scoring component", @@ -2051,26 +2054,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2135", + "Content-Length": "2075", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:53:46 GMT", + "Date": "Mon, 26 Sep 2022 08:37:37 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-ec23fd4ec59809a319bf106fa7fc73ed-ae63f6ea519f9998-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-d0accfb9d6ec851599981c85c76c2120-c8f172ef07a954e6-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b24b509f-84e7-47a2-a551-024fc72274d2", - "x-ms-ratelimit-remaining-subscription-writes": "1021", + "x-ms-correlation-request-id": "9235a3c6-f5c8-47a8-81d6-ac2c8f3061e3", + "x-ms-ratelimit-remaining-subscription-writes": "1189", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195346Z:b24b509f-84e7-47a2-a551-024fc72274d2", - "x-request-time": "0.322" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T083737Z:9235a3c6-f5c8-47a8-81d6-ac2c8f3061e3", + "x-request-time": "1.116" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bc6b678b-21e4-428e-bfe2-717d04afa950", - "name": "bc6b678b-21e4-428e-bfe2-717d04afa950", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/57dff646-2a8f-497a-a36d-ffdb49dab46f", + "name": "57dff646-2a8f-497a-a36d-ffdb49dab46f", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -2080,7 +2083,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "bc6b678b-21e4-428e-bfe2-717d04afa950", + "version": "57dff646-2a8f-497a-a36d-ffdb49dab46f", "display_name": "Score Data", "is_deterministic": "True", "type": "command", @@ -2100,7 +2103,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/941bc9f7-b1ae-46fa-8d9b-86f382a3b057/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/284f77a7-5a19-4a67-bde7-4db6a6e4b1aa/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -2110,12 +2113,12 @@ } }, "systemData": { - "createdAt": "2022-09-15T03:16:43.7416455\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:16:43.9408174\u002B00:00", - "lastModifiedBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "lastModifiedByType": "Application" + "createdAt": "2022-09-26T04:57:13.5720427\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-26T04:57:14.0277035\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", + "lastModifiedByType": "User" } } }, @@ -2126,7 +2129,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2134,24 +2137,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:53:46 GMT", + "Date": "Mon, 26 Sep 2022 08:37:38 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-a4132bc89fe3a53ccaaa88d086451820-16ba369e1f4b6bbf-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-8af125d70cf32c8f592e77412cddf753-675ddc6dad117986-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a688267c-7f99-4562-87ba-efc20d4d00be", - "x-ms-ratelimit-remaining-subscription-reads": "11754", + "x-ms-correlation-request-id": "28fa29e4-afa8-43af-8b34-1a4577d503da", + "x-ms-ratelimit-remaining-subscription-reads": "11990", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195347Z:a688267c-7f99-4562-87ba-efc20d4d00be", - "x-request-time": "0.081" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T083738Z:28fa29e4-afa8-43af-8b34-1a4577d503da", + "x-request-time": "0.111" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -2166,17 +2169,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -2190,7 +2193,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2198,21 +2201,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:53:47 GMT", + "Date": "Mon, 26 Sep 2022 08:37:38 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-6b171741630e6c87b69bd5d634675e58-d228b0e676e1b26a-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-f4a5dfe7d983c4716654d6c7d1a3c521-9089edc12cc5604d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "069ce3d3-0dda-4391-8795-2f2d13de248d", - "x-ms-ratelimit-remaining-subscription-writes": "1061", + "x-ms-correlation-request-id": "bcd365c7-6a04-4d9a-a342-fbbe1ff24725", + "x-ms-ratelimit-remaining-subscription-writes": "1194", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195347Z:069ce3d3-0dda-4391-8795-2f2d13de248d", - "x-request-time": "0.090" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T083739Z:bcd365c7-6a04-4d9a-a342-fbbe1ff24725", + "x-request-time": "0.110" }, "ResponseBody": { "secretsType": "AccountKey", @@ -2220,26 +2223,26 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/eval_src/eval.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/eval_src/eval.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:53:46 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Mon, 26 Sep 2022 08:37:39 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Accept-Ranges": "bytes", - "Content-Length": "795", - "Content-MD5": "DCyaJK0A7h/5O4tRl1ENtA==", + "Content-Length": "770", + "Content-MD5": "eVnVLloYfT16aDnyQ2oJnQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:53:46 GMT", - "ETag": "\u00220x8DA96C8B7BE5A14\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:16:44 GMT", + "Date": "Mon, 26 Sep 2022 08:37:39 GMT", + "ETag": "\u00220x8DA9F7B957DA2B3\u0022", + "Last-Modified": "Mon, 26 Sep 2022 04:57:16 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -2248,32 +2251,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:16:44 GMT", + "x-ms-creation-time": "Mon, 26 Sep 2022 04:57:16 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "70f1a735-2e10-46f8-a612-c40ea70cdc81", + "x-ms-meta-name": "074a4307-55b5-4b48-a411-5e42418db08c", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/eval_src/eval.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/eval_src/eval.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:53:46 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Mon, 26 Sep 2022 08:37:39 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:53:46 GMT", + "Date": "Mon, 26 Sep 2022 08:37:39 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -2281,12 +2284,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/70f1a735-2e10-46f8-a612-c40ea70cdc81/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/074a4307-55b5-4b48-a411-5e42418db08c/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -2294,7 +2297,7 @@ "Connection": "keep-alive", "Content-Length": "297", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -2304,7 +2307,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/eval_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/eval_src" } }, "StatusCode": 200, @@ -2312,27 +2315,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:53:48 GMT", + "Date": "Mon, 26 Sep 2022 08:37:40 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-7dcf766f0cd39dbcd4b45b4974e8dacc-2d3a81b5d95f1438-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-6e4d9721f547e7ea733d004fa631bbb1-fa8700a3074f2dfa-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2d1c4c05-ca77-4f5b-96c9-942cff921ced", - "x-ms-ratelimit-remaining-subscription-writes": "1020", + "x-ms-correlation-request-id": "968aa1b6-8f70-4fb4-9c6d-95d371afdaf9", + "x-ms-ratelimit-remaining-subscription-writes": "1188", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195348Z:2d1c4c05-ca77-4f5b-96c9-942cff921ced", - "x-request-time": "0.118" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T083741Z:968aa1b6-8f70-4fb4-9c6d-95d371afdaf9", + "x-request-time": "0.179" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/70f1a735-2e10-46f8-a612-c40ea70cdc81/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/074a4307-55b5-4b48-a411-5e42418db08c/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -2344,14 +2347,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/eval_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/eval_src" }, "systemData": { - "createdAt": "2022-09-15T03:16:44.8365639\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-16T19:53:48.3344533\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-26T04:57:17.1654119\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-26T08:37:40.9539891\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -2365,7 +2368,7 @@ "Connection": "keep-alive", "Content-Length": "1110", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -2376,7 +2379,7 @@ "isArchived": false, "componentSpec": { "command": "python eval.py --scoring_result ${{inputs.scoring_result}} --eval_output ${{outputs.eval_output}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/70f1a735-2e10-46f8-a612-c40ea70cdc81/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/074a4307-55b5-4b48-a411-5e42418db08c/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "name": "azureml_anonymous", "description": "A dummy evaluate component", @@ -2403,26 +2406,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2011", + "Content-Length": "1951", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:53:48 GMT", + "Date": "Mon, 26 Sep 2022 08:37:42 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-114f7f4dd8dc0d8c810880accf79d03a-8a73c6824787fa32-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-69748b268c5ffb9a7a67099a1a658e3e-feea8aaa043e9004-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "645870d2-a9bd-4192-8934-0e2e63141d4e", - "x-ms-ratelimit-remaining-subscription-writes": "1019", + "x-ms-correlation-request-id": "c04992b4-acde-47b4-ad90-e06ac76e764e", + "x-ms-ratelimit-remaining-subscription-writes": "1187", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195348Z:645870d2-a9bd-4192-8934-0e2e63141d4e", - "x-request-time": "0.316" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T083743Z:c04992b4-acde-47b4-ad90-e06ac76e764e", + "x-request-time": "1.182" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/15ddf527-5b31-4c94-951b-8e790c000bff", - "name": "15ddf527-5b31-4c94-951b-8e790c000bff", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/dce32903-0d6d-434c-ac02-531c69d3418d", + "name": "dce32903-0d6d-434c-ac02-531c69d3418d", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -2432,7 +2435,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "15ddf527-5b31-4c94-951b-8e790c000bff", + "version": "dce32903-0d6d-434c-ac02-531c69d3418d", "display_name": "Eval Model", "is_deterministic": "True", "type": "command", @@ -2448,7 +2451,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/70f1a735-2e10-46f8-a612-c40ea70cdc81/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/074a4307-55b5-4b48-a411-5e42418db08c/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -2458,12 +2461,12 @@ } }, "systemData": { - "createdAt": "2022-09-15T03:16:45.3796054\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:16:45.5576952\u002B00:00", - "lastModifiedBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "lastModifiedByType": "Application" + "createdAt": "2022-09-26T04:57:19.7299294\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-26T04:57:20.1912937\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", + "lastModifiedByType": "User" } } }, @@ -2474,9 +2477,9 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "3212", + "Content-Length": "3266", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -2553,8 +2556,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/28bfe7e7-831e-4ca9-9f64-51d75909f647" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/53fb7724-62e3-4322-a500-839056a8d805" }, "score_job": { "resources": null, @@ -2582,8 +2586,9 @@ "job_output_type": "uri_folder" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/bc6b678b-21e4-428e-bfe2-717d04afa950" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/57dff646-2a8f-497a-a36d-ffdb49dab46f" }, "evaluate_job": { "resources": null, @@ -2607,8 +2612,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/15ddf527-5b31-4c94-951b-8e790c000bff" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/dce32903-0d6d-434c-ac02-531c69d3418d" } }, "_source": "YAML.COMPONENT", @@ -2619,26 +2625,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1932", + "Content-Length": "1930", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:53:50 GMT", + "Date": "Mon, 26 Sep 2022 08:37:45 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-f95a5dbff6ad9f0bde822787ae043b0b-2b2cc5d956940a66-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-bf19fc42c7c5e7520cd0b6da804fad88-1b7256a0ce230058-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "835c00ba-395c-4d1f-81de-6d4a499d0e3a", - "x-ms-ratelimit-remaining-subscription-writes": "1018", + "x-ms-correlation-request-id": "b0c9efc7-f1b1-4a2c-900d-5b23853da6d2", + "x-ms-ratelimit-remaining-subscription-writes": "1186", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195351Z:835c00ba-395c-4d1f-81de-6d4a499d0e3a", - "x-request-time": "1.169" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T083746Z:b0c9efc7-f1b1-4a2c-900d-5b23853da6d2", + "x-request-time": "2.136" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a6c4b649-abcf-4067-9303-8114e5aa4da6", - "name": "a6c4b649-abcf-4067-9303-8114e5aa4da6", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/45d1472b-b268-4a92-b28e-35d6290625a4", + "name": "45d1472b-b268-4a92-b28e-35d6290625a4", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -2648,7 +2654,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "a6c4b649-abcf-4067-9303-8114e5aa4da6", + "version": "45d1472b-b268-4a92-b28e-35d6290625a4", "display_name": "train_pipeline_component", "is_deterministic": "True", "type": "pipeline", @@ -2689,11 +2695,11 @@ } }, "systemData": { - "createdAt": "2022-09-16T19:53:50.7183876\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-26T08:37:45.7469322\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T19:53:50.7183876\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-26T08:37:45.7469322\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -2705,7 +2711,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2713,24 +2719,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:53:50 GMT", + "Date": "Mon, 26 Sep 2022 08:37:46 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-c5711138948801cb1a01f6e8498f687a-7db8c6b4c698d6dc-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-c5c188dac3381bd01093dc3005064e20-17f23c6c8f4215ab-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c220dc56-89d9-44c5-90a8-e39dba1c37e4", - "x-ms-ratelimit-remaining-subscription-reads": "11753", + "x-ms-correlation-request-id": "46da49fb-dfb4-4a40-8b29-df2bc18a528c", + "x-ms-ratelimit-remaining-subscription-reads": "11989", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195351Z:c220dc56-89d9-44c5-90a8-e39dba1c37e4", - "x-request-time": "0.086" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T083747Z:46da49fb-dfb4-4a40-8b29-df2bc18a528c", + "x-request-time": "0.109" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -2745,17 +2751,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -2769,7 +2775,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -2777,21 +2783,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:53:51 GMT", + "Date": "Mon, 26 Sep 2022 08:37:47 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-c8257fcecfea269aae21b4cad4531fba-081d444f4aaaa6b5-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-14410be0ffac6c9ab559ab9e0e4996b4-6c2346171780ed94-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bac71f23-c24c-47db-8fe9-5d5418ed25c4", - "x-ms-ratelimit-remaining-subscription-writes": "1060", + "x-ms-correlation-request-id": "ba803311-18b2-4187-b587-e3182c2583df", + "x-ms-ratelimit-remaining-subscription-writes": "1193", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195352Z:bac71f23-c24c-47db-8fe9-5d5418ed25c4", - "x-request-time": "0.085" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T083748Z:ba803311-18b2-4187-b587-e3182c2583df", + "x-request-time": "0.637" }, "ResponseBody": { "secretsType": "AccountKey", @@ -2799,26 +2805,26 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/compare2_src/compare2.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/compare2_src/compare2.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:53:51 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Mon, 26 Sep 2022 08:37:48 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { "Accept-Ranges": "bytes", - "Content-Length": "1355", - "Content-MD5": "KDKfFAmtl5iN7Kbvl/m5/g==", + "Content-Length": "1320", + "Content-MD5": "lhdlP3AmfdrQn\u002BPzTAYfwA==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:53:51 GMT", - "ETag": "\u00220x8DA96C8BAE75F57\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:16:49 GMT", + "Date": "Mon, 26 Sep 2022 08:37:48 GMT", + "ETag": "\u00220x8DA9F7BA88398A1\u0022", + "Last-Modified": "Mon, 26 Sep 2022 04:57:48 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -2827,32 +2833,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:16:49 GMT", + "x-ms-creation-time": "Mon, 26 Sep 2022 04:57:48 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "567eae9b-94c5-41ff-8492-3bfdf95138d6", + "x-ms-meta-name": "61db3692-cd31-469c-832d-baa97eb6b756", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/compare2_src/compare2.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/compare2_src/compare2.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:53:51 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Mon, 26 Sep 2022 08:37:48 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:53:51 GMT", + "Date": "Mon, 26 Sep 2022 08:37:48 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -2860,12 +2866,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/567eae9b-94c5-41ff-8492-3bfdf95138d6/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/61db3692-cd31-469c-832d-baa97eb6b756/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -2873,7 +2879,7 @@ "Connection": "keep-alive", "Content-Length": "301", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -2883,7 +2889,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/compare2_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/compare2_src" } }, "StatusCode": 200, @@ -2891,27 +2897,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:53:52 GMT", + "Date": "Mon, 26 Sep 2022 08:37:48 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-fca7f8cb1c99a1c4415ceab727c5171d-a3a7b87a726254bf-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-62ea37fe4d13d65cb46b7c2061bec586-2b0d7bdeacfbc61d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "672720fe-f3b2-4b8d-86e2-fbd1c2bd26f7", - "x-ms-ratelimit-remaining-subscription-writes": "1017", + "x-ms-correlation-request-id": "87bba455-7077-4e86-b52c-edd6f84841ec", + "x-ms-ratelimit-remaining-subscription-writes": "1185", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195352Z:672720fe-f3b2-4b8d-86e2-fbd1c2bd26f7", - "x-request-time": "0.058" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T083749Z:87bba455-7077-4e86-b52c-edd6f84841ec", + "x-request-time": "0.252" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/567eae9b-94c5-41ff-8492-3bfdf95138d6/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/61db3692-cd31-469c-832d-baa97eb6b756/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -2923,14 +2929,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/compare2_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/compare2_src" }, "systemData": { - "createdAt": "2022-09-15T03:16:50.1244759\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-16T19:53:52.5549476\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-26T04:57:49.2896584\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-26T08:37:49.6715467\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -2944,7 +2950,7 @@ "Connection": "keep-alive", "Content-Length": "1589", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -2955,7 +2961,7 @@ "isArchived": false, "componentSpec": { "command": "python compare2.py $[[--model1 ${{inputs.model1}}]] $[[--eval_result1 ${{inputs.eval_result1}}]] $[[--model2 ${{inputs.model2}}]] $[[--eval_result2 ${{inputs.eval_result2}}]] --best_model ${{outputs.best_model}} --best_result ${{outputs.best_result}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/567eae9b-94c5-41ff-8492-3bfdf95138d6/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/61db3692-cd31-469c-832d-baa97eb6b756/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "name": "azureml_anonymous", "description": "A dummy comparison module takes two models as input and outputs the better one", @@ -2998,26 +3004,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2567", + "Content-Length": "2506", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:53:52 GMT", + "Date": "Mon, 26 Sep 2022 08:37:50 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-613e27af95bbd7db724ef41cd121dd92-45387dfaeda42019-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-0942a57831d7638189965b4819e3c092-d8a37036eab8d18c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "91b92239-68be-4dbd-b6af-b8dda43767eb", - "x-ms-ratelimit-remaining-subscription-writes": "1016", + "x-ms-correlation-request-id": "f42e00bf-924a-4891-9e96-f488b5b1edc9", + "x-ms-ratelimit-remaining-subscription-writes": "1184", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195353Z:91b92239-68be-4dbd-b6af-b8dda43767eb", - "x-request-time": "0.311" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T083751Z:f42e00bf-924a-4891-9e96-f488b5b1edc9", + "x-request-time": "1.149" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/7d3972b7-b101-41bb-9843-4b23ad5a65ef", - "name": "7d3972b7-b101-41bb-9843-4b23ad5a65ef", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a8ed6dde-d6d8-4102-8115-065ca02302f7", + "name": "a8ed6dde-d6d8-4102-8115-065ca02302f7", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -3027,7 +3033,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "7d3972b7-b101-41bb-9843-4b23ad5a65ef", + "version": "a8ed6dde-d6d8-4102-8115-065ca02302f7", "display_name": "Compare 2 Models", "is_deterministic": "True", "type": "command", @@ -3058,7 +3064,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/567eae9b-94c5-41ff-8492-3bfdf95138d6/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/61db3692-cd31-469c-832d-baa97eb6b756/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -3068,12 +3074,12 @@ } }, "systemData": { - "createdAt": "2022-09-15T03:16:50.6388943\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:16:50.8241787\u002B00:00", - "lastModifiedBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "lastModifiedByType": "Application" + "createdAt": "2022-09-26T04:57:51.5792932\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-26T04:57:52.030993\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", + "lastModifiedByType": "User" } } }, @@ -3084,7 +3090,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3092,24 +3098,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:53:52 GMT", + "Date": "Mon, 26 Sep 2022 08:37:51 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-243118240f4f1bdecd6e8c469359e031-098b1647fcc39730-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-3e4266dcb1523a19aa69c88e864959bc-09d4a5ae5aab0d06-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "83606d21-bec1-4f97-b4e0-a773def48bf9", - "x-ms-ratelimit-remaining-subscription-reads": "11752", + "x-ms-correlation-request-id": "0d011356-4c3c-4f78-b936-bb5208b5caf2", + "x-ms-ratelimit-remaining-subscription-reads": "11988", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195353Z:83606d21-bec1-4f97-b4e0-a773def48bf9", - "x-request-time": "0.088" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T083752Z:0d011356-4c3c-4f78-b936-bb5208b5caf2", + "x-request-time": "0.131" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -3124,17 +3130,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -3148,7 +3154,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3156,21 +3162,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:53:53 GMT", + "Date": "Mon, 26 Sep 2022 08:37:52 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-f5ffb5fab6ec0689b99b38bd4fa6ab94-31157127afbc115c-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-b501a3661b44273ffc304c784ef8c8f9-b5a910d3120dcc77-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9d5a2a48-de71-4f61-8079-4eac9aa1b2d1", - "x-ms-ratelimit-remaining-subscription-writes": "1059", + "x-ms-correlation-request-id": "4ace130f-b6ed-400b-86a7-f0c93d104b3b", + "x-ms-ratelimit-remaining-subscription-writes": "1192", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195353Z:9d5a2a48-de71-4f61-8079-4eac9aa1b2d1", - "x-request-time": "0.090" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T083753Z:4ace130f-b6ed-400b-86a7-f0c93d104b3b", + "x-request-time": "0.097" }, "ResponseBody": { "secretsType": "AccountKey", @@ -3178,15 +3184,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/data/sample.csv", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/data/sample.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:53:52 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Mon, 26 Sep 2022 08:37:53 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -3195,9 +3201,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:53:52 GMT", - "ETag": "\u00220x8DA96C8B295B04F\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:16:36 GMT", + "Date": "Mon, 26 Sep 2022 08:37:53 GMT", + "ETag": "\u00220x8DA9F7304EC3057\u0022", + "Last-Modified": "Mon, 26 Sep 2022 03:55:57 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -3206,32 +3212,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:16:35 GMT", + "x-ms-creation-time": "Mon, 26 Sep 2022 03:55:57 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "sampledata1235", + "x-ms-meta-name": "24496764-8d2c-462a-b2b4-0449135f51d7", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "2", + "x-ms-meta-version": "087a6a33-a6c2-4301-88a7-4d13f371fac1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/data/sample.csv", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/data/sample.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:53:52 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Mon, 26 Sep 2022 08:37:53 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:53:52 GMT", + "Date": "Mon, 26 Sep 2022 08:37:53 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -3239,7 +3245,7 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, @@ -3250,7 +3256,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3258,24 +3264,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:53:53 GMT", + "Date": "Mon, 26 Sep 2022 08:37:54 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-4df7114b4164ce951524b6e84a6d9317-bc50e6652d5f6203-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-00ad92161145005cfa679a148beede37-fe5d20c6f5641d87-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "b029c4c7-6f35-41a3-a000-f838c920a68b", - "x-ms-ratelimit-remaining-subscription-reads": "11751", + "x-ms-correlation-request-id": "424479e6-9e09-4451-9ebc-ec4cd33c31bf", + "x-ms-ratelimit-remaining-subscription-reads": "11987", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195353Z:b029c4c7-6f35-41a3-a000-f838c920a68b", - "x-request-time": "0.114" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T083754Z:424479e6-9e09-4451-9ebc-ec4cd33c31bf", + "x-request-time": "0.127" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -3290,17 +3296,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -3314,7 +3320,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -3322,21 +3328,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:53:54 GMT", + "Date": "Mon, 26 Sep 2022 08:37:55 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-7cee022249148ebbc8994db5283d1654-e62b068f184a7809-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-b4eb1b433e76642a35ca8f91149e72f2-ec4119417680aaf4-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a9a1e137-3e3a-47ca-bc53-2a43e41e2ccd", - "x-ms-ratelimit-remaining-subscription-writes": "1058", + "x-ms-correlation-request-id": "117d1ce6-3dab-4037-9762-46116881bfed", + "x-ms-ratelimit-remaining-subscription-writes": "1191", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195354Z:a9a1e137-3e3a-47ca-bc53-2a43e41e2ccd", - "x-request-time": "0.086" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T083755Z:117d1ce6-3dab-4037-9762-46116881bfed", + "x-request-time": "0.100" }, "ResponseBody": { "secretsType": "AccountKey", @@ -3344,15 +3350,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/data/sample.csv", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/data/sample.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:53:53 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Mon, 26 Sep 2022 08:37:55 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -3361,9 +3367,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:53:53 GMT", - "ETag": "\u00220x8DA96C8B295B04F\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:16:36 GMT", + "Date": "Mon, 26 Sep 2022 08:37:55 GMT", + "ETag": "\u00220x8DA9F7304EC3057\u0022", + "Last-Modified": "Mon, 26 Sep 2022 03:55:57 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -3372,32 +3378,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:16:35 GMT", + "x-ms-creation-time": "Mon, 26 Sep 2022 03:55:57 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "sampledata1235", + "x-ms-meta-name": "24496764-8d2c-462a-b2b4-0449135f51d7", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "2", + "x-ms-meta-version": "087a6a33-a6c2-4301-88a7-4d13f371fac1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/data/sample.csv", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/az-ml-artifacts/00000000000000000000000000000000/data/sample.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:53:53 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Mon, 26 Sep 2022 08:37:56 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:53:53 GMT", + "Date": "Mon, 26 Sep 2022 08:37:55 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -3405,20 +3411,20 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_231158030278?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_951353678821?api-version=2022-06-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "4354", + "Content-Length": "4408", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -3473,8 +3479,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b78be728-b5b9-4f02-962c-c6f7f7212a73" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/0a1cc54c-bda7-4a9b-a378-845eb0a8351e" }, "train_and_evaludate_model2": { "name": "train_and_evaludate_model2", @@ -3501,8 +3508,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a6c4b649-abcf-4067-9303-8114e5aa4da6" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/45d1472b-b268-4a92-b28e-35d6290625a4" }, "compare": { "resources": null, @@ -3542,8 +3550,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/7d3972b7-b101-41bb-9843-4b23ad5a65ef" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a8ed6dde-d6d8-4102-8115-065ca02302f7" } }, "outputs": { @@ -3568,26 +3577,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "7720", + "Content-Length": "7797", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:54:00 GMT", + "Date": "Mon, 26 Sep 2022 08:38:06 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_231158030278?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_951353678821?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-7995f99492c45650ed1f263fc16fd5fc-74185f52da376579-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-822d2b128952055039b81e45829325eb-59aa1172aa7ccb17-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "23f5584b-b7b9-492f-bf16-c5eb153294ed", - "x-ms-ratelimit-remaining-subscription-writes": "1015", + "x-ms-correlation-request-id": "384306ce-1050-4415-b611-ee7c3492e6f1", + "x-ms-ratelimit-remaining-subscription-writes": "1183", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195400Z:23f5584b-b7b9-492f-bf16-c5eb153294ed", - "x-request-time": "3.642" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T083806Z:384306ce-1050-4415-b611-ee7c3492e6f1", + "x-request-time": "6.673" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_231158030278", - "name": "test_231158030278", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_951353678821", + "name": "test_951353678821", "type": "Microsoft.MachineLearningServices/workspaces/jobs", "properties": { "description": "Select best model trained with different learning rate", @@ -3612,7 +3621,7 @@ "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null @@ -3620,7 +3629,7 @@ "Studio": { "jobServiceType": "Studio", "port": null, - "endpoint": "https://ml.azure.com/runs/test_231158030278?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "endpoint": "https://ml.azure.com/runs/test_951353678821?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, "properties": null @@ -3664,8 +3673,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/b78be728-b5b9-4f02-962c-c6f7f7212a73" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/0a1cc54c-bda7-4a9b-a378-845eb0a8351e" }, "train_and_evaludate_model2": { "name": "train_and_evaludate_model2", @@ -3692,8 +3702,9 @@ } }, "outputs": {}, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a6c4b649-abcf-4067-9303-8114e5aa4da6" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/45d1472b-b268-4a92-b28e-35d6290625a4" }, "compare": { "resources": null, @@ -3733,8 +3744,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.COMPONENT", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/7d3972b7-b101-41bb-9843-4b23ad5a65ef" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/a8ed6dde-d6d8-4102-8115-065ca02302f7" } }, "inputs": { @@ -3778,21 +3790,21 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-16T19:54:00.4825163\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-26T08:38:05.3741357\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_231158030278/cancel?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_951353678821/cancel?api-version=2022-06-01-preview", "RequestMethod": "POST", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 202, @@ -3800,25 +3812,55 @@ "Cache-Control": "no-cache", "Content-Length": "4", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:54:02 GMT", + "Date": "Mon, 26 Sep 2022 08:38:08 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/mfeOperationResults/jc:a6d5a3b8-8717-4928-b8f7-4c9f36d21085:test_231158030278?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/centraluseuap/mfeOperationResults/jc:e61cd5e2-512f-475e-9842-5e2a973993b8:test_951353678821?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", "x-ms-async-operation-timeout": "PT1H", - "x-ms-correlation-request-id": "a6ba0229-7168-4272-8e5f-b4eba2f0535e", - "x-ms-ratelimit-remaining-subscription-writes": "1057", + "x-ms-correlation-request-id": "2fd3d1fc-fa0e-47d5-b5a6-ccb65b1b0c07", + "x-ms-ratelimit-remaining-subscription-writes": "1190", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195403Z:a6ba0229-7168-4272-8e5f-b4eba2f0535e", - "x-request-time": "0.907" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T083809Z:2fd3d1fc-fa0e-47d5-b5a6-ccb65b1b0c07", + "x-request-time": "0.870" }, "ResponseBody": "null" + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/centraluseuap/mfeOperationResults/jc:e61cd5e2-512f-475e-9842-5e2a973993b8:test_951353678821?api-version=2022-06-01-preview", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "*/*", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "0", + "Date": "Mon, 26 Sep 2022 08:38:41 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-3733d275a8bf0df37df6bef0e2ebe3b4-e8c2019989b7fde8-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-aml-cluster": "vienna-test-westus2-02", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "163a0d88-f58d-40b4-84b4-c944342f7195", + "x-ms-ratelimit-remaining-subscription-reads": "11986", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T083841Z:163a0d88-f58d-40b4-84b4-c944342f7195", + "x-request-time": "0.067" + }, + "ResponseBody": null } ], "Variables": { - "name": "test_231158030278" + "name": "test_951353678821" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_with_setting_binding_node_and_pipeline_level.json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_with_setting_binding_node_and_pipeline_level.json index 9fa5c616cd54..7300c1de0a9e 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_with_setting_binding_node_and_pipeline_level.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_with_setting_binding_node_and_pipeline_level.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,39 +15,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:53:08 GMT", + "Date": "Fri, 23 Sep 2022 15:52:26 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-2950942cfc1d89a68bc140b63bef6b47-cc2feb101f3508f3-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-f9cd88db909913b3e5e9ab745bbcc099-61f171ce24758178-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "905b25a1-e42c-4213-a376-eece9d5d39bd", - "x-ms-ratelimit-remaining-subscription-reads": "11766", + "x-ms-correlation-request-id": "88a6ed10-eb41-4cc2-ba1b-d007a9419bf3", + "x-ms-ratelimit-remaining-subscription-reads": "11960", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195308Z:905b25a1-e42c-4213-a376-eece9d5d39bd", - "x-request-time": "0.080" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T155227Z:88a6ed10-eb41-4cc2-ba1b-d007a9419bf3", + "x-request-time": "0.063" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.912489\u002B00:00", - "modifiedOn": "2022-09-15T03:11:50.5830108\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "eastus2", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -60,18 +60,18 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 4, + "currentNodeCount": 1, + "targetNodeCount": 1, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 4, - "idleNodeCount": 0, + "runningNodeCount": 0, + "idleNodeCount": 1, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-16T19:44:21.123\u002B00:00", + "allocationStateTransitionTime": "2022-09-23T15:47:48.622\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -89,7 +89,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -97,24 +97,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:53:09 GMT", + "Date": "Fri, 23 Sep 2022 15:52:31 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-863cfad935b2a278b9b3ebb3a73ac0d3-7316662f1b85603d-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-b1947d79a350f5cc98987d39d74c5c95-5a1d7cd8733c392d-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "5e60b71e-30c4-4149-a7a2-e6a9738150e6", - "x-ms-ratelimit-remaining-subscription-reads": "11765", + "x-ms-correlation-request-id": "28606ee2-8064-4110-8809-f56d0b0b6fa6", + "x-ms-ratelimit-remaining-subscription-reads": "11959", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195309Z:5e60b71e-30c4-4149-a7a2-e6a9738150e6", - "x-request-time": "0.076" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T155231Z:28606ee2-8064-4110-8809-f56d0b0b6fa6", + "x-request-time": "0.078" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -129,17 +129,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -153,7 +153,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -161,21 +161,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:53:10 GMT", + "Date": "Fri, 23 Sep 2022 15:52:32 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-f5f56a7841fd3dd23600e6e15d36f35e-7fff9a1791eeea2f-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-9eb05c1632594adca93db762d3995574-f276a89ecf40ce75-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "bba49f58-5205-4f77-a061-cd5ffa8c06ac", - "x-ms-ratelimit-remaining-subscription-writes": "1070", + "x-ms-correlation-request-id": "6084b1a9-ead3-401f-aa83-24ef9e892205", + "x-ms-ratelimit-remaining-subscription-writes": "1165", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195311Z:bba49f58-5205-4f77-a061-cd5ffa8c06ac", - "x-request-time": "0.106" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T155232Z:6084b1a9-ead3-401f-aa83-24ef9e892205", + "x-request-time": "0.127" }, "ResponseBody": { "secretsType": "AccountKey", @@ -183,15 +183,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/train_src/train.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/train_src/train.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:53:09 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:52:35 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -200,9 +200,9 @@ "Content-Length": "1502", "Content-MD5": "zAix1RSwqgjraik/VOQjSg==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:53:10 GMT", - "ETag": "\u00220x8DA96C8A5875023\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:16:14 GMT", + "Date": "Fri, 23 Sep 2022 15:52:32 GMT", + "ETag": "\u00220x8DA9D7B70E8EC67\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:51:12 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -211,32 +211,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:16:14 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:51:12 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "76b899b0-a694-4624-a9e5-b0f4f6464cad", + "x-ms-meta-name": "000000000000000000000", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/train_src/train.py", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/train_src/train.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:53:10 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:52:35 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:53:10 GMT", + "Date": "Fri, 23 Sep 2022 15:52:33 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -244,12 +244,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/76b899b0-a694-4624-a9e5-b0f4f6464cad/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -257,7 +257,7 @@ "Connection": "keep-alive", "Content-Length": "298", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -267,7 +267,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/train_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/train_src" } }, "StatusCode": 200, @@ -275,27 +275,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:53:10 GMT", + "Date": "Fri, 23 Sep 2022 15:52:34 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-9a537216da16edf95eba80ea3e84d2b8-9c85b33859ba25b7-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-13225c0226044f138b9852b08aa14ac5-11a14bcf88052c9a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e78edd6e-b617-46b4-93f6-25922665e1bf", - "x-ms-ratelimit-remaining-subscription-writes": "1037", + "x-ms-correlation-request-id": "dbd76e60-c9af-4df8-9388-19c203017bd9", + "x-ms-ratelimit-remaining-subscription-writes": "1181", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195311Z:e78edd6e-b617-46b4-93f6-25922665e1bf", - "x-request-time": "0.070" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T155234Z:dbd76e60-c9af-4df8-9388-19c203017bd9", + "x-request-time": "0.087" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/76b899b0-a694-4624-a9e5-b0f4f6464cad/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -307,14 +307,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/train_src" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/train_src" }, "systemData": { - "createdAt": "2022-09-15T03:16:14.6600574\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-16T19:53:11.3573686\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:51:13.8769644\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T15:52:34.5667076\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -326,9 +326,9 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1429", + "Content-Length": "1414", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -339,7 +339,7 @@ "isArchived": false, "componentSpec": { "command": "python train.py --training_data ${{inputs.training_data}} $[[--max_epochs ${{inputs.max_epochs}}]] --learning_rate ${{inputs.learning_rate}} --learning_rate_schedule ${{inputs.learning_rate_schedule}} --model_output ${{outputs.model_output}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/76b899b0-a694-4624-a9e5-b0f4f6464cad/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "name": "azureml_anonymous", "description": "A dummy training component", @@ -378,26 +378,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2456", + "Content-Length": "2439", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:53:11 GMT", + "Date": "Fri, 23 Sep 2022 15:52:35 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-478a8128b8c7d626b7e257171acf0a5c-c350464792bbfc0a-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-44146dfe88f159e8d06720a1dab25c4f-622154ec011b8581-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "553f14c2-a35a-49f7-b229-0e529cb9975b", - "x-ms-ratelimit-remaining-subscription-writes": "1036", + "x-ms-correlation-request-id": "663563ec-5b7e-4768-8baf-de52ea230499", + "x-ms-ratelimit-remaining-subscription-writes": "1180", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195311Z:553f14c2-a35a-49f7-b229-0e529cb9975b", - "x-request-time": "0.302" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T155236Z:663563ec-5b7e-4768-8baf-de52ea230499", + "x-request-time": "0.312" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1b3c9e54-cf15-46bf-87be-2dcabac6c4fb", - "name": "1b3c9e54-cf15-46bf-87be-2dcabac6c4fb", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/58c537a2-1443-41b5-a294-955f3307d78d", + "name": "58c537a2-1443-41b5-a294-955f3307d78d", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -407,7 +407,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "1b3c9e54-cf15-46bf-87be-2dcabac6c4fb", + "version": "58c537a2-1443-41b5-a294-955f3307d78d", "display_name": "Train Model", "is_deterministic": "True", "type": "command", @@ -437,7 +437,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/76b899b0-a694-4624-a9e5-b0f4f6464cad/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -447,11 +447,11 @@ } }, "systemData": { - "createdAt": "2022-09-16T03:25:11.5302547\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:51:15.3559889\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T03:25:11.7395881\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:51:15.6047589\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -463,7 +463,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -471,24 +471,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:53:11 GMT", + "Date": "Fri, 23 Sep 2022 15:52:37 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-9b64910e94d855943ebc0c366562adca-d6611f3866810edf-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-efd6c5c18da4dcd69705431364902faf-01f841934d43ab7a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "124f4572-a81e-4994-ab2e-9c8157b708f5", - "x-ms-ratelimit-remaining-subscription-reads": "11764", + "x-ms-correlation-request-id": "0bd2a4a2-4bc3-44e6-992b-d9123fb311cc", + "x-ms-ratelimit-remaining-subscription-reads": "11958", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195312Z:124f4572-a81e-4994-ab2e-9c8157b708f5", - "x-request-time": "0.080" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T155237Z:0bd2a4a2-4bc3-44e6-992b-d9123fb311cc", + "x-request-time": "0.099" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -503,17 +503,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -527,7 +527,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -535,21 +535,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:53:12 GMT", + "Date": "Fri, 23 Sep 2022 15:52:38 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-8cb81e88eaf1e3fadd1adfc2628d0753-ffc51633b18b500c-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-f1ba4edd275b8519bb9559b741ffb427-d8f9934caf19663a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "e2e6d095-e22a-432a-b4ce-4684d7271b19", - "x-ms-ratelimit-remaining-subscription-writes": "1069", + "x-ms-correlation-request-id": "603fd913-cfd9-4624-8681-563256d2fa35", + "x-ms-ratelimit-remaining-subscription-writes": "1164", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195313Z:e2e6d095-e22a-432a-b4ce-4684d7271b19", - "x-request-time": "0.106" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T155238Z:603fd913-cfd9-4624-8681-563256d2fa35", + "x-request-time": "0.086" }, "ResponseBody": { "secretsType": "AccountKey", @@ -557,15 +557,15 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:53:12 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:52:40 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -574,9 +574,9 @@ "Content-Length": "508", "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:53:12 GMT", - "ETag": "\u00220x8DA96C8A69D2BBA\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:16:15 GMT", + "Date": "Fri, 23 Sep 2022 15:52:37 GMT", + "ETag": "\u00220x8DA9D770C570D84\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:19:46 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -585,32 +585,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:16:15 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:19:45 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "e95adacf-11cf-47c5-85eb-199ded56347d", + "x-ms-meta-name": "8c59cb92-112f-4c04-bda0-1342b610850d", "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "a26e0dac-f124-4247-b13c-6e81f9a28197", + "x-ms-meta-version": "c1f97989-616d-4b90-a0d6-bac9ea34bade", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:53:12 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:52:40 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:53:12 GMT", + "Date": "Fri, 23 Sep 2022 15:52:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -618,26 +618,26 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_344294504208?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_133782305661?api-version=2022-06-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1844", + "Content-Length": "1862", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { "properties": {}, "tags": {}, - "displayName": "test_344294504208", + "displayName": "test_133782305661", "experimentName": "azure-ai-ml", "isArchived": false, "jobType": "Pipeline", @@ -697,8 +697,9 @@ "mode": "Upload" } }, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1b3c9e54-cf15-46bf-87be-2dcabac6c4fb" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/58c537a2-1443-41b5-a294-955f3307d78d" } }, "outputs": { @@ -715,26 +716,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4406", + "Content-Length": "4428", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:53:17 GMT", + "Date": "Fri, 23 Sep 2022 15:52:47 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_344294504208?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_133782305661?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-fad73bc217b076cab0944d3c7b71fd50-426355930fc95ccd-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-b46ae3f67a7ec960098a2bbc9e223fde-b095a04007ee914a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-02", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "39f4c141-9513-439c-be84-5af3a649227e", - "x-ms-ratelimit-remaining-subscription-writes": "1035", + "x-ms-correlation-request-id": "424380f9-e1a7-42cb-8675-8ff433169796", + "x-ms-ratelimit-remaining-subscription-writes": "1179", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195318Z:39f4c141-9513-439c-be84-5af3a649227e", - "x-request-time": "2.811" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T155247Z:424380f9-e1a7-42cb-8675-8ff433169796", + "x-request-time": "3.989" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_344294504208", - "name": "test_344294504208", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_133782305661", + "name": "test_133782305661", "type": "Microsoft.MachineLearningServices/workspaces/jobs", "properties": { "description": null, @@ -750,14 +751,14 @@ "azureml.defaultDataStoreName": "workspaceblobstore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_344294504208", + "displayName": "test_133782305661", "status": "Preparing", "experimentName": "azure-ai-ml", "services": { "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null @@ -765,7 +766,7 @@ "Studio": { "jobServiceType": "Studio", "port": null, - "endpoint": "https://ml.azure.com/runs/test_344294504208?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "endpoint": "https://ml.azure.com/runs/test_133782305661?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, "properties": null @@ -816,8 +817,9 @@ "mode": "Upload" } }, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1b3c9e54-cf15-46bf-87be-2dcabac6c4fb" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/58c537a2-1443-41b5-a294-955f3307d78d" } }, "inputs": { @@ -854,14 +856,14 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-16T19:53:17.783019\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:52:46.7758361\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } } ], "Variables": { - "name": "test_344294504208" + "name": "test_133782305661" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_without_setting_binding_node.json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_without_setting_binding_node.json index 7ad88be646b9..4b7667226e74 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_without_setting_binding_node.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_pipeline_without_setting_binding_node.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,39 +15,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:51:55 GMT", + "Date": "Mon, 26 Sep 2022 04:56:10 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-6525b0ca0d0bb85b5f130b2a80f3ef9f-e1cae5fbeebea8d0-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-f6e942c1da48938492840a3d9d2afaa0-8bfe5acf71ea063a-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-01", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1a8a474a-d9d6-4561-a712-c4b10bee557d", - "x-ms-ratelimit-remaining-subscription-reads": "11775", + "x-ms-correlation-request-id": "959ed060-a0c8-4f3a-8995-b95b2a5cd235", + "x-ms-ratelimit-remaining-subscription-reads": "11999", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195155Z:1a8a474a-d9d6-4561-a712-c4b10bee557d", - "x-request-time": "0.073" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T045611Z:959ed060-a0c8-4f3a-8995-b95b2a5cd235", + "x-request-time": "0.237" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "centraluseuap", "tags": {}, "properties": { - "createdOn": "2022-09-15T03:11:46.912489\u002B00:00", - "modifiedOn": "2022-09-15T03:11:50.5830108\u002B00:00", + "createdOn": "2022-09-22T09:02:22.1899959\u002B00:00", + "modifiedOn": "2022-09-23T03:28:18.0066218\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "centraluseuap", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -56,22 +56,22 @@ "vmPriority": "Dedicated", "scaleSettings": { "maxNodeCount": 4, - "minNodeCount": 0, + "minNodeCount": 1, "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 4, - "targetNodeCount": 4, + "currentNodeCount": 1, + "targetNodeCount": 1, "nodeStateCounts": { "preparingNodeCount": 0, - "runningNodeCount": 4, - "idleNodeCount": 0, + "runningNodeCount": 0, + "idleNodeCount": 1, "unusableNodeCount": 0, "leavingNodeCount": 0, "preemptedNodeCount": 0 }, "allocationState": "Steady", - "allocationStateTransitionTime": "2022-09-16T19:44:21.123\u002B00:00", + "allocationStateTransitionTime": "2022-09-26T04:04:13.116\u002B00:00", "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", @@ -89,7 +89,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -97,24 +97,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:51:56 GMT", + "Date": "Mon, 26 Sep 2022 04:56:12 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-48224d68373164ac312aa845dab5c67c-8dc97d564196968e-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-63a7f0f471da25d889689f2470f6bad9-28bfe93a63911d05-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1462cdc1-84d6-4533-8344-e763a06c2680", - "x-ms-ratelimit-remaining-subscription-reads": "11774", + "x-ms-correlation-request-id": "40ae30b5-ee54-49b4-8ee8-a77e8e7b7b80", + "x-ms-ratelimit-remaining-subscription-reads": "11998", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195156Z:1462cdc1-84d6-4533-8344-e763a06c2680", - "x-request-time": "0.097" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T045613Z:40ae30b5-ee54-49b4-8ee8-a77e8e7b7b80", + "x-request-time": "0.200" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -129,17 +129,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -153,7 +153,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -161,21 +161,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:51:56 GMT", + "Date": "Mon, 26 Sep 2022 04:56:13 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-3ba567d42214ca4ef6d7d6217f9326f3-f00510ff0c66573b-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-0118dace82dcbb297826f2bb5339b629-7a9d067f376fc3c2-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2ecb08ed-f469-4987-bb55-228c3894f7c9", - "x-ms-ratelimit-remaining-subscription-writes": "1075", + "x-ms-correlation-request-id": "c35224be-5a0e-470e-a886-211c988c8a0c", + "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195156Z:2ecb08ed-f469-4987-bb55-228c3894f7c9", - "x-request-time": "0.089" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T045614Z:c35224be-5a0e-470e-a886-211c988c8a0c", + "x-request-time": "0.148" }, "ResponseBody": { "secretsType": "AccountKey", @@ -183,73 +183,98 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/train_src/train.py", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/train_src/train.py", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:51:55 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Mon, 26 Sep 2022 04:56:14 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 404, "ResponseHeaders": { - "Accept-Ranges": "bytes", - "Content-Length": "1502", - "Content-MD5": "zAix1RSwqgjraik/VOQjSg==", - "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:51:56 GMT", - "ETag": "\u00220x8DA96C8A5875023\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:16:14 GMT", + "Date": "Mon, 26 Sep 2022 04:56:15 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], + "Transfer-Encoding": "chunked", "Vary": "Origin", - "x-ms-access-tier": "Hot", - "x-ms-access-tier-inferred": "true", + "x-ms-error-code": "BlobNotFound", + "x-ms-version": "2021-08-06" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/train_src/train.py", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/xml", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "1459", + "Content-MD5": "0vFwXEoU1mnn7HUtIfbkVg==", + "Content-Type": "application/octet-stream", + "If-None-Match": "*", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:16:14 GMT", - "x-ms-lease-state": "available", - "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "76b899b0-a694-4624-a9e5-b0f4f6464cad", - "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "1", - "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-date": "Mon, 26 Sep 2022 04:56:15 GMT", + "x-ms-version": "2021-08-06" + }, + "RequestBody": "aW1wb3J0IGFyZ3BhcnNlCmltcG9ydCBvcwpmcm9tIGRhdGV0aW1lIGltcG9ydCBkYXRldGltZQpmcm9tIHBhdGhsaWIgaW1wb3J0IFBhdGgKZnJvbSB1dWlkIGltcG9ydCB1dWlkNAoKcGFyc2VyID0gYXJncGFyc2UuQXJndW1lbnRQYXJzZXIoInRyYWluIikKcGFyc2VyLmFkZF9hcmd1bWVudCgiLS10cmFpbmluZ19kYXRhIiwgdHlwZT1zdHIsIGhlbHA9IlBhdGggdG8gdHJhaW5pbmcgZGF0YSIpCnBhcnNlci5hZGRfYXJndW1lbnQoIi0tbWF4X2Vwb2NocyIsIHR5cGU9aW50LCBoZWxwPSJNYXggIyBvZiBlcG9jaHMgZm9yIHRoZSB0cmFpbmluZyIpCnBhcnNlci5hZGRfYXJndW1lbnQoIi0tbGVhcm5pbmdfcmF0ZSIsIHR5cGU9ZmxvYXQsIGhlbHA9IkxlYXJuaW5nIHJhdGUiKQpwYXJzZXIuYWRkX2FyZ3VtZW50KCItLWxlYXJuaW5nX3JhdGVfc2NoZWR1bGUiLCB0eXBlPXN0ciwgaGVscD0iTGVhcm5pbmcgcmF0ZSBzY2hlZHVsZSIpCnBhcnNlci5hZGRfYXJndW1lbnQoIi0tbW9kZWxfb3V0cHV0IiwgdHlwZT1zdHIsIGhlbHA9IlBhdGggb2Ygb3V0cHV0IG1vZGVsIikKCmFyZ3MgPSBwYXJzZXIucGFyc2VfYXJncygpCgpwcmludCgiaGVsbG8gdHJhaW5pbmcgd29ybGQuLi4iKQoKbGluZXMgPSBbCiAgICBmIlRyYWluaW5nIGRhdGEgcGF0aDoge2FyZ3MudHJhaW5pbmdfZGF0YX0iLAogICAgZiJNYXggZXBvY2hzOiB7YXJncy5tYXhfZXBvY2hzfSIsCiAgICBmIkxlYXJuaW5nIHJhdGU6IHthcmdzLmxlYXJuaW5nX3JhdGV9IiwKICAgIGYiTGVhcm5pbmcgcmF0ZToge2FyZ3MubGVhcm5pbmdfcmF0ZV9zY2hlZHVsZX0iLAogICAgZiJNb2RlbCBvdXRwdXQgcGF0aDoge2FyZ3MubW9kZWxfb3V0cHV0fSIsCl0KCmZvciBsaW5lIGluIGxpbmVzOgogICAgcHJpbnQobGluZSkKCnByaW50KCJtb3VudGVkX3BhdGggZmlsZXM6ICIpCmFyciA9IG9zLmxpc3RkaXIoYXJncy50cmFpbmluZ19kYXRhKQpwcmludChhcnIpCgpmb3IgZmlsZW5hbWUgaW4gYXJyOgogICAgcHJpbnQoInJlYWRpbmcgZmlsZTogJXMgLi4uIiAlIGZpbGVuYW1lKQogICAgd2l0aCBvcGVuKG9zLnBhdGguam9pbihhcmdzLnRyYWluaW5nX2RhdGEsIGZpbGVuYW1lKSwgInIiKSBhcyBoYW5kbGU6CiAgICAgICAgcHJpbnQoaGFuZGxlLnJlYWQoKSkKCgojIERvIHRoZSB0cmFpbiBhbmQgc2F2ZSB0aGUgdHJhaW5lZCBtb2RlbCBhcyBhIGZpbGUgaW50byB0aGUgb3V0cHV0IGZvbGRlci4KIyBIZXJlIG9ubHkgb3V0cHV0IGEgZHVtbXkgZGF0YSBmb3IgZGVtby4KY3VydGltZSA9IGRhdGV0aW1lLm5vdygpLnN0cmZ0aW1lKCIlYi0lZC0lWSAlSDolTTolUyIpCm1vZGVsID0gZiJUaGlzIGlzIGEgZHVtbXkgbW9kZWwgd2l0aCBpZDoge3N0cih1dWlkNCgpKX0gZ2VuZXJhdGVkIGF0OiB7Y3VydGltZX1cbiIKKFBhdGgoYXJncy5tb2RlbF9vdXRwdXQpIC8gIm1vZGVsLnR4dCIpLndyaXRlX3RleHQobW9kZWwpCg==", + "StatusCode": 201, + "ResponseHeaders": { + "Content-Length": "0", + "Content-MD5": "0vFwXEoU1mnn7HUtIfbkVg==", + "Date": "Mon, 26 Sep 2022 04:56:15 GMT", + "ETag": "\u00220x8DA9F7B716AA4F7\u0022", + "Last-Modified": "Mon, 26 Sep 2022 04:56:15 GMT", + "Server": [ + "Windows-Azure-Blob/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-content-crc64": "SrMvEJ0dNWM=", + "x-ms-request-server-encrypted": "true", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/train_src/train.py", - "RequestMethod": "HEAD", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/train_src/train.py?comp=metadata", + "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:51:55 GMT", - "x-ms-version": "2021-06-08" + "Content-Length": "0", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Mon, 26 Sep 2022 04:56:15 GMT", + "x-ms-meta-name": "000000000000000000000", + "x-ms-meta-upload_status": "completed", + "x-ms-meta-version": "1", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 404, + "StatusCode": 200, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:51:56 GMT", + "Content-Length": "0", + "Date": "Mon, 26 Sep 2022 04:56:15 GMT", + "ETag": "\u00220x8DA9F7B718861CE\u0022", + "Last-Modified": "Mon, 26 Sep 2022 04:56:16 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": "chunked", - "Vary": "Origin", - "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-request-server-encrypted": "true", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/76b899b0-a694-4624-a9e5-b0f4f6464cad/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -257,7 +282,7 @@ "Connection": "keep-alive", "Content-Length": "298", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -267,35 +292,31 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/train_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/train_src" } }, - "StatusCode": 200, + "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Encoding": "gzip", + "Content-Length": "813", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:51:56 GMT", + "Date": "Mon, 26 Sep 2022 04:56:17 GMT", "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-d45932b0b5c170c62b4e4502311afc8b-344b7d6687c8e8f8-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-8e6f78a40d740c9e910829fa68710bce-e0aaad2cd8ce4fd3-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "Transfer-Encoding": "chunked", - "Vary": [ - "Accept-Encoding", - "Accept-Encoding" - ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "001c4ce1-910b-426e-878a-fb5535f785a2", - "x-ms-ratelimit-remaining-subscription-writes": "1044", + "x-ms-correlation-request-id": "c3e3935f-6888-41d9-8e88-8bef60d4b29c", + "x-ms-ratelimit-remaining-subscription-writes": "1199", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195157Z:001c4ce1-910b-426e-878a-fb5535f785a2", - "x-request-time": "0.091" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T045618Z:c3e3935f-6888-41d9-8e88-8bef60d4b29c", + "x-request-time": "0.961" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/76b899b0-a694-4624-a9e5-b0f4f6464cad/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -307,14 +328,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/train_src" + "codeUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/train_src" }, "systemData": { - "createdAt": "2022-09-15T03:16:14.6600574\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-16T19:51:57.0278481\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-26T04:56:17.7054494\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-26T04:56:17.7054494\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -326,9 +347,9 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1429", + "Content-Length": "1414", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { @@ -339,7 +360,7 @@ "isArchived": false, "componentSpec": { "command": "python train.py --training_data ${{inputs.training_data}} $[[--max_epochs ${{inputs.max_epochs}}]] --learning_rate ${{inputs.learning_rate}} --learning_rate_schedule ${{inputs.learning_rate_schedule}} --model_output ${{outputs.model_output}}", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/76b899b0-a694-4624-a9e5-b0f4f6464cad/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "name": "azureml_anonymous", "description": "A dummy training component", @@ -378,26 +399,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "2456", + "Content-Length": "2439", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:51:57 GMT", + "Date": "Mon, 26 Sep 2022 04:56:20 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-cc539cb840d43172df1351d1461cbf61-c1cc360716b0ddb0-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-f9c694de73888c563b34d8793562a4f3-ded23eef899efeb0-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1e51ab99-c5f8-4ad3-aeed-0498ffd42721", - "x-ms-ratelimit-remaining-subscription-writes": "1043", + "x-ms-correlation-request-id": "3f44ae1e-b894-48c9-a4a3-3b4ca6a09693", + "x-ms-ratelimit-remaining-subscription-writes": "1198", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195157Z:1e51ab99-c5f8-4ad3-aeed-0498ffd42721", - "x-request-time": "0.601" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T045621Z:3f44ae1e-b894-48c9-a4a3-3b4ca6a09693", + "x-request-time": "2.335" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1b3c9e54-cf15-46bf-87be-2dcabac6c4fb", - "name": "1b3c9e54-cf15-46bf-87be-2dcabac6c4fb", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/feab4dda-1581-4411-8367-c4a402e10389", + "name": "feab4dda-1581-4411-8367-c4a402e10389", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -407,7 +428,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "1b3c9e54-cf15-46bf-87be-2dcabac6c4fb", + "version": "feab4dda-1581-4411-8367-c4a402e10389", "display_name": "Train Model", "is_deterministic": "True", "type": "command", @@ -437,7 +458,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/76b899b0-a694-4624-a9e5-b0f4f6464cad/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/5", "resources": { "instance_count": "1" @@ -447,11 +468,11 @@ } }, "systemData": { - "createdAt": "2022-09-16T03:25:11.5302547\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-26T04:56:20.3990814\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-16T03:25:11.7395881\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-26T04:56:20.3990814\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -463,7 +484,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -471,24 +492,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:51:57 GMT", + "Date": "Mon, 26 Sep 2022 04:56:20 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-0bca74f8ec6492c82a3b31f3761dbfd3-1e7941a547d671f8-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-1ce22de3431f0dd7f18dd7a02a97e048-e96fc934b4d9785c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "beffe83b-665d-43a3-8921-6c08535f6104", - "x-ms-ratelimit-remaining-subscription-reads": "11773", + "x-ms-correlation-request-id": "d499fefe-1591-4f68-8ee2-c64b89f3f1a3", + "x-ms-ratelimit-remaining-subscription-reads": "11997", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195158Z:beffe83b-665d-43a3-8921-6c08535f6104", - "x-request-time": "0.072" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T045621Z:d499fefe-1591-4f68-8ee2-c64b89f3f1a3", + "x-request-time": "0.155" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -503,17 +524,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sagh4dshas62md4", - "containerName": "azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085", + "accountName": "sagvgsoim6nmhbq", + "containerName": "azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-15T03:11:44.0146435\u002B00:00", + "createdAt": "2022-09-22T09:02:03.2629568\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-15T03:11:44.7999179\u002B00:00", + "lastModifiedAt": "2022-09-22T09:02:04.166989\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -527,7 +548,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -535,21 +556,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:51:59 GMT", + "Date": "Mon, 26 Sep 2022 04:56:21 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-fea63223f6fed5c11a311f89d727a982-296736c6da4a3af7-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-9d697409ce43d34b2f24eec9bb7c77c7-d0d8c1b46c72f118-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "fba0c5d0-50af-40da-805c-a32c22d2b1dc", - "x-ms-ratelimit-remaining-subscription-writes": "1074", + "x-ms-correlation-request-id": "37e0ee3c-c563-4110-9f78-96edb8193dac", + "x-ms-ratelimit-remaining-subscription-writes": "1198", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195159Z:fba0c5d0-50af-40da-805c-a32c22d2b1dc", - "x-request-time": "0.094" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T045622Z:37e0ee3c-c563-4110-9f78-96edb8193dac", + "x-request-time": "0.159" }, "ResponseBody": { "secretsType": "AccountKey", @@ -557,117 +578,112 @@ } }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/data/sample1.csv", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:51:58 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Mon, 26 Sep 2022 04:56:22 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, - "StatusCode": 200, + "StatusCode": 404, "ResponseHeaders": { - "Accept-Ranges": "bytes", - "Content-Length": "508", - "Content-MD5": "dUQjYq1qrTeqLOaZ4N2AUQ==", - "Content-Type": "application/octet-stream", - "Date": "Fri, 16 Sep 2022 19:51:58 GMT", - "ETag": "\u00220x8DA96C8A69D2BBA\u0022", - "Last-Modified": "Thu, 15 Sep 2022 03:16:15 GMT", + "Date": "Mon, 26 Sep 2022 04:56:22 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], + "Transfer-Encoding": "chunked", "Vary": "Origin", - "x-ms-access-tier": "Hot", - "x-ms-access-tier-inferred": "true", - "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Thu, 15 Sep 2022 03:16:15 GMT", - "x-ms-lease-state": "available", - "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "e95adacf-11cf-47c5-85eb-199ded56347d", - "x-ms-meta-upload_status": "completed", - "x-ms-meta-version": "a26e0dac-f124-4247-b13c-6e81f9a28197", - "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-error-code": "BlobNotFound", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sagh4dshas62md4.blob.core.windows.net/azureml-blobstore-a6d5a3b8-8717-4928-b8f7-4c9f36d21085/az-ml-artifacts/00000000000000000000000000000000/data/sample1.csv", - "RequestMethod": "HEAD", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/data/sample1.csv", + "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Fri, 16 Sep 2022 19:51:58 GMT", - "x-ms-version": "2021-06-08" + "Content-Length": "499", + "Content-MD5": "kD7N5\u002BygjTfbYTFhyEo7RA==", + "Content-Type": "application/octet-stream", + "If-None-Match": "*", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", + "x-ms-blob-type": "BlockBlob", + "x-ms-date": "Mon, 26 Sep 2022 04:56:23 GMT", + "x-ms-version": "2021-08-06" }, - "RequestBody": null, - "StatusCode": 404, + "RequestBody": "Ik1vbnRoIiwgIkF2ZXJhZ2UiLCAiMjAwNSIsICIyMDA2IiwgIjIwMDciLCAiMjAwOCIsICIyMDA5IiwgIjIwMTAiLCAiMjAxMSIsICIyMDEyIiwgIjIwMTMiLCAiMjAxNCIsICIyMDE1IgoiTWF5IiwgIDAuMSwgIDAsICAwLCAxLCAxLCAwLCAwLCAwLCAyLCAwLCAgMCwgIDAKIkp1biIsICAwLjUsICAyLCAgMSwgMSwgMCwgMCwgMSwgMSwgMiwgMiwgIDAsICAxCiJKdWwiLCAgMC43LCAgNSwgIDEsIDEsIDIsIDAsIDEsIDMsIDAsIDIsICAyLCAgMQoiQXVnIiwgIDIuMywgIDYsICAzLCAyLCA0LCA0LCA0LCA3LCA4LCAyLCAgMiwgIDMKIlNlcCIsICAzLjUsICA2LCAgNCwgNywgNCwgMiwgOCwgNSwgMiwgNSwgIDIsICA1CiJPY3QiLCAgMi4wLCAgOCwgIDAsIDEsIDMsIDIsIDUsIDEsIDUsIDIsICAzLCAgMAoiTm92IiwgIDAuNSwgIDMsICAwLCAwLCAxLCAxLCAwLCAxLCAwLCAxLCAgMCwgIDEKIkRlYyIsICAwLjAsICAxLCAgMCwgMSwgMCwgMCwgMCwgMCwgMCwgMCwgIDAsICAxCg==", + "StatusCode": 201, "ResponseHeaders": { - "Date": "Fri, 16 Sep 2022 19:51:58 GMT", + "Content-Length": "0", + "Content-MD5": "kD7N5\u002BygjTfbYTFhyEo7RA==", + "Date": "Mon, 26 Sep 2022 04:56:22 GMT", + "ETag": "\u00220x8DA9F7B75BA9904\u0022", + "Last-Modified": "Mon, 26 Sep 2022 04:56:23 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" ], - "Transfer-Encoding": "chunked", - "Vary": "Origin", - "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-content-crc64": "S4rnPALWg/k=", + "x-ms-request-server-encrypted": "true", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/providers/Microsoft.MachineLearningServices/locations/eastus2euap/mfeOperationResults/jc:a6d5a3b8-8717-4928-b8f7-4c9f36d21085:test_304340241628?api-version=2022-06-01-preview", - "RequestMethod": "GET", + "RequestUri": "https://sagvgsoim6nmhbq.blob.core.windows.net/azureml-blobstore-e61cd5e2-512f-475e-9842-5e2a973993b8/LocalUpload/00000000000000000000000000000000/data/sample1.csv?comp=metadata", + "RequestMethod": "PUT", "RequestHeaders": { - "Accept": "*/*", + "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "Content-Length": "0", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22621-SP0)", + "x-ms-date": "Mon, 26 Sep 2022 04:56:23 GMT", + "x-ms-meta-name": "40434c8a-1678-44bb-85d9-14f9fa29b22d", + "x-ms-meta-upload_status": "completed", + "x-ms-meta-version": "8c577706-6452-4264-99df-422db211ecd9", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, "ResponseHeaders": { - "Cache-Control": "no-cache", "Content-Length": "0", - "Date": "Fri, 16 Sep 2022 19:51:59 GMT", - "Expires": "-1", - "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-2917ca41ccb3364e08d7bdfc395f44d3-e06d435ed6878249-01\u0022", - "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-01", - "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "902cef37-dadb-4ee9-9142-5159851584f0", - "x-ms-ratelimit-remaining-subscription-reads": "11772", - "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195159Z:902cef37-dadb-4ee9-9142-5159851584f0", - "x-request-time": "0.032" + "Date": "Mon, 26 Sep 2022 04:56:23 GMT", + "ETag": "\u00220x8DA9F7B75D7B9B0\u0022", + "Last-Modified": "Mon, 26 Sep 2022 04:56:23 GMT", + "Server": [ + "Windows-Azure-Blob/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "x-ms-request-server-encrypted": "true", + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_935839131693?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_120875249304?api-version=2022-06-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1755", + "Content-Length": "1773", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22621-SP0)" }, "RequestBody": { "properties": { "properties": {}, "tags": {}, - "displayName": "test_935839131693", + "displayName": "test_120875249304", "experimentName": "azure-ai-ml", "isArchived": false, "jobType": "Pipeline", @@ -724,8 +740,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1b3c9e54-cf15-46bf-87be-2dcabac6c4fb" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/feab4dda-1581-4411-8367-c4a402e10389" } }, "outputs": { @@ -741,26 +758,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4345", + "Content-Length": "4370", "Content-Type": "application/json; charset=utf-8", - "Date": "Fri, 16 Sep 2022 19:52:04 GMT", + "Date": "Mon, 26 Sep 2022 04:56:30 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_935839131693?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_120875249304?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-ad8071b1d2403e08433bbcb4a216fe76-3dcf6816f8969dc3-01\u0022", + "Request-Context": "appId=cid-v1:512cc15a-13b5-415b-bfd0-dce7accb6bb1", + "Server-Timing": "traceparent;desc=\u002200-215b03bcf416d109c0c413d83588e6e4-9ce62f42d087531c-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-test-westus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a90bed65-5da4-492a-805e-eac4b24b30e0", - "x-ms-ratelimit-remaining-subscription-writes": "1042", + "x-ms-correlation-request-id": "3e8634b5-04e7-4d2b-a2e0-94c579ef1260", + "x-ms-ratelimit-remaining-subscription-writes": "1197", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220916T195204Z:a90bed65-5da4-492a-805e-eac4b24b30e0", - "x-request-time": "3.058" + "x-ms-routing-request-id": "SOUTHEASTASIA:20220926T045630Z:3e8634b5-04e7-4d2b-a2e0-94c579ef1260", + "x-request-time": "3.939" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_935839131693", - "name": "test_935839131693", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_120875249304", + "name": "test_120875249304", "type": "Microsoft.MachineLearningServices/workspaces/jobs", "properties": { "description": null, @@ -776,14 +793,14 @@ "azureml.defaultDataStoreName": "workspaceblobstore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_935839131693", + "displayName": "test_120875249304", "status": "Preparing", "experimentName": "azure-ai-ml", "services": { "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://master.api.azureml-test.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null @@ -791,7 +808,7 @@ "Studio": { "jobServiceType": "Studio", "port": null, - "endpoint": "https://ml.azure.com/runs/test_935839131693?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "endpoint": "https://ml.azure.com/runs/test_120875249304?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, "properties": null @@ -840,8 +857,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1b3c9e54-cf15-46bf-87be-2dcabac6c4fb" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/feab4dda-1581-4411-8367-c4a402e10389" } }, "inputs": { @@ -878,14 +896,14 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-16T19:52:04.3488315\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-26T04:56:29.4771189\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } } ], "Variables": { - "name": "test_935839131693" + "name": "test_120875249304" } } diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_remote_pipeline_component_job.json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_remote_pipeline_component_job.json new file mode 100644 index 000000000000..72cda58d49ae --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_remote_pipeline_component_job.json @@ -0,0 +1,763 @@ +{ + "Entries": [ + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore?api-version=2022-05-01", + "RequestMethod": "GET", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:55:28 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-17f0181bd49558ca172ca965894788a0-78a6f86ea681251c-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-eastus2-02", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "a269270f-a79e-422e-8608-146256198469", + "x-ms-ratelimit-remaining-subscription-reads": "11943", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T155528Z:a269270f-a79e-422e-8608-146256198469", + "x-request-time": "0.089" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", + "name": "workspaceblobstore", + "type": "Microsoft.MachineLearningServices/workspaces/datastores", + "properties": { + "description": null, + "tags": null, + "properties": null, + "isDefault": true, + "credentials": { + "credentialsType": "AccountKey" + }, + "datastoreType": "AzureBlob", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", + "endpoint": "core.windows.net", + "protocol": "https", + "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" + }, + "systemData": { + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", + "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", + "createdByType": "Application", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", + "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", + "lastModifiedByType": "Application" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore/listSecrets?api-version=2022-05-01", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "0", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:55:29 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-4705e777a7d2cc78707ee0a3bb13e0ca-7cd2fadbe9819eb9-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": "Accept-Encoding", + "x-aml-cluster": "vienna-eastus2-02", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "d5273737-ef28-4a08-b275-712f63e6969e", + "x-ms-ratelimit-remaining-subscription-writes": "1149", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T155529Z:d5273737-ef28-4a08-b275-712f63e6969e", + "x-request-time": "0.170" + }, + "ResponseBody": { + "secretsType": "AccountKey", + "key": "dGhpcyBpcyBmYWtlIGtleQ==" + } + }, + { + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestMethod": "HEAD", + "RequestHeaders": { + "Accept": "application/xml", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:55:31 GMT", + "x-ms-version": "2021-08-06" + }, + "RequestBody": null, + "StatusCode": 200, + "ResponseHeaders": { + "Accept-Ranges": "bytes", + "Content-Length": "35", + "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", + "Content-Type": "application/octet-stream", + "Date": "Fri, 23 Sep 2022 15:55:29 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", + "Server": [ + "Windows-Azure-Blob/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Vary": "Origin", + "x-ms-access-tier": "Hot", + "x-ms-access-tier-inferred": "true", + "x-ms-blob-type": "BlockBlob", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", + "x-ms-lease-state": "available", + "x-ms-lease-status": "unlocked", + "x-ms-meta-name": "000000000000000000000", + "x-ms-meta-upload_status": "completed", + "x-ms-meta-version": "1", + "x-ms-server-encrypted": "true", + "x-ms-version": "2021-08-06" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestMethod": "HEAD", + "RequestHeaders": { + "Accept": "application/xml", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:55:31 GMT", + "x-ms-version": "2021-08-06" + }, + "RequestBody": null, + "StatusCode": 404, + "ResponseHeaders": { + "Date": "Fri, 23 Sep 2022 15:55:29 GMT", + "Server": [ + "Windows-Azure-Blob/1.0", + "Microsoft-HTTPAPI/2.0" + ], + "Transfer-Encoding": "chunked", + "Vary": "Origin", + "x-ms-error-code": "BlobNotFound", + "x-ms-version": "2021-08-06" + }, + "ResponseBody": null + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1?api-version=2022-05-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "288", + "Content-Type": "application/json", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": { + "properties": { + "properties": { + "hash_sha256": "0000000000000", + "hash_version": "0000000000000" + }, + "isAnonymous": true, + "isArchived": false, + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" + } + }, + "StatusCode": 200, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Encoding": "gzip", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:55:30 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-d4b5c2f3319ba76c5b436904a3054c4b-d82b4b9c7c77e23a-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "Transfer-Encoding": "chunked", + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-aml-cluster": "vienna-eastus2-02", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "cbe6a3fc-48d2-4092-bf7f-902ffc516b22", + "x-ms-ratelimit-remaining-subscription-writes": "1154", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T155530Z:cbe6a3fc-48d2-4092-bf7f-902ffc516b22", + "x-request-time": "0.119" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", + "name": "1", + "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", + "properties": { + "description": null, + "tags": {}, + "properties": { + "hash_sha256": "0000000000000", + "hash_version": "0000000000000" + }, + "isArchived": false, + "isAnonymous": false, + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" + }, + "systemData": { + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T15:55:30.7020924\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", + "lastModifiedByType": "User" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "1433", + "Content-Type": "application/json", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": { + "properties": { + "description": "This is the basic command component", + "properties": {}, + "tags": { + "tag": "tagvalue", + "owner": "sdkteam" + }, + "isAnonymous": true, + "isArchived": false, + "componentSpec": { + "command": "echo Hello World \u0026 echo $[[${{inputs.component_in_number}}]] \u0026 echo ${{inputs.component_in_path}} \u0026 echo ${{outputs.component_out_path}} \u003E ${{outputs.component_out_path}}/component_in_number", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", + "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", + "name": "azureml_anonymous", + "description": "This is the basic command component", + "tags": { + "tag": "tagvalue", + "owner": "sdkteam" + }, + "version": "000000000000000000000", + "$schema": "https://azuremlschemas.azureedge.net/development/commandComponent.schema.json", + "display_name": "CommandComponentBasic", + "is_deterministic": true, + "inputs": { + "component_in_number": { + "type": "number", + "optional": true, + "default": "10.99", + "description": "A number" + }, + "component_in_path": { + "type": "uri_folder", + "description": "A path" + } + }, + "outputs": { + "component_out_path": { + "type": "uri_folder" + } + }, + "type": "command", + "_source": "YAML.JOB" + } + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "2398", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:55:31 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-e673b70cb88014d0082e20bd9c237c0b-550ff6b90888572a-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-aml-cluster": "vienna-eastus2-02", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "5f451902-5deb-44ce-addb-5e2fe3d69956", + "x-ms-ratelimit-remaining-subscription-writes": "1153", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T155531Z:5f451902-5deb-44ce-addb-5e2fe3d69956", + "x-request-time": "0.374" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/4f589440-3f2e-4f17-a8f1-f0f3a615594b", + "name": "4f589440-3f2e-4f17-a8f1-f0f3a615594b", + "type": "Microsoft.MachineLearningServices/workspaces/components/versions", + "properties": { + "description": null, + "tags": { + "tag": "tagvalue", + "owner": "sdkteam" + }, + "properties": {}, + "isArchived": false, + "isAnonymous": true, + "componentSpec": { + "name": "azureml_anonymous", + "version": "4f589440-3f2e-4f17-a8f1-f0f3a615594b", + "display_name": "CommandComponentBasic", + "is_deterministic": "True", + "type": "command", + "description": "This is the basic command component", + "tags": { + "tag": "tagvalue", + "owner": "sdkteam" + }, + "inputs": { + "component_in_path": { + "type": "uri_folder", + "optional": "False", + "description": "A path" + }, + "component_in_number": { + "type": "number", + "optional": "True", + "default": "10.99", + "description": "A number" + } + }, + "outputs": { + "component_out_path": { + "type": "uri_folder" + } + }, + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", + "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", + "resources": { + "instance_count": "1" + }, + "command": "echo Hello World \u0026 echo $[[${{inputs.component_in_number}}]] \u0026 echo ${{inputs.component_in_path}} \u0026 echo ${{outputs.component_out_path}} \u003E ${{outputs.component_out_path}}/component_in_number", + "$schema": "https://azuremlschemas.azureedge.net/development/commandComponent.schema.json" + } + }, + "systemData": { + "createdAt": "2022-09-23T15:20:40.98508\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T15:20:41.170452\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", + "lastModifiedByType": "User" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_958869116758/versions/1?api-version=2022-05-01", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "1629", + "Content-Type": "application/json", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": { + "properties": { + "description": "This is the basic pipeline component", + "properties": {}, + "tags": { + "tag": "tagvalue", + "owner": "sdkteam" + }, + "isAnonymous": false, + "isArchived": false, + "componentSpec": { + "name": "test_958869116758", + "description": "This is the basic pipeline component", + "tags": { + "tag": "tagvalue", + "owner": "sdkteam" + }, + "version": "1", + "$schema": "https://azuremlschemas.azureedge.net/development/pipelineComponent.schema.json", + "display_name": "Hello World Pipeline Component", + "is_deterministic": true, + "inputs": { + "component_in_number": { + "type": "number", + "optional": true, + "default": "10.99", + "description": "A number" + }, + "component_in_path": { + "type": "uri_folder", + "description": "A path" + } + }, + "outputs": { + "output_path": { + "type": "uri_folder" + } + }, + "type": "pipeline", + "jobs": { + "component_a_job": { + "resources": null, + "distribution": null, + "limits": null, + "environment_variables": {}, + "name": "component_a_job", + "type": "command", + "display_name": null, + "tags": {}, + "computeId": null, + "inputs": { + "component_in_number": { + "job_input_type": "literal", + "value": "${{parent.inputs.component_in_number}}" + }, + "component_in_path": { + "job_input_type": "literal", + "value": "${{parent.inputs.component_in_path}}" + } + }, + "outputs": { + "component_out_path": { + "value": "${{parent.outputs.output_path}}", + "type": "literal" + } + }, + "properties": {}, + "_source": "YAML.JOB", + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/4f589440-3f2e-4f17-a8f1-f0f3a615594b" + } + }, + "_source": "YAML.COMPONENT", + "sourceJobId": null + } + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1607", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:55:33 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_958869116758/versions/1?api-version=2022-05-01", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-0e17a5a622dc1d7ac8d7a8c1057db919-cd695c3f97ca704a-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-aml-cluster": "vienna-eastus2-02", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "32e82f09-33f6-4645-889e-61af4c74f7f1", + "x-ms-ratelimit-remaining-subscription-writes": "1152", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T155533Z:32e82f09-33f6-4645-889e-61af4c74f7f1", + "x-request-time": "0.987" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_958869116758/versions/1", + "name": "1", + "type": "Microsoft.MachineLearningServices/workspaces/components/versions", + "properties": { + "description": null, + "tags": { + "tag": "tagvalue", + "owner": "sdkteam" + }, + "properties": {}, + "isArchived": false, + "isAnonymous": false, + "componentSpec": { + "name": "test_958869116758", + "version": "1", + "display_name": "Hello World Pipeline Component", + "is_deterministic": "True", + "type": "pipeline", + "description": "This is the basic pipeline component", + "tags": { + "tag": "tagvalue", + "owner": "sdkteam" + }, + "inputs": { + "component_in_path": { + "type": "uri_folder", + "optional": "False", + "description": "A path" + }, + "component_in_number": { + "type": "number", + "optional": "True", + "default": "10.99", + "description": "A number" + } + }, + "outputs": { + "output_path": { + "type": "uri_folder" + } + }, + "$schema": "https://azuremlschemas.azureedge.net/development/pipelineComponent.schema.json" + } + }, + "systemData": { + "createdAt": "2022-09-23T15:55:33.0901584\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T15:55:33.2877484\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", + "lastModifiedByType": "User" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "RequestMethod": "PUT", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "869", + "Content-Type": "application/json", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": { + "properties": { + "description": "This is the basic pipeline component", + "properties": {}, + "tags": {}, + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_958869116758/versions/1", + "displayName": "Hello World Pipeline Component", + "experimentName": "azure-ai-ml", + "isArchived": false, + "jobType": "Pipeline", + "inputs": { + "component_in_number": { + "jobInputType": "literal", + "value": "10" + }, + "component_in_path": { + "uri": "https://dprepdata.blob.core.windows.net/demo/Titanic.csv", + "jobInputType": "uri_file" + } + }, + "jobs": {}, + "outputs": {}, + "settings": { + "default_compute": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", + "_source": "REMOTE.WORKSPACE.COMPONENT" + } + } + }, + "StatusCode": 201, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "2802", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:55:40 GMT", + "Expires": "-1", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000?api-version=2022-06-01-preview", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-c2de681129457c1500c8824f085fc6e3-6ec532d154714fdb-01\u0022", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-aml-cluster": "vienna-eastus2-02", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "01e685c5-001c-41df-ac8f-e44d39d54f03", + "x-ms-ratelimit-remaining-subscription-writes": "1151", + "x-ms-response-type": "standard", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T155540Z:01e685c5-001c-41df-ac8f-e44d39d54f03", + "x-request-time": "2.847" + }, + "ResponseBody": { + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000", + "name": "000000000000000000000", + "type": "Microsoft.MachineLearningServices/workspaces/jobs", + "properties": { + "description": "This is the basic pipeline component", + "tags": {}, + "properties": { + "azureml.DevPlatv2": "true", + "azureml.runsource": "azureml.PipelineRun", + "runSource": "MFE", + "runType": "HTTP", + "azureml.parameters": "{\u0022component_in_number\u0022:\u002210.99\u0022}", + "azureml.continue_on_step_failure": "True", + "azureml.continue_on_failed_optional_input": "True", + "azureml.defaultComputeName": "cpu-cluster", + "azureml.defaultDataStoreName": "workspaceblobstore", + "azureml.pipelineComponent": "pipelinerun" + }, + "displayName": "Hello World Pipeline Component", + "status": "Preparing", + "experimentName": "azure-ai-ml", + "services": { + "Tracking": { + "jobServiceType": "Tracking", + "port": null, + "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "status": null, + "errorMessage": null, + "properties": null + }, + "Studio": { + "jobServiceType": "Studio", + "port": null, + "endpoint": "https://ml.azure.com/runs/000000000000000000000?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "status": null, + "errorMessage": null, + "properties": null + } + }, + "computeId": null, + "isArchived": false, + "identity": null, + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/test_958869116758/versions/1", + "jobType": "Pipeline", + "settings": { + "default_compute": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", + "_source": "REMOTE.WORKSPACE.COMPONENT" + }, + "jobs": {}, + "inputs": { + "component_in_number": { + "description": null, + "jobInputType": "literal", + "value": "10" + }, + "component_in_path": { + "description": null, + "uri": "https://dprepdata.blob.core.windows.net/demo/Titanic.csv", + "mode": "ReadOnlyMount", + "jobInputType": "uri_file" + } + }, + "outputs": {}, + "sourceJobId": null + }, + "systemData": { + "createdAt": "2022-09-23T15:55:40.3034898\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User" + } + } + }, + { + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/000000000000000000000/cancel?api-version=2022-06-01-preview", + "RequestMethod": "POST", + "RequestHeaders": { + "Accept": "application/json", + "Accept-Encoding": "gzip, deflate", + "Connection": "keep-alive", + "Content-Length": "0", + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" + }, + "RequestBody": null, + "StatusCode": 400, + "ResponseHeaders": { + "Cache-Control": "no-cache", + "Content-Length": "1224", + "Content-Type": "application/json; charset=utf-8", + "Date": "Fri, 23 Sep 2022 15:55:59 GMT", + "Expires": "-1", + "Pragma": "no-cache", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Strict-Transport-Security": "max-age=31536000; includeSubDomains", + "x-aml-cluster": "vienna-eastus2-02", + "X-Content-Type-Options": "nosniff", + "x-ms-correlation-request-id": "e4fa16bf-60dd-464e-80c3-a96a85659814", + "x-ms-ratelimit-remaining-subscription-writes": "1148", + "x-ms-response-type": "error", + "x-ms-routing-request-id": "KOREACENTRAL:20220923T155559Z:e4fa16bf-60dd-464e-80c3-a96a85659814", + "x-request-time": "15.084" + }, + "ResponseBody": { + "error": { + "code": "UserError", + "message": "The pipeline run 000000000000000000000 is in terminal status, it can\u0027t be canceled.", + "details": [], + "additionalInfo": [ + { + "type": "ComponentName", + "info": { + "value": "managementfrontend" + } + }, + { + "type": "Correlation", + "info": { + "value": { + "operation": "a55abb911b37287b352c0f90047f5af6", + "request": "a2b6b49370703608" + } + } + }, + { + "type": "Environment", + "info": { + "value": "eastus2" + } + }, + { + "type": "Location", + "info": { + "value": "eastus2" + } + }, + { + "type": "Time", + "info": { + "value": "2022-09-23T15:55:59.6371806\u002B00:00" + } + }, + { + "type": "InnerError", + "info": { + "value": { + "code": "BadArgument", + "innerError": { + "code": "ArgumentInvalid", + "innerError": { + "code": "CancelPipelineRunInTerminalStatus", + "innerError": null + } + } + } + } + } + ] + } + } + } + ], + "Variables": { + "component_name": "test_958869116758" + } +} diff --git a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_sample_job_dump.json b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_sample_job_dump.json index e71588f21830..c28e9adfb403 100644 --- a/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_sample_job_dump.json +++ b/sdk/ml/azure-ai-ml/tests/recordings/pipeline_job/e2etests/test_pipeline_job.pyTestPipelineJobtest_sample_job_dump.json @@ -7,7 +7,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -15,39 +15,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:51 GMT", + "Date": "Fri, 23 Sep 2022 15:34:58 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-b3f00a837b63b73eb9714d9361948ee4-08ce7857c5632a0a-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-37d510dfb9fa03e9424e34d92a40cb2e-bf967e7934159a42-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "6f43b2e9-7269-45af-8a76-7ee8c2368145", - "x-ms-ratelimit-remaining-subscription-reads": "11980", + "x-ms-correlation-request-id": "990526e8-483e-461b-8fe1-f7e97de47751", + "x-ms-ratelimit-remaining-subscription-reads": "11976", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152852Z:6f43b2e9-7269-45af-8a76-7ee8c2368145", - "x-request-time": "0.041" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153458Z:990526e8-483e-461b-8fe1-f7e97de47751", + "x-request-time": "0.067" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-19T00:10:24.4202268\u002B00:00", - "modifiedOn": "2022-09-19T00:10:30.9839701\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "eastus2", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -60,32 +60,19 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 3, - "targetNodeCount": 4, + "currentNodeCount": 4, + "targetNodeCount": 3, "nodeStateCounts": { "preparingNodeCount": 0, "runningNodeCount": 2, "idleNodeCount": 1, "unusableNodeCount": 0, - "leavingNodeCount": 0, + "leavingNodeCount": 1, "preemptedNodeCount": 0 }, "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-19T14:29:24.068\u002B00:00", - "errors": [ - { - "error": { - "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_cfbcbd349a72d6d7f2aa698e8c5085e5b6ca6efe46bc772e18b585c80bd7eb63_d: There is not enough disk space on the node", - "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - } - ] - } - } - ], + "allocationStateTransitionTime": "2022-09-23T15:31:36.126\u002B00:00", + "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -102,7 +89,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -110,39 +97,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:52 GMT", + "Date": "Fri, 23 Sep 2022 15:34:59 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-03b2ef77c9991e12a77b9780c7098b80-ffa88de851cdc354-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-06d3a83be7ddeafd10e7cb402f268cf2-3f23288975903038-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "20f4b589-910a-434a-bfce-a3941bc1959b", - "x-ms-ratelimit-remaining-subscription-reads": "11979", + "x-ms-correlation-request-id": "783984d7-e011-4f5d-83c8-f3c7017db414", + "x-ms-ratelimit-remaining-subscription-reads": "11975", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152852Z:20f4b589-910a-434a-bfce-a3941bc1959b", - "x-request-time": "0.048" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153500Z:783984d7-e011-4f5d-83c8-f3c7017db414", + "x-request-time": "0.050" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-19T00:10:24.4202268\u002B00:00", - "modifiedOn": "2022-09-19T00:10:30.9839701\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "eastus2", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -155,32 +142,19 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 3, - "targetNodeCount": 4, + "currentNodeCount": 4, + "targetNodeCount": 3, "nodeStateCounts": { "preparingNodeCount": 0, "runningNodeCount": 2, "idleNodeCount": 1, "unusableNodeCount": 0, - "leavingNodeCount": 0, + "leavingNodeCount": 1, "preemptedNodeCount": 0 }, "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-19T14:29:24.068\u002B00:00", - "errors": [ - { - "error": { - "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_cfbcbd349a72d6d7f2aa698e8c5085e5b6ca6efe46bc772e18b585c80bd7eb63_d: There is not enough disk space on the node", - "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - } - ] - } - } - ], + "allocationStateTransitionTime": "2022-09-23T15:31:36.126\u002B00:00", + "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -197,7 +171,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -205,39 +179,39 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:52 GMT", + "Date": "Fri, 23 Sep 2022 15:35:00 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-2afe4cdcefc07d22f518b9f2687b440d-73393396c907a08f-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-d88f51f685e4cf8916833ab235a2ea0c-d804063c9297a10f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "64eece32-b7b0-4833-9fb0-6ea6e26a0e05", - "x-ms-ratelimit-remaining-subscription-reads": "11978", + "x-ms-correlation-request-id": "86918ca8-e5f7-4021-8228-0f6cd9665cce", + "x-ms-ratelimit-remaining-subscription-reads": "11974", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152852Z:64eece32-b7b0-4833-9fb0-6ea6e26a0e05", - "x-request-time": "0.046" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153501Z:86918ca8-e5f7-4021-8228-0f6cd9665cce", + "x-request-time": "0.064" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "name": "cpu-cluster", "type": "Microsoft.MachineLearningServices/workspaces/computes", - "location": "eastus2euap", + "location": "eastus2", "tags": {}, "properties": { - "createdOn": "2022-09-19T00:10:24.4202268\u002B00:00", - "modifiedOn": "2022-09-19T00:10:30.9839701\u002B00:00", + "createdOn": "2022-09-22T03:07:49.0785672\u002B00:00", + "modifiedOn": "2022-09-22T03:11:33.0343741\u002B00:00", "disableLocalAuth": false, "description": null, "resourceId": null, "computeType": "AmlCompute", - "computeLocation": "eastus2euap", + "computeLocation": "eastus2", "provisioningState": "Succeeded", "provisioningErrors": null, "isAttachedCompute": false, @@ -250,32 +224,19 @@ "nodeIdleTimeBeforeScaleDown": "PT2M" }, "subnet": null, - "currentNodeCount": 3, - "targetNodeCount": 4, + "currentNodeCount": 4, + "targetNodeCount": 3, "nodeStateCounts": { "preparingNodeCount": 0, "runningNodeCount": 2, "idleNodeCount": 1, "unusableNodeCount": 0, - "leavingNodeCount": 0, + "leavingNodeCount": 1, "preemptedNodeCount": 0 }, "allocationState": "Resizing", - "allocationStateTransitionTime": "2022-09-19T14:29:24.068\u002B00:00", - "errors": [ - { - "error": { - "code": "DiskFull", - "message": "ComputeNode.Id=tvmps_cfbcbd349a72d6d7f2aa698e8c5085e5b6ca6efe46bc772e18b585c80bd7eb63_d: There is not enough disk space on the node", - "details": [ - { - "code": "Message", - "message": "The VM disk is full. Delete jobs, tasks, or files on the node to free up space and then reboot the node." - } - ] - } - } - ], + "allocationStateTransitionTime": "2022-09-23T15:31:36.126\u002B00:00", + "errors": null, "remoteLoginPortPublicAccess": "Enabled", "osType": "Linux", "virtualMachineImage": null, @@ -292,7 +253,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -300,24 +261,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:53 GMT", + "Date": "Fri, 23 Sep 2022 15:35:04 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-3aafa86d944320e101713dccfca58f5d-05b253e19a538bbc-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-6b1ccf3957133275d5bf7398fb9a4a1e-77f531b3639aca17-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9bff873e-05d0-463f-b6ea-5b4cff6d0f89", - "x-ms-ratelimit-remaining-subscription-reads": "11977", + "x-ms-correlation-request-id": "bb1f76f8-a531-4558-adfb-da154d580c4e", + "x-ms-ratelimit-remaining-subscription-reads": "11973", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152854Z:9bff873e-05d0-463f-b6ea-5b4cff6d0f89", - "x-request-time": "0.092" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153505Z:bb1f76f8-a531-4558-adfb-da154d580c4e", + "x-request-time": "0.107" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -332,17 +293,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sawcdivl5vo3cem", - "containerName": "azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-19T00:10:19.4497254\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-19T00:10:20.0957203\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -356,7 +317,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -364,21 +325,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:53 GMT", + "Date": "Fri, 23 Sep 2022 15:35:05 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-37b224db4d1bee026aca75476f0b6e7c-2f26453136bbe1f3-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-e8e69dc4f78145e62e517bedd37668b5-77e2eb60f529ca4f-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "2dbb2fee-c8b8-4394-b935-95218cf11956", - "x-ms-ratelimit-remaining-subscription-writes": "1190", + "x-ms-correlation-request-id": "b7699ff8-c530-42e9-81da-d2416d5c7de2", + "x-ms-ratelimit-remaining-subscription-writes": "1195", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152854Z:2dbb2fee-c8b8-4394-b935-95218cf11956", - "x-request-time": "0.101" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153506Z:b7699ff8-c530-42e9-81da-d2416d5c7de2", + "x-request-time": "0.086" }, "ResponseBody": { "secretsType": "AccountKey", @@ -386,15 +347,15 @@ } }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Mon, 19 Sep 2022 15:28:54 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:35:08 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -403,9 +364,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Mon, 19 Sep 2022 15:28:53 GMT", - "ETag": "\u00220x8DA99D37A4F8142\u0022", - "Last-Modified": "Mon, 19 Sep 2022 00:11:19 GMT", + "Date": "Fri, 23 Sep 2022 15:35:06 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -414,32 +375,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Mon, 19 Sep 2022 00:11:19 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "3d85346b-0def-4d25-b9b1-cc4bdc4a3056", + "x-ms-meta-name": "000000000000000000000", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Mon, 19 Sep 2022 15:28:54 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:35:08 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Mon, 19 Sep 2022 15:28:53 GMT", + "Date": "Fri, 23 Sep 2022 15:35:06 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -447,12 +408,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3d85346b-0def-4d25-b9b1-cc4bdc4a3056/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -460,7 +421,7 @@ "Connection": "keep-alive", "Content-Length": "288", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -470,7 +431,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -478,27 +439,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:54 GMT", + "Date": "Fri, 23 Sep 2022 15:35:07 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-dee02cef5f63782b0124ba28d9a916d8-e710a65527296b50-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-f4be4c337b88c7e507d0d4672c81bc1c-249581f581fbbdda-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "1596026c-a9a2-4b4b-9eb2-24e8e1d80c67", - "x-ms-ratelimit-remaining-subscription-writes": "1182", + "x-ms-correlation-request-id": "f427181d-ea25-4dfd-b224-2a59a03a5102", + "x-ms-ratelimit-remaining-subscription-writes": "1194", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152854Z:1596026c-a9a2-4b4b-9eb2-24e8e1d80c67", - "x-request-time": "0.059" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153508Z:f427181d-ea25-4dfd-b224-2a59a03a5102", + "x-request-time": "0.689" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3d85346b-0def-4d25-b9b1-cc4bdc4a3056/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -510,14 +471,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-19T00:11:20.0229231\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-19T15:28:54.8565204\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T15:35:08.4576569\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -529,9 +490,9 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1032", + "Content-Length": "1017", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -542,7 +503,7 @@ "isArchived": false, "componentSpec": { "command": "echo \u0022Hello World\u0022 \u003E ${{outputs.component_out_path_1}}/helloworld.txt", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3d85346b-0def-4d25-b9b1-cc4bdc4a3056/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "description": "Simple job that writes hello world to file.", @@ -565,26 +526,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1842", + "Content-Length": "1825", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:54 GMT", + "Date": "Fri, 23 Sep 2022 15:35:09 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-19310303c7c5d8f8dc54a504114d8eb5-3727f2373981cbf5-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-5d700846c976d5b5de0c1528284cfcc3-bdb6a290ccb92500-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9f7ce78a-1016-4c97-aae2-449f143286af", - "x-ms-ratelimit-remaining-subscription-writes": "1181", + "x-ms-correlation-request-id": "a12834ca-b811-4492-aba3-92facbbce98e", + "x-ms-ratelimit-remaining-subscription-writes": "1193", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152855Z:9f7ce78a-1016-4c97-aae2-449f143286af", - "x-request-time": "0.368" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153510Z:a12834ca-b811-4492-aba3-92facbbce98e", + "x-request-time": "0.450" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/933354cc-34e9-4267-b646-1b513464a564", - "name": "933354cc-34e9-4267-b646-1b513464a564", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1bf47d41-9ae3-4f6c-ad73-9fb7b939f82e", + "name": "1bf47d41-9ae3-4f6c-ad73-9fb7b939f82e", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -594,7 +555,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "933354cc-34e9-4267-b646-1b513464a564", + "version": "1bf47d41-9ae3-4f6c-ad73-9fb7b939f82e", "display_name": "hello_world_inline_commandjob_1", "is_deterministic": "True", "type": "command", @@ -604,7 +565,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3d85346b-0def-4d25-b9b1-cc4bdc4a3056/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -614,11 +575,11 @@ } }, "systemData": { - "createdAt": "2022-09-19T15:26:35.1908813\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:30:02.6930477\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-19T15:26:35.3877839\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:30:02.8548403\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -630,7 +591,7 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -638,24 +599,24 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:55 GMT", + "Date": "Fri, 23 Sep 2022 15:35:10 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-73f1ecd9ccce1cca526e539e6f6b8513-3524aef2c71babbf-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-ff16107316f8f9fb7776c265852192da-4e3f45f866401839-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "ef52fd9c-b4b7-4d1e-a857-05a943da2109", - "x-ms-ratelimit-remaining-subscription-reads": "11976", + "x-ms-correlation-request-id": "b0ac4b60-5697-4cd7-9ed7-6ddd71719253", + "x-ms-ratelimit-remaining-subscription-reads": "11972", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152855Z:ef52fd9c-b4b7-4d1e-a857-05a943da2109", - "x-request-time": "0.178" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153511Z:b0ac4b60-5697-4cd7-9ed7-6ddd71719253", + "x-request-time": "0.086" }, "ResponseBody": { "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/datastores/workspaceblobstore", @@ -670,17 +631,17 @@ "credentialsType": "AccountKey" }, "datastoreType": "AzureBlob", - "accountName": "sawcdivl5vo3cem", - "containerName": "azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc", + "accountName": "sav6dhrxexwlv7g", + "containerName": "azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c", "endpoint": "core.windows.net", "protocol": "https", "serviceDataAccessAuthIdentity": "WorkspaceSystemAssignedIdentity" }, "systemData": { - "createdAt": "2022-09-19T00:10:19.4497254\u002B00:00", + "createdAt": "2022-09-22T03:07:29.4396872\u002B00:00", "createdBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "createdByType": "Application", - "lastModifiedAt": "2022-09-19T00:10:20.0957203\u002B00:00", + "lastModifiedAt": "2022-09-22T03:07:30.424941\u002B00:00", "lastModifiedBy": "779301c0-18b2-4cdc-801b-a0a3368fee0a", "lastModifiedByType": "Application" } @@ -694,7 +655,7 @@ "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", "Content-Length": "0", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": null, "StatusCode": 200, @@ -702,21 +663,21 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:55 GMT", + "Date": "Fri, 23 Sep 2022 15:35:11 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-fac24102bf4cbf2badbf4022b4f4354d-1af475cef4d5076f-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-fb4b8e1c7c69763eb925b5a800b6be5e-43b68dd336ffe670-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": "Accept-Encoding", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "c51755ec-7803-4e6b-859c-09366c184771", - "x-ms-ratelimit-remaining-subscription-writes": "1189", + "x-ms-correlation-request-id": "d746592a-0d50-4730-9a3f-782cec96f3e7", + "x-ms-ratelimit-remaining-subscription-writes": "1194", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152856Z:c51755ec-7803-4e6b-859c-09366c184771", - "x-request-time": "0.112" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153511Z:d746592a-0d50-4730-9a3f-782cec96f3e7", + "x-request-time": "0.111" }, "ResponseBody": { "secretsType": "AccountKey", @@ -724,15 +685,15 @@ } }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Mon, 19 Sep 2022 15:28:55 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:35:14 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 200, @@ -741,9 +702,9 @@ "Content-Length": "35", "Content-MD5": "L/DnSpFIn\u002BjaQWc\u002BsUQdcw==", "Content-Type": "application/octet-stream", - "Date": "Mon, 19 Sep 2022 15:28:55 GMT", - "ETag": "\u00220x8DA99D37A4F8142\u0022", - "Last-Modified": "Mon, 19 Sep 2022 00:11:19 GMT", + "Date": "Fri, 23 Sep 2022 15:35:12 GMT", + "ETag": "\u00220x8DA9D772BED71A9\u0022", + "Last-Modified": "Fri, 23 Sep 2022 15:20:38 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -752,32 +713,32 @@ "x-ms-access-tier": "Hot", "x-ms-access-tier-inferred": "true", "x-ms-blob-type": "BlockBlob", - "x-ms-creation-time": "Mon, 19 Sep 2022 00:11:19 GMT", + "x-ms-creation-time": "Fri, 23 Sep 2022 15:20:37 GMT", "x-ms-lease-state": "available", "x-ms-lease-status": "unlocked", - "x-ms-meta-name": "3d85346b-0def-4d25-b9b1-cc4bdc4a3056", + "x-ms-meta-name": "000000000000000000000", "x-ms-meta-upload_status": "completed", "x-ms-meta-version": "1", "x-ms-server-encrypted": "true", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", + "RequestUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/az-ml-artifacts/00000000000000000000000000000000/COMPONENT_PLACEHOLDER", "RequestMethod": "HEAD", "RequestHeaders": { "Accept": "application/xml", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "User-Agent": "azsdk-python-storage-blob/12.12.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)", - "x-ms-date": "Mon, 19 Sep 2022 15:28:56 GMT", - "x-ms-version": "2021-06-08" + "User-Agent": "azsdk-python-storage-blob/12.13.1 Python/3.9.13 (Windows-10-10.0.22622-SP0)", + "x-ms-date": "Fri, 23 Sep 2022 15:35:14 GMT", + "x-ms-version": "2021-08-06" }, "RequestBody": null, "StatusCode": 404, "ResponseHeaders": { - "Date": "Mon, 19 Sep 2022 15:28:55 GMT", + "Date": "Fri, 23 Sep 2022 15:35:12 GMT", "Server": [ "Windows-Azure-Blob/1.0", "Microsoft-HTTPAPI/2.0" @@ -785,12 +746,12 @@ "Transfer-Encoding": "chunked", "Vary": "Origin", "x-ms-error-code": "BlobNotFound", - "x-ms-version": "2021-06-08" + "x-ms-version": "2021-08-06" }, "ResponseBody": null }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3d85346b-0def-4d25-b9b1-cc4bdc4a3056/versions/1?api-version=2022-05-01", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1?api-version=2022-05-01", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", @@ -798,7 +759,7 @@ "Connection": "keep-alive", "Content-Length": "288", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -808,7 +769,7 @@ }, "isAnonymous": true, "isArchived": false, - "codeUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" } }, "StatusCode": 200, @@ -816,27 +777,27 @@ "Cache-Control": "no-cache", "Content-Encoding": "gzip", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:56 GMT", + "Date": "Fri, 23 Sep 2022 15:35:12 GMT", "Expires": "-1", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-21e64ad1989fcf79cfa28877bd8f4ddc-89b4d8e0da70ec5c-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-b41644495a142db0a1d2233b3590e6b5-840a832f30463fdd-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", "Transfer-Encoding": "chunked", "Vary": [ "Accept-Encoding", "Accept-Encoding" ], - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "9d529e52-fb25-49a5-be85-a5ba3c54699e", - "x-ms-ratelimit-remaining-subscription-writes": "1180", + "x-ms-correlation-request-id": "57f1b986-836f-49b9-87f6-3e28f1669952", + "x-ms-ratelimit-remaining-subscription-writes": "1192", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152857Z:9d529e52-fb25-49a5-be85-a5ba3c54699e", - "x-request-time": "0.060" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153513Z:57f1b986-836f-49b9-87f6-3e28f1669952", + "x-request-time": "0.065" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3d85346b-0def-4d25-b9b1-cc4bdc4a3056/versions/1", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "name": "1", "type": "Microsoft.MachineLearningServices/workspaces/codes/versions", "properties": { @@ -848,14 +809,14 @@ }, "isArchived": false, "isAnonymous": false, - "codeUri": "https://sawcdivl5vo3cem.blob.core.windows.net/azureml-blobstore-e17a3673-0df1-4734-b827-58bdbe7ad5bc/LocalUpload/00000000000000000000000000000000" + "codeUri": "https://sav6dhrxexwlv7g.blob.core.windows.net/azureml-blobstore-e950f876-7257-4cf3-99a5-ff66812ac44c/LocalUpload/00000000000000000000000000000000" }, "systemData": { - "createdAt": "2022-09-19T00:11:20.0229231\u002B00:00", - "createdBy": "10832f61-6ea1-44eb-9622-85f30271eec4", - "createdByType": "Application", - "lastModifiedAt": "2022-09-19T15:28:57.3994093\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:20:39.7504863\u002B00:00", + "createdBy": "Zhengfei Wang", + "createdByType": "User", + "lastModifiedAt": "2022-09-23T15:35:13.3622391\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } @@ -867,9 +828,9 @@ "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "1015", + "Content-Length": "1000", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -880,7 +841,7 @@ "isArchived": false, "componentSpec": { "command": "echo \u0022Hello World\u0022 \u003E ${{outputs.component_out_path_2}}/helloworld.txt", - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3d85346b-0def-4d25-b9b1-cc4bdc4a3056/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "name": "azureml_anonymous", "description": "Simple job that writes hello world to file.", @@ -902,26 +863,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "1842", + "Content-Length": "1825", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:28:57 GMT", + "Date": "Fri, 23 Sep 2022 15:35:13 GMT", "Expires": "-1", "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/000000000000000000000?api-version=2022-05-01", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-b63a6572a2b759307a9b7658c94c3f95-f9c2747b371b663a-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-47cbdb0c291861060318b757ce2d21e4-c8b47d2a148efdd5-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "a17a732c-d117-46bd-ac5c-271764849e98", - "x-ms-ratelimit-remaining-subscription-writes": "1179", + "x-ms-correlation-request-id": "91156029-0b3e-42c0-9a54-e915c7502c33", + "x-ms-ratelimit-remaining-subscription-writes": "1191", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152857Z:a17a732c-d117-46bd-ac5c-271764849e98", - "x-request-time": "0.324" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153514Z:91156029-0b3e-42c0-9a54-e915c7502c33", + "x-request-time": "0.338" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d6b8c09f-f22f-4097-83ca-485d3714f4ab", - "name": "d6b8c09f-f22f-4097-83ca-485d3714f4ab", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/15c4400d-cf29-4615-b2bf-cb856311b395", + "name": "15c4400d-cf29-4615-b2bf-cb856311b395", "type": "Microsoft.MachineLearningServices/workspaces/components/versions", "properties": { "description": null, @@ -931,7 +892,7 @@ "isAnonymous": true, "componentSpec": { "name": "azureml_anonymous", - "version": "d6b8c09f-f22f-4097-83ca-485d3714f4ab", + "version": "15c4400d-cf29-4615-b2bf-cb856311b395", "display_name": "hello_world_inline_commandjob_2", "is_deterministic": "True", "type": "command", @@ -941,7 +902,7 @@ "type": "uri_folder" } }, - "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/3d85346b-0def-4d25-b9b1-cc4bdc4a3056/versions/1", + "code": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/codes/000000000000000000000/versions/1", "environment": "azureml:/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/environments/AzureML-sklearn-0.24-ubuntu18.04-py37-cpu/versions/1", "resources": { "instance_count": "1" @@ -951,25 +912,25 @@ } }, "systemData": { - "createdAt": "2022-09-19T15:26:38.2394981\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:30:07.5245299\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User", - "lastModifiedAt": "2022-09-19T15:26:38.4301853\u002B00:00", - "lastModifiedBy": "Neehar Duvvuri", + "lastModifiedAt": "2022-09-23T15:30:07.6524186\u002B00:00", + "lastModifiedBy": "Zhengfei Wang", "lastModifiedByType": "User" } } }, { - "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_453648322152?api-version=2022-06-01-preview", + "RequestUri": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_638042738617?api-version=2022-06-01-preview", "RequestMethod": "PUT", "RequestHeaders": { "Accept": "application/json", "Accept-Encoding": "gzip, deflate", "Connection": "keep-alive", - "Content-Length": "2016", + "Content-Length": "2052", "Content-Type": "application/json", - "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.8.6 (Windows-10-10.0.22000-SP0)" + "User-Agent": "azure-ai-ml/0.0.139 azsdk-python-mgmt-machinelearningservices/0.1.0 Python/3.9.13 (Windows-10-10.0.22622-SP0)" }, "RequestBody": { "properties": { @@ -980,7 +941,7 @@ "owner": "sdkteam" }, "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", - "displayName": "test_453648322152", + "displayName": "test_638042738617", "experimentName": "azure-ai-ml", "isArchived": false, "jobType": "Pipeline", @@ -1003,8 +964,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/933354cc-34e9-4267-b646-1b513464a564" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1bf47d41-9ae3-4f6c-ad73-9fb7b939f82e" }, "hello_world_inline_commandjob_2": { "resources": null, @@ -1018,8 +980,9 @@ "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "inputs": {}, "outputs": {}, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d6b8c09f-f22f-4097-83ca-485d3714f4ab" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/15c4400d-cf29-4615-b2bf-cb856311b395" } }, "outputs": { @@ -1036,26 +999,26 @@ "StatusCode": 201, "ResponseHeaders": { "Cache-Control": "no-cache", - "Content-Length": "4151", + "Content-Length": "4198", "Content-Type": "application/json; charset=utf-8", - "Date": "Mon, 19 Sep 2022 15:29:03 GMT", + "Date": "Fri, 23 Sep 2022 15:35:21 GMT", "Expires": "-1", - "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_453648322152?api-version=2022-06-01-preview", + "Location": "https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_638042738617?api-version=2022-06-01-preview", "Pragma": "no-cache", - "Request-Context": "appId=cid-v1:17d65b70-e9ce-4ed5-9347-1f660ec782e9", - "Server-Timing": "traceparent;desc=\u002200-e9bd11a9792c43d522f0ba487ad91055-7a40309e2a132d08-01\u0022", + "Request-Context": "appId=cid-v1:2d2e8e63-272e-4b3c-8598-4ee570a0e70d", + "Server-Timing": "traceparent;desc=\u002200-362f8ea76fa46695bc1c03b0890bad13-30252de9cfad809b-01\u0022", "Strict-Transport-Security": "max-age=31536000; includeSubDomains", - "x-aml-cluster": "vienna-eastus2euap-02", + "x-aml-cluster": "vienna-eastus2-01", "X-Content-Type-Options": "nosniff", - "x-ms-correlation-request-id": "38636bfa-a3a1-4a4e-a94f-212320e9e1f3", - "x-ms-ratelimit-remaining-subscription-writes": "1178", + "x-ms-correlation-request-id": "25eb556f-a618-4607-92cf-2d6de55ab590", + "x-ms-ratelimit-remaining-subscription-writes": "1190", "x-ms-response-type": "standard", - "x-ms-routing-request-id": "CANADACENTRAL:20220919T152904Z:38636bfa-a3a1-4a4e-a94f-212320e9e1f3", - "x-request-time": "2.879" + "x-ms-routing-request-id": "KOREACENTRAL:20220923T153522Z:25eb556f-a618-4607-92cf-2d6de55ab590", + "x-request-time": "3.856" }, "ResponseBody": { - "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_453648322152", - "name": "test_453648322152", + "id": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/jobs/test_638042738617", + "name": "test_638042738617", "type": "Microsoft.MachineLearningServices/workspaces/jobs", "properties": { "description": "The hello world pipeline job with inline command job having inputs", @@ -1075,14 +1038,14 @@ "azureml.defaultDataStoreName": "workspaceblobstore", "azureml.pipelineComponent": "pipelinerun" }, - "displayName": "test_453648322152", + "displayName": "test_638042738617", "status": "Preparing", "experimentName": "azure-ai-ml", "services": { "Tracking": { "jobServiceType": "Tracking", "port": null, - "endpoint": "azureml://eastus2euap.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", + "endpoint": "azureml://eastus2.api.azureml.ms/mlflow/v1.0/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000?", "status": null, "errorMessage": null, "properties": null @@ -1090,7 +1053,7 @@ "Studio": { "jobServiceType": "Studio", "port": null, - "endpoint": "https://ml.azure.com/runs/test_453648322152?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", + "endpoint": "https://ml.azure.com/runs/test_638042738617?wsid=/subscriptions/00000000-0000-0000-0000-000000000/resourcegroups/00000/workspaces/00000", "status": null, "errorMessage": null, "properties": null @@ -1122,8 +1085,9 @@ "type": "literal" } }, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/933354cc-34e9-4267-b646-1b513464a564" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/1bf47d41-9ae3-4f6c-ad73-9fb7b939f82e" }, "hello_world_inline_commandjob_2": { "resources": null, @@ -1137,8 +1101,9 @@ "computeId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/computes/cpu-cluster", "inputs": {}, "outputs": {}, + "properties": {}, "_source": "YAML.JOB", - "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/d6b8c09f-f22f-4097-83ca-485d3714f4ab" + "componentId": "/subscriptions/00000000-0000-0000-0000-000000000/resourceGroups/00000/providers/Microsoft.MachineLearningServices/workspaces/00000/components/azureml_anonymous/versions/15c4400d-cf29-4615-b2bf-cb856311b395" } }, "inputs": {}, @@ -1153,14 +1118,14 @@ "sourceJobId": null }, "systemData": { - "createdAt": "2022-09-19T15:29:03.5227435\u002B00:00", - "createdBy": "Neehar Duvvuri", + "createdAt": "2022-09-23T15:35:22.1846088\u002B00:00", + "createdBy": "Zhengfei Wang", "createdByType": "User" } } } ], "Variables": { - "name": "test_453648322152" + "name": "test_638042738617" } } diff --git a/sdk/ml/azure-ai-ml/tests/schedule/e2etests/test_schedule.py b/sdk/ml/azure-ai-ml/tests/schedule/e2etests/test_schedule.py index b0110a392fc7..38aa6c7efdf7 100644 --- a/sdk/ml/azure-ai-ml/tests/schedule/e2etests/test_schedule.py +++ b/sdk/ml/azure-ai-ml/tests/schedule/e2etests/test_schedule.py @@ -1,5 +1,6 @@ from typing import Callable +import pydash import pytest from azure.ai.ml import AmlToken, MLClient @@ -47,7 +48,7 @@ def test_schedule_lifetime(self, client: MLClient, randstr: Callable[[], str]): assert rest_schedule._is_enabled is True # invalid delete with pytest.raises(Exception) as e: - client.schedules.begin_delete(schedule.name) + client.schedules.begin_delete(schedule.name).result(timeout=LROConfigurations.POLLING_TIMEOUT) assert "Cannot delete an active trigger" in str(e) # delete rest_schedule = client.schedules.begin_disable(schedule.name).result(timeout=LROConfigurations.POLLING_TIMEOUT) @@ -71,7 +72,7 @@ def test_load_cron_schedule_with_job_updates(self, client: MLClient): @pytest.mark.skip(reason="flaky test") def test_load_cron_schedule_with_arm_id(self, client: MLClient, randstr: Callable[[], str]): - params_override = [{"name": randstr("name")}] + params_override = [{"name": randstr()}] pipeline_job = load_job( "./tests/test_configs/pipeline_jobs/helloworld_pipeline_job_inline_comps.yml", params_override=params_override, @@ -86,9 +87,11 @@ def test_load_cron_schedule_with_arm_id(self, client: MLClient, randstr: Callabl assert rest_schedule.name == schedule.name client.schedules.begin_disable(schedule.name) assert rest_schedule.create_job.id is not None + # Set to None to align with yaml as service will fill this + rest_schedule.trigger.start_time = None assert ( - rest_schedule.trigger._to_rest_object() - == CronTrigger(time_zone="UTC", expression="15 10 * * 1")._to_rest_object() + pydash.omit(rest_schedule.trigger._to_rest_object().as_dict(), "start_time") + == CronTrigger(time_zone="UTC", expression="15 10 * * 1")._to_rest_object().as_dict() ) def test_load_cron_schedule_with_arm_id_and_updates(self, client: MLClient, randstr: Callable[[], str]): diff --git a/sdk/ml/azure-ai-ml/tests/schedule/unittests/test_schedule_schema.py b/sdk/ml/azure-ai-ml/tests/schedule/unittests/test_schedule_schema.py index f37f9552eaa2..9f969cb5e479 100644 --- a/sdk/ml/azure-ai-ml/tests/schedule/unittests/test_schedule_schema.py +++ b/sdk/ml/azure-ai-ml/tests/schedule/unittests/test_schedule_schema.py @@ -1,3 +1,4 @@ +import pydash import pytest from marshmallow import ValidationError @@ -10,7 +11,6 @@ @pytest.mark.timeout(_SCHEDULE_TIMEOUT_SECOND) @pytest.mark.unittest class TestScheduleSchema: - @pytest.mark.skip(reason="broken test") def test_load_cron_schedule_with_file_reference(self): test_path = "./tests/test_configs/schedule/hello_cron_schedule_with_file_reference.yml" schedule = load_schedule(test_path) @@ -37,7 +37,7 @@ def test_load_cron_schedule_with_file_reference(self): "outputs": {}, "jobs": { "a": { - "command": "echo hello ${{inputs.hello_string}}", + "properties": {}, "environment_variables": {}, "inputs": {"hello_string": {"path": "${{parent.inputs.hello_string_top_level_input}}"}}, "outputs": {}, @@ -55,7 +55,7 @@ def test_load_cron_schedule_with_file_reference(self): "type": "command", }, "b": { - "command": 'echo "world" >> ${{outputs.world_output}}/world.txt', + "properties": {}, "environment_variables": {}, "inputs": {}, "outputs": {}, @@ -73,7 +73,7 @@ def test_load_cron_schedule_with_file_reference(self): "type": "command", }, "c": { - "command": "echo ${{inputs.world_input}}/world.txt", + "properties": {}, "environment_variables": {}, "inputs": {"world_input": {"path": "${{parent.jobs.b.outputs.world_output}}"}}, "outputs": {}, diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_components_with_env/.gitattributes b/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_components_with_env/.gitattributes new file mode 100644 index 000000000000..6313b56c5784 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/components/helloworld_components_with_env/.gitattributes @@ -0,0 +1 @@ +* text=auto eol=lf diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipeline_with_do_while/components/basic_component.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipeline_with_do_while/components/basic_component.yml index a68ab3d54402..bcc6cf7504cd 100644 --- a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipeline_with_do_while/components/basic_component.yml +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipeline_with_do_while/components/basic_component.yml @@ -8,11 +8,17 @@ inputs: component_in_number: type: integer optional: true + component_in_number_1: + type: integer + optional: true component_in_path: - type: uri_file + type: uri_folder outputs: output_in_path: - type: uri_file + type: uri_folder + output_in_number: + type: integer + is_control: true is_number_larger_than_zero: type: boolean is_control: true @@ -27,7 +33,7 @@ environment: - pip=21.2.2 - pip: - --extra-index-url=https://azuremlsdktestpypi.azureedge.net/sdk-cli-v2 - - mldesigner==0.0.70189987 + - mldesigner==0.0.71974906 - mlflow - azureml-mlflow image: mcr.microsoft.com/azureml/openmpi3.1.2-ubuntu18.04 @@ -36,5 +42,6 @@ code: ./basic_component command: >- python basic_component.py $[[--component_in_number ${{inputs.component_in_number}}]] + $[[--component_in_number_1 ${{inputs.component_in_number_1}}]] --component_in_path ${{inputs.component_in_path}} --output_in_path ${{outputs.output_in_path}} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipeline_with_do_while/components/basic_component/basic_component.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipeline_with_do_while/components/basic_component/basic_component.py index 2b102e038de6..164d320be780 100644 --- a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipeline_with_do_while/components/basic_component/basic_component.py +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipeline_with_do_while/components/basic_component/basic_component.py @@ -1,27 +1,43 @@ import argparse +import os from mldesigner._component_executor import ExecutorBase parser = argparse.ArgumentParser() parser.add_argument("--component_in_number", type=int) +parser.add_argument("--component_in_number_1", type=int) parser.add_argument("--component_in_path", type=str) parser.add_argument("--output_in_path", type=str) +parser.add_argument("--output_in_number", type=str) -args = parser.parse_args() -lines = [f"component_in_number: {args.component_in_number}", f"component_in_path: {args.component_in_path}"] +args = parser.parse_args() -with open(args.component_in_path, "r") as file: - content = file.read() - try: - component_in_number = int(content) - except Exception: - component_in_number = args.component_in_number +lines = [ + f"component_in_number: {args.component_in_number}", + f"component_in_number_1: {args.component_in_number_1}", + f"component_in_path: {args.component_in_path}", +] + +if args.component_in_number is not None: + component_in_number = args.component_in_number +elif os.path.exists(os.path.join(args.component_in_path, "output.txt")): + with open(os.path.join(args.component_in_path, "output.txt"), "r") as file: + content = file.read() + try: + component_in_number = int(content) + except Exception: + component_in_number = args.component_in_number +else: + component_in_number = 0 output_in_num = component_in_number - 1 -with open(args.output_in_path, "w") as file: +with open(os.path.join(args.output_in_path, "output.txt"), "w") as file: file.write(str(output_in_num)) -control_output_content = '{"is_number_larger_than_zero": %s}' % (str(output_in_num > 0)) +control_output_content = '{"is_number_larger_than_zero": "%s", "output_in_number": "%s"}' % ( + str(output_in_num > 0), + output_in_num, +) ExecutorBase._write_control_outputs_to_run_history(control_output_content=control_output_content) diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipeline_with_do_while/components/do_while_body.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipeline_with_do_while/components/do_while_body.yml index f42e8809d7fd..e7d18eea1e86 100644 --- a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipeline_with_do_while/components/do_while_body.yml +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipeline_with_do_while/components/do_while_body.yml @@ -6,14 +6,17 @@ description: Do while body without primitive inputs inputs: component_in_path: - type: uri_file + type: uri_folder component_in_number: type: integer optional: true outputs: output_in_path: - type: uri_file + type: uri_folder + output_in_number: + type: integer + is_control: true is_number_larger_than_zero: type: boolean is_control: true @@ -27,4 +30,5 @@ jobs: component_in_path: ${{parent.inputs.component_in_path}} outputs: output_in_path: ${{parent.outputs.output_in_path}} + output_in_number: ${{parent.outputs.output_in_number}} is_number_larger_than_zero: ${{parent.outputs.is_number_larger_than_zero}} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipeline_with_do_while/components/do_while_body_pipeline_component.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipeline_with_do_while/components/do_while_body_pipeline_component.yml index 03d0a336f62d..5dc08c9bbef3 100644 --- a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipeline_with_do_while/components/do_while_body_pipeline_component.yml +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipeline_with_do_while/components/do_while_body_pipeline_component.yml @@ -6,7 +6,7 @@ description: Do while body pipeline component inputs: job_in_path: - type: uri_file + type: uri_folder job_in_number: type: integer job_in_number_1: @@ -17,7 +17,7 @@ outputs: type: integer is_control: true output_in_path: - type: uri_file + type: uri_folder is_number_larger_than_zero: type: boolean is_control: true @@ -25,7 +25,7 @@ outputs: jobs: write_input_num: type: command - component: ./write_input_num.yml + component: ./basic_component.yml inputs: component_in_number: ${{parent.inputs.job_in_number}} component_in_number_1: ${{parent.inputs.job_in_number}} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipeline_with_do_while/components/write_input_num.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipeline_with_do_while/components/write_input_num.yml deleted file mode 100644 index d33e790aef57..000000000000 --- a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipeline_with_do_while/components/write_input_num.yml +++ /dev/null @@ -1,33 +0,0 @@ -$schema: https://azuremlschemas.azureedge.net/latest/commandComponent.schema.json -type: command - -name: write_input_num -version: 0.0.1 -display_name: Write input num -description: Write input num to output -inputs: - component_in_number: - type: integer - component_in_number_1: - type: integer - optional: true - component_in_path: - type: uri_file -outputs: - output_in_number: - type: uri_file - output_in_path: - type: uri_file - is_number_larger_than_zero: - type: boolean - is_control: true -environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu:5 -code: ./write_input_num -command: >- - python write_input_num.py - --component_in_number ${{inputs.component_in_number}} - $[[--component_in_number_1 ${{inputs.component_in_number_1}}]] - --component_in_path ${{inputs.component_in_path}} - --output_in_number ${{outputs.output_in_number}} - --output_in_path ${{outputs.output_in_path}} - --is_number_larger_than_zero ${{outputs.is_number_larger_than_zero}} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipeline_with_do_while/components/write_input_num/write_input_num.py b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipeline_with_do_while/components/write_input_num/write_input_num.py deleted file mode 100644 index bcb65fcc388c..000000000000 --- a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipeline_with_do_while/components/write_input_num/write_input_num.py +++ /dev/null @@ -1,33 +0,0 @@ -import argparse - -parser = argparse.ArgumentParser() -parser.add_argument("--component_in_number", type=int) -parser.add_argument("--component_in_number_1", type=int) -parser.add_argument("--component_in_path", type=str) -parser.add_argument("--output_in_number", type=str) -parser.add_argument("--output_in_path", type=str) -parser.add_argument("--is_number_larger_than_zero", type=str) - - -args = parser.parse_args() - -lines = [ - f"component_in_number: {args.component_in_number}", - f"component_in_number_1: {args.component_in_number_1}", - f"component_in_path: {args.component_in_path}", -] - -output_in_num = args.component_in_number - 1 - -with open(args.component_in_path, "r") as file: - content = file.readlines() -content.append(str(output_in_num)) - -with open(args.output_in_number, "w") as file: - file.write(str(output_in_num)) - -with open(args.output_in_path, "w") as file: - file.writelines(content) - -with open(args.is_number_larger_than_zero, "w") as file: - file.write(output_in_num > 0) diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipeline_with_do_while/pipeline.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipeline_with_do_while/pipeline.yml index 03059393d412..67df2b2e8365 100644 --- a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipeline_with_do_while/pipeline.yml +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipeline_with_do_while/pipeline.yml @@ -6,8 +6,8 @@ type: pipeline inputs: component_in_path: - type: uri_file - path: ./invalid_pipeline.yml + type: uri_folder + path: ./ component_in_number: 3 outputs: diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipeline_with_do_while/pipeline_with_primitive_inputs.yml b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipeline_with_do_while/pipeline_with_primitive_inputs.yml index 7fe74cb138e8..34ed10844556 100644 --- a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipeline_with_do_while/pipeline_with_primitive_inputs.yml +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipeline_with_do_while/pipeline_with_primitive_inputs.yml @@ -6,8 +6,8 @@ type: pipeline inputs: job_in_path: - type: uri_file - path: ././invalid_pipeline.yml + type: uri_folder + path: ./ job_in_number: 3 outputs: @@ -45,12 +45,12 @@ jobs: command_component_body_node: type: command - component: ./components/write_input_num.yml + component: ./components/basic_component.yml compute: azureml:cpu-cluster inputs: - component_in_number: ${{parent.jobs.command_component_body_node.outputs.output_in_number}} - component_in_number_1: ${{parent.jobs.command_component_body_node.outputs.output_in_number}} - component_in_path: ${{parent.jobs.command_component_body_node.outputs.output_in_path}} + component_in_number: ${{parent.inputs.job_in_number}} + component_in_number_1: ${{parent.inputs.job_in_number}} + component_in_path: ${{parent.inputs.job_in_path}} do_while_job_with_command_component: type: do_while @@ -66,7 +66,7 @@ jobs: get_do_while_result: type: command - component: ./components/write_input_num.yml + component: ./components/basic_component.yml compute: azureml:cpu-cluster inputs: component_in_number: ${{parent.jobs.pipeline_body_node.outputs.output_in_number}} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipeline_with_pipeline_component/.gitattributes b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipeline_with_pipeline_component/.gitattributes new file mode 100644 index 000000000000..6313b56c5784 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipeline_with_pipeline_component/.gitattributes @@ -0,0 +1 @@ +* text=auto eol=lf diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipeline_with_set_binding_output_input/.gitattributes b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipeline_with_set_binding_output_input/.gitattributes new file mode 100644 index 000000000000..6313b56c5784 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/dsl_pipeline/pipeline_with_set_binding_output_input/.gitattributes @@ -0,0 +1 @@ +* text=auto eol=lf diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/internal/ae365exepool-component/component_spec.loaded_from_rest.json b/sdk/ml/azure-ai-ml/tests/test_configs/internal/ae365exepool-component/component_spec.loaded_from_rest.json index 71a73f8738be..4cba9f195863 100644 --- a/sdk/ml/azure-ai-ml/tests/test_configs/internal/ae365exepool-component/component_spec.loaded_from_rest.json +++ b/sdk/ml/azure-ai-ml/tests/test_configs/internal/ae365exepool-component/component_spec.loaded_from_rest.json @@ -74,7 +74,6 @@ "GoldHitRTADataType": { "type": "enum", "optional": true, - "default": null, "description": "gold hit rta data type", "enum": [ "Gold", diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/internal/batch_inference/batch_score.loaded_from_rest.json b/sdk/ml/azure-ai-ml/tests/test_configs/internal/batch_inference/batch_score.loaded_from_rest.json index 94a430aba4fa..e17f085076d8 100644 --- a/sdk/ml/azure-ai-ml/tests/test_configs/internal/batch_inference/batch_score.loaded_from_rest.json +++ b/sdk/ml/azure-ai-ml/tests/test_configs/internal/batch_inference/batch_score.loaded_from_rest.json @@ -13,11 +13,13 @@ "inputs": { "model_path": { "type": "path", - "description": "Trained MNIST image classification model." + "description": "Trained MNIST image classification model.", + "datastore_mode": "Mount" }, "images_to_score": { "type": "path", - "description": "Images to score." + "description": "Images to score.", + "datastore_mode": "Mount" } }, "outputs": { diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/internal/component_with_input_types/component_spec_with_attrs.yaml b/sdk/ml/azure-ai-ml/tests/test_configs/internal/component_with_input_types/component_spec_with_attrs.yaml new file mode 100644 index 000000000000..24b4f78fbc1b --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/internal/component_with_input_types/component_spec_with_attrs.yaml @@ -0,0 +1,60 @@ +$schema: https://componentsdk.azureedge.net/jsonschema/ScopeComponent.json + +name: bing_relevance_convert2ss +version: 0.0.1 +display_name: Convert Text to StructureStream + +type: CommandComponent + +is_deterministic: True + +tags: + org: bing + project: relevance + +description: Convert ADLS test data to SS format + +inputs: + param_data_path: + type: path + description: Path to the data + is_resource: True + datastore_mode: mount + param_string_with_default_value: + type: string + default: "," + param_string_with_default_value_2: + type: string + default: utf8 + param_string_with_yes_value: + type: string + default: yes + param_string_with_quote_yes_value: + type: string + default: "yes" + param_int: + type: integer + param_float: + type: float + param_bool: + type: boolean + param_enum_with_int_values: + type: enum + enum: [1, 2.0, 3, 4] + default: 3 + param_enum_cap: + type: Enum + enum: [minimal, reuse, expiry, policies] + +environment: azureml:AzureEnv:1 + +scope: + script: convert2ss.script + # to reference the inputs/outputs in your script + # you must define the argument name of your intpus/outputs in args section + # Both 'argument_name {inputs.input_name}' and 'argument_name={inputs.input_name}' are supported + # for example, if you define your args as below, you can use @@Input_TextData@@ to refer to your component's input TextData + args: >- + Input_TextData {inputs.TextData} + ExtractionClause={inputs.ExtractionClause} + Output_SSPath {outputs.SSPath} diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/internal/distribution-component/component_spec.loaded_from_rest.json b/sdk/ml/azure-ai-ml/tests/test_configs/internal/distribution-component/component_spec.loaded_from_rest.json index 83fe972231f1..09e25192d8b9 100644 --- a/sdk/ml/azure-ai-ml/tests/test_configs/internal/distribution-component/component_spec.loaded_from_rest.json +++ b/sdk/ml/azure-ai-ml/tests/test_configs/internal/distribution-component/component_spec.loaded_from_rest.json @@ -7,7 +7,8 @@ "inputs": { "input_path": { "type": "path", - "description": "The directory contains input data." + "description": "The directory contains input data.", + "datastore_mode": "Mount" }, "string_parameter": { "type": "string", diff --git a/sdk/ml/azure-ai-ml/tests/test_configs/internal/pipeline_jobs/pipeline_job_with_properties.yml b/sdk/ml/azure-ai-ml/tests/test_configs/internal/pipeline_jobs/pipeline_job_with_properties.yml new file mode 100644 index 000000000000..6180609f8339 --- /dev/null +++ b/sdk/ml/azure-ai-ml/tests/test_configs/internal/pipeline_jobs/pipeline_job_with_properties.yml @@ -0,0 +1,164 @@ +type: pipeline + +description: The hello world pipeline job +tags: + tag: tagvalue + owner: sdkteam + +settings: + default_compute: azureml:cpu-cluster + +inputs: + # examples of inputs that take values such as int, string, etc. + component_in_number: 10 + hello_string: hello + input_data: + path: https://dprepdata.blob.core.windows.net/demo/Titanic.csv + type: uri_file + text_ner_training_data: + type: mltable + path: ../../automl_job/test_datasets/conll2003/train + text_ner_validation_data: + type: mltable + path: ../../automl_job/test_datasets/conll2003/valid + +properties: + AZURE_ML_PathOnCompute_input_data: "/tmp/test" + +jobs: + node0: # inline command job with properties + command: echo hello ${{inputs.hello_string}} + environment: azureml:AzureML-sklearn-0.24-ubuntu18.04-py37-cpu@latest + inputs: + hello_string: ${{parent.inputs.hello_string}} + properties: + AZURE_ML_PathOnCompute_hello_string: "/tmp/test" + + node1: # inline parallel job with properties + type: parallel + compute: "azureml:cpu-cluster" + inputs: + test1: ${{parent.inputs.input_data}} + resources: + instance_count: 3 + mini_batch_size: "100kb" + mini_batch_error_threshold: 5 + logging_level: "DEBUG" + input_data: ${{inputs.input_data}} + max_concurrency_per_instance: 2 + task: + type: run_function + code: "../python" + entry_script: pass_through.py + append_row_to: ${{outputs.scored_result}} # optional, If Null, equals to summary_only mode in v1. + environment: azureml:my-env:1 + properties: + AZURE_ML_PathOnCompute_input_data: "/tmp/test" + + node2: # inline import job with properties + type: import + source: + type: azuresqldb + query: >- + select * from REGION + connection: azureml:my_username_password + output: + type: mltable + path: azureml://datastores/workspaceblobstore/paths/output_dir/ + properties: + AZURE_ML_PathOnCompute_output: "/tmp/test" + + node3: # inline spark job with properties + type: spark + inputs: + test1: ${{parent.inputs.input_data}} + file_input2: ${{parent.inputs.input_data}} + code: ../dsl_pipeline/spark_job_in_pipeline/src + entry: + file: entry.py # file path of the entry file relative to the code root folder + py_files: + - utils.zip + jars: + - scalaproj.jar + files: + - my_files.txt + args: >- + --file_input1 ${{inputs.test1}} + --file_input2 ${{inputs.file_input2}} + --output ${{outputs.output}} + compute: azureml:rezas-synapse-10 + conf: + spark.driver.cores: 2 + spark.driver.memory: "1g" + spark.executor.cores: 1 + spark.executor.memory: "1g" + spark.executor.instances: 1 + properties: + AZURE_ML_PathOnCompute_input_data: "/tmp/test" + + node4: # inline automl job with properties + type: automl + task: text_ner + log_verbosity: info + primary_metric: accuracy + limits: + max_trials: 1 + timeout_minutes: 60 + training_data: ${{parent.inputs.text_ner_training_data}} + validation_data: ${{parent.inputs.text_ner_validation_data}} + properties: + AZURE_ML_PathOnCompute_training_data: "/tmp/test" + + node5: # inline sweep job with properties + type: sweep + search_space: + component_in_number: + type: choice + values: + - 25 + - 35 + limits: + max_total_trials: 3 + sampling_algorithm: random + objective: + goal: maximize + primary_metric: accuracy + trial: azureml:microsoftsamplescommandcomponentbasic_nopaths_test:1 + properties: + AZURE_ML_PathOnCompute_input: "/tmp/test" + + node6: # parallel node with properties as a typical implement of base node. + type: parallel + compute: azureml:cpu-cluster + component: ../components/parallel_component_with_file_input.yml + inputs: + job_data_path: ${{parent.inputs.pipeline_job_data_path}} + outputs: + job_output_path: + mini_batch_size: "1" + mini_batch_error_threshold: 1 + max_concurrency_per_instance: 1 + properties: + AZURE_ML_PathOnCompute_job_data_path: "/tmp/test" + +# Comment these lines out as internal node is not well supported in yaml now. +# node7: # internal command node with properties as a typical implement of internal base node. +# type: CommandComponent +# compute: azureml:cpu-cluster +# component: ../internal/helloworld_component_command.yml +# inputs: +# training_data: ${{parent.inputs.input_data}} +# max_epochs: 10 +# learning_rate: 0.01 +# properties: +# AZURE_ML_PathOnCompute_job_training_data: "/tmp/test" + + node8: # pipeline node with properties + type: pipeline + inputs: + component_in_number: 11 + component_in_path: ${{parent.inputs.input_data}} + + component: ../components/helloworld_pipeline_component.yml + properties: + AZURE_ML_PathOnCompute_job_component_in_path: "/tmp/test"