diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/_compute_management_client.py b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/_compute_management_client.py index d9d63e2e56e8..a2b92b90a4aa 100644 --- a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/_compute_management_client.py +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/_compute_management_client.py @@ -72,6 +72,7 @@ class ComputeManagementClient(MultiApiClientMixin, SDKClient): 'virtual_machine_scale_set_extensions': '2020-06-01', 'virtual_machine_scale_set_rolling_upgrades': '2020-06-01', 'virtual_machine_scale_set_vm_extensions': '2020-06-01', + 'virtual_machine_scale_set_vm_run_commands': '2020-06-01', 'virtual_machine_scale_set_vms': '2020-06-01', 'virtual_machine_scale_sets': '2020-06-01', 'virtual_machine_sizes': '2020-06-01', @@ -1043,6 +1044,19 @@ def virtual_machine_scale_set_vm_extensions(self): raise NotImplementedError("APIVersion {} is not available".format(api_version)) return OperationClass(self._client, self.config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + @property + def virtual_machine_scale_set_vm_run_commands(self): + """Instance depends on the API version: + + * 2020-06-01: :class:`VirtualMachineScaleSetVMRunCommandsOperations` + """ + api_version = self._get_api_version('virtual_machine_scale_set_vm_run_commands') + if api_version == '2020-06-01': + from .v2020_06_01.operations import VirtualMachineScaleSetVMRunCommandsOperations as OperationClass + else: + raise NotImplementedError("APIVersion {} is not available".format(api_version)) + return OperationClass(self._client, self.config, Serializer(self._models_dict(api_version)), Deserializer(self._models_dict(api_version))) + @property def virtual_machine_scale_set_vms(self): """Instance depends on the API version: diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_07_01/operations/_virtual_machine_scale_set_vms_operations.py b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_07_01/operations/_virtual_machine_scale_set_vms_operations.py index 967b86a4faf7..ee808695532c 100644 --- a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_07_01/operations/_virtual_machine_scale_set_vms_operations.py +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_07_01/operations/_virtual_machine_scale_set_vms_operations.py @@ -1116,7 +1116,9 @@ def _perform_maintenance_initial( def perform_maintenance( self, resource_group_name, vm_scale_set_name, instance_id, custom_headers=None, raw=False, polling=True, **operation_config): - """Performs maintenance on a virtual machine in a VM scale set. + """Shuts down the virtual machine in a VMScaleSet, moves it to an already + updated node, and powers it back on during the self-service phase of + planned maintenance. :param resource_group_name: The name of the resource group. :type resource_group_name: str diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_07_01/operations/_virtual_machines_operations.py b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_07_01/operations/_virtual_machines_operations.py index fdd3f5f441fa..c09f8772c390 100644 --- a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_07_01/operations/_virtual_machines_operations.py +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_07_01/operations/_virtual_machines_operations.py @@ -676,7 +676,12 @@ def convert_to_managed_disks( self, resource_group_name, vm_name, custom_headers=None, raw=False, polling=True, **operation_config): """Converts virtual machine disks from blob-based to managed disks. Virtual machine must be stop-deallocated before invoking this - operation. + operation.
For Windows, please refer to [Convert a virtual machine + from unmanaged disks to managed + disks.](https://docs.microsoft.com/en-us/azure/virtual-machines/windows/convert-unmanaged-to-managed-disks).
For + Linux, please refer to [Convert a virtual machine from unmanaged disks + to managed + disks.](https://docs.microsoft.com/en-us/azure/virtual-machines/linux/convert-unmanaged-to-managed-disks). :param resource_group_name: The name of the resource group. :type resource_group_name: str @@ -1614,7 +1619,9 @@ def _perform_maintenance_initial( def perform_maintenance( self, resource_group_name, vm_name, custom_headers=None, raw=False, polling=True, **operation_config): - """The operation to perform maintenance on a virtual machine. + """Shuts down the virtual machine, moves it to an already updated node, + and powers it back on during the self-service phase of planned + maintenance. :param resource_group_name: The name of the resource group. :type resource_group_name: str diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_12_01/operations/_virtual_machine_scale_set_vms_operations.py b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_12_01/operations/_virtual_machine_scale_set_vms_operations.py index e64c9287bb78..19f13fb2b958 100644 --- a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_12_01/operations/_virtual_machine_scale_set_vms_operations.py +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_12_01/operations/_virtual_machine_scale_set_vms_operations.py @@ -1116,7 +1116,9 @@ def _perform_maintenance_initial( def perform_maintenance( self, resource_group_name, vm_scale_set_name, instance_id, custom_headers=None, raw=False, polling=True, **operation_config): - """Performs maintenance on a virtual machine in a VM scale set. + """Shuts down the virtual machine in a VMScaleSet, moves it to an already + updated node, and powers it back on during the self-service phase of + planned maintenance. :param resource_group_name: The name of the resource group. :type resource_group_name: str diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_12_01/operations/_virtual_machines_operations.py b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_12_01/operations/_virtual_machines_operations.py index 7793786ae0ac..2daf67b2f2d7 100644 --- a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_12_01/operations/_virtual_machines_operations.py +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2019_12_01/operations/_virtual_machines_operations.py @@ -676,7 +676,12 @@ def convert_to_managed_disks( self, resource_group_name, vm_name, custom_headers=None, raw=False, polling=True, **operation_config): """Converts virtual machine disks from blob-based to managed disks. Virtual machine must be stop-deallocated before invoking this - operation. + operation.
For Windows, please refer to [Convert a virtual machine + from unmanaged disks to managed + disks.](https://docs.microsoft.com/en-us/azure/virtual-machines/windows/convert-unmanaged-to-managed-disks).
For + Linux, please refer to [Convert a virtual machine from unmanaged disks + to managed + disks.](https://docs.microsoft.com/en-us/azure/virtual-machines/linux/convert-unmanaged-to-managed-disks). :param resource_group_name: The name of the resource group. :type resource_group_name: str @@ -1614,7 +1619,9 @@ def _perform_maintenance_initial( def perform_maintenance( self, resource_group_name, vm_name, custom_headers=None, raw=False, polling=True, **operation_config): - """The operation to perform maintenance on a virtual machine. + """Shuts down the virtual machine, moves it to an already updated node, + and powers it back on during the self-service phase of planned + maintenance. :param resource_group_name: The name of the resource group. :type resource_group_name: str diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_06_01/_compute_management_client.py b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_06_01/_compute_management_client.py index f6422e42a984..553e1facfe28 100644 --- a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_06_01/_compute_management_client.py +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_06_01/_compute_management_client.py @@ -33,6 +33,7 @@ from .operations import VirtualMachineScaleSetVMsOperations from .operations import LogAnalyticsOperations from .operations import VirtualMachineRunCommandsOperations +from .operations import VirtualMachineScaleSetVMRunCommandsOperations from . import models @@ -82,6 +83,8 @@ class ComputeManagementClient(SDKClient): :vartype log_analytics: azure.mgmt.compute.v2020_06_01.operations.LogAnalyticsOperations :ivar virtual_machine_run_commands: VirtualMachineRunCommands operations :vartype virtual_machine_run_commands: azure.mgmt.compute.v2020_06_01.operations.VirtualMachineRunCommandsOperations + :ivar virtual_machine_scale_set_vm_run_commands: VirtualMachineScaleSetVMRunCommands operations + :vartype virtual_machine_scale_set_vm_run_commands: azure.mgmt.compute.v2020_06_01.operations.VirtualMachineScaleSetVMRunCommandsOperations :param credentials: Credentials needed for the client to connect to Azure. :type credentials: :mod:`A msrestazure Credentials @@ -144,3 +147,5 @@ def __init__( self._client, self.config, self._serialize, self._deserialize) self.virtual_machine_run_commands = VirtualMachineRunCommandsOperations( self._client, self.config, self._serialize, self._deserialize) + self.virtual_machine_scale_set_vm_run_commands = VirtualMachineScaleSetVMRunCommandsOperations( + self._client, self.config, self._serialize, self._deserialize) diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_06_01/models/__init__.py b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_06_01/models/__init__.py index 4cf5e17b2d24..bf1c47406573 100644 --- a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_06_01/models/__init__.py +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_06_01/models/__init__.py @@ -132,6 +132,10 @@ from ._models_py3 import VirtualMachineInstanceView from ._models_py3 import VirtualMachinePatchStatus from ._models_py3 import VirtualMachineReimageParameters + from ._models_py3 import VirtualMachineRunCommand + from ._models_py3 import VirtualMachineRunCommandInstanceView + from ._models_py3 import VirtualMachineRunCommandScriptSource + from ._models_py3 import VirtualMachineRunCommandUpdate from ._models_py3 import VirtualMachineScaleSet from ._models_py3 import VirtualMachineScaleSetDataDisk from ._models_py3 import VirtualMachineScaleSetExtension @@ -304,6 +308,10 @@ from ._models import VirtualMachineInstanceView from ._models import VirtualMachinePatchStatus from ._models import VirtualMachineReimageParameters + from ._models import VirtualMachineRunCommand + from ._models import VirtualMachineRunCommandInstanceView + from ._models import VirtualMachineRunCommandScriptSource + from ._models import VirtualMachineRunCommandUpdate from ._models import VirtualMachineScaleSet from ._models import VirtualMachineScaleSetDataDisk from ._models import VirtualMachineScaleSetExtension @@ -364,6 +372,7 @@ from ._paged_models import UpgradeOperationHistoricalStatusInfoPaged from ._paged_models import UsagePaged from ._paged_models import VirtualMachinePaged +from ._paged_models import VirtualMachineRunCommandPaged from ._paged_models import VirtualMachineScaleSetExtensionPaged from ._paged_models import VirtualMachineScaleSetPaged from ._paged_models import VirtualMachineScaleSetSkuPaged @@ -410,6 +419,7 @@ RollingUpgradeActionType, IntervalInMins, OrchestrationServiceStateAction, + ExecutionState, InstanceViewTypes, ) @@ -536,6 +546,10 @@ 'VirtualMachineInstanceView', 'VirtualMachinePatchStatus', 'VirtualMachineReimageParameters', + 'VirtualMachineRunCommand', + 'VirtualMachineRunCommandInstanceView', + 'VirtualMachineRunCommandScriptSource', + 'VirtualMachineRunCommandUpdate', 'VirtualMachineScaleSet', 'VirtualMachineScaleSetDataDisk', 'VirtualMachineScaleSetExtension', @@ -601,6 +615,7 @@ 'VirtualMachineScaleSetExtensionPaged', 'VirtualMachineScaleSetVMPaged', 'RunCommandDocumentBasePaged', + 'VirtualMachineRunCommandPaged', 'VmDiskTypes', 'HyperVGenerationTypes', 'StatusLevelTypes', @@ -641,5 +656,6 @@ 'RollingUpgradeActionType', 'IntervalInMins', 'OrchestrationServiceStateAction', + 'ExecutionState', 'InstanceViewTypes', ] diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_06_01/models/_compute_management_client_enums.py b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_06_01/models/_compute_management_client_enums.py index d29fbdf55093..028462385f4e 100644 --- a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_06_01/models/_compute_management_client_enums.py +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_06_01/models/_compute_management_client_enums.py @@ -444,6 +444,17 @@ class OrchestrationServiceStateAction(str, Enum): suspend = "Suspend" +class ExecutionState(str, Enum): + + unknown = "Unknown" + pending = "Pending" + running = "Running" + failed = "Failed" + succeeded = "Succeeded" + timed_out = "TimedOut" + canceled = "Canceled" + + class InstanceViewTypes(str, Enum): instance_view = "instanceView" diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_06_01/models/_models.py b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_06_01/models/_models.py index 99dafe0b6c18..1a4257eafe8d 100644 --- a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_06_01/models/_models.py +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_06_01/models/_models.py @@ -5033,6 +5033,255 @@ def __init__(self, **kwargs): self.temp_disk = kwargs.get('temp_disk', None) +class VirtualMachineRunCommand(Resource): + """Describes a Virtual Machine run command. + + Variables are only populated by the server, and will be ignored when + sending a request. + + All required parameters must be populated in order to send to Azure. + + :ivar id: Resource Id + :vartype id: str + :ivar name: Resource name + :vartype name: str + :ivar type: Resource type + :vartype type: str + :param location: Required. Resource location + :type location: str + :param tags: Resource tags + :type tags: dict[str, str] + :param source: The source of the run command script. + :type source: + ~azure.mgmt.compute.v2020_06_01.models.VirtualMachineRunCommandScriptSource + :param parameters: The parameters used by the script. + :type parameters: + list[~azure.mgmt.compute.v2020_06_01.models.RunCommandInputParameter] + :param protected_parameters: The parameters used by the script. + :type protected_parameters: + list[~azure.mgmt.compute.v2020_06_01.models.RunCommandInputParameter] + :param async_execution: Optional. If set to true, provisioning will + complete as soon as the script starts and will not wait for script to + complete. Default value: False . + :type async_execution: bool + :param run_as_user: Specifies the user account on the VM when executing + the run command. + :type run_as_user: str + :param run_as_password: Specifies the user account password on the VM when + executing the run command. + :type run_as_password: str + :param timeout_in_seconds: The timeout in seconds to execute the run + command. + :type timeout_in_seconds: int + :param output_blob_uri: Specifies the Azure storage blob where script + output stream will be uploaded. + :type output_blob_uri: str + :param error_blob_uri: Specifies the Azure storage blob where script error + stream will be uploaded. + :type error_blob_uri: str + :ivar provisioning_state: The provisioning state, which only appears in + the response. + :vartype provisioning_state: str + :ivar instance_view: The virtual machine run command instance view. + :vartype instance_view: + ~azure.mgmt.compute.v2020_06_01.models.VirtualMachineRunCommandInstanceView + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'location': {'required': True}, + 'provisioning_state': {'readonly': True}, + 'instance_view': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'source': {'key': 'properties.source', 'type': 'VirtualMachineRunCommandScriptSource'}, + 'parameters': {'key': 'properties.parameters', 'type': '[RunCommandInputParameter]'}, + 'protected_parameters': {'key': 'properties.protectedParameters', 'type': '[RunCommandInputParameter]'}, + 'async_execution': {'key': 'properties.asyncExecution', 'type': 'bool'}, + 'run_as_user': {'key': 'properties.runAsUser', 'type': 'str'}, + 'run_as_password': {'key': 'properties.runAsPassword', 'type': 'str'}, + 'timeout_in_seconds': {'key': 'properties.timeoutInSeconds', 'type': 'int'}, + 'output_blob_uri': {'key': 'properties.outputBlobUri', 'type': 'str'}, + 'error_blob_uri': {'key': 'properties.errorBlobUri', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'instance_view': {'key': 'properties.instanceView', 'type': 'VirtualMachineRunCommandInstanceView'}, + } + + def __init__(self, **kwargs): + super(VirtualMachineRunCommand, self).__init__(**kwargs) + self.source = kwargs.get('source', None) + self.parameters = kwargs.get('parameters', None) + self.protected_parameters = kwargs.get('protected_parameters', None) + self.async_execution = kwargs.get('async_execution', False) + self.run_as_user = kwargs.get('run_as_user', None) + self.run_as_password = kwargs.get('run_as_password', None) + self.timeout_in_seconds = kwargs.get('timeout_in_seconds', None) + self.output_blob_uri = kwargs.get('output_blob_uri', None) + self.error_blob_uri = kwargs.get('error_blob_uri', None) + self.provisioning_state = None + self.instance_view = None + + +class VirtualMachineRunCommandInstanceView(Model): + """The instance view of a virtual machine run command. + + :param execution_state: Script execution status. Possible values include: + 'Unknown', 'Pending', 'Running', 'Failed', 'Succeeded', 'TimedOut', + 'Canceled' + :type execution_state: str or + ~azure.mgmt.compute.v2020_06_01.models.ExecutionState + :param execution_message: Communicate script configuration errors or + execution messages. + :type execution_message: str + :param exit_code: Exit code returned from script execution. + :type exit_code: int + :param output: Script output stream. + :type output: str + :param error: Script error stream. + :type error: str + :param start_time: Script start time. + :type start_time: datetime + :param end_time: Script end time. + :type end_time: datetime + :param statuses: The resource status information. + :type statuses: + list[~azure.mgmt.compute.v2020_06_01.models.InstanceViewStatus] + """ + + _attribute_map = { + 'execution_state': {'key': 'executionState', 'type': 'str'}, + 'execution_message': {'key': 'executionMessage', 'type': 'str'}, + 'exit_code': {'key': 'exitCode', 'type': 'int'}, + 'output': {'key': 'output', 'type': 'str'}, + 'error': {'key': 'error', 'type': 'str'}, + 'start_time': {'key': 'startTime', 'type': 'iso-8601'}, + 'end_time': {'key': 'endTime', 'type': 'iso-8601'}, + 'statuses': {'key': 'statuses', 'type': '[InstanceViewStatus]'}, + } + + def __init__(self, **kwargs): + super(VirtualMachineRunCommandInstanceView, self).__init__(**kwargs) + self.execution_state = kwargs.get('execution_state', None) + self.execution_message = kwargs.get('execution_message', None) + self.exit_code = kwargs.get('exit_code', None) + self.output = kwargs.get('output', None) + self.error = kwargs.get('error', None) + self.start_time = kwargs.get('start_time', None) + self.end_time = kwargs.get('end_time', None) + self.statuses = kwargs.get('statuses', None) + + +class VirtualMachineRunCommandScriptSource(Model): + """Describes the script sources for run command. + + :param script: Specifies the script content to be executed on the VM. + :type script: str + :param script_uri: Specifies the script download location. + :type script_uri: str + :param command_id: Specifies a commandId of predefined built-in script. + :type command_id: str + """ + + _attribute_map = { + 'script': {'key': 'script', 'type': 'str'}, + 'script_uri': {'key': 'scriptUri', 'type': 'str'}, + 'command_id': {'key': 'commandId', 'type': 'str'}, + } + + def __init__(self, **kwargs): + super(VirtualMachineRunCommandScriptSource, self).__init__(**kwargs) + self.script = kwargs.get('script', None) + self.script_uri = kwargs.get('script_uri', None) + self.command_id = kwargs.get('command_id', None) + + +class VirtualMachineRunCommandUpdate(UpdateResource): + """Describes a Virtual Machine run command. + + Variables are only populated by the server, and will be ignored when + sending a request. + + :param tags: Resource tags + :type tags: dict[str, str] + :param source: The source of the run command script. + :type source: + ~azure.mgmt.compute.v2020_06_01.models.VirtualMachineRunCommandScriptSource + :param parameters: The parameters used by the script. + :type parameters: + list[~azure.mgmt.compute.v2020_06_01.models.RunCommandInputParameter] + :param protected_parameters: The parameters used by the script. + :type protected_parameters: + list[~azure.mgmt.compute.v2020_06_01.models.RunCommandInputParameter] + :param async_execution: Optional. If set to true, provisioning will + complete as soon as the script starts and will not wait for script to + complete. Default value: False . + :type async_execution: bool + :param run_as_user: Specifies the user account on the VM when executing + the run command. + :type run_as_user: str + :param run_as_password: Specifies the user account password on the VM when + executing the run command. + :type run_as_password: str + :param timeout_in_seconds: The timeout in seconds to execute the run + command. + :type timeout_in_seconds: int + :param output_blob_uri: Specifies the Azure storage blob where script + output stream will be uploaded. + :type output_blob_uri: str + :param error_blob_uri: Specifies the Azure storage blob where script error + stream will be uploaded. + :type error_blob_uri: str + :ivar provisioning_state: The provisioning state, which only appears in + the response. + :vartype provisioning_state: str + :ivar instance_view: The virtual machine run command instance view. + :vartype instance_view: + ~azure.mgmt.compute.v2020_06_01.models.VirtualMachineRunCommandInstanceView + """ + + _validation = { + 'provisioning_state': {'readonly': True}, + 'instance_view': {'readonly': True}, + } + + _attribute_map = { + 'tags': {'key': 'tags', 'type': '{str}'}, + 'source': {'key': 'properties.source', 'type': 'VirtualMachineRunCommandScriptSource'}, + 'parameters': {'key': 'properties.parameters', 'type': '[RunCommandInputParameter]'}, + 'protected_parameters': {'key': 'properties.protectedParameters', 'type': '[RunCommandInputParameter]'}, + 'async_execution': {'key': 'properties.asyncExecution', 'type': 'bool'}, + 'run_as_user': {'key': 'properties.runAsUser', 'type': 'str'}, + 'run_as_password': {'key': 'properties.runAsPassword', 'type': 'str'}, + 'timeout_in_seconds': {'key': 'properties.timeoutInSeconds', 'type': 'int'}, + 'output_blob_uri': {'key': 'properties.outputBlobUri', 'type': 'str'}, + 'error_blob_uri': {'key': 'properties.errorBlobUri', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'instance_view': {'key': 'properties.instanceView', 'type': 'VirtualMachineRunCommandInstanceView'}, + } + + def __init__(self, **kwargs): + super(VirtualMachineRunCommandUpdate, self).__init__(**kwargs) + self.source = kwargs.get('source', None) + self.parameters = kwargs.get('parameters', None) + self.protected_parameters = kwargs.get('protected_parameters', None) + self.async_execution = kwargs.get('async_execution', False) + self.run_as_user = kwargs.get('run_as_user', None) + self.run_as_password = kwargs.get('run_as_password', None) + self.timeout_in_seconds = kwargs.get('timeout_in_seconds', None) + self.output_blob_uri = kwargs.get('output_blob_uri', None) + self.error_blob_uri = kwargs.get('error_blob_uri', None) + self.provisioning_state = None + self.instance_view = None + + class VirtualMachineScaleSet(Resource): """Describes a Virtual Machine Scale Set. diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_06_01/models/_models_py3.py b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_06_01/models/_models_py3.py index b7b792891fc6..a1a446dd9ec7 100644 --- a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_06_01/models/_models_py3.py +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_06_01/models/_models_py3.py @@ -5033,6 +5033,255 @@ def __init__(self, *, temp_disk: bool=None, **kwargs) -> None: self.temp_disk = temp_disk +class VirtualMachineRunCommand(Resource): + """Describes a Virtual Machine run command. + + Variables are only populated by the server, and will be ignored when + sending a request. + + All required parameters must be populated in order to send to Azure. + + :ivar id: Resource Id + :vartype id: str + :ivar name: Resource name + :vartype name: str + :ivar type: Resource type + :vartype type: str + :param location: Required. Resource location + :type location: str + :param tags: Resource tags + :type tags: dict[str, str] + :param source: The source of the run command script. + :type source: + ~azure.mgmt.compute.v2020_06_01.models.VirtualMachineRunCommandScriptSource + :param parameters: The parameters used by the script. + :type parameters: + list[~azure.mgmt.compute.v2020_06_01.models.RunCommandInputParameter] + :param protected_parameters: The parameters used by the script. + :type protected_parameters: + list[~azure.mgmt.compute.v2020_06_01.models.RunCommandInputParameter] + :param async_execution: Optional. If set to true, provisioning will + complete as soon as the script starts and will not wait for script to + complete. Default value: False . + :type async_execution: bool + :param run_as_user: Specifies the user account on the VM when executing + the run command. + :type run_as_user: str + :param run_as_password: Specifies the user account password on the VM when + executing the run command. + :type run_as_password: str + :param timeout_in_seconds: The timeout in seconds to execute the run + command. + :type timeout_in_seconds: int + :param output_blob_uri: Specifies the Azure storage blob where script + output stream will be uploaded. + :type output_blob_uri: str + :param error_blob_uri: Specifies the Azure storage blob where script error + stream will be uploaded. + :type error_blob_uri: str + :ivar provisioning_state: The provisioning state, which only appears in + the response. + :vartype provisioning_state: str + :ivar instance_view: The virtual machine run command instance view. + :vartype instance_view: + ~azure.mgmt.compute.v2020_06_01.models.VirtualMachineRunCommandInstanceView + """ + + _validation = { + 'id': {'readonly': True}, + 'name': {'readonly': True}, + 'type': {'readonly': True}, + 'location': {'required': True}, + 'provisioning_state': {'readonly': True}, + 'instance_view': {'readonly': True}, + } + + _attribute_map = { + 'id': {'key': 'id', 'type': 'str'}, + 'name': {'key': 'name', 'type': 'str'}, + 'type': {'key': 'type', 'type': 'str'}, + 'location': {'key': 'location', 'type': 'str'}, + 'tags': {'key': 'tags', 'type': '{str}'}, + 'source': {'key': 'properties.source', 'type': 'VirtualMachineRunCommandScriptSource'}, + 'parameters': {'key': 'properties.parameters', 'type': '[RunCommandInputParameter]'}, + 'protected_parameters': {'key': 'properties.protectedParameters', 'type': '[RunCommandInputParameter]'}, + 'async_execution': {'key': 'properties.asyncExecution', 'type': 'bool'}, + 'run_as_user': {'key': 'properties.runAsUser', 'type': 'str'}, + 'run_as_password': {'key': 'properties.runAsPassword', 'type': 'str'}, + 'timeout_in_seconds': {'key': 'properties.timeoutInSeconds', 'type': 'int'}, + 'output_blob_uri': {'key': 'properties.outputBlobUri', 'type': 'str'}, + 'error_blob_uri': {'key': 'properties.errorBlobUri', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'instance_view': {'key': 'properties.instanceView', 'type': 'VirtualMachineRunCommandInstanceView'}, + } + + def __init__(self, *, location: str, tags=None, source=None, parameters=None, protected_parameters=None, async_execution: bool=False, run_as_user: str=None, run_as_password: str=None, timeout_in_seconds: int=None, output_blob_uri: str=None, error_blob_uri: str=None, **kwargs) -> None: + super(VirtualMachineRunCommand, self).__init__(location=location, tags=tags, **kwargs) + self.source = source + self.parameters = parameters + self.protected_parameters = protected_parameters + self.async_execution = async_execution + self.run_as_user = run_as_user + self.run_as_password = run_as_password + self.timeout_in_seconds = timeout_in_seconds + self.output_blob_uri = output_blob_uri + self.error_blob_uri = error_blob_uri + self.provisioning_state = None + self.instance_view = None + + +class VirtualMachineRunCommandInstanceView(Model): + """The instance view of a virtual machine run command. + + :param execution_state: Script execution status. Possible values include: + 'Unknown', 'Pending', 'Running', 'Failed', 'Succeeded', 'TimedOut', + 'Canceled' + :type execution_state: str or + ~azure.mgmt.compute.v2020_06_01.models.ExecutionState + :param execution_message: Communicate script configuration errors or + execution messages. + :type execution_message: str + :param exit_code: Exit code returned from script execution. + :type exit_code: int + :param output: Script output stream. + :type output: str + :param error: Script error stream. + :type error: str + :param start_time: Script start time. + :type start_time: datetime + :param end_time: Script end time. + :type end_time: datetime + :param statuses: The resource status information. + :type statuses: + list[~azure.mgmt.compute.v2020_06_01.models.InstanceViewStatus] + """ + + _attribute_map = { + 'execution_state': {'key': 'executionState', 'type': 'str'}, + 'execution_message': {'key': 'executionMessage', 'type': 'str'}, + 'exit_code': {'key': 'exitCode', 'type': 'int'}, + 'output': {'key': 'output', 'type': 'str'}, + 'error': {'key': 'error', 'type': 'str'}, + 'start_time': {'key': 'startTime', 'type': 'iso-8601'}, + 'end_time': {'key': 'endTime', 'type': 'iso-8601'}, + 'statuses': {'key': 'statuses', 'type': '[InstanceViewStatus]'}, + } + + def __init__(self, *, execution_state=None, execution_message: str=None, exit_code: int=None, output: str=None, error: str=None, start_time=None, end_time=None, statuses=None, **kwargs) -> None: + super(VirtualMachineRunCommandInstanceView, self).__init__(**kwargs) + self.execution_state = execution_state + self.execution_message = execution_message + self.exit_code = exit_code + self.output = output + self.error = error + self.start_time = start_time + self.end_time = end_time + self.statuses = statuses + + +class VirtualMachineRunCommandScriptSource(Model): + """Describes the script sources for run command. + + :param script: Specifies the script content to be executed on the VM. + :type script: str + :param script_uri: Specifies the script download location. + :type script_uri: str + :param command_id: Specifies a commandId of predefined built-in script. + :type command_id: str + """ + + _attribute_map = { + 'script': {'key': 'script', 'type': 'str'}, + 'script_uri': {'key': 'scriptUri', 'type': 'str'}, + 'command_id': {'key': 'commandId', 'type': 'str'}, + } + + def __init__(self, *, script: str=None, script_uri: str=None, command_id: str=None, **kwargs) -> None: + super(VirtualMachineRunCommandScriptSource, self).__init__(**kwargs) + self.script = script + self.script_uri = script_uri + self.command_id = command_id + + +class VirtualMachineRunCommandUpdate(UpdateResource): + """Describes a Virtual Machine run command. + + Variables are only populated by the server, and will be ignored when + sending a request. + + :param tags: Resource tags + :type tags: dict[str, str] + :param source: The source of the run command script. + :type source: + ~azure.mgmt.compute.v2020_06_01.models.VirtualMachineRunCommandScriptSource + :param parameters: The parameters used by the script. + :type parameters: + list[~azure.mgmt.compute.v2020_06_01.models.RunCommandInputParameter] + :param protected_parameters: The parameters used by the script. + :type protected_parameters: + list[~azure.mgmt.compute.v2020_06_01.models.RunCommandInputParameter] + :param async_execution: Optional. If set to true, provisioning will + complete as soon as the script starts and will not wait for script to + complete. Default value: False . + :type async_execution: bool + :param run_as_user: Specifies the user account on the VM when executing + the run command. + :type run_as_user: str + :param run_as_password: Specifies the user account password on the VM when + executing the run command. + :type run_as_password: str + :param timeout_in_seconds: The timeout in seconds to execute the run + command. + :type timeout_in_seconds: int + :param output_blob_uri: Specifies the Azure storage blob where script + output stream will be uploaded. + :type output_blob_uri: str + :param error_blob_uri: Specifies the Azure storage blob where script error + stream will be uploaded. + :type error_blob_uri: str + :ivar provisioning_state: The provisioning state, which only appears in + the response. + :vartype provisioning_state: str + :ivar instance_view: The virtual machine run command instance view. + :vartype instance_view: + ~azure.mgmt.compute.v2020_06_01.models.VirtualMachineRunCommandInstanceView + """ + + _validation = { + 'provisioning_state': {'readonly': True}, + 'instance_view': {'readonly': True}, + } + + _attribute_map = { + 'tags': {'key': 'tags', 'type': '{str}'}, + 'source': {'key': 'properties.source', 'type': 'VirtualMachineRunCommandScriptSource'}, + 'parameters': {'key': 'properties.parameters', 'type': '[RunCommandInputParameter]'}, + 'protected_parameters': {'key': 'properties.protectedParameters', 'type': '[RunCommandInputParameter]'}, + 'async_execution': {'key': 'properties.asyncExecution', 'type': 'bool'}, + 'run_as_user': {'key': 'properties.runAsUser', 'type': 'str'}, + 'run_as_password': {'key': 'properties.runAsPassword', 'type': 'str'}, + 'timeout_in_seconds': {'key': 'properties.timeoutInSeconds', 'type': 'int'}, + 'output_blob_uri': {'key': 'properties.outputBlobUri', 'type': 'str'}, + 'error_blob_uri': {'key': 'properties.errorBlobUri', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, + 'instance_view': {'key': 'properties.instanceView', 'type': 'VirtualMachineRunCommandInstanceView'}, + } + + def __init__(self, *, tags=None, source=None, parameters=None, protected_parameters=None, async_execution: bool=False, run_as_user: str=None, run_as_password: str=None, timeout_in_seconds: int=None, output_blob_uri: str=None, error_blob_uri: str=None, **kwargs) -> None: + super(VirtualMachineRunCommandUpdate, self).__init__(tags=tags, **kwargs) + self.source = source + self.parameters = parameters + self.protected_parameters = protected_parameters + self.async_execution = async_execution + self.run_as_user = run_as_user + self.run_as_password = run_as_password + self.timeout_in_seconds = timeout_in_seconds + self.output_blob_uri = output_blob_uri + self.error_blob_uri = error_blob_uri + self.provisioning_state = None + self.instance_view = None + + class VirtualMachineScaleSet(Resource): """Describes a Virtual Machine Scale Set. diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_06_01/models/_paged_models.py b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_06_01/models/_paged_models.py index c3788b9e2406..0249609b7b25 100644 --- a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_06_01/models/_paged_models.py +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_06_01/models/_paged_models.py @@ -220,3 +220,16 @@ class RunCommandDocumentBasePaged(Paged): def __init__(self, *args, **kwargs): super(RunCommandDocumentBasePaged, self).__init__(*args, **kwargs) +class VirtualMachineRunCommandPaged(Paged): + """ + A paging container for iterating over a list of :class:`VirtualMachineRunCommand ` object + """ + + _attribute_map = { + 'next_link': {'key': 'nextLink', 'type': 'str'}, + 'current_page': {'key': 'value', 'type': '[VirtualMachineRunCommand]'} + } + + def __init__(self, *args, **kwargs): + + super(VirtualMachineRunCommandPaged, self).__init__(*args, **kwargs) diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_06_01/operations/__init__.py b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_06_01/operations/__init__.py index 4aed70a72e37..3a55f9ff9cf2 100644 --- a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_06_01/operations/__init__.py +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_06_01/operations/__init__.py @@ -29,6 +29,7 @@ from ._virtual_machine_scale_set_vms_operations import VirtualMachineScaleSetVMsOperations from ._log_analytics_operations import LogAnalyticsOperations from ._virtual_machine_run_commands_operations import VirtualMachineRunCommandsOperations +from ._virtual_machine_scale_set_vm_run_commands_operations import VirtualMachineScaleSetVMRunCommandsOperations __all__ = [ 'Operations', @@ -51,4 +52,5 @@ 'VirtualMachineScaleSetVMsOperations', 'LogAnalyticsOperations', 'VirtualMachineRunCommandsOperations', + 'VirtualMachineScaleSetVMRunCommandsOperations', ] diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_06_01/operations/_virtual_machine_run_commands_operations.py b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_06_01/operations/_virtual_machine_run_commands_operations.py index eb666484cd1c..8e1a1e0b880c 100644 --- a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_06_01/operations/_virtual_machine_run_commands_operations.py +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_06_01/operations/_virtual_machine_run_commands_operations.py @@ -12,6 +12,8 @@ import uuid from msrest.pipeline import ClientRawResponse from msrestazure.azure_exceptions import CloudError +from msrest.polling import LROPoller, NoPolling +from msrestazure.polling.arm_polling import ARMPolling from .. import models @@ -168,3 +170,452 @@ def get( return deserialized get.metadata = {'url': '/subscriptions/{subscriptionId}/providers/Microsoft.Compute/locations/{location}/runCommands/{commandId}'} + + + def _create_or_update_initial( + self, resource_group_name, vm_name, run_command_name, run_command, custom_headers=None, raw=False, **operation_config): + # Construct URL + url = self.create_or_update.metadata['url'] + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'vmName': self._serialize.url("vm_name", vm_name, 'str'), + 'runCommandName': self._serialize.url("run_command_name", run_command_name, 'str'), + 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str') + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} + query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + + # Construct headers + header_parameters = {} + header_parameters['Accept'] = 'application/json' + header_parameters['Content-Type'] = 'application/json; charset=utf-8' + if self.config.generate_client_request_id: + header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) + if custom_headers: + header_parameters.update(custom_headers) + if self.config.accept_language is not None: + header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') + + # Construct body + body_content = self._serialize.body(run_command, 'VirtualMachineRunCommand') + + # Construct and send request + request = self._client.put(url, query_parameters, header_parameters, body_content) + response = self._client.send(request, stream=False, **operation_config) + + if response.status_code not in [200, 201]: + exp = CloudError(response) + exp.request_id = response.headers.get('x-ms-request-id') + raise exp + + deserialized = None + + if response.status_code == 200: + deserialized = self._deserialize('VirtualMachineRunCommand', response) + if response.status_code == 201: + deserialized = self._deserialize('VirtualMachineRunCommand', response) + + if raw: + client_raw_response = ClientRawResponse(deserialized, response) + return client_raw_response + + return deserialized + + def create_or_update( + self, resource_group_name, vm_name, run_command_name, run_command, custom_headers=None, raw=False, polling=True, **operation_config): + """The operation to create or update the run command. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param vm_name: The name of the virtual machine where the run command + should be created or updated. + :type vm_name: str + :param run_command_name: The name of the virtual machine run command. + :type run_command_name: str + :param run_command: Parameters supplied to the Create Virtual Machine + RunCommand operation. + :type run_command: + ~azure.mgmt.compute.v2020_06_01.models.VirtualMachineRunCommand + :param dict custom_headers: headers that will be added to the request + :param bool raw: The poller return type is ClientRawResponse, the + direct response alongside the deserialized response + :param polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :return: An instance of LROPoller that returns + VirtualMachineRunCommand or + ClientRawResponse if raw==True + :rtype: + ~msrestazure.azure_operation.AzureOperationPoller[~azure.mgmt.compute.v2020_06_01.models.VirtualMachineRunCommand] + or + ~msrestazure.azure_operation.AzureOperationPoller[~msrest.pipeline.ClientRawResponse[~azure.mgmt.compute.v2020_06_01.models.VirtualMachineRunCommand]] + :raises: :class:`CloudError` + """ + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + vm_name=vm_name, + run_command_name=run_command_name, + run_command=run_command, + custom_headers=custom_headers, + raw=True, + **operation_config + ) + + def get_long_running_output(response): + deserialized = self._deserialize('VirtualMachineRunCommand', response) + + if raw: + client_raw_response = ClientRawResponse(deserialized, response) + return client_raw_response + + return deserialized + + lro_delay = operation_config.get( + 'long_running_operation_timeout', + self.config.long_running_operation_timeout) + if polling is True: polling_method = ARMPolling(lro_delay, **operation_config) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + create_or_update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/runCommands/{runCommandName}'} + + + def _update_initial( + self, resource_group_name, vm_name, run_command_name, run_command, custom_headers=None, raw=False, **operation_config): + # Construct URL + url = self.update.metadata['url'] + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'vmName': self._serialize.url("vm_name", vm_name, 'str'), + 'runCommandName': self._serialize.url("run_command_name", run_command_name, 'str'), + 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str') + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} + query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + + # Construct headers + header_parameters = {} + header_parameters['Accept'] = 'application/json' + header_parameters['Content-Type'] = 'application/json; charset=utf-8' + if self.config.generate_client_request_id: + header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) + if custom_headers: + header_parameters.update(custom_headers) + if self.config.accept_language is not None: + header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') + + # Construct body + body_content = self._serialize.body(run_command, 'VirtualMachineRunCommandUpdate') + + # Construct and send request + request = self._client.patch(url, query_parameters, header_parameters, body_content) + response = self._client.send(request, stream=False, **operation_config) + + if response.status_code not in [200]: + exp = CloudError(response) + exp.request_id = response.headers.get('x-ms-request-id') + raise exp + + deserialized = None + + if response.status_code == 200: + deserialized = self._deserialize('VirtualMachineRunCommand', response) + + if raw: + client_raw_response = ClientRawResponse(deserialized, response) + return client_raw_response + + return deserialized + + def update( + self, resource_group_name, vm_name, run_command_name, run_command, custom_headers=None, raw=False, polling=True, **operation_config): + """The operation to update the run command. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param vm_name: The name of the virtual machine where the run command + should be updated. + :type vm_name: str + :param run_command_name: The name of the virtual machine run command. + :type run_command_name: str + :param run_command: Parameters supplied to the Update Virtual Machine + RunCommand operation. + :type run_command: + ~azure.mgmt.compute.v2020_06_01.models.VirtualMachineRunCommandUpdate + :param dict custom_headers: headers that will be added to the request + :param bool raw: The poller return type is ClientRawResponse, the + direct response alongside the deserialized response + :param polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :return: An instance of LROPoller that returns + VirtualMachineRunCommand or + ClientRawResponse if raw==True + :rtype: + ~msrestazure.azure_operation.AzureOperationPoller[~azure.mgmt.compute.v2020_06_01.models.VirtualMachineRunCommand] + or + ~msrestazure.azure_operation.AzureOperationPoller[~msrest.pipeline.ClientRawResponse[~azure.mgmt.compute.v2020_06_01.models.VirtualMachineRunCommand]] + :raises: :class:`CloudError` + """ + raw_result = self._update_initial( + resource_group_name=resource_group_name, + vm_name=vm_name, + run_command_name=run_command_name, + run_command=run_command, + custom_headers=custom_headers, + raw=True, + **operation_config + ) + + def get_long_running_output(response): + deserialized = self._deserialize('VirtualMachineRunCommand', response) + + if raw: + client_raw_response = ClientRawResponse(deserialized, response) + return client_raw_response + + return deserialized + + lro_delay = operation_config.get( + 'long_running_operation_timeout', + self.config.long_running_operation_timeout) + if polling is True: polling_method = ARMPolling(lro_delay, **operation_config) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/runCommands/{runCommandName}'} + + + def _delete_initial( + self, resource_group_name, vm_name, run_command_name, custom_headers=None, raw=False, **operation_config): + # Construct URL + url = self.delete.metadata['url'] + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'vmName': self._serialize.url("vm_name", vm_name, 'str'), + 'runCommandName': self._serialize.url("run_command_name", run_command_name, 'str'), + 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str') + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} + query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + + # Construct headers + header_parameters = {} + if self.config.generate_client_request_id: + header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) + if custom_headers: + header_parameters.update(custom_headers) + if self.config.accept_language is not None: + header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') + + # Construct and send request + request = self._client.delete(url, query_parameters, header_parameters) + response = self._client.send(request, stream=False, **operation_config) + + if response.status_code not in [200, 202, 204]: + exp = CloudError(response) + exp.request_id = response.headers.get('x-ms-request-id') + raise exp + + if raw: + client_raw_response = ClientRawResponse(None, response) + return client_raw_response + + def delete( + self, resource_group_name, vm_name, run_command_name, custom_headers=None, raw=False, polling=True, **operation_config): + """The operation to delete the run command. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param vm_name: The name of the virtual machine where the run command + should be deleted. + :type vm_name: str + :param run_command_name: The name of the virtual machine run command. + :type run_command_name: str + :param dict custom_headers: headers that will be added to the request + :param bool raw: The poller return type is ClientRawResponse, the + direct response alongside the deserialized response + :param polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :return: An instance of LROPoller that returns None or + ClientRawResponse if raw==True + :rtype: ~msrestazure.azure_operation.AzureOperationPoller[None] or + ~msrestazure.azure_operation.AzureOperationPoller[~msrest.pipeline.ClientRawResponse[None]] + :raises: :class:`CloudError` + """ + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + vm_name=vm_name, + run_command_name=run_command_name, + custom_headers=custom_headers, + raw=True, + **operation_config + ) + + def get_long_running_output(response): + if raw: + client_raw_response = ClientRawResponse(None, response) + return client_raw_response + + lro_delay = operation_config.get( + 'long_running_operation_timeout', + self.config.long_running_operation_timeout) + if polling is True: polling_method = ARMPolling(lro_delay, **operation_config) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/runCommands/{runCommandName}'} + + def get_by_virtual_machine( + self, resource_group_name, vm_name, run_command_name, expand=None, custom_headers=None, raw=False, **operation_config): + """The operation to get the run command. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param vm_name: The name of the virtual machine containing the run + command. + :type vm_name: str + :param run_command_name: The name of the virtual machine run command. + :type run_command_name: str + :param expand: The expand expression to apply on the operation. + :type expand: str + :param dict custom_headers: headers that will be added to the request + :param bool raw: returns the direct response alongside the + deserialized response + :param operation_config: :ref:`Operation configuration + overrides`. + :return: VirtualMachineRunCommand or ClientRawResponse if raw=true + :rtype: + ~azure.mgmt.compute.v2020_06_01.models.VirtualMachineRunCommand or + ~msrest.pipeline.ClientRawResponse + :raises: :class:`CloudError` + """ + # Construct URL + url = self.get_by_virtual_machine.metadata['url'] + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'vmName': self._serialize.url("vm_name", vm_name, 'str'), + 'runCommandName': self._serialize.url("run_command_name", run_command_name, 'str'), + 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str') + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} + if expand is not None: + query_parameters['$expand'] = self._serialize.query("expand", expand, 'str') + query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + + # Construct headers + header_parameters = {} + header_parameters['Accept'] = 'application/json' + if self.config.generate_client_request_id: + header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) + if custom_headers: + header_parameters.update(custom_headers) + if self.config.accept_language is not None: + header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') + + # Construct and send request + request = self._client.get(url, query_parameters, header_parameters) + response = self._client.send(request, stream=False, **operation_config) + + if response.status_code not in [200]: + exp = CloudError(response) + exp.request_id = response.headers.get('x-ms-request-id') + raise exp + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('VirtualMachineRunCommand', response) + + if raw: + client_raw_response = ClientRawResponse(deserialized, response) + return client_raw_response + + return deserialized + get_by_virtual_machine.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/runCommands/{runCommandName}'} + + def list_by_virtual_machine( + self, resource_group_name, vm_name, expand=None, custom_headers=None, raw=False, **operation_config): + """The operation to get all run commands of a Virtual Machine. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param vm_name: The name of the virtual machine containing the run + command. + :type vm_name: str + :param expand: The expand expression to apply on the operation. + :type expand: str + :param dict custom_headers: headers that will be added to the request + :param bool raw: returns the direct response alongside the + deserialized response + :param operation_config: :ref:`Operation configuration + overrides`. + :return: An iterator like instance of VirtualMachineRunCommand + :rtype: + ~azure.mgmt.compute.v2020_06_01.models.VirtualMachineRunCommandPaged[~azure.mgmt.compute.v2020_06_01.models.VirtualMachineRunCommand] + :raises: :class:`CloudError` + """ + def prepare_request(next_link=None): + if not next_link: + # Construct URL + url = self.list_by_virtual_machine.metadata['url'] + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'vmName': self._serialize.url("vm_name", vm_name, 'str'), + 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str') + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} + if expand is not None: + query_parameters['$expand'] = self._serialize.query("expand", expand, 'str') + query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + + else: + url = next_link + query_parameters = {} + + # Construct headers + header_parameters = {} + header_parameters['Accept'] = 'application/json' + if self.config.generate_client_request_id: + header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) + if custom_headers: + header_parameters.update(custom_headers) + if self.config.accept_language is not None: + header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') + + # Construct and send request + request = self._client.get(url, query_parameters, header_parameters) + return request + + def internal_paging(next_link=None): + request = prepare_request(next_link) + + response = self._client.send(request, stream=False, **operation_config) + + if response.status_code not in [200]: + exp = CloudError(response) + exp.request_id = response.headers.get('x-ms-request-id') + raise exp + + return response + + # Deserialize response + header_dict = None + if raw: + header_dict = {} + deserialized = models.VirtualMachineRunCommandPaged(internal_paging, self._deserialize.dependencies, header_dict) + + return deserialized + list_by_virtual_machine.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachines/{vmName}/runCommands'} diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_06_01/operations/_virtual_machine_scale_set_vm_run_commands_operations.py b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_06_01/operations/_virtual_machine_scale_set_vm_run_commands_operations.py new file mode 100644 index 000000000000..f54068cd0d04 --- /dev/null +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_06_01/operations/_virtual_machine_scale_set_vm_run_commands_operations.py @@ -0,0 +1,505 @@ +# coding=utf-8 +# -------------------------------------------------------------------------- +# Copyright (c) Microsoft Corporation. All rights reserved. +# Licensed under the MIT License. See License.txt in the project root for +# license information. +# +# Code generated by Microsoft (R) AutoRest Code Generator. +# Changes may cause incorrect behavior and will be lost if the code is +# regenerated. +# -------------------------------------------------------------------------- + +import uuid +from msrest.pipeline import ClientRawResponse +from msrestazure.azure_exceptions import CloudError +from msrest.polling import LROPoller, NoPolling +from msrestazure.polling.arm_polling import ARMPolling + +from .. import models + + +class VirtualMachineScaleSetVMRunCommandsOperations(object): + """VirtualMachineScaleSetVMRunCommandsOperations operations. + + You should not instantiate directly this class, but create a Client instance that will create it for you and attach it as attribute. + + :param client: Client for service requests. + :param config: Configuration of service client. + :param serializer: An object model serializer. + :param deserializer: An object model deserializer. + :ivar api_version: Client Api Version. Constant value: "2020-06-01". + """ + + models = models + + def __init__(self, client, config, serializer, deserializer): + + self._client = client + self._serialize = serializer + self._deserialize = deserializer + self.api_version = "2020-06-01" + + self.config = config + + + def _create_or_update_initial( + self, resource_group_name, vm_scale_set_name, instance_id, run_command_name, run_command, custom_headers=None, raw=False, **operation_config): + # Construct URL + url = self.create_or_update.metadata['url'] + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'vmScaleSetName': self._serialize.url("vm_scale_set_name", vm_scale_set_name, 'str'), + 'instanceId': self._serialize.url("instance_id", instance_id, 'str'), + 'runCommandName': self._serialize.url("run_command_name", run_command_name, 'str'), + 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str') + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} + query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + + # Construct headers + header_parameters = {} + header_parameters['Accept'] = 'application/json' + header_parameters['Content-Type'] = 'application/json; charset=utf-8' + if self.config.generate_client_request_id: + header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) + if custom_headers: + header_parameters.update(custom_headers) + if self.config.accept_language is not None: + header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') + + # Construct body + body_content = self._serialize.body(run_command, 'VirtualMachineRunCommand') + + # Construct and send request + request = self._client.put(url, query_parameters, header_parameters, body_content) + response = self._client.send(request, stream=False, **operation_config) + + if response.status_code not in [200, 201]: + exp = CloudError(response) + exp.request_id = response.headers.get('x-ms-request-id') + raise exp + + deserialized = None + + if response.status_code == 200: + deserialized = self._deserialize('VirtualMachineRunCommand', response) + if response.status_code == 201: + deserialized = self._deserialize('VirtualMachineRunCommand', response) + + if raw: + client_raw_response = ClientRawResponse(deserialized, response) + return client_raw_response + + return deserialized + + def create_or_update( + self, resource_group_name, vm_scale_set_name, instance_id, run_command_name, run_command, custom_headers=None, raw=False, polling=True, **operation_config): + """The operation to create or update the VMSS VM run command. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param vm_scale_set_name: The name of the VM scale set. + :type vm_scale_set_name: str + :param instance_id: The instance ID of the virtual machine. + :type instance_id: str + :param run_command_name: The name of the virtual machine run command. + :type run_command_name: str + :param run_command: Parameters supplied to the Create Virtual Machine + RunCommand operation. + :type run_command: + ~azure.mgmt.compute.v2020_06_01.models.VirtualMachineRunCommand + :param dict custom_headers: headers that will be added to the request + :param bool raw: The poller return type is ClientRawResponse, the + direct response alongside the deserialized response + :param polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :return: An instance of LROPoller that returns + VirtualMachineRunCommand or + ClientRawResponse if raw==True + :rtype: + ~msrestazure.azure_operation.AzureOperationPoller[~azure.mgmt.compute.v2020_06_01.models.VirtualMachineRunCommand] + or + ~msrestazure.azure_operation.AzureOperationPoller[~msrest.pipeline.ClientRawResponse[~azure.mgmt.compute.v2020_06_01.models.VirtualMachineRunCommand]] + :raises: :class:`CloudError` + """ + raw_result = self._create_or_update_initial( + resource_group_name=resource_group_name, + vm_scale_set_name=vm_scale_set_name, + instance_id=instance_id, + run_command_name=run_command_name, + run_command=run_command, + custom_headers=custom_headers, + raw=True, + **operation_config + ) + + def get_long_running_output(response): + deserialized = self._deserialize('VirtualMachineRunCommand', response) + + if raw: + client_raw_response = ClientRawResponse(deserialized, response) + return client_raw_response + + return deserialized + + lro_delay = operation_config.get( + 'long_running_operation_timeout', + self.config.long_running_operation_timeout) + if polling is True: polling_method = ARMPolling(lro_delay, **operation_config) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + create_or_update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/virtualMachines/{instanceId}/runCommands/{runCommandName}'} + + + def _update_initial( + self, resource_group_name, vm_scale_set_name, instance_id, run_command_name, run_command, custom_headers=None, raw=False, **operation_config): + # Construct URL + url = self.update.metadata['url'] + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'vmScaleSetName': self._serialize.url("vm_scale_set_name", vm_scale_set_name, 'str'), + 'instanceId': self._serialize.url("instance_id", instance_id, 'str'), + 'runCommandName': self._serialize.url("run_command_name", run_command_name, 'str'), + 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str') + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} + query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + + # Construct headers + header_parameters = {} + header_parameters['Accept'] = 'application/json' + header_parameters['Content-Type'] = 'application/json; charset=utf-8' + if self.config.generate_client_request_id: + header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) + if custom_headers: + header_parameters.update(custom_headers) + if self.config.accept_language is not None: + header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') + + # Construct body + body_content = self._serialize.body(run_command, 'VirtualMachineRunCommandUpdate') + + # Construct and send request + request = self._client.patch(url, query_parameters, header_parameters, body_content) + response = self._client.send(request, stream=False, **operation_config) + + if response.status_code not in [200]: + exp = CloudError(response) + exp.request_id = response.headers.get('x-ms-request-id') + raise exp + + deserialized = None + + if response.status_code == 200: + deserialized = self._deserialize('VirtualMachineRunCommand', response) + + if raw: + client_raw_response = ClientRawResponse(deserialized, response) + return client_raw_response + + return deserialized + + def update( + self, resource_group_name, vm_scale_set_name, instance_id, run_command_name, run_command, custom_headers=None, raw=False, polling=True, **operation_config): + """The operation to update the VMSS VM run command. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param vm_scale_set_name: The name of the VM scale set. + :type vm_scale_set_name: str + :param instance_id: The instance ID of the virtual machine. + :type instance_id: str + :param run_command_name: The name of the virtual machine run command. + :type run_command_name: str + :param run_command: Parameters supplied to the Update Virtual Machine + RunCommand operation. + :type run_command: + ~azure.mgmt.compute.v2020_06_01.models.VirtualMachineRunCommandUpdate + :param dict custom_headers: headers that will be added to the request + :param bool raw: The poller return type is ClientRawResponse, the + direct response alongside the deserialized response + :param polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :return: An instance of LROPoller that returns + VirtualMachineRunCommand or + ClientRawResponse if raw==True + :rtype: + ~msrestazure.azure_operation.AzureOperationPoller[~azure.mgmt.compute.v2020_06_01.models.VirtualMachineRunCommand] + or + ~msrestazure.azure_operation.AzureOperationPoller[~msrest.pipeline.ClientRawResponse[~azure.mgmt.compute.v2020_06_01.models.VirtualMachineRunCommand]] + :raises: :class:`CloudError` + """ + raw_result = self._update_initial( + resource_group_name=resource_group_name, + vm_scale_set_name=vm_scale_set_name, + instance_id=instance_id, + run_command_name=run_command_name, + run_command=run_command, + custom_headers=custom_headers, + raw=True, + **operation_config + ) + + def get_long_running_output(response): + deserialized = self._deserialize('VirtualMachineRunCommand', response) + + if raw: + client_raw_response = ClientRawResponse(deserialized, response) + return client_raw_response + + return deserialized + + lro_delay = operation_config.get( + 'long_running_operation_timeout', + self.config.long_running_operation_timeout) + if polling is True: polling_method = ARMPolling(lro_delay, **operation_config) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + update.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/virtualMachines/{instanceId}/runCommands/{runCommandName}'} + + + def _delete_initial( + self, resource_group_name, vm_scale_set_name, instance_id, run_command_name, custom_headers=None, raw=False, **operation_config): + # Construct URL + url = self.delete.metadata['url'] + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'vmScaleSetName': self._serialize.url("vm_scale_set_name", vm_scale_set_name, 'str'), + 'instanceId': self._serialize.url("instance_id", instance_id, 'str'), + 'runCommandName': self._serialize.url("run_command_name", run_command_name, 'str'), + 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str') + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} + query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + + # Construct headers + header_parameters = {} + if self.config.generate_client_request_id: + header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) + if custom_headers: + header_parameters.update(custom_headers) + if self.config.accept_language is not None: + header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') + + # Construct and send request + request = self._client.delete(url, query_parameters, header_parameters) + response = self._client.send(request, stream=False, **operation_config) + + if response.status_code not in [200, 202, 204]: + exp = CloudError(response) + exp.request_id = response.headers.get('x-ms-request-id') + raise exp + + if raw: + client_raw_response = ClientRawResponse(None, response) + return client_raw_response + + def delete( + self, resource_group_name, vm_scale_set_name, instance_id, run_command_name, custom_headers=None, raw=False, polling=True, **operation_config): + """The operation to delete the VMSS VM run command. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param vm_scale_set_name: The name of the VM scale set. + :type vm_scale_set_name: str + :param instance_id: The instance ID of the virtual machine. + :type instance_id: str + :param run_command_name: The name of the virtual machine run command. + :type run_command_name: str + :param dict custom_headers: headers that will be added to the request + :param bool raw: The poller return type is ClientRawResponse, the + direct response alongside the deserialized response + :param polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :return: An instance of LROPoller that returns None or + ClientRawResponse if raw==True + :rtype: ~msrestazure.azure_operation.AzureOperationPoller[None] or + ~msrestazure.azure_operation.AzureOperationPoller[~msrest.pipeline.ClientRawResponse[None]] + :raises: :class:`CloudError` + """ + raw_result = self._delete_initial( + resource_group_name=resource_group_name, + vm_scale_set_name=vm_scale_set_name, + instance_id=instance_id, + run_command_name=run_command_name, + custom_headers=custom_headers, + raw=True, + **operation_config + ) + + def get_long_running_output(response): + if raw: + client_raw_response = ClientRawResponse(None, response) + return client_raw_response + + lro_delay = operation_config.get( + 'long_running_operation_timeout', + self.config.long_running_operation_timeout) + if polling is True: polling_method = ARMPolling(lro_delay, **operation_config) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + delete.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/virtualMachines/{instanceId}/runCommands/{runCommandName}'} + + def get( + self, resource_group_name, vm_scale_set_name, instance_id, run_command_name, expand=None, custom_headers=None, raw=False, **operation_config): + """The operation to get the VMSS VM run command. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param vm_scale_set_name: The name of the VM scale set. + :type vm_scale_set_name: str + :param instance_id: The instance ID of the virtual machine. + :type instance_id: str + :param run_command_name: The name of the virtual machine run command. + :type run_command_name: str + :param expand: The expand expression to apply on the operation. + :type expand: str + :param dict custom_headers: headers that will be added to the request + :param bool raw: returns the direct response alongside the + deserialized response + :param operation_config: :ref:`Operation configuration + overrides`. + :return: VirtualMachineRunCommand or ClientRawResponse if raw=true + :rtype: + ~azure.mgmt.compute.v2020_06_01.models.VirtualMachineRunCommand or + ~msrest.pipeline.ClientRawResponse + :raises: :class:`CloudError` + """ + # Construct URL + url = self.get.metadata['url'] + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'vmScaleSetName': self._serialize.url("vm_scale_set_name", vm_scale_set_name, 'str'), + 'instanceId': self._serialize.url("instance_id", instance_id, 'str'), + 'runCommandName': self._serialize.url("run_command_name", run_command_name, 'str'), + 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str') + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} + if expand is not None: + query_parameters['$expand'] = self._serialize.query("expand", expand, 'str') + query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + + # Construct headers + header_parameters = {} + header_parameters['Accept'] = 'application/json' + if self.config.generate_client_request_id: + header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) + if custom_headers: + header_parameters.update(custom_headers) + if self.config.accept_language is not None: + header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') + + # Construct and send request + request = self._client.get(url, query_parameters, header_parameters) + response = self._client.send(request, stream=False, **operation_config) + + if response.status_code not in [200]: + exp = CloudError(response) + exp.request_id = response.headers.get('x-ms-request-id') + raise exp + + deserialized = None + if response.status_code == 200: + deserialized = self._deserialize('VirtualMachineRunCommand', response) + + if raw: + client_raw_response = ClientRawResponse(deserialized, response) + return client_raw_response + + return deserialized + get.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/virtualMachines/{instanceId}/runCommands/{runCommandName}'} + + def list( + self, resource_group_name, vm_scale_set_name, instance_id, expand=None, custom_headers=None, raw=False, **operation_config): + """The operation to get all run commands of an instance in Virtual Machine + Scaleset. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param vm_scale_set_name: The name of the VM scale set. + :type vm_scale_set_name: str + :param instance_id: The instance ID of the virtual machine. + :type instance_id: str + :param expand: The expand expression to apply on the operation. + :type expand: str + :param dict custom_headers: headers that will be added to the request + :param bool raw: returns the direct response alongside the + deserialized response + :param operation_config: :ref:`Operation configuration + overrides`. + :return: An iterator like instance of VirtualMachineRunCommand + :rtype: + ~azure.mgmt.compute.v2020_06_01.models.VirtualMachineRunCommandPaged[~azure.mgmt.compute.v2020_06_01.models.VirtualMachineRunCommand] + :raises: :class:`CloudError` + """ + def prepare_request(next_link=None): + if not next_link: + # Construct URL + url = self.list.metadata['url'] + path_format_arguments = { + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str'), + 'vmScaleSetName': self._serialize.url("vm_scale_set_name", vm_scale_set_name, 'str'), + 'instanceId': self._serialize.url("instance_id", instance_id, 'str'), + 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str') + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} + if expand is not None: + query_parameters['$expand'] = self._serialize.query("expand", expand, 'str') + query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + + else: + url = next_link + query_parameters = {} + + # Construct headers + header_parameters = {} + header_parameters['Accept'] = 'application/json' + if self.config.generate_client_request_id: + header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) + if custom_headers: + header_parameters.update(custom_headers) + if self.config.accept_language is not None: + header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') + + # Construct and send request + request = self._client.get(url, query_parameters, header_parameters) + return request + + def internal_paging(next_link=None): + request = prepare_request(next_link) + + response = self._client.send(request, stream=False, **operation_config) + + if response.status_code not in [200]: + exp = CloudError(response) + exp.request_id = response.headers.get('x-ms-request-id') + raise exp + + return response + + # Deserialize response + header_dict = None + if raw: + header_dict = {} + deserialized = models.VirtualMachineRunCommandPaged(internal_paging, self._deserialize.dependencies, header_dict) + + return deserialized + list.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Compute/virtualMachineScaleSets/{vmScaleSetName}/virtualMachines/{instanceId}/runCommands'} diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_09_30/models/__init__.py b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_09_30/models/__init__.py index d6bc2888eb97..9e98b2edcfa0 100644 --- a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_09_30/models/__init__.py +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_09_30/models/__init__.py @@ -57,6 +57,7 @@ from ._models_py3 import SharingUpdate from ._models_py3 import TargetRegion from ._models_py3 import UpdateResourceDefinition + from ._models_py3 import UserArtifactManage from ._models_py3 import UserArtifactSource except (SyntaxError, ImportError): from ._models import ApiError @@ -106,6 +107,7 @@ from ._models import SharingUpdate from ._models import TargetRegion from ._models import UpdateResourceDefinition + from ._models import UserArtifactManage from ._models import UserArtifactSource from ._paged_models import GalleryApplicationPaged from ._paged_models import GalleryApplicationVersionPaged @@ -126,7 +128,7 @@ StorageAccountType, HostCaching, SharingUpdateOperationTypes, - Permissions, + SelectPermissions, ReplicationStatusTypes, SharedToValues, ) @@ -179,6 +181,7 @@ 'SharingUpdate', 'TargetRegion', 'UpdateResourceDefinition', + 'UserArtifactManage', 'UserArtifactSource', 'GalleryPaged', 'GalleryImagePaged', @@ -198,7 +201,7 @@ 'StorageAccountType', 'HostCaching', 'SharingUpdateOperationTypes', - 'Permissions', + 'SelectPermissions', 'ReplicationStatusTypes', 'SharedToValues', ] diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_09_30/models/_compute_management_client_enums.py b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_09_30/models/_compute_management_client_enums.py index df2002c9fbb6..633c361ecfd7 100644 --- a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_09_30/models/_compute_management_client_enums.py +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_09_30/models/_compute_management_client_enums.py @@ -79,7 +79,7 @@ class SharingUpdateOperationTypes(str, Enum): reset = "Reset" -class Permissions(str, Enum): +class SelectPermissions(str, Enum): permissions = "Permissions" diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_09_30/models/_models.py b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_09_30/models/_models.py index 9ea0ac58e964..5c0a1dce1bf3 100644 --- a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_09_30/models/_models.py +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_09_30/models/_models.py @@ -615,9 +615,9 @@ class GalleryApplicationVersionPublishingProfile(GalleryArtifactPublishingProfil ~azure.mgmt.compute.v2020_09_30.models.StorageAccountType :param source: Required. :type source: ~azure.mgmt.compute.v2020_09_30.models.UserArtifactSource - :param content_type: Optional. May be used to help process this file. The - type of file contained in the source, e.g. zip, json, etc. - :type content_type: str + :param manage_actions: + :type manage_actions: + ~azure.mgmt.compute.v2020_09_30.models.UserArtifactManage :param enable_health_check: Optional. Whether or not this application reports health. :type enable_health_check: bool @@ -636,14 +636,14 @@ class GalleryApplicationVersionPublishingProfile(GalleryArtifactPublishingProfil 'end_of_life_date': {'key': 'endOfLifeDate', 'type': 'iso-8601'}, 'storage_account_type': {'key': 'storageAccountType', 'type': 'str'}, 'source': {'key': 'source', 'type': 'UserArtifactSource'}, - 'content_type': {'key': 'contentType', 'type': 'str'}, + 'manage_actions': {'key': 'manageActions', 'type': 'UserArtifactManage'}, 'enable_health_check': {'key': 'enableHealthCheck', 'type': 'bool'}, } def __init__(self, **kwargs): super(GalleryApplicationVersionPublishingProfile, self).__init__(**kwargs) self.source = kwargs.get('source', None) - self.content_type = kwargs.get('content_type', None) + self.manage_actions = kwargs.get('manage_actions', None) self.enable_health_check = kwargs.get('enable_health_check', None) @@ -1971,29 +1971,65 @@ def __init__(self, **kwargs): self.encryption = kwargs.get('encryption', None) +class UserArtifactManage(Model): + """UserArtifactManage. + + All required parameters must be populated in order to send to Azure. + + :param install: Required. Required. The path and arguments to install the + gallery application. This is limited to 4096 characters. + :type install: str + :param remove: Required. Required. The path and arguments to remove the + gallery application. This is limited to 4096 characters. + :type remove: str + :param update: Optional. The path and arguments to update the gallery + application. If not present, then update operation will invoke remove + command on the previous version and install command on the current version + of the gallery application. This is limited to 4096 characters. + :type update: str + """ + + _validation = { + 'install': {'required': True}, + 'remove': {'required': True}, + } + + _attribute_map = { + 'install': {'key': 'install', 'type': 'str'}, + 'remove': {'key': 'remove', 'type': 'str'}, + 'update': {'key': 'update', 'type': 'str'}, + } + + def __init__(self, **kwargs): + super(UserArtifactManage, self).__init__(**kwargs) + self.install = kwargs.get('install', None) + self.remove = kwargs.get('remove', None) + self.update = kwargs.get('update', None) + + class UserArtifactSource(Model): """The source image from which the Image Version is going to be created. All required parameters must be populated in order to send to Azure. - :param file_name: Required. Required. The fileName of the artifact. - :type file_name: str :param media_link: Required. Required. The mediaLink of the artifact, must - be a readable storage blob. + be a readable storage page blob. :type media_link: str + :param default_configuration_link: Optional. The defaultConfigurationLink + of the artifact, must be a readable storage page blob. + :type default_configuration_link: str """ _validation = { - 'file_name': {'required': True}, 'media_link': {'required': True}, } _attribute_map = { - 'file_name': {'key': 'fileName', 'type': 'str'}, 'media_link': {'key': 'mediaLink', 'type': 'str'}, + 'default_configuration_link': {'key': 'defaultConfigurationLink', 'type': 'str'}, } def __init__(self, **kwargs): super(UserArtifactSource, self).__init__(**kwargs) - self.file_name = kwargs.get('file_name', None) self.media_link = kwargs.get('media_link', None) + self.default_configuration_link = kwargs.get('default_configuration_link', None) diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_09_30/models/_models_py3.py b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_09_30/models/_models_py3.py index ba4a72235bee..6800620f24fb 100644 --- a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_09_30/models/_models_py3.py +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_09_30/models/_models_py3.py @@ -615,9 +615,9 @@ class GalleryApplicationVersionPublishingProfile(GalleryArtifactPublishingProfil ~azure.mgmt.compute.v2020_09_30.models.StorageAccountType :param source: Required. :type source: ~azure.mgmt.compute.v2020_09_30.models.UserArtifactSource - :param content_type: Optional. May be used to help process this file. The - type of file contained in the source, e.g. zip, json, etc. - :type content_type: str + :param manage_actions: + :type manage_actions: + ~azure.mgmt.compute.v2020_09_30.models.UserArtifactManage :param enable_health_check: Optional. Whether or not this application reports health. :type enable_health_check: bool @@ -636,14 +636,14 @@ class GalleryApplicationVersionPublishingProfile(GalleryArtifactPublishingProfil 'end_of_life_date': {'key': 'endOfLifeDate', 'type': 'iso-8601'}, 'storage_account_type': {'key': 'storageAccountType', 'type': 'str'}, 'source': {'key': 'source', 'type': 'UserArtifactSource'}, - 'content_type': {'key': 'contentType', 'type': 'str'}, + 'manage_actions': {'key': 'manageActions', 'type': 'UserArtifactManage'}, 'enable_health_check': {'key': 'enableHealthCheck', 'type': 'bool'}, } - def __init__(self, *, source, target_regions=None, replica_count: int=None, exclude_from_latest: bool=None, end_of_life_date=None, storage_account_type=None, content_type: str=None, enable_health_check: bool=None, **kwargs) -> None: + def __init__(self, *, source, target_regions=None, replica_count: int=None, exclude_from_latest: bool=None, end_of_life_date=None, storage_account_type=None, manage_actions=None, enable_health_check: bool=None, **kwargs) -> None: super(GalleryApplicationVersionPublishingProfile, self).__init__(target_regions=target_regions, replica_count=replica_count, exclude_from_latest=exclude_from_latest, end_of_life_date=end_of_life_date, storage_account_type=storage_account_type, **kwargs) self.source = source - self.content_type = content_type + self.manage_actions = manage_actions self.enable_health_check = enable_health_check @@ -1971,29 +1971,65 @@ def __init__(self, *, name: str, regional_replica_count: int=None, storage_accou self.encryption = encryption +class UserArtifactManage(Model): + """UserArtifactManage. + + All required parameters must be populated in order to send to Azure. + + :param install: Required. Required. The path and arguments to install the + gallery application. This is limited to 4096 characters. + :type install: str + :param remove: Required. Required. The path and arguments to remove the + gallery application. This is limited to 4096 characters. + :type remove: str + :param update: Optional. The path and arguments to update the gallery + application. If not present, then update operation will invoke remove + command on the previous version and install command on the current version + of the gallery application. This is limited to 4096 characters. + :type update: str + """ + + _validation = { + 'install': {'required': True}, + 'remove': {'required': True}, + } + + _attribute_map = { + 'install': {'key': 'install', 'type': 'str'}, + 'remove': {'key': 'remove', 'type': 'str'}, + 'update': {'key': 'update', 'type': 'str'}, + } + + def __init__(self, *, install: str, remove: str, update: str=None, **kwargs) -> None: + super(UserArtifactManage, self).__init__(**kwargs) + self.install = install + self.remove = remove + self.update = update + + class UserArtifactSource(Model): """The source image from which the Image Version is going to be created. All required parameters must be populated in order to send to Azure. - :param file_name: Required. Required. The fileName of the artifact. - :type file_name: str :param media_link: Required. Required. The mediaLink of the artifact, must - be a readable storage blob. + be a readable storage page blob. :type media_link: str + :param default_configuration_link: Optional. The defaultConfigurationLink + of the artifact, must be a readable storage page blob. + :type default_configuration_link: str """ _validation = { - 'file_name': {'required': True}, 'media_link': {'required': True}, } _attribute_map = { - 'file_name': {'key': 'fileName', 'type': 'str'}, 'media_link': {'key': 'mediaLink', 'type': 'str'}, + 'default_configuration_link': {'key': 'defaultConfigurationLink', 'type': 'str'}, } - def __init__(self, *, file_name: str, media_link: str, **kwargs) -> None: + def __init__(self, *, media_link: str, default_configuration_link: str=None, **kwargs) -> None: super(UserArtifactSource, self).__init__(**kwargs) - self.file_name = file_name self.media_link = media_link + self.default_configuration_link = default_configuration_link diff --git a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_09_30/operations/_galleries_operations.py b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_09_30/operations/_galleries_operations.py index 67635d3718fe..2d5d2f086352 100644 --- a/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_09_30/operations/_galleries_operations.py +++ b/sdk/compute/azure-mgmt-compute/azure/mgmt/compute/v2020_09_30/operations/_galleries_operations.py @@ -262,7 +262,7 @@ def get( :param select: The select expression to apply on the operation. Possible values include: 'Permissions' :type select: str or - ~azure.mgmt.compute.v2020_09_30.models.Permissions + ~azure.mgmt.compute.v2020_09_30.models.SelectPermissions :param dict custom_headers: headers that will be added to the request :param bool raw: returns the direct response alongside the deserialized response diff --git a/sdk/containerservice/azure-mgmt-containerservice/CHANGELOG.md b/sdk/containerservice/azure-mgmt-containerservice/CHANGELOG.md index 966c56bfd784..6d41bcfb62f4 100644 --- a/sdk/containerservice/azure-mgmt-containerservice/CHANGELOG.md +++ b/sdk/containerservice/azure-mgmt-containerservice/CHANGELOG.md @@ -1,5 +1,15 @@ # Release History +## 10.0.0 (2020-09-28) + +**Features** + + - Added operation AgentPoolsOperations.upgrade_node_image_version + +**Breaking changes** + + - Removed operation ManagedClustersOperations.upgrade_node_image_version + ## 9.4.0 (2020-09-11) **Features** diff --git a/sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2020_07_01/operations/_agent_pools_operations.py b/sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2020_07_01/operations/_agent_pools_operations.py index b8fe7a9ed139..5f4fd46fdf6d 100644 --- a/sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2020_07_01/operations/_agent_pools_operations.py +++ b/sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2020_07_01/operations/_agent_pools_operations.py @@ -509,3 +509,102 @@ def get_available_agent_pool_versions( return deserialized get_available_agent_pool_versions.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/availableAgentPoolVersions'} + + + def _upgrade_node_image_version_initial( + self, resource_group_name, resource_name, agent_pool_name, custom_headers=None, raw=False, **operation_config): + # Construct URL + url = self.upgrade_node_image_version.metadata['url'] + path_format_arguments = { + 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', min_length=1), + 'resourceName': self._serialize.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'), + 'agentPoolName': self._serialize.url("agent_pool_name", agent_pool_name, 'str') + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} + query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + + # Construct headers + header_parameters = {} + header_parameters['Accept'] = 'application/json' + if self.config.generate_client_request_id: + header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) + if custom_headers: + header_parameters.update(custom_headers) + if self.config.accept_language is not None: + header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') + + # Construct and send request + request = self._client.post(url, query_parameters, header_parameters) + response = self._client.send(request, stream=False, **operation_config) + + if response.status_code not in [200, 202]: + exp = CloudError(response) + exp.request_id = response.headers.get('x-ms-request-id') + raise exp + + deserialized = None + + if response.status_code == 202: + deserialized = self._deserialize('AgentPool', response) + + if raw: + client_raw_response = ClientRawResponse(deserialized, response) + return client_raw_response + + return deserialized + + def upgrade_node_image_version( + self, resource_group_name, resource_name, agent_pool_name, custom_headers=None, raw=False, polling=True, **operation_config): + """Upgrade node image version of an agent pool to the latest. + + Upgrade node image version of an agent pool to the latest. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. + :type resource_name: str + :param agent_pool_name: The name of the agent pool. + :type agent_pool_name: str + :param dict custom_headers: headers that will be added to the request + :param bool raw: The poller return type is ClientRawResponse, the + direct response alongside the deserialized response + :param polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :return: An instance of LROPoller that returns AgentPool or + ClientRawResponse if raw==True + :rtype: + ~msrestazure.azure_operation.AzureOperationPoller[~azure.mgmt.containerservice.v2020_07_01.models.AgentPool] + or + ~msrestazure.azure_operation.AzureOperationPoller[~msrest.pipeline.ClientRawResponse[~azure.mgmt.containerservice.v2020_07_01.models.AgentPool]] + :raises: :class:`CloudError` + """ + raw_result = self._upgrade_node_image_version_initial( + resource_group_name=resource_group_name, + resource_name=resource_name, + agent_pool_name=agent_pool_name, + custom_headers=custom_headers, + raw=True, + **operation_config + ) + + def get_long_running_output(response): + deserialized = self._deserialize('AgentPool', response) + + if raw: + client_raw_response = ClientRawResponse(deserialized, response) + return client_raw_response + + return deserialized + + lro_delay = operation_config.get( + 'long_running_operation_timeout', + self.config.long_running_operation_timeout) + if polling is True: polling_method = ARMPolling(lro_delay, **operation_config) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + upgrade_node_image_version.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}/upgradeNodeImageVersion'} diff --git a/sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2020_07_01/operations/_managed_clusters_operations.py b/sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2020_07_01/operations/_managed_clusters_operations.py index 4e79ea97d02f..680600e0568b 100644 --- a/sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2020_07_01/operations/_managed_clusters_operations.py +++ b/sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2020_07_01/operations/_managed_clusters_operations.py @@ -1137,102 +1137,3 @@ def get_long_running_output(response): else: polling_method = polling return LROPoller(self._client, raw_result, get_long_running_output, polling_method) rotate_cluster_certificates.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/rotateClusterCertificates'} - - - def _upgrade_node_image_version_initial( - self, resource_group_name, resource_name, agent_pool_name, custom_headers=None, raw=False, **operation_config): - # Construct URL - url = self.upgrade_node_image_version.metadata['url'] - path_format_arguments = { - 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', min_length=1), - 'resourceName': self._serialize.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'), - 'agentPoolName': self._serialize.url("agent_pool_name", agent_pool_name, 'str') - } - url = self._client.format_url(url, **path_format_arguments) - - # Construct parameters - query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') - - # Construct headers - header_parameters = {} - header_parameters['Accept'] = 'application/json' - if self.config.generate_client_request_id: - header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) - if custom_headers: - header_parameters.update(custom_headers) - if self.config.accept_language is not None: - header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') - - # Construct and send request - request = self._client.post(url, query_parameters, header_parameters) - response = self._client.send(request, stream=False, **operation_config) - - if response.status_code not in [200, 202]: - exp = CloudError(response) - exp.request_id = response.headers.get('x-ms-request-id') - raise exp - - deserialized = None - - if response.status_code == 202: - deserialized = self._deserialize('AgentPool', response) - - if raw: - client_raw_response = ClientRawResponse(deserialized, response) - return client_raw_response - - return deserialized - - def upgrade_node_image_version( - self, resource_group_name, resource_name, agent_pool_name, custom_headers=None, raw=False, polling=True, **operation_config): - """Upgrade node image version of an agent pool to the latest. - - Upgrade node image version of an agent pool to the latest. - - :param resource_group_name: The name of the resource group. - :type resource_group_name: str - :param resource_name: The name of the managed cluster resource. - :type resource_name: str - :param agent_pool_name: The name of the agent pool. - :type agent_pool_name: str - :param dict custom_headers: headers that will be added to the request - :param bool raw: The poller return type is ClientRawResponse, the - direct response alongside the deserialized response - :param polling: True for ARMPolling, False for no polling, or a - polling object for personal polling strategy - :return: An instance of LROPoller that returns AgentPool or - ClientRawResponse if raw==True - :rtype: - ~msrestazure.azure_operation.AzureOperationPoller[~azure.mgmt.containerservice.v2020_07_01.models.AgentPool] - or - ~msrestazure.azure_operation.AzureOperationPoller[~msrest.pipeline.ClientRawResponse[~azure.mgmt.containerservice.v2020_07_01.models.AgentPool]] - :raises: :class:`CloudError` - """ - raw_result = self._upgrade_node_image_version_initial( - resource_group_name=resource_group_name, - resource_name=resource_name, - agent_pool_name=agent_pool_name, - custom_headers=custom_headers, - raw=True, - **operation_config - ) - - def get_long_running_output(response): - deserialized = self._deserialize('AgentPool', response) - - if raw: - client_raw_response = ClientRawResponse(deserialized, response) - return client_raw_response - - return deserialized - - lro_delay = operation_config.get( - 'long_running_operation_timeout', - self.config.long_running_operation_timeout) - if polling is True: polling_method = ARMPolling(lro_delay, **operation_config) - elif polling is False: polling_method = NoPolling() - else: polling_method = polling - return LROPoller(self._client, raw_result, get_long_running_output, polling_method) - upgrade_node_image_version.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}/upgradeNodeImageVersion'} diff --git a/sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2020_09_01/operations/_agent_pools_operations.py b/sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2020_09_01/operations/_agent_pools_operations.py index eeefe4cf734f..73e907ce80ea 100644 --- a/sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2020_09_01/operations/_agent_pools_operations.py +++ b/sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2020_09_01/operations/_agent_pools_operations.py @@ -509,3 +509,102 @@ def get_available_agent_pool_versions( return deserialized get_available_agent_pool_versions.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/availableAgentPoolVersions'} + + + def _upgrade_node_image_version_initial( + self, resource_group_name, resource_name, agent_pool_name, custom_headers=None, raw=False, **operation_config): + # Construct URL + url = self.upgrade_node_image_version.metadata['url'] + path_format_arguments = { + 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), + 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', min_length=1), + 'resourceName': self._serialize.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'), + 'agentPoolName': self._serialize.url("agent_pool_name", agent_pool_name, 'str') + } + url = self._client.format_url(url, **path_format_arguments) + + # Construct parameters + query_parameters = {} + query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') + + # Construct headers + header_parameters = {} + header_parameters['Accept'] = 'application/json' + if self.config.generate_client_request_id: + header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) + if custom_headers: + header_parameters.update(custom_headers) + if self.config.accept_language is not None: + header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') + + # Construct and send request + request = self._client.post(url, query_parameters, header_parameters) + response = self._client.send(request, stream=False, **operation_config) + + if response.status_code not in [200, 202]: + exp = CloudError(response) + exp.request_id = response.headers.get('x-ms-request-id') + raise exp + + deserialized = None + + if response.status_code == 202: + deserialized = self._deserialize('AgentPool', response) + + if raw: + client_raw_response = ClientRawResponse(deserialized, response) + return client_raw_response + + return deserialized + + def upgrade_node_image_version( + self, resource_group_name, resource_name, agent_pool_name, custom_headers=None, raw=False, polling=True, **operation_config): + """Upgrade node image version of an agent pool to the latest. + + Upgrade node image version of an agent pool to the latest. + + :param resource_group_name: The name of the resource group. + :type resource_group_name: str + :param resource_name: The name of the managed cluster resource. + :type resource_name: str + :param agent_pool_name: The name of the agent pool. + :type agent_pool_name: str + :param dict custom_headers: headers that will be added to the request + :param bool raw: The poller return type is ClientRawResponse, the + direct response alongside the deserialized response + :param polling: True for ARMPolling, False for no polling, or a + polling object for personal polling strategy + :return: An instance of LROPoller that returns AgentPool or + ClientRawResponse if raw==True + :rtype: + ~msrestazure.azure_operation.AzureOperationPoller[~azure.mgmt.containerservice.v2020_09_01.models.AgentPool] + or + ~msrestazure.azure_operation.AzureOperationPoller[~msrest.pipeline.ClientRawResponse[~azure.mgmt.containerservice.v2020_09_01.models.AgentPool]] + :raises: :class:`CloudError` + """ + raw_result = self._upgrade_node_image_version_initial( + resource_group_name=resource_group_name, + resource_name=resource_name, + agent_pool_name=agent_pool_name, + custom_headers=custom_headers, + raw=True, + **operation_config + ) + + def get_long_running_output(response): + deserialized = self._deserialize('AgentPool', response) + + if raw: + client_raw_response = ClientRawResponse(deserialized, response) + return client_raw_response + + return deserialized + + lro_delay = operation_config.get( + 'long_running_operation_timeout', + self.config.long_running_operation_timeout) + if polling is True: polling_method = ARMPolling(lro_delay, **operation_config) + elif polling is False: polling_method = NoPolling() + else: polling_method = polling + return LROPoller(self._client, raw_result, get_long_running_output, polling_method) + upgrade_node_image_version.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}/upgradeNodeImageVersion'} diff --git a/sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2020_09_01/operations/_managed_clusters_operations.py b/sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2020_09_01/operations/_managed_clusters_operations.py index e32eeafdef36..3fece116e6d2 100644 --- a/sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2020_09_01/operations/_managed_clusters_operations.py +++ b/sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/v2020_09_01/operations/_managed_clusters_operations.py @@ -1299,102 +1299,3 @@ def get_long_running_output(response): else: polling_method = polling return LROPoller(self._client, raw_result, get_long_running_output, polling_method) start.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/start'} - - - def _upgrade_node_image_version_initial( - self, resource_group_name, resource_name, agent_pool_name, custom_headers=None, raw=False, **operation_config): - # Construct URL - url = self.upgrade_node_image_version.metadata['url'] - path_format_arguments = { - 'subscriptionId': self._serialize.url("self.config.subscription_id", self.config.subscription_id, 'str'), - 'resourceGroupName': self._serialize.url("resource_group_name", resource_group_name, 'str', min_length=1), - 'resourceName': self._serialize.url("resource_name", resource_name, 'str', max_length=63, min_length=1, pattern=r'^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$'), - 'agentPoolName': self._serialize.url("agent_pool_name", agent_pool_name, 'str') - } - url = self._client.format_url(url, **path_format_arguments) - - # Construct parameters - query_parameters = {} - query_parameters['api-version'] = self._serialize.query("self.api_version", self.api_version, 'str') - - # Construct headers - header_parameters = {} - header_parameters['Accept'] = 'application/json' - if self.config.generate_client_request_id: - header_parameters['x-ms-client-request-id'] = str(uuid.uuid1()) - if custom_headers: - header_parameters.update(custom_headers) - if self.config.accept_language is not None: - header_parameters['accept-language'] = self._serialize.header("self.config.accept_language", self.config.accept_language, 'str') - - # Construct and send request - request = self._client.post(url, query_parameters, header_parameters) - response = self._client.send(request, stream=False, **operation_config) - - if response.status_code not in [200, 202]: - exp = CloudError(response) - exp.request_id = response.headers.get('x-ms-request-id') - raise exp - - deserialized = None - - if response.status_code == 202: - deserialized = self._deserialize('AgentPool', response) - - if raw: - client_raw_response = ClientRawResponse(deserialized, response) - return client_raw_response - - return deserialized - - def upgrade_node_image_version( - self, resource_group_name, resource_name, agent_pool_name, custom_headers=None, raw=False, polling=True, **operation_config): - """Upgrade node image version of an agent pool to the latest. - - Upgrade node image version of an agent pool to the latest. - - :param resource_group_name: The name of the resource group. - :type resource_group_name: str - :param resource_name: The name of the managed cluster resource. - :type resource_name: str - :param agent_pool_name: The name of the agent pool. - :type agent_pool_name: str - :param dict custom_headers: headers that will be added to the request - :param bool raw: The poller return type is ClientRawResponse, the - direct response alongside the deserialized response - :param polling: True for ARMPolling, False for no polling, or a - polling object for personal polling strategy - :return: An instance of LROPoller that returns AgentPool or - ClientRawResponse if raw==True - :rtype: - ~msrestazure.azure_operation.AzureOperationPoller[~azure.mgmt.containerservice.v2020_09_01.models.AgentPool] - or - ~msrestazure.azure_operation.AzureOperationPoller[~msrest.pipeline.ClientRawResponse[~azure.mgmt.containerservice.v2020_09_01.models.AgentPool]] - :raises: :class:`CloudError` - """ - raw_result = self._upgrade_node_image_version_initial( - resource_group_name=resource_group_name, - resource_name=resource_name, - agent_pool_name=agent_pool_name, - custom_headers=custom_headers, - raw=True, - **operation_config - ) - - def get_long_running_output(response): - deserialized = self._deserialize('AgentPool', response) - - if raw: - client_raw_response = ClientRawResponse(deserialized, response) - return client_raw_response - - return deserialized - - lro_delay = operation_config.get( - 'long_running_operation_timeout', - self.config.long_running_operation_timeout) - if polling is True: polling_method = ARMPolling(lro_delay, **operation_config) - elif polling is False: polling_method = NoPolling() - else: polling_method = polling - return LROPoller(self._client, raw_result, get_long_running_output, polling_method) - upgrade_node_image_version.metadata = {'url': '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}/upgradeNodeImageVersion'} diff --git a/sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/version.py b/sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/version.py index de1b7ade7844..0a46bc7cef9f 100644 --- a/sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/version.py +++ b/sdk/containerservice/azure-mgmt-containerservice/azure/mgmt/containerservice/version.py @@ -9,4 +9,4 @@ # regenerated. # -------------------------------------------------------------------------- -VERSION = "9.4.0" +VERSION = "10.0.0" diff --git a/sdk/containerservice/azure-mgmt-containerservice/tests/recordings/test_mgmt_containerservice.test_container.yaml b/sdk/containerservice/azure-mgmt-containerservice/tests/recordings/test_mgmt_containerservice.test_container.yaml index eb64677a5c7b..e9ba51c98e3d 100644 --- a/sdk/containerservice/azure-mgmt-containerservice/tests/recordings/test_mgmt_containerservice.test_container.yaml +++ b/sdk/containerservice/azure-mgmt-containerservice/tests/recordings/test_mgmt_containerservice.test_container.yaml @@ -23,10 +23,10 @@ interactions: response: body: string: "{\r\n \"name\": \"vnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_mgmt_containerservice_test_container665810f8/providers/Microsoft.Network/virtualNetworks/vnet\"\ - ,\r\n \"etag\": \"W/\\\"08fb0046-6700-430f-bcff-544e82497380\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"4c26ce4f-245d-4451-84a6-5eafceac13b6\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \ - \ \"resourceGuid\": \"cb7d273d-fd31-4b3c-a058-e0347e8f747b\",\r\n \"\ + \ \"resourceGuid\": \"9e070944-dfc0-42c6-94cf-7209caac0773\",\r\n \"\ addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/8\"\ \r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\"\ : [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ @@ -35,7 +35,7 @@ interactions: azure-asyncnotification: - Enabled azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4ec8f1fa-71a0-468e-8c4f-ed855f3a178a?api-version=2019-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/28a82867-6a4a-49c0-8cd2-93a143275c6a?api-version=2019-09-01 cache-control: - no-cache content-length: @@ -43,7 +43,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2020 06:52:47 GMT + - Mon, 28 Sep 2020 02:24:02 GMT expires: - '-1' pragma: @@ -56,9 +56,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 3e1c7127-7ce3-4e3c-b1ac-35e745ffb086 + - cb9dd35f-b4ed-424f-a4c8-f3641afaae36 x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 201 message: Created @@ -75,7 +75,7 @@ interactions: - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-network/7.0.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/4ec8f1fa-71a0-468e-8c4f-ed855f3a178a?api-version=2019-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/28a82867-6a4a-49c0-8cd2-93a143275c6a?api-version=2019-09-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -87,7 +87,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2020 06:52:53 GMT + - Mon, 28 Sep 2020 02:24:07 GMT expires: - '-1' pragma: @@ -104,7 +104,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 6a0d9dec-5937-4a56-8d28-51e2cdea5b60 + - 62e7501d-a6ea-47dd-ae71-40ae1093a3aa status: code: 200 message: OK @@ -125,10 +125,10 @@ interactions: response: body: string: "{\r\n \"name\": \"vnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_mgmt_containerservice_test_container665810f8/providers/Microsoft.Network/virtualNetworks/vnet\"\ - ,\r\n \"etag\": \"W/\\\"3cb82604-d0c6-4e9c-8407-0f0c1a71e00b\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"9ec337ec-4375-4b3b-93b5-8e0a0041c0d9\\\"\",\r\n \ \ \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"eastus\"\ ,\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n\ - \ \"resourceGuid\": \"cb7d273d-fd31-4b3c-a058-e0347e8f747b\",\r\n \"\ + \ \"resourceGuid\": \"9e070944-dfc0-42c6-94cf-7209caac0773\",\r\n \"\ addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/8\"\ \r\n ]\r\n },\r\n \"subnets\": [],\r\n \"virtualNetworkPeerings\"\ : [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\"\ @@ -141,9 +141,9 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2020 06:52:53 GMT + - Mon, 28 Sep 2020 02:24:07 GMT etag: - - W/"3cb82604-d0c6-4e9c-8407-0f0c1a71e00b" + - W/"9ec337ec-4375-4b3b-93b5-8e0a0041c0d9" expires: - '-1' pragma: @@ -160,7 +160,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - c1a83b98-f815-4e2f-b279-de89f6cffc27 + - 3256c4b1-7855-4b0c-805d-330f09e795d3 status: code: 200 message: OK @@ -187,22 +187,23 @@ interactions: response: body: string: "{\r\n \"name\": \"v-subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_mgmt_containerservice_test_container665810f8/providers/Microsoft.Network/virtualNetworks/vnet/subnets/v-subnet\"\ - ,\r\n \"etag\": \"W/\\\"8a13e125-c9fe-46d3-87f3-4a653cb43512\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"cdce8342-5272-4681-a574-0e95b5f471d5\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"\ addressPrefix\": \"10.0.0.0/8\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\"\ - : \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\ - \n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" + : \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\",\r\ + \n \"subnetID\": 0\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\ + \r\n}" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e8cd31ba-47cf-4513-bc15-4a73392e4154?api-version=2019-09-01 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/8b276d5a-2250-4975-b6f1-b4243004ee14?api-version=2019-09-01 cache-control: - no-cache content-length: - - '559' + - '579' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2020 06:52:53 GMT + - Mon, 28 Sep 2020 02:24:07 GMT expires: - '-1' pragma: @@ -215,9 +216,9 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - d3ccc644-7af1-4387-8cd7-7b21b1a0cdb7 + - 799f248a-5bad-4d4c-bac0-37b4f3dbfef6 x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 201 message: Created @@ -234,7 +235,7 @@ interactions: - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 msrest_azure/0.6.2 azure-mgmt-network/7.0.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/e8cd31ba-47cf-4513-bc15-4a73392e4154?api-version=2019-09-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Network/locations/eastus/operations/8b276d5a-2250-4975-b6f1-b4243004ee14?api-version=2019-09-01 response: body: string: "{\r\n \"status\": \"Succeeded\"\r\n}" @@ -246,7 +247,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2020 06:52:58 GMT + - Mon, 28 Sep 2020 02:24:12 GMT expires: - '-1' pragma: @@ -263,7 +264,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 342cbfcd-d7ac-4efd-a685-618a55c60f01 + - 93c91ce3-24a4-442c-b5ac-c0a23c649bf8 status: code: 200 message: OK @@ -284,22 +285,23 @@ interactions: response: body: string: "{\r\n \"name\": \"v-subnet\",\r\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_mgmt_containerservice_test_container665810f8/providers/Microsoft.Network/virtualNetworks/vnet/subnets/v-subnet\"\ - ,\r\n \"etag\": \"W/\\\"0014a236-b412-4f6e-b559-c2d5035cbbfe\\\"\",\r\n \ + ,\r\n \"etag\": \"W/\\\"622a5cdd-b6d5-4c76-ac98-fba0335e19c3\\\"\",\r\n \ \ \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"\ addressPrefix\": \"10.0.0.0/8\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\"\ - : \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\"\r\ - \n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n}" + : \"Enabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Enabled\",\r\ + \n \"subnetID\": 0\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\ + \r\n}" headers: cache-control: - no-cache content-length: - - '560' + - '580' content-type: - application/json; charset=utf-8 date: - - Fri, 11 Sep 2020 06:52:59 GMT + - Mon, 28 Sep 2020 02:24:13 GMT etag: - - W/"0014a236-b412-4f6e-b559-c2d5035cbbfe" + - W/"622a5cdd-b6d5-4c76-ac98-fba0335e19c3" expires: - '-1' pragma: @@ -316,7 +318,7 @@ interactions: x-content-type-options: - nosniff x-ms-arm-service-request-id: - - 638dec49-042b-4865-b26d-fcf75e1d9954 + - f23ce1d8-a44d-4a4a-b7d3-83bfd78fce31 status: code: 200 message: OK @@ -342,7 +344,7 @@ interactions: - application/json; charset=utf-8 User-Agent: - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.2 azure-mgmt-containerservice/10.0.0 Azure-SDK-For-Python accept-language: - en-US method: PUT @@ -367,7 +369,7 @@ interactions: \ azureuser@linuxvm\"\n }\n ]\n }\n }\n }\n }" headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/c886a471-2353-49c4-b1c1-fa54de691405?api-version=2016-03-30 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/a57fbb30-7583-4597-b012-2d29f551dc6e?api-version=2016-03-30 cache-control: - no-cache content-length: @@ -375,7 +377,7 @@ interactions: content-type: - application/json date: - - Fri, 11 Sep 2020 06:53:10 GMT + - Mon, 28 Sep 2020 02:24:27 GMT expires: - '-1' pragma: @@ -387,7 +389,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 201 message: Created @@ -402,13 +404,13 @@ interactions: - keep-alive User-Agent: - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.2 azure-mgmt-containerservice/10.0.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/c886a471-2353-49c4-b1c1-fa54de691405?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/a57fbb30-7583-4597-b012-2d29f551dc6e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"71a486c8-5323-c449-b1c1-fa54de691405\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-11T06:53:09.6469992Z\"\n }" + string: "{\n \"name\": \"30bb7fa5-8375-9745-b012-2d29f551dc6e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2020-09-28T02:24:26.8085063Z\"\n }" headers: cache-control: - no-cache @@ -417,7 +419,7 @@ interactions: content-type: - application/json date: - - Fri, 11 Sep 2020 06:53:42 GMT + - Mon, 28 Sep 2020 02:25:00 GMT expires: - '-1' pragma: @@ -446,13 +448,13 @@ interactions: - keep-alive User-Agent: - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.2 azure-mgmt-containerservice/10.0.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/c886a471-2353-49c4-b1c1-fa54de691405?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/a57fbb30-7583-4597-b012-2d29f551dc6e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"71a486c8-5323-c449-b1c1-fa54de691405\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-11T06:53:09.6469992Z\"\n }" + string: "{\n \"name\": \"30bb7fa5-8375-9745-b012-2d29f551dc6e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2020-09-28T02:24:26.8085063Z\"\n }" headers: cache-control: - no-cache @@ -461,7 +463,7 @@ interactions: content-type: - application/json date: - - Fri, 11 Sep 2020 06:54:12 GMT + - Mon, 28 Sep 2020 02:25:30 GMT expires: - '-1' pragma: @@ -490,13 +492,13 @@ interactions: - keep-alive User-Agent: - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.2 azure-mgmt-containerservice/10.0.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/c886a471-2353-49c4-b1c1-fa54de691405?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/a57fbb30-7583-4597-b012-2d29f551dc6e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"71a486c8-5323-c449-b1c1-fa54de691405\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-11T06:53:09.6469992Z\"\n }" + string: "{\n \"name\": \"30bb7fa5-8375-9745-b012-2d29f551dc6e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2020-09-28T02:24:26.8085063Z\"\n }" headers: cache-control: - no-cache @@ -505,7 +507,7 @@ interactions: content-type: - application/json date: - - Fri, 11 Sep 2020 06:54:43 GMT + - Mon, 28 Sep 2020 02:26:00 GMT expires: - '-1' pragma: @@ -534,13 +536,13 @@ interactions: - keep-alive User-Agent: - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.2 azure-mgmt-containerservice/10.0.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/c886a471-2353-49c4-b1c1-fa54de691405?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/a57fbb30-7583-4597-b012-2d29f551dc6e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"71a486c8-5323-c449-b1c1-fa54de691405\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-11T06:53:09.6469992Z\"\n }" + string: "{\n \"name\": \"30bb7fa5-8375-9745-b012-2d29f551dc6e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2020-09-28T02:24:26.8085063Z\"\n }" headers: cache-control: - no-cache @@ -549,7 +551,7 @@ interactions: content-type: - application/json date: - - Fri, 11 Sep 2020 06:55:13 GMT + - Mon, 28 Sep 2020 02:26:30 GMT expires: - '-1' pragma: @@ -578,23 +580,22 @@ interactions: - keep-alive User-Agent: - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.2 azure-mgmt-containerservice/10.0.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/c886a471-2353-49c4-b1c1-fa54de691405?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/a57fbb30-7583-4597-b012-2d29f551dc6e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"71a486c8-5323-c449-b1c1-fa54de691405\",\n \"status\"\ - : \"Succeeded\",\n \"startTime\": \"2020-09-11T06:53:09.6469992Z\",\n \"\ - endTime\": \"2020-09-11T06:55:14.2030196Z\"\n }" + string: "{\n \"name\": \"30bb7fa5-8375-9745-b012-2d29f551dc6e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2020-09-28T02:24:26.8085063Z\"\n }" headers: cache-control: - no-cache content-length: - - '170' + - '126' content-type: - application/json date: - - Fri, 11 Sep 2020 06:55:43 GMT + - Mon, 28 Sep 2020 02:27:00 GMT expires: - '-1' pragma: @@ -623,37 +624,22 @@ interactions: - keep-alive User-Agent: - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.2 azure-mgmt-containerservice/10.0.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_mgmt_containerservice_test_container665810f8/providers/Microsoft.ContainerService/containerServices/pycontainer665810f8?api-version=2017-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/a57fbb30-7583-4597-b012-2d29f551dc6e?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_mgmt_containerservice_test_container665810f8/providers/Microsoft.ContainerService/containerServices/pycontainer665810f8\"\ - ,\n \"location\": \"eastus\",\n \"name\": \"pycontainer665810f8\",\n \"\ - type\": \"Microsoft.ContainerService/ContainerServices\",\n \"properties\"\ - : {\n \"provisioningState\": \"Succeeded\",\n \"orchestratorProfile\"\ - : {\n \"orchestratorType\": \"Swarm\"\n },\n \"masterProfile\": {\n\ - \ \"count\": 1,\n \"dnsPrefix\": \"masterPrefixTest\",\n \"vmSize\"\ - : \"Standard_D2_v2\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_mgmt_containerservice_test_container665810f8/providers/Microsoft.Network/virtualNetworks/vnet/subnets/v-subnet\"\ - ,\n \"firstConsecutiveStaticIP\": \"10.240.255.5\",\n \"storageProfile\"\ - : \"ManagedDisks\",\n \"fqdn\": \"masterprefixtest.eastus.cloudapp.azure.com\"\ - \n },\n \"agentPoolProfiles\": [\n {\n \"name\": \"agentpool0\"\ - ,\n \"count\": 3,\n \"vmSize\": \"Standard_A2_v2\",\n \"dnsPrefix\"\ - : \"\",\n \"fqdn\": \"\",\n \"storageProfile\": \"ManagedDisks\",\n\ - \ \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_mgmt_containerservice_test_container665810f8/providers/Microsoft.Network/virtualNetworks/vnet/subnets/v-subnet\"\ - ,\n \"osType\": \"Linux\"\n }\n ],\n \"linuxProfile\": {\n \"\ - adminUsername\": \"acslinuxadmin\",\n \"ssh\": {\n \"publicKeys\":\ - \ [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEAlj9UC6+57XWVu0fd6zqXa256EU9EZdoLGE3TqdZqu9fvUvLQOX2G0d5DmFhDCyTmWLQUx3/ONQ9RotYmHGymBIPQcpx43nnxsuihAILcpGZ5NjCj4IOYnmhdULxN4ti7k00S+udqokrRYpmwt0N4NA4VT9cN+7uJDL8Opqa1FYu0CT/RqSW+3aoQ0nfGj11axoxM37FuOMZ/c7mBSxvuI9NsDmcDQOUmPXjlgNlxrLzf6VcjxnJh4AO83zbyLok37mW/C7CuNK4WowjPO1Ix2kqRHRxBrzxYZ9xqZPc8GpFTw/dxJEYdJ3xlitbOoBoDgrL5gSITv6ESlNqjPk6kHQ==\ - \ azureuser@linuxvm\"\n }\n ]\n }\n }\n }\n }" + string: "{\n \"name\": \"30bb7fa5-8375-9745-b012-2d29f551dc6e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2020-09-28T02:24:26.8085063Z\"\n }" headers: cache-control: - no-cache content-length: - - '1884' + - '126' content-type: - application/json date: - - Fri, 11 Sep 2020 06:55:44 GMT + - Mon, 28 Sep 2020 02:27:31 GMT expires: - '-1' pragma: @@ -682,39 +668,22 @@ interactions: - keep-alive User-Agent: - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python - accept-language: - - en-US + msrest_azure/0.6.2 azure-mgmt-containerservice/10.0.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_mgmt_containerservice_test_container665810f8/providers/Microsoft.ContainerService/containerServices/pycontainer665810f8?api-version=2017-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/a57fbb30-7583-4597-b012-2d29f551dc6e?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_mgmt_containerservice_test_container665810f8/providers/Microsoft.ContainerService/containerServices/pycontainer665810f8\"\ - ,\n \"location\": \"eastus\",\n \"name\": \"pycontainer665810f8\",\n \"\ - type\": \"Microsoft.ContainerService/ContainerServices\",\n \"properties\"\ - : {\n \"provisioningState\": \"Succeeded\",\n \"orchestratorProfile\"\ - : {\n \"orchestratorType\": \"Swarm\"\n },\n \"masterProfile\": {\n\ - \ \"count\": 1,\n \"dnsPrefix\": \"masterPrefixTest\",\n \"vmSize\"\ - : \"Standard_D2_v2\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_mgmt_containerservice_test_container665810f8/providers/Microsoft.Network/virtualNetworks/vnet/subnets/v-subnet\"\ - ,\n \"firstConsecutiveStaticIP\": \"10.240.255.5\",\n \"storageProfile\"\ - : \"ManagedDisks\",\n \"fqdn\": \"masterprefixtest.eastus.cloudapp.azure.com\"\ - \n },\n \"agentPoolProfiles\": [\n {\n \"name\": \"agentpool0\"\ - ,\n \"count\": 3,\n \"vmSize\": \"Standard_A2_v2\",\n \"dnsPrefix\"\ - : \"\",\n \"fqdn\": \"\",\n \"storageProfile\": \"ManagedDisks\",\n\ - \ \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_mgmt_containerservice_test_container665810f8/providers/Microsoft.Network/virtualNetworks/vnet/subnets/v-subnet\"\ - ,\n \"osType\": \"Linux\"\n }\n ],\n \"linuxProfile\": {\n \"\ - adminUsername\": \"acslinuxadmin\",\n \"ssh\": {\n \"publicKeys\":\ - \ [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEAlj9UC6+57XWVu0fd6zqXa256EU9EZdoLGE3TqdZqu9fvUvLQOX2G0d5DmFhDCyTmWLQUx3/ONQ9RotYmHGymBIPQcpx43nnxsuihAILcpGZ5NjCj4IOYnmhdULxN4ti7k00S+udqokrRYpmwt0N4NA4VT9cN+7uJDL8Opqa1FYu0CT/RqSW+3aoQ0nfGj11axoxM37FuOMZ/c7mBSxvuI9NsDmcDQOUmPXjlgNlxrLzf6VcjxnJh4AO83zbyLok37mW/C7CuNK4WowjPO1Ix2kqRHRxBrzxYZ9xqZPc8GpFTw/dxJEYdJ3xlitbOoBoDgrL5gSITv6ESlNqjPk6kHQ==\ - \ azureuser@linuxvm\"\n }\n ]\n }\n }\n }\n }" + string: "{\n \"name\": \"30bb7fa5-8375-9745-b012-2d29f551dc6e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2020-09-28T02:24:26.8085063Z\"\n }" headers: cache-control: - no-cache content-length: - - '1884' + - '126' content-type: - application/json date: - - Fri, 11 Sep 2020 06:55:46 GMT + - Mon, 28 Sep 2020 02:28:02 GMT expires: - '-1' pragma: @@ -743,40 +712,22 @@ interactions: - keep-alive User-Agent: - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python - accept-language: - - en-US + msrest_azure/0.6.2 azure-mgmt-containerservice/10.0.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_mgmt_containerservice_test_container665810f8/providers/Microsoft.ContainerService/containerServices?api-version=2017-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/a57fbb30-7583-4597-b012-2d29f551dc6e?api-version=2016-03-30 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_mgmt_containerservice_test_container665810f8/providers/Microsoft.ContainerService/containerServices/pycontainer665810f8\"\ - ,\n \"location\": \"eastus\",\n \"name\": \"pycontainer665810f8\",\n\ - \ \"type\": \"Microsoft.ContainerService/ContainerServices\",\n \"properties\"\ - : {\n \"provisioningState\": \"Succeeded\",\n \"orchestratorProfile\"\ - : {\n \"orchestratorType\": \"Swarm\"\n },\n \"masterProfile\"\ - : {\n \"count\": 1,\n \"dnsPrefix\": \"masterPrefixTest\",\n \ - \ \"vmSize\": \"Standard_D2_v2\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_mgmt_containerservice_test_container665810f8/providers/Microsoft.Network/virtualNetworks/vnet/subnets/v-subnet\"\ - ,\n \"firstConsecutiveStaticIP\": \"10.240.255.5\",\n \"storageProfile\"\ - : \"ManagedDisks\",\n \"fqdn\": \"masterprefixtest.eastus.cloudapp.azure.com\"\ - \n },\n \"agentPoolProfiles\": [\n {\n \"name\": \"agentpool0\"\ - ,\n \"count\": 3,\n \"vmSize\": \"Standard_A2_v2\",\n \"\ - dnsPrefix\": \"\",\n \"fqdn\": \"\",\n \"storageProfile\": \"\ - ManagedDisks\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_mgmt_containerservice_test_container665810f8/providers/Microsoft.Network/virtualNetworks/vnet/subnets/v-subnet\"\ - ,\n \"osType\": \"Linux\"\n }\n ],\n \"linuxProfile\":\ - \ {\n \"adminUsername\": \"acslinuxadmin\",\n \"ssh\": {\n \ - \ \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEAlj9UC6+57XWVu0fd6zqXa256EU9EZdoLGE3TqdZqu9fvUvLQOX2G0d5DmFhDCyTmWLQUx3/ONQ9RotYmHGymBIPQcpx43nnxsuihAILcpGZ5NjCj4IOYnmhdULxN4ti7k00S+udqokrRYpmwt0N4NA4VT9cN+7uJDL8Opqa1FYu0CT/RqSW+3aoQ0nfGj11axoxM37FuOMZ/c7mBSxvuI9NsDmcDQOUmPXjlgNlxrLzf6VcjxnJh4AO83zbyLok37mW/C7CuNK4WowjPO1Ix2kqRHRxBrzxYZ9xqZPc8GpFTw/dxJEYdJ3xlitbOoBoDgrL5gSITv6ESlNqjPk6kHQ==\ - \ azureuser@linuxvm\"\n }\n ]\n }\n }\n }\n }\n\ - \ ]\n }" + string: "{\n \"name\": \"30bb7fa5-8375-9745-b012-2d29f551dc6e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2020-09-28T02:24:26.8085063Z\"\n }" headers: cache-control: - no-cache content-length: - - '1993' + - '126' content-type: - application/json date: - - Fri, 11 Sep 2020 06:55:46 GMT + - Mon, 28 Sep 2020 02:28:32 GMT expires: - '-1' pragma: @@ -805,40 +756,22 @@ interactions: - keep-alive User-Agent: - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python - accept-language: - - en-US + msrest_azure/0.6.2 azure-mgmt-containerservice/10.0.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/containerServices?api-version=2017-07-01 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/a57fbb30-7583-4597-b012-2d29f551dc6e?api-version=2016-03-30 response: body: - string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_mgmt_containerservice_test_container665810f8/providers/Microsoft.ContainerService/containerServices/pycontainer665810f8\"\ - ,\n \"location\": \"eastus\",\n \"name\": \"pycontainer665810f8\",\n\ - \ \"type\": \"Microsoft.ContainerService/ContainerServices\",\n \"properties\"\ - : {\n \"provisioningState\": \"Succeeded\",\n \"orchestratorProfile\"\ - : {\n \"orchestratorType\": \"Swarm\"\n },\n \"masterProfile\"\ - : {\n \"count\": 1,\n \"dnsPrefix\": \"masterPrefixTest\",\n \ - \ \"vmSize\": \"Standard_D2_v2\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_mgmt_containerservice_test_container665810f8/providers/Microsoft.Network/virtualNetworks/vnet/subnets/v-subnet\"\ - ,\n \"firstConsecutiveStaticIP\": \"10.240.255.5\",\n \"storageProfile\"\ - : \"ManagedDisks\",\n \"fqdn\": \"masterprefixtest.eastus.cloudapp.azure.com\"\ - \n },\n \"agentPoolProfiles\": [\n {\n \"name\": \"agentpool0\"\ - ,\n \"count\": 3,\n \"vmSize\": \"Standard_A2_v2\",\n \"\ - dnsPrefix\": \"\",\n \"fqdn\": \"\",\n \"storageProfile\": \"\ - ManagedDisks\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_mgmt_containerservice_test_container665810f8/providers/Microsoft.Network/virtualNetworks/vnet/subnets/v-subnet\"\ - ,\n \"osType\": \"Linux\"\n }\n ],\n \"linuxProfile\":\ - \ {\n \"adminUsername\": \"acslinuxadmin\",\n \"ssh\": {\n \ - \ \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEAlj9UC6+57XWVu0fd6zqXa256EU9EZdoLGE3TqdZqu9fvUvLQOX2G0d5DmFhDCyTmWLQUx3/ONQ9RotYmHGymBIPQcpx43nnxsuihAILcpGZ5NjCj4IOYnmhdULxN4ti7k00S+udqokrRYpmwt0N4NA4VT9cN+7uJDL8Opqa1FYu0CT/RqSW+3aoQ0nfGj11axoxM37FuOMZ/c7mBSxvuI9NsDmcDQOUmPXjlgNlxrLzf6VcjxnJh4AO83zbyLok37mW/C7CuNK4WowjPO1Ix2kqRHRxBrzxYZ9xqZPc8GpFTw/dxJEYdJ3xlitbOoBoDgrL5gSITv6ESlNqjPk6kHQ==\ - \ azureuser@linuxvm\"\n }\n ]\n }\n }\n }\n }\n\ - \ ]\n }" + string: "{\n \"name\": \"30bb7fa5-8375-9745-b012-2d29f551dc6e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2020-09-28T02:24:26.8085063Z\"\n }" headers: cache-control: - no-cache content-length: - - '1993' + - '126' content-type: - application/json date: - - Fri, 11 Sep 2020 06:55:47 GMT + - Mon, 28 Sep 2020 02:29:02 GMT expires: - '-1' pragma: @@ -865,62 +798,923 @@ interactions: - gzip, deflate Connection: - keep-alive - Content-Length: - - '0' User-Agent: - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python - accept-language: - - en-US - method: DELETE - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_mgmt_containerservice_test_container665810f8/providers/Microsoft.ContainerService/containerServices/pycontainer665810f8?api-version=2017-07-01 + msrest_azure/0.6.2 azure-mgmt-containerservice/10.0.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/a57fbb30-7583-4597-b012-2d29f551dc6e?api-version=2016-03-30 response: body: - string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_mgmt_containerservice_test_container665810f8/providers/Microsoft.ContainerService/containerServices/pycontainer665810f8\"\ - ,\n \"location\": \"eastus\",\n \"name\": \"pycontainer665810f8\",\n \"\ - type\": \"Microsoft.ContainerService/ContainerServices\",\n \"properties\"\ - : {\n \"provisioningState\": \"Deleting\",\n \"orchestratorProfile\":\ - \ {\n \"orchestratorType\": \"Swarm\"\n },\n \"masterProfile\": {\n\ - \ \"count\": 1,\n \"dnsPrefix\": \"masterPrefixTest\",\n \"vmSize\"\ - : \"Standard_D2_v2\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_mgmt_containerservice_test_container665810f8/providers/Microsoft.Network/virtualNetworks/vnet/subnets/v-subnet\"\ - ,\n \"firstConsecutiveStaticIP\": \"10.240.255.5\",\n \"storageProfile\"\ - : \"ManagedDisks\",\n \"fqdn\": \"masterprefixtest.eastus.cloudapp.azure.com\"\ - \n },\n \"agentPoolProfiles\": [\n {\n \"name\": \"agentpool0\"\ - ,\n \"count\": 3,\n \"vmSize\": \"Standard_A2_v2\",\n \"dnsPrefix\"\ - : \"\",\n \"fqdn\": \"\",\n \"storageProfile\": \"ManagedDisks\",\n\ - \ \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_mgmt_containerservice_test_container665810f8/providers/Microsoft.Network/virtualNetworks/vnet/subnets/v-subnet\"\ - ,\n \"osType\": \"Linux\"\n }\n ],\n \"linuxProfile\": {\n \"\ - adminUsername\": \"acslinuxadmin\",\n \"ssh\": {\n \"publicKeys\":\ - \ [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEAlj9UC6+57XWVu0fd6zqXa256EU9EZdoLGE3TqdZqu9fvUvLQOX2G0d5DmFhDCyTmWLQUx3/ONQ9RotYmHGymBIPQcpx43nnxsuihAILcpGZ5NjCj4IOYnmhdULxN4ti7k00S+udqokrRYpmwt0N4NA4VT9cN+7uJDL8Opqa1FYu0CT/RqSW+3aoQ0nfGj11axoxM37FuOMZ/c7mBSxvuI9NsDmcDQOUmPXjlgNlxrLzf6VcjxnJh4AO83zbyLok37mW/C7CuNK4WowjPO1Ix2kqRHRxBrzxYZ9xqZPc8GpFTw/dxJEYdJ3xlitbOoBoDgrL5gSITv6ESlNqjPk6kHQ==\ - \ azureuser@linuxvm\"\n }\n ]\n }\n }\n }\n }" + string: "{\n \"name\": \"30bb7fa5-8375-9745-b012-2d29f551dc6e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2020-09-28T02:24:26.8085063Z\"\n }" headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/d5e1637b-16cf-4b9c-86cc-3ca91a767b8a?api-version=2016-03-30 cache-control: - no-cache content-length: - - '1883' + - '126' content-type: - application/json date: - - Fri, 11 Sep 2020 06:55:48 GMT + - Mon, 28 Sep 2020 02:29:33 GMT expires: - '-1' - location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operationresults/d5e1637b-16cf-4b9c-86cc-3ca91a767b8a?api-version=2016-03-30 pragma: - no-cache server: - nginx strict-transport-security: - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding x-content-type-options: - nosniff - x-ms-ratelimit-remaining-subscription-deletes: - - '14999' status: - code: 202 - message: Accepted + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-containerservice/10.0.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/a57fbb30-7583-4597-b012-2d29f551dc6e?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"30bb7fa5-8375-9745-b012-2d29f551dc6e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2020-09-28T02:24:26.8085063Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Mon, 28 Sep 2020 02:30:03 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-containerservice/10.0.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/a57fbb30-7583-4597-b012-2d29f551dc6e?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"30bb7fa5-8375-9745-b012-2d29f551dc6e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2020-09-28T02:24:26.8085063Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Mon, 28 Sep 2020 02:30:35 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-containerservice/10.0.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/a57fbb30-7583-4597-b012-2d29f551dc6e?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"30bb7fa5-8375-9745-b012-2d29f551dc6e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2020-09-28T02:24:26.8085063Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Mon, 28 Sep 2020 02:31:05 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-containerservice/10.0.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/a57fbb30-7583-4597-b012-2d29f551dc6e?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"30bb7fa5-8375-9745-b012-2d29f551dc6e\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2020-09-28T02:24:26.8085063Z\",\n \"\ + endTime\": \"2020-09-28T02:31:33.4172844Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '170' + content-type: + - application/json + date: + - Mon, 28 Sep 2020 02:31:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-containerservice/10.0.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_mgmt_containerservice_test_container665810f8/providers/Microsoft.ContainerService/containerServices/pycontainer665810f8?api-version=2017-07-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_mgmt_containerservice_test_container665810f8/providers/Microsoft.ContainerService/containerServices/pycontainer665810f8\"\ + ,\n \"location\": \"eastus\",\n \"name\": \"pycontainer665810f8\",\n \"\ + type\": \"Microsoft.ContainerService/ContainerServices\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"orchestratorProfile\"\ + : {\n \"orchestratorType\": \"Swarm\"\n },\n \"masterProfile\": {\n\ + \ \"count\": 1,\n \"dnsPrefix\": \"masterPrefixTest\",\n \"vmSize\"\ + : \"Standard_D2_v2\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_mgmt_containerservice_test_container665810f8/providers/Microsoft.Network/virtualNetworks/vnet/subnets/v-subnet\"\ + ,\n \"firstConsecutiveStaticIP\": \"10.240.255.5\",\n \"storageProfile\"\ + : \"ManagedDisks\",\n \"fqdn\": \"masterprefixtest.eastus.cloudapp.azure.com\"\ + \n },\n \"agentPoolProfiles\": [\n {\n \"name\": \"agentpool0\"\ + ,\n \"count\": 3,\n \"vmSize\": \"Standard_A2_v2\",\n \"dnsPrefix\"\ + : \"\",\n \"fqdn\": \"\",\n \"storageProfile\": \"ManagedDisks\",\n\ + \ \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_mgmt_containerservice_test_container665810f8/providers/Microsoft.Network/virtualNetworks/vnet/subnets/v-subnet\"\ + ,\n \"osType\": \"Linux\"\n }\n ],\n \"linuxProfile\": {\n \"\ + adminUsername\": \"acslinuxadmin\",\n \"ssh\": {\n \"publicKeys\":\ + \ [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEAlj9UC6+57XWVu0fd6zqXa256EU9EZdoLGE3TqdZqu9fvUvLQOX2G0d5DmFhDCyTmWLQUx3/ONQ9RotYmHGymBIPQcpx43nnxsuihAILcpGZ5NjCj4IOYnmhdULxN4ti7k00S+udqokrRYpmwt0N4NA4VT9cN+7uJDL8Opqa1FYu0CT/RqSW+3aoQ0nfGj11axoxM37FuOMZ/c7mBSxvuI9NsDmcDQOUmPXjlgNlxrLzf6VcjxnJh4AO83zbyLok37mW/C7CuNK4WowjPO1Ix2kqRHRxBrzxYZ9xqZPc8GpFTw/dxJEYdJ3xlitbOoBoDgrL5gSITv6ESlNqjPk6kHQ==\ + \ azureuser@linuxvm\"\n }\n ]\n }\n }\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '1884' + content-type: + - application/json + date: + - Mon, 28 Sep 2020 02:31:36 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-containerservice/10.0.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_mgmt_containerservice_test_container665810f8/providers/Microsoft.ContainerService/containerServices/pycontainer665810f8?api-version=2017-07-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_mgmt_containerservice_test_container665810f8/providers/Microsoft.ContainerService/containerServices/pycontainer665810f8\"\ + ,\n \"location\": \"eastus\",\n \"name\": \"pycontainer665810f8\",\n \"\ + type\": \"Microsoft.ContainerService/ContainerServices\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"orchestratorProfile\"\ + : {\n \"orchestratorType\": \"Swarm\"\n },\n \"masterProfile\": {\n\ + \ \"count\": 1,\n \"dnsPrefix\": \"masterPrefixTest\",\n \"vmSize\"\ + : \"Standard_D2_v2\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_mgmt_containerservice_test_container665810f8/providers/Microsoft.Network/virtualNetworks/vnet/subnets/v-subnet\"\ + ,\n \"firstConsecutiveStaticIP\": \"10.240.255.5\",\n \"storageProfile\"\ + : \"ManagedDisks\",\n \"fqdn\": \"masterprefixtest.eastus.cloudapp.azure.com\"\ + \n },\n \"agentPoolProfiles\": [\n {\n \"name\": \"agentpool0\"\ + ,\n \"count\": 3,\n \"vmSize\": \"Standard_A2_v2\",\n \"dnsPrefix\"\ + : \"\",\n \"fqdn\": \"\",\n \"storageProfile\": \"ManagedDisks\",\n\ + \ \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_mgmt_containerservice_test_container665810f8/providers/Microsoft.Network/virtualNetworks/vnet/subnets/v-subnet\"\ + ,\n \"osType\": \"Linux\"\n }\n ],\n \"linuxProfile\": {\n \"\ + adminUsername\": \"acslinuxadmin\",\n \"ssh\": {\n \"publicKeys\":\ + \ [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEAlj9UC6+57XWVu0fd6zqXa256EU9EZdoLGE3TqdZqu9fvUvLQOX2G0d5DmFhDCyTmWLQUx3/ONQ9RotYmHGymBIPQcpx43nnxsuihAILcpGZ5NjCj4IOYnmhdULxN4ti7k00S+udqokrRYpmwt0N4NA4VT9cN+7uJDL8Opqa1FYu0CT/RqSW+3aoQ0nfGj11axoxM37FuOMZ/c7mBSxvuI9NsDmcDQOUmPXjlgNlxrLzf6VcjxnJh4AO83zbyLok37mW/C7CuNK4WowjPO1Ix2kqRHRxBrzxYZ9xqZPc8GpFTw/dxJEYdJ3xlitbOoBoDgrL5gSITv6ESlNqjPk6kHQ==\ + \ azureuser@linuxvm\"\n }\n ]\n }\n }\n }\n }" + headers: + cache-control: + - no-cache + content-length: + - '1884' + content-type: + - application/json + date: + - Mon, 28 Sep 2020 02:31:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-containerservice/10.0.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_mgmt_containerservice_test_container665810f8/providers/Microsoft.ContainerService/containerServices?api-version=2017-07-01 + response: + body: + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_mgmt_containerservice_test_container665810f8/providers/Microsoft.ContainerService/containerServices/pycontainer665810f8\"\ + ,\n \"location\": \"eastus\",\n \"name\": \"pycontainer665810f8\",\n\ + \ \"type\": \"Microsoft.ContainerService/ContainerServices\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"orchestratorProfile\"\ + : {\n \"orchestratorType\": \"Swarm\"\n },\n \"masterProfile\"\ + : {\n \"count\": 1,\n \"dnsPrefix\": \"masterPrefixTest\",\n \ + \ \"vmSize\": \"Standard_D2_v2\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_mgmt_containerservice_test_container665810f8/providers/Microsoft.Network/virtualNetworks/vnet/subnets/v-subnet\"\ + ,\n \"firstConsecutiveStaticIP\": \"10.240.255.5\",\n \"storageProfile\"\ + : \"ManagedDisks\",\n \"fqdn\": \"masterprefixtest.eastus.cloudapp.azure.com\"\ + \n },\n \"agentPoolProfiles\": [\n {\n \"name\": \"agentpool0\"\ + ,\n \"count\": 3,\n \"vmSize\": \"Standard_A2_v2\",\n \"\ + dnsPrefix\": \"\",\n \"fqdn\": \"\",\n \"storageProfile\": \"\ + ManagedDisks\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_mgmt_containerservice_test_container665810f8/providers/Microsoft.Network/virtualNetworks/vnet/subnets/v-subnet\"\ + ,\n \"osType\": \"Linux\"\n }\n ],\n \"linuxProfile\":\ + \ {\n \"adminUsername\": \"acslinuxadmin\",\n \"ssh\": {\n \ + \ \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEAlj9UC6+57XWVu0fd6zqXa256EU9EZdoLGE3TqdZqu9fvUvLQOX2G0d5DmFhDCyTmWLQUx3/ONQ9RotYmHGymBIPQcpx43nnxsuihAILcpGZ5NjCj4IOYnmhdULxN4ti7k00S+udqokrRYpmwt0N4NA4VT9cN+7uJDL8Opqa1FYu0CT/RqSW+3aoQ0nfGj11axoxM37FuOMZ/c7mBSxvuI9NsDmcDQOUmPXjlgNlxrLzf6VcjxnJh4AO83zbyLok37mW/C7CuNK4WowjPO1Ix2kqRHRxBrzxYZ9xqZPc8GpFTw/dxJEYdJ3xlitbOoBoDgrL5gSITv6ESlNqjPk6kHQ==\ + \ azureuser@linuxvm\"\n }\n ]\n }\n }\n }\n }\n\ + \ ]\n }" + headers: + cache-control: + - no-cache + content-length: + - '1993' + content-type: + - application/json + date: + - Mon, 28 Sep 2020 02:31:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-containerservice/10.0.0 Azure-SDK-For-Python + accept-language: + - en-US + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/containerServices?api-version=2017-07-01 + response: + body: + string: "{\n \"value\": [\n {\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_mgmt_containerservice_test_container665810f8/providers/Microsoft.ContainerService/containerServices/pycontainer665810f8\"\ + ,\n \"location\": \"eastus\",\n \"name\": \"pycontainer665810f8\",\n\ + \ \"type\": \"Microsoft.ContainerService/ContainerServices\",\n \"properties\"\ + : {\n \"provisioningState\": \"Succeeded\",\n \"orchestratorProfile\"\ + : {\n \"orchestratorType\": \"Swarm\"\n },\n \"masterProfile\"\ + : {\n \"count\": 1,\n \"dnsPrefix\": \"masterPrefixTest\",\n \ + \ \"vmSize\": \"Standard_D2_v2\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_mgmt_containerservice_test_container665810f8/providers/Microsoft.Network/virtualNetworks/vnet/subnets/v-subnet\"\ + ,\n \"firstConsecutiveStaticIP\": \"10.240.255.5\",\n \"storageProfile\"\ + : \"ManagedDisks\",\n \"fqdn\": \"masterprefixtest.eastus.cloudapp.azure.com\"\ + \n },\n \"agentPoolProfiles\": [\n {\n \"name\": \"agentpool0\"\ + ,\n \"count\": 3,\n \"vmSize\": \"Standard_A2_v2\",\n \"\ + dnsPrefix\": \"\",\n \"fqdn\": \"\",\n \"storageProfile\": \"\ + ManagedDisks\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_mgmt_containerservice_test_container665810f8/providers/Microsoft.Network/virtualNetworks/vnet/subnets/v-subnet\"\ + ,\n \"osType\": \"Linux\"\n }\n ],\n \"linuxProfile\":\ + \ {\n \"adminUsername\": \"acslinuxadmin\",\n \"ssh\": {\n \ + \ \"publicKeys\": [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEAlj9UC6+57XWVu0fd6zqXa256EU9EZdoLGE3TqdZqu9fvUvLQOX2G0d5DmFhDCyTmWLQUx3/ONQ9RotYmHGymBIPQcpx43nnxsuihAILcpGZ5NjCj4IOYnmhdULxN4ti7k00S+udqokrRYpmwt0N4NA4VT9cN+7uJDL8Opqa1FYu0CT/RqSW+3aoQ0nfGj11axoxM37FuOMZ/c7mBSxvuI9NsDmcDQOUmPXjlgNlxrLzf6VcjxnJh4AO83zbyLok37mW/C7CuNK4WowjPO1Ix2kqRHRxBrzxYZ9xqZPc8GpFTw/dxJEYdJ3xlitbOoBoDgrL5gSITv6ESlNqjPk6kHQ==\ + \ azureuser@linuxvm\"\n }\n ]\n }\n }\n }\n }\n\ + \ ]\n }" + headers: + cache-control: + - no-cache + content-length: + - '1993' + content-type: + - application/json + date: + - Mon, 28 Sep 2020 02:31:38 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + Content-Length: + - '0' + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-containerservice/10.0.0 Azure-SDK-For-Python + accept-language: + - en-US + method: DELETE + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_mgmt_containerservice_test_container665810f8/providers/Microsoft.ContainerService/containerServices/pycontainer665810f8?api-version=2017-07-01 + response: + body: + string: "{\n \"id\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourcegroups/test_mgmt_containerservice_test_container665810f8/providers/Microsoft.ContainerService/containerServices/pycontainer665810f8\"\ + ,\n \"location\": \"eastus\",\n \"name\": \"pycontainer665810f8\",\n \"\ + type\": \"Microsoft.ContainerService/ContainerServices\",\n \"properties\"\ + : {\n \"provisioningState\": \"Deleting\",\n \"orchestratorProfile\":\ + \ {\n \"orchestratorType\": \"Swarm\"\n },\n \"masterProfile\": {\n\ + \ \"count\": 1,\n \"dnsPrefix\": \"masterPrefixTest\",\n \"vmSize\"\ + : \"Standard_D2_v2\",\n \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_mgmt_containerservice_test_container665810f8/providers/Microsoft.Network/virtualNetworks/vnet/subnets/v-subnet\"\ + ,\n \"firstConsecutiveStaticIP\": \"10.240.255.5\",\n \"storageProfile\"\ + : \"ManagedDisks\",\n \"fqdn\": \"masterprefixtest.eastus.cloudapp.azure.com\"\ + \n },\n \"agentPoolProfiles\": [\n {\n \"name\": \"agentpool0\"\ + ,\n \"count\": 3,\n \"vmSize\": \"Standard_A2_v2\",\n \"dnsPrefix\"\ + : \"\",\n \"fqdn\": \"\",\n \"storageProfile\": \"ManagedDisks\",\n\ + \ \"vnetSubnetID\": \"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_mgmt_containerservice_test_container665810f8/providers/Microsoft.Network/virtualNetworks/vnet/subnets/v-subnet\"\ + ,\n \"osType\": \"Linux\"\n }\n ],\n \"linuxProfile\": {\n \"\ + adminUsername\": \"acslinuxadmin\",\n \"ssh\": {\n \"publicKeys\":\ + \ [\n {\n \"keyData\": \"ssh-rsa AAAAB3NzaC1yc2EAAAABJQAAAQEAlj9UC6+57XWVu0fd6zqXa256EU9EZdoLGE3TqdZqu9fvUvLQOX2G0d5DmFhDCyTmWLQUx3/ONQ9RotYmHGymBIPQcpx43nnxsuihAILcpGZ5NjCj4IOYnmhdULxN4ti7k00S+udqokrRYpmwt0N4NA4VT9cN+7uJDL8Opqa1FYu0CT/RqSW+3aoQ0nfGj11axoxM37FuOMZ/c7mBSxvuI9NsDmcDQOUmPXjlgNlxrLzf6VcjxnJh4AO83zbyLok37mW/C7CuNK4WowjPO1Ix2kqRHRxBrzxYZ9xqZPc8GpFTw/dxJEYdJ3xlitbOoBoDgrL5gSITv6ESlNqjPk6kHQ==\ + \ azureuser@linuxvm\"\n }\n ]\n }\n }\n }\n }" + headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/75d0fc62-f9c6-4b48-b571-06da8086761e?api-version=2016-03-30 + cache-control: + - no-cache + content-length: + - '1883' + content-type: + - application/json + date: + - Mon, 28 Sep 2020 02:31:39 GMT + expires: + - '-1' + location: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operationresults/75d0fc62-f9c6-4b48-b571-06da8086761e?api-version=2016-03-30 + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + x-content-type-options: + - nosniff + x-ms-ratelimit-remaining-subscription-deletes: + - '14999' + status: + code: 202 + message: Accepted +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-containerservice/10.0.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/75d0fc62-f9c6-4b48-b571-06da8086761e?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"62fcd075-c6f9-484b-b571-06da8086761e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2020-09-28T02:31:40.0577078Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Mon, 28 Sep 2020 02:32:10 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-containerservice/10.0.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/75d0fc62-f9c6-4b48-b571-06da8086761e?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"62fcd075-c6f9-484b-b571-06da8086761e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2020-09-28T02:31:40.0577078Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Mon, 28 Sep 2020 02:32:40 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-containerservice/10.0.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/75d0fc62-f9c6-4b48-b571-06da8086761e?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"62fcd075-c6f9-484b-b571-06da8086761e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2020-09-28T02:31:40.0577078Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Mon, 28 Sep 2020 02:33:11 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-containerservice/10.0.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/75d0fc62-f9c6-4b48-b571-06da8086761e?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"62fcd075-c6f9-484b-b571-06da8086761e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2020-09-28T02:31:40.0577078Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Mon, 28 Sep 2020 02:33:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-containerservice/10.0.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/75d0fc62-f9c6-4b48-b571-06da8086761e?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"62fcd075-c6f9-484b-b571-06da8086761e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2020-09-28T02:31:40.0577078Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Mon, 28 Sep 2020 02:34:12 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-containerservice/10.0.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/75d0fc62-f9c6-4b48-b571-06da8086761e?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"62fcd075-c6f9-484b-b571-06da8086761e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2020-09-28T02:31:40.0577078Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Mon, 28 Sep 2020 02:34:42 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-containerservice/10.0.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/75d0fc62-f9c6-4b48-b571-06da8086761e?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"62fcd075-c6f9-484b-b571-06da8086761e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2020-09-28T02:31:40.0577078Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Mon, 28 Sep 2020 02:35:13 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-containerservice/10.0.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/75d0fc62-f9c6-4b48-b571-06da8086761e?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"62fcd075-c6f9-484b-b571-06da8086761e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2020-09-28T02:31:40.0577078Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Mon, 28 Sep 2020 02:35:44 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-containerservice/10.0.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/75d0fc62-f9c6-4b48-b571-06da8086761e?api-version=2016-03-30 + response: + body: + string: "{\n \"name\": \"62fcd075-c6f9-484b-b571-06da8086761e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2020-09-28T02:31:40.0577078Z\"\n }" + headers: + cache-control: + - no-cache + content-length: + - '126' + content-type: + - application/json + date: + - Mon, 28 Sep 2020 02:36:14 GMT + expires: + - '-1' + pragma: + - no-cache + server: + - nginx + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + status: + code: 200 + message: OK - request: body: null headers: @@ -932,13 +1726,13 @@ interactions: - keep-alive User-Agent: - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.2 azure-mgmt-containerservice/10.0.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/d5e1637b-16cf-4b9c-86cc-3ca91a767b8a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/75d0fc62-f9c6-4b48-b571-06da8086761e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7b63e1d5-cf16-9c4b-86cc-3ca91a767b8a\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-11T06:55:47.9961378Z\"\n }" + string: "{\n \"name\": \"62fcd075-c6f9-484b-b571-06da8086761e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2020-09-28T02:31:40.0577078Z\"\n }" headers: cache-control: - no-cache @@ -947,7 +1741,7 @@ interactions: content-type: - application/json date: - - Fri, 11 Sep 2020 06:56:18 GMT + - Mon, 28 Sep 2020 02:36:45 GMT expires: - '-1' pragma: @@ -976,13 +1770,13 @@ interactions: - keep-alive User-Agent: - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.2 azure-mgmt-containerservice/10.0.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/d5e1637b-16cf-4b9c-86cc-3ca91a767b8a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/75d0fc62-f9c6-4b48-b571-06da8086761e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7b63e1d5-cf16-9c4b-86cc-3ca91a767b8a\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-11T06:55:47.9961378Z\"\n }" + string: "{\n \"name\": \"62fcd075-c6f9-484b-b571-06da8086761e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2020-09-28T02:31:40.0577078Z\"\n }" headers: cache-control: - no-cache @@ -991,7 +1785,7 @@ interactions: content-type: - application/json date: - - Fri, 11 Sep 2020 06:56:49 GMT + - Mon, 28 Sep 2020 02:37:15 GMT expires: - '-1' pragma: @@ -1020,13 +1814,13 @@ interactions: - keep-alive User-Agent: - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.2 azure-mgmt-containerservice/10.0.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/d5e1637b-16cf-4b9c-86cc-3ca91a767b8a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/75d0fc62-f9c6-4b48-b571-06da8086761e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7b63e1d5-cf16-9c4b-86cc-3ca91a767b8a\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-11T06:55:47.9961378Z\"\n }" + string: "{\n \"name\": \"62fcd075-c6f9-484b-b571-06da8086761e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2020-09-28T02:31:40.0577078Z\"\n }" headers: cache-control: - no-cache @@ -1035,7 +1829,7 @@ interactions: content-type: - application/json date: - - Fri, 11 Sep 2020 06:57:19 GMT + - Mon, 28 Sep 2020 02:37:45 GMT expires: - '-1' pragma: @@ -1064,13 +1858,13 @@ interactions: - keep-alive User-Agent: - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.2 azure-mgmt-containerservice/10.0.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/d5e1637b-16cf-4b9c-86cc-3ca91a767b8a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/75d0fc62-f9c6-4b48-b571-06da8086761e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7b63e1d5-cf16-9c4b-86cc-3ca91a767b8a\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-11T06:55:47.9961378Z\"\n }" + string: "{\n \"name\": \"62fcd075-c6f9-484b-b571-06da8086761e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2020-09-28T02:31:40.0577078Z\"\n }" headers: cache-control: - no-cache @@ -1079,7 +1873,7 @@ interactions: content-type: - application/json date: - - Fri, 11 Sep 2020 06:57:50 GMT + - Mon, 28 Sep 2020 02:38:16 GMT expires: - '-1' pragma: @@ -1108,13 +1902,13 @@ interactions: - keep-alive User-Agent: - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.2 azure-mgmt-containerservice/10.0.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/d5e1637b-16cf-4b9c-86cc-3ca91a767b8a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/75d0fc62-f9c6-4b48-b571-06da8086761e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7b63e1d5-cf16-9c4b-86cc-3ca91a767b8a\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-11T06:55:47.9961378Z\"\n }" + string: "{\n \"name\": \"62fcd075-c6f9-484b-b571-06da8086761e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2020-09-28T02:31:40.0577078Z\"\n }" headers: cache-control: - no-cache @@ -1123,7 +1917,7 @@ interactions: content-type: - application/json date: - - Fri, 11 Sep 2020 06:58:20 GMT + - Mon, 28 Sep 2020 02:38:46 GMT expires: - '-1' pragma: @@ -1152,13 +1946,13 @@ interactions: - keep-alive User-Agent: - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.2 azure-mgmt-containerservice/10.0.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/d5e1637b-16cf-4b9c-86cc-3ca91a767b8a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/75d0fc62-f9c6-4b48-b571-06da8086761e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7b63e1d5-cf16-9c4b-86cc-3ca91a767b8a\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-11T06:55:47.9961378Z\"\n }" + string: "{\n \"name\": \"62fcd075-c6f9-484b-b571-06da8086761e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2020-09-28T02:31:40.0577078Z\"\n }" headers: cache-control: - no-cache @@ -1167,7 +1961,7 @@ interactions: content-type: - application/json date: - - Fri, 11 Sep 2020 06:58:50 GMT + - Mon, 28 Sep 2020 02:39:17 GMT expires: - '-1' pragma: @@ -1196,13 +1990,13 @@ interactions: - keep-alive User-Agent: - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.2 azure-mgmt-containerservice/10.0.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/d5e1637b-16cf-4b9c-86cc-3ca91a767b8a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/75d0fc62-f9c6-4b48-b571-06da8086761e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7b63e1d5-cf16-9c4b-86cc-3ca91a767b8a\",\n \"status\"\ - : \"InProgress\",\n \"startTime\": \"2020-09-11T06:55:47.9961378Z\"\n }" + string: "{\n \"name\": \"62fcd075-c6f9-484b-b571-06da8086761e\",\n \"status\"\ + : \"InProgress\",\n \"startTime\": \"2020-09-28T02:31:40.0577078Z\"\n }" headers: cache-control: - no-cache @@ -1211,7 +2005,7 @@ interactions: content-type: - application/json date: - - Fri, 11 Sep 2020 06:59:20 GMT + - Mon, 28 Sep 2020 02:39:47 GMT expires: - '-1' pragma: @@ -1240,14 +2034,14 @@ interactions: - keep-alive User-Agent: - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 - msrest_azure/0.6.2 azure-mgmt-containerservice/9.4.0 Azure-SDK-For-Python + msrest_azure/0.6.2 azure-mgmt-containerservice/10.0.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/d5e1637b-16cf-4b9c-86cc-3ca91a767b8a?api-version=2016-03-30 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.ContainerService/locations/eastus/operations/75d0fc62-f9c6-4b48-b571-06da8086761e?api-version=2016-03-30 response: body: - string: "{\n \"name\": \"7b63e1d5-cf16-9c4b-86cc-3ca91a767b8a\",\n \"status\"\ - : \"Succeeded\",\n \"startTime\": \"2020-09-11T06:55:47.9961378Z\",\n \"\ - endTime\": \"2020-09-11T06:59:37.2974788Z\"\n }" + string: "{\n \"name\": \"62fcd075-c6f9-484b-b571-06da8086761e\",\n \"status\"\ + : \"Succeeded\",\n \"startTime\": \"2020-09-28T02:31:40.0577078Z\",\n \"\ + endTime\": \"2020-09-28T02:40:13.9436661Z\"\n }" headers: cache-control: - no-cache @@ -1256,7 +2050,7 @@ interactions: content-type: - application/json date: - - Fri, 11 Sep 2020 06:59:51 GMT + - Mon, 28 Sep 2020 02:40:18 GMT expires: - '-1' pragma: diff --git a/sdk/hdinsight/azure-mgmt-hdinsight/CHANGELOG.md b/sdk/hdinsight/azure-mgmt-hdinsight/CHANGELOG.md index dd195147a0eb..a9ac85bfe6be 100644 --- a/sdk/hdinsight/azure-mgmt-hdinsight/CHANGELOG.md +++ b/sdk/hdinsight/azure-mgmt-hdinsight/CHANGELOG.md @@ -1,5 +1,18 @@ # Release History +## 2.0.0 (2020-10-20) + +**Features** + + - Model ClusterGetProperties has a new parameter network_properties + - Model ClusterGetProperties has a new parameter cluster_id + - Model ClusterCreateProperties has a new parameter network_properties + +**Breaking changes** + + - Model ClusterGetProperties no longer has parameter network_settings + - Model ClusterCreateProperties no longer has parameter network_settings + ## 1.7.0 (2020-08-13) **Features** diff --git a/sdk/hdinsight/azure-mgmt-hdinsight/azure/mgmt/hdinsight/models/__init__.py b/sdk/hdinsight/azure-mgmt-hdinsight/azure/mgmt/hdinsight/models/__init__.py index 1eb4cea6bfea..03080a57a3bb 100644 --- a/sdk/hdinsight/azure-mgmt-hdinsight/azure/mgmt/hdinsight/models/__init__.py +++ b/sdk/hdinsight/azure-mgmt-hdinsight/azure/mgmt/hdinsight/models/__init__.py @@ -56,7 +56,7 @@ from ._models_py3 import KafkaRestProperties from ._models_py3 import LinuxOperatingSystemProfile from ._models_py3 import LocalizedName - from ._models_py3 import NetworkSettings + from ._models_py3 import NetworkProperties from ._models_py3 import Operation from ._models_py3 import OperationDisplay from ._models_py3 import OperationResource @@ -135,7 +135,7 @@ from ._models import KafkaRestProperties from ._models import LinuxOperatingSystemProfile from ._models import LocalizedName - from ._models import NetworkSettings + from ._models import NetworkProperties from ._models import Operation from ._models import OperationDisplay from ._models import OperationResource @@ -174,8 +174,8 @@ from ._hd_insight_management_client_enums import ( DirectoryType, DaysOfWeek, - PublicNetworkAccess, - OutboundOnlyPublicNetworkAccessType, + ResourceProviderConnection, + PrivateLink, OSType, Tier, JsonWebKeyEncryptionAlgorithm, @@ -232,7 +232,7 @@ 'KafkaRestProperties', 'LinuxOperatingSystemProfile', 'LocalizedName', - 'NetworkSettings', + 'NetworkProperties', 'Operation', 'OperationDisplay', 'OperationResource', @@ -270,8 +270,8 @@ 'OperationPaged', 'DirectoryType', 'DaysOfWeek', - 'PublicNetworkAccess', - 'OutboundOnlyPublicNetworkAccessType', + 'ResourceProviderConnection', + 'PrivateLink', 'OSType', 'Tier', 'JsonWebKeyEncryptionAlgorithm', diff --git a/sdk/hdinsight/azure-mgmt-hdinsight/azure/mgmt/hdinsight/models/_hd_insight_management_client_enums.py b/sdk/hdinsight/azure-mgmt-hdinsight/azure/mgmt/hdinsight/models/_hd_insight_management_client_enums.py index 271ee0bd61b8..c166935c9539 100644 --- a/sdk/hdinsight/azure-mgmt-hdinsight/azure/mgmt/hdinsight/models/_hd_insight_management_client_enums.py +++ b/sdk/hdinsight/azure-mgmt-hdinsight/azure/mgmt/hdinsight/models/_hd_insight_management_client_enums.py @@ -28,16 +28,16 @@ class DaysOfWeek(str, Enum): sunday = "Sunday" -class PublicNetworkAccess(str, Enum): +class ResourceProviderConnection(str, Enum): - inbound_and_outbound = "InboundAndOutbound" - outbound_only = "OutboundOnly" + inbound = "Inbound" + outbound = "Outbound" -class OutboundOnlyPublicNetworkAccessType(str, Enum): +class PrivateLink(str, Enum): - public_load_balancer = "PublicLoadBalancer" - udr = "UDR" + disabled = "Disabled" + enabled = "Enabled" class OSType(str, Enum): diff --git a/sdk/hdinsight/azure-mgmt-hdinsight/azure/mgmt/hdinsight/models/_models.py b/sdk/hdinsight/azure-mgmt-hdinsight/azure/mgmt/hdinsight/models/_models.py index b026fe2438a8..7e60c0930d03 100644 --- a/sdk/hdinsight/azure-mgmt-hdinsight/azure/mgmt/hdinsight/models/_models.py +++ b/sdk/hdinsight/azure-mgmt-hdinsight/azure/mgmt/hdinsight/models/_models.py @@ -679,8 +679,8 @@ class ClusterCreateProperties(Model): ~azure.mgmt.hdinsight.models.EncryptionInTransitProperties :param min_supported_tls_version: The minimal supported tls version. :type min_supported_tls_version: str - :param network_settings: The network settings. - :type network_settings: ~azure.mgmt.hdinsight.models.NetworkSettings + :param network_properties: The network properties. + :type network_properties: ~azure.mgmt.hdinsight.models.NetworkProperties """ _attribute_map = { @@ -695,7 +695,7 @@ class ClusterCreateProperties(Model): 'disk_encryption_properties': {'key': 'diskEncryptionProperties', 'type': 'DiskEncryptionProperties'}, 'encryption_in_transit_properties': {'key': 'encryptionInTransitProperties', 'type': 'EncryptionInTransitProperties'}, 'min_supported_tls_version': {'key': 'minSupportedTlsVersion', 'type': 'str'}, - 'network_settings': {'key': 'networkSettings', 'type': 'NetworkSettings'}, + 'network_properties': {'key': 'networkProperties', 'type': 'NetworkProperties'}, } def __init__(self, **kwargs): @@ -711,7 +711,7 @@ def __init__(self, **kwargs): self.disk_encryption_properties = kwargs.get('disk_encryption_properties', None) self.encryption_in_transit_properties = kwargs.get('encryption_in_transit_properties', None) self.min_supported_tls_version = kwargs.get('min_supported_tls_version', None) - self.network_settings = kwargs.get('network_settings', None) + self.network_properties = kwargs.get('network_properties', None) class ClusterDefinition(Model): @@ -782,6 +782,8 @@ class ClusterGetProperties(Model): :param tier: The cluster tier. Possible values include: 'Standard', 'Premium' :type tier: str or ~azure.mgmt.hdinsight.models.Tier + :param cluster_id: The cluster id. + :type cluster_id: str :param cluster_definition: Required. The cluster definition. :type cluster_definition: ~azure.mgmt.hdinsight.models.ClusterDefinition :param kafka_rest_properties: The cluster kafka rest proxy configuration. @@ -816,8 +818,8 @@ class ClusterGetProperties(Model): ~azure.mgmt.hdinsight.models.EncryptionInTransitProperties :param min_supported_tls_version: The minimal supported tls version. :type min_supported_tls_version: str - :param network_settings: The network settings. - :type network_settings: ~azure.mgmt.hdinsight.models.NetworkSettings + :param network_properties: The network properties. + :type network_properties: ~azure.mgmt.hdinsight.models.NetworkProperties """ _validation = { @@ -828,6 +830,7 @@ class ClusterGetProperties(Model): 'cluster_version': {'key': 'clusterVersion', 'type': 'str'}, 'os_type': {'key': 'osType', 'type': 'OSType'}, 'tier': {'key': 'tier', 'type': 'Tier'}, + 'cluster_id': {'key': 'clusterId', 'type': 'str'}, 'cluster_definition': {'key': 'clusterDefinition', 'type': 'ClusterDefinition'}, 'kafka_rest_properties': {'key': 'kafkaRestProperties', 'type': 'KafkaRestProperties'}, 'security_profile': {'key': 'securityProfile', 'type': 'SecurityProfile'}, @@ -841,7 +844,7 @@ class ClusterGetProperties(Model): 'disk_encryption_properties': {'key': 'diskEncryptionProperties', 'type': 'DiskEncryptionProperties'}, 'encryption_in_transit_properties': {'key': 'encryptionInTransitProperties', 'type': 'EncryptionInTransitProperties'}, 'min_supported_tls_version': {'key': 'minSupportedTlsVersion', 'type': 'str'}, - 'network_settings': {'key': 'networkSettings', 'type': 'NetworkSettings'}, + 'network_properties': {'key': 'networkProperties', 'type': 'NetworkProperties'}, } def __init__(self, **kwargs): @@ -849,6 +852,7 @@ def __init__(self, **kwargs): self.cluster_version = kwargs.get('cluster_version', None) self.os_type = kwargs.get('os_type', None) self.tier = kwargs.get('tier', None) + self.cluster_id = kwargs.get('cluster_id', None) self.cluster_definition = kwargs.get('cluster_definition', None) self.kafka_rest_properties = kwargs.get('kafka_rest_properties', None) self.security_profile = kwargs.get('security_profile', None) @@ -862,7 +866,7 @@ def __init__(self, **kwargs): self.disk_encryption_properties = kwargs.get('disk_encryption_properties', None) self.encryption_in_transit_properties = kwargs.get('encryption_in_transit_properties', None) self.min_supported_tls_version = kwargs.get('min_supported_tls_version', None) - self.network_settings = kwargs.get('network_settings', None) + self.network_properties = kwargs.get('network_properties', None) class ClusterIdentity(Model): @@ -1457,30 +1461,27 @@ def __init__(self, **kwargs): self.localized_value = kwargs.get('localized_value', None) -class NetworkSettings(Model): - """The network settings. +class NetworkProperties(Model): + """The network properties. - :param public_network_access: Specifies whether public network access is - enabled for inbound and outbound, or outbound only. Possible values - include: 'InboundAndOutbound', 'OutboundOnly' - :type public_network_access: str or - ~azure.mgmt.hdinsight.models.PublicNetworkAccess - :param outbound_only_public_network_access_type: The mechanism through - which the cluster will have outbound access to the public network. - Possible values include: 'PublicLoadBalancer', 'UDR' - :type outbound_only_public_network_access_type: str or - ~azure.mgmt.hdinsight.models.OutboundOnlyPublicNetworkAccessType + :param resource_provider_connection: The direction for the resource + provider connection. Possible values include: 'Inbound', 'Outbound' + :type resource_provider_connection: str or + ~azure.mgmt.hdinsight.models.ResourceProviderConnection + :param private_link: Indicates whether or not private link is enabled. + Possible values include: 'Disabled', 'Enabled' + :type private_link: str or ~azure.mgmt.hdinsight.models.PrivateLink """ _attribute_map = { - 'public_network_access': {'key': 'publicNetworkAccess', 'type': 'str'}, - 'outbound_only_public_network_access_type': {'key': 'outboundOnlyPublicNetworkAccessType', 'type': 'str'}, + 'resource_provider_connection': {'key': 'resourceProviderConnection', 'type': 'str'}, + 'private_link': {'key': 'privateLink', 'type': 'str'}, } def __init__(self, **kwargs): - super(NetworkSettings, self).__init__(**kwargs) - self.public_network_access = kwargs.get('public_network_access', None) - self.outbound_only_public_network_access_type = kwargs.get('outbound_only_public_network_access_type', None) + super(NetworkProperties, self).__init__(**kwargs) + self.resource_provider_connection = kwargs.get('resource_provider_connection', None) + self.private_link = kwargs.get('private_link', None) class Operation(Model): diff --git a/sdk/hdinsight/azure-mgmt-hdinsight/azure/mgmt/hdinsight/models/_models_py3.py b/sdk/hdinsight/azure-mgmt-hdinsight/azure/mgmt/hdinsight/models/_models_py3.py index 67bbc6e615fa..341cc7972fe1 100644 --- a/sdk/hdinsight/azure-mgmt-hdinsight/azure/mgmt/hdinsight/models/_models_py3.py +++ b/sdk/hdinsight/azure-mgmt-hdinsight/azure/mgmt/hdinsight/models/_models_py3.py @@ -679,8 +679,8 @@ class ClusterCreateProperties(Model): ~azure.mgmt.hdinsight.models.EncryptionInTransitProperties :param min_supported_tls_version: The minimal supported tls version. :type min_supported_tls_version: str - :param network_settings: The network settings. - :type network_settings: ~azure.mgmt.hdinsight.models.NetworkSettings + :param network_properties: The network properties. + :type network_properties: ~azure.mgmt.hdinsight.models.NetworkProperties """ _attribute_map = { @@ -695,10 +695,10 @@ class ClusterCreateProperties(Model): 'disk_encryption_properties': {'key': 'diskEncryptionProperties', 'type': 'DiskEncryptionProperties'}, 'encryption_in_transit_properties': {'key': 'encryptionInTransitProperties', 'type': 'EncryptionInTransitProperties'}, 'min_supported_tls_version': {'key': 'minSupportedTlsVersion', 'type': 'str'}, - 'network_settings': {'key': 'networkSettings', 'type': 'NetworkSettings'}, + 'network_properties': {'key': 'networkProperties', 'type': 'NetworkProperties'}, } - def __init__(self, *, cluster_version: str=None, os_type=None, tier=None, cluster_definition=None, kafka_rest_properties=None, security_profile=None, compute_profile=None, storage_profile=None, disk_encryption_properties=None, encryption_in_transit_properties=None, min_supported_tls_version: str=None, network_settings=None, **kwargs) -> None: + def __init__(self, *, cluster_version: str=None, os_type=None, tier=None, cluster_definition=None, kafka_rest_properties=None, security_profile=None, compute_profile=None, storage_profile=None, disk_encryption_properties=None, encryption_in_transit_properties=None, min_supported_tls_version: str=None, network_properties=None, **kwargs) -> None: super(ClusterCreateProperties, self).__init__(**kwargs) self.cluster_version = cluster_version self.os_type = os_type @@ -711,7 +711,7 @@ def __init__(self, *, cluster_version: str=None, os_type=None, tier=None, cluste self.disk_encryption_properties = disk_encryption_properties self.encryption_in_transit_properties = encryption_in_transit_properties self.min_supported_tls_version = min_supported_tls_version - self.network_settings = network_settings + self.network_properties = network_properties class ClusterDefinition(Model): @@ -782,6 +782,8 @@ class ClusterGetProperties(Model): :param tier: The cluster tier. Possible values include: 'Standard', 'Premium' :type tier: str or ~azure.mgmt.hdinsight.models.Tier + :param cluster_id: The cluster id. + :type cluster_id: str :param cluster_definition: Required. The cluster definition. :type cluster_definition: ~azure.mgmt.hdinsight.models.ClusterDefinition :param kafka_rest_properties: The cluster kafka rest proxy configuration. @@ -816,8 +818,8 @@ class ClusterGetProperties(Model): ~azure.mgmt.hdinsight.models.EncryptionInTransitProperties :param min_supported_tls_version: The minimal supported tls version. :type min_supported_tls_version: str - :param network_settings: The network settings. - :type network_settings: ~azure.mgmt.hdinsight.models.NetworkSettings + :param network_properties: The network properties. + :type network_properties: ~azure.mgmt.hdinsight.models.NetworkProperties """ _validation = { @@ -828,6 +830,7 @@ class ClusterGetProperties(Model): 'cluster_version': {'key': 'clusterVersion', 'type': 'str'}, 'os_type': {'key': 'osType', 'type': 'OSType'}, 'tier': {'key': 'tier', 'type': 'Tier'}, + 'cluster_id': {'key': 'clusterId', 'type': 'str'}, 'cluster_definition': {'key': 'clusterDefinition', 'type': 'ClusterDefinition'}, 'kafka_rest_properties': {'key': 'kafkaRestProperties', 'type': 'KafkaRestProperties'}, 'security_profile': {'key': 'securityProfile', 'type': 'SecurityProfile'}, @@ -841,14 +844,15 @@ class ClusterGetProperties(Model): 'disk_encryption_properties': {'key': 'diskEncryptionProperties', 'type': 'DiskEncryptionProperties'}, 'encryption_in_transit_properties': {'key': 'encryptionInTransitProperties', 'type': 'EncryptionInTransitProperties'}, 'min_supported_tls_version': {'key': 'minSupportedTlsVersion', 'type': 'str'}, - 'network_settings': {'key': 'networkSettings', 'type': 'NetworkSettings'}, + 'network_properties': {'key': 'networkProperties', 'type': 'NetworkProperties'}, } - def __init__(self, *, cluster_definition, cluster_version: str=None, os_type=None, tier=None, kafka_rest_properties=None, security_profile=None, compute_profile=None, provisioning_state=None, created_date: str=None, cluster_state: str=None, quota_info=None, errors=None, connectivity_endpoints=None, disk_encryption_properties=None, encryption_in_transit_properties=None, min_supported_tls_version: str=None, network_settings=None, **kwargs) -> None: + def __init__(self, *, cluster_definition, cluster_version: str=None, os_type=None, tier=None, cluster_id: str=None, kafka_rest_properties=None, security_profile=None, compute_profile=None, provisioning_state=None, created_date: str=None, cluster_state: str=None, quota_info=None, errors=None, connectivity_endpoints=None, disk_encryption_properties=None, encryption_in_transit_properties=None, min_supported_tls_version: str=None, network_properties=None, **kwargs) -> None: super(ClusterGetProperties, self).__init__(**kwargs) self.cluster_version = cluster_version self.os_type = os_type self.tier = tier + self.cluster_id = cluster_id self.cluster_definition = cluster_definition self.kafka_rest_properties = kafka_rest_properties self.security_profile = security_profile @@ -862,7 +866,7 @@ def __init__(self, *, cluster_definition, cluster_version: str=None, os_type=Non self.disk_encryption_properties = disk_encryption_properties self.encryption_in_transit_properties = encryption_in_transit_properties self.min_supported_tls_version = min_supported_tls_version - self.network_settings = network_settings + self.network_properties = network_properties class ClusterIdentity(Model): @@ -1457,30 +1461,27 @@ def __init__(self, *, value: str=None, localized_value: str=None, **kwargs) -> N self.localized_value = localized_value -class NetworkSettings(Model): - """The network settings. +class NetworkProperties(Model): + """The network properties. - :param public_network_access: Specifies whether public network access is - enabled for inbound and outbound, or outbound only. Possible values - include: 'InboundAndOutbound', 'OutboundOnly' - :type public_network_access: str or - ~azure.mgmt.hdinsight.models.PublicNetworkAccess - :param outbound_only_public_network_access_type: The mechanism through - which the cluster will have outbound access to the public network. - Possible values include: 'PublicLoadBalancer', 'UDR' - :type outbound_only_public_network_access_type: str or - ~azure.mgmt.hdinsight.models.OutboundOnlyPublicNetworkAccessType + :param resource_provider_connection: The direction for the resource + provider connection. Possible values include: 'Inbound', 'Outbound' + :type resource_provider_connection: str or + ~azure.mgmt.hdinsight.models.ResourceProviderConnection + :param private_link: Indicates whether or not private link is enabled. + Possible values include: 'Disabled', 'Enabled' + :type private_link: str or ~azure.mgmt.hdinsight.models.PrivateLink """ _attribute_map = { - 'public_network_access': {'key': 'publicNetworkAccess', 'type': 'str'}, - 'outbound_only_public_network_access_type': {'key': 'outboundOnlyPublicNetworkAccessType', 'type': 'str'}, + 'resource_provider_connection': {'key': 'resourceProviderConnection', 'type': 'str'}, + 'private_link': {'key': 'privateLink', 'type': 'str'}, } - def __init__(self, *, public_network_access=None, outbound_only_public_network_access_type=None, **kwargs) -> None: - super(NetworkSettings, self).__init__(**kwargs) - self.public_network_access = public_network_access - self.outbound_only_public_network_access_type = outbound_only_public_network_access_type + def __init__(self, *, resource_provider_connection=None, private_link=None, **kwargs) -> None: + super(NetworkProperties, self).__init__(**kwargs) + self.resource_provider_connection = resource_provider_connection + self.private_link = private_link class Operation(Model): diff --git a/sdk/hdinsight/azure-mgmt-hdinsight/azure/mgmt/hdinsight/version.py b/sdk/hdinsight/azure-mgmt-hdinsight/azure/mgmt/hdinsight/version.py index 566f328ccb45..53c4c7ea05e8 100644 --- a/sdk/hdinsight/azure-mgmt-hdinsight/azure/mgmt/hdinsight/version.py +++ b/sdk/hdinsight/azure-mgmt-hdinsight/azure/mgmt/hdinsight/version.py @@ -9,5 +9,5 @@ # regenerated. # -------------------------------------------------------------------------- -VERSION = "1.7.0" +VERSION = "2.0.0" diff --git a/sdk/hdinsight/azure-mgmt-hdinsight/setup.py b/sdk/hdinsight/azure-mgmt-hdinsight/setup.py index 50ed72fcc51f..5ce02b867cc8 100644 --- a/sdk/hdinsight/azure-mgmt-hdinsight/setup.py +++ b/sdk/hdinsight/azure-mgmt-hdinsight/setup.py @@ -36,7 +36,7 @@ pass # Version extraction inspired from 'requests' -with open(os.path.join(package_folder_path, 'version.py') +with open(os.path.join(package_folder_path, 'version.py') if os.path.exists(os.path.join(package_folder_path, 'version.py')) else os.path.join(package_folder_path, '_version.py'), 'r') as fd: version = re.search(r'^VERSION\s*=\s*[\'"]([^\'"]*)[\'"]', diff --git a/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_create_humboldt_cluster.yaml b/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_create_humboldt_cluster.yaml index 9fcaf42e6424..1234b4cc472b 100644 --- a/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_create_humboldt_cluster.yaml +++ b/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_create_humboldt_cluster.yaml @@ -13,7 +13,7 @@ interactions: "Small"}, "osProfile": {"linuxOperatingSystemProfile": {"username": "sshuser", "password": "Password1!"}}}]}, "storageProfile": {"storageaccounts": [{"name": "hdipy.blob.core.windows.net", "isDefault": true, "container": "hdisdk-humboldte4cb13d6", - "key": "FYCPHyfS41O/cTc20/jaZbCUXdAUngXt8STGwinuH90iQvq4fWSZ3XoPbmseEg0qW/cedE39FNG563bcJ/IlZQ=="}]}}}''' + "key": "N77ftwpodFHEl+l3x1Mviqyou94unNTWdgsuxqqtjluPaMoznGb6p9CLm+agsUyTSq9zyjEtEUIgS0YEzRiCvw=="}]}}}''' headers: Accept: - application/json @@ -26,8 +26,8 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python accept-language: - en-US method: PUT @@ -35,20 +35,20 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e4cb13d6/providers/Microsoft.HDInsight/clusters/hdisdk-humboldte4cb13d6","name":"hdisdk-humboldte4cb13d6","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"12769780-f7e5-4d66-a6df-c5f01e9f6961","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2007210011.json","kind":"hadoop","componentVersion":{"hadoop":"2.7"}},"clusterId":"016dbee4f3ce4471be268a643b7606c4","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a2_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"InProgress","clusterState":"Accepted","createdDate":"2020-08-14T05:39:39.303","quotaInfo":{"coresUsed":20},"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-humboldte4cb13d6","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"m_Item1":"default","m_Item2":""}}}' + Central US","etag":"f318f20c-53bd-4cba-8726-6a5d1ef92853","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2009301626.json","kind":"hadoop","componentVersion":{"hadoop":"2.7"}},"clusterId":"0c28dce92bcf4f2683f1847bd5b2ccdf","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a1_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"InProgress","clusterState":"Accepted","createdDate":"2020-10-20T02:14:00.23","quotaInfo":{"coresUsed":20},"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-humboldte4cb13d6","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"excludedServicesConfigId":"default","excludedServicesList":""},"computeIsolationProperties":{"enableComputeIsolation":false,"hostSku":null}}}' headers: azure-asyncoperation: - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e4cb13d6/providers/Microsoft.HDInsight/clusters/hdisdk-humboldte4cb13d6/azureasyncoperations/create?api-version=2018-06-01-preview cache-control: - no-cache content-length: - - '1703' + - '1809' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 05:39:40 GMT + - Tue, 20 Oct 2020 02:14:01 GMT etag: - - '"12769780-f7e5-4d66-a6df-c5f01e9f6961"' + - '"f318f20c-53bd-4cba-8726-6a5d1ef92853"' expires: - '-1' pragma: @@ -62,7 +62,7 @@ interactions: x-content-type-options: - nosniff x-ms-hdi-clusteruri: - - https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/hdipy-e4cb13d6/providers/Microsoft.HDInsight/clusters/hdisdk-humboldte4cb13d6?api-version=2018-06-01-preview + - https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hdipy-e4cb13d6/providers/Microsoft.HDInsight/clusters/hdisdk-humboldte4cb13d6?api-version=2018-06-01-preview x-ms-hdi-matched-rule: - ClusterResourcesAndSubResources x-ms-hdi-routed-to: @@ -70,7 +70,7 @@ interactions: x-ms-hdi-served-by: - northcentralus x-ms-ratelimit-remaining-subscription-writes: - - '1194' + - '1199' status: code: 200 message: OK @@ -84,8 +84,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e4cb13d6/providers/Microsoft.HDInsight/clusters/hdisdk-humboldte4cb13d6/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -99,7 +99,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 05:40:11 GMT + - Tue, 20 Oct 2020 02:14:33 GMT expires: - '-1' pragma: @@ -131,8 +131,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e4cb13d6/providers/Microsoft.HDInsight/clusters/hdisdk-humboldte4cb13d6/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -146,7 +146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 05:40:43 GMT + - Tue, 20 Oct 2020 02:15:04 GMT expires: - '-1' pragma: @@ -178,8 +178,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e4cb13d6/providers/Microsoft.HDInsight/clusters/hdisdk-humboldte4cb13d6/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -193,7 +193,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 05:41:14 GMT + - Tue, 20 Oct 2020 02:15:34 GMT expires: - '-1' pragma: @@ -225,8 +225,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e4cb13d6/providers/Microsoft.HDInsight/clusters/hdisdk-humboldte4cb13d6/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -240,7 +240,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 05:41:44 GMT + - Tue, 20 Oct 2020 02:16:05 GMT expires: - '-1' pragma: @@ -272,8 +272,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e4cb13d6/providers/Microsoft.HDInsight/clusters/hdisdk-humboldte4cb13d6/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -287,7 +287,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 05:42:15 GMT + - Tue, 20 Oct 2020 02:16:36 GMT expires: - '-1' pragma: @@ -319,8 +319,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e4cb13d6/providers/Microsoft.HDInsight/clusters/hdisdk-humboldte4cb13d6/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -334,7 +334,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 05:42:45 GMT + - Tue, 20 Oct 2020 02:17:06 GMT expires: - '-1' pragma: @@ -366,8 +366,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e4cb13d6/providers/Microsoft.HDInsight/clusters/hdisdk-humboldte4cb13d6/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -381,7 +381,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 05:43:16 GMT + - Tue, 20 Oct 2020 02:17:36 GMT expires: - '-1' pragma: @@ -413,8 +413,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e4cb13d6/providers/Microsoft.HDInsight/clusters/hdisdk-humboldte4cb13d6/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -428,7 +428,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 05:43:46 GMT + - Tue, 20 Oct 2020 02:18:07 GMT expires: - '-1' pragma: @@ -460,8 +460,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e4cb13d6/providers/Microsoft.HDInsight/clusters/hdisdk-humboldte4cb13d6/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -475,7 +475,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 05:44:17 GMT + - Tue, 20 Oct 2020 02:18:38 GMT expires: - '-1' pragma: @@ -507,8 +507,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e4cb13d6/providers/Microsoft.HDInsight/clusters/hdisdk-humboldte4cb13d6/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -522,7 +522,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 05:44:47 GMT + - Tue, 20 Oct 2020 02:19:08 GMT expires: - '-1' pragma: @@ -554,8 +554,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e4cb13d6/providers/Microsoft.HDInsight/clusters/hdisdk-humboldte4cb13d6/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -569,7 +569,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 05:45:18 GMT + - Tue, 20 Oct 2020 02:19:38 GMT expires: - '-1' pragma: @@ -601,8 +601,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e4cb13d6/providers/Microsoft.HDInsight/clusters/hdisdk-humboldte4cb13d6/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -616,7 +616,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 05:45:49 GMT + - Tue, 20 Oct 2020 02:20:10 GMT expires: - '-1' pragma: @@ -648,8 +648,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e4cb13d6/providers/Microsoft.HDInsight/clusters/hdisdk-humboldte4cb13d6/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -663,7 +663,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 05:46:20 GMT + - Tue, 20 Oct 2020 02:20:41 GMT expires: - '-1' pragma: @@ -695,8 +695,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e4cb13d6/providers/Microsoft.HDInsight/clusters/hdisdk-humboldte4cb13d6/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -710,7 +710,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 05:46:50 GMT + - Tue, 20 Oct 2020 02:21:12 GMT expires: - '-1' pragma: @@ -742,8 +742,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e4cb13d6/providers/Microsoft.HDInsight/clusters/hdisdk-humboldte4cb13d6/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -757,7 +757,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 05:47:21 GMT + - Tue, 20 Oct 2020 02:21:42 GMT expires: - '-1' pragma: @@ -789,8 +789,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e4cb13d6/providers/Microsoft.HDInsight/clusters/hdisdk-humboldte4cb13d6/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -804,7 +804,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 05:47:51 GMT + - Tue, 20 Oct 2020 02:22:12 GMT expires: - '-1' pragma: @@ -836,8 +836,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e4cb13d6/providers/Microsoft.HDInsight/clusters/hdisdk-humboldte4cb13d6/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -851,7 +851,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 05:48:22 GMT + - Tue, 20 Oct 2020 02:22:44 GMT expires: - '-1' pragma: @@ -883,8 +883,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e4cb13d6/providers/Microsoft.HDInsight/clusters/hdisdk-humboldte4cb13d6/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -898,7 +898,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 05:48:53 GMT + - Tue, 20 Oct 2020 02:23:14 GMT expires: - '-1' pragma: @@ -930,8 +930,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e4cb13d6/providers/Microsoft.HDInsight/clusters/hdisdk-humboldte4cb13d6/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -945,7 +945,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 05:49:23 GMT + - Tue, 20 Oct 2020 02:23:45 GMT expires: - '-1' pragma: @@ -977,8 +977,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e4cb13d6/providers/Microsoft.HDInsight/clusters/hdisdk-humboldte4cb13d6/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -992,7 +992,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 05:49:54 GMT + - Tue, 20 Oct 2020 02:24:15 GMT expires: - '-1' pragma: @@ -1024,8 +1024,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e4cb13d6/providers/Microsoft.HDInsight/clusters/hdisdk-humboldte4cb13d6/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1039,7 +1039,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 05:50:24 GMT + - Tue, 20 Oct 2020 02:24:45 GMT expires: - '-1' pragma: @@ -1071,8 +1071,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e4cb13d6/providers/Microsoft.HDInsight/clusters/hdisdk-humboldte4cb13d6/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1086,7 +1086,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 05:50:55 GMT + - Tue, 20 Oct 2020 02:25:17 GMT expires: - '-1' pragma: @@ -1118,8 +1118,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e4cb13d6/providers/Microsoft.HDInsight/clusters/hdisdk-humboldte4cb13d6/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1133,7 +1133,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 05:51:26 GMT + - Tue, 20 Oct 2020 02:25:48 GMT expires: - '-1' pragma: @@ -1165,8 +1165,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e4cb13d6/providers/Microsoft.HDInsight/clusters/hdisdk-humboldte4cb13d6/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1180,7 +1180,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 05:51:57 GMT + - Tue, 20 Oct 2020 02:26:19 GMT expires: - '-1' pragma: @@ -1212,8 +1212,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e4cb13d6/providers/Microsoft.HDInsight/clusters/hdisdk-humboldte4cb13d6/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1227,7 +1227,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 05:52:28 GMT + - Tue, 20 Oct 2020 02:26:49 GMT expires: - '-1' pragma: @@ -1259,8 +1259,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e4cb13d6/providers/Microsoft.HDInsight/clusters/hdisdk-humboldte4cb13d6/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1274,7 +1274,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 05:52:58 GMT + - Tue, 20 Oct 2020 02:27:20 GMT expires: - '-1' pragma: @@ -1306,854 +1306,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e4cb13d6/providers/Microsoft.HDInsight/clusters/hdisdk-humboldte4cb13d6/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 05:53:29 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e4cb13d6/providers/Microsoft.HDInsight/clusters/hdisdk-humboldte4cb13d6/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 05:53:59 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e4cb13d6/providers/Microsoft.HDInsight/clusters/hdisdk-humboldte4cb13d6/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 05:54:30 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e4cb13d6/providers/Microsoft.HDInsight/clusters/hdisdk-humboldte4cb13d6/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 05:55:00 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e4cb13d6/providers/Microsoft.HDInsight/clusters/hdisdk-humboldte4cb13d6/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 05:55:31 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e4cb13d6/providers/Microsoft.HDInsight/clusters/hdisdk-humboldte4cb13d6/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 05:56:02 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e4cb13d6/providers/Microsoft.HDInsight/clusters/hdisdk-humboldte4cb13d6/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 05:56:32 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e4cb13d6/providers/Microsoft.HDInsight/clusters/hdisdk-humboldte4cb13d6/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 05:57:03 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e4cb13d6/providers/Microsoft.HDInsight/clusters/hdisdk-humboldte4cb13d6/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 05:57:34 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e4cb13d6/providers/Microsoft.HDInsight/clusters/hdisdk-humboldte4cb13d6/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 05:58:05 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e4cb13d6/providers/Microsoft.HDInsight/clusters/hdisdk-humboldte4cb13d6/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 05:58:35 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e4cb13d6/providers/Microsoft.HDInsight/clusters/hdisdk-humboldte4cb13d6/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 05:59:07 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e4cb13d6/providers/Microsoft.HDInsight/clusters/hdisdk-humboldte4cb13d6/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 05:59:37 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e4cb13d6/providers/Microsoft.HDInsight/clusters/hdisdk-humboldte4cb13d6/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 06:00:08 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e4cb13d6/providers/Microsoft.HDInsight/clusters/hdisdk-humboldte4cb13d6/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 06:00:38 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e4cb13d6/providers/Microsoft.HDInsight/clusters/hdisdk-humboldte4cb13d6/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 06:01:08 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e4cb13d6/providers/Microsoft.HDInsight/clusters/hdisdk-humboldte4cb13d6/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 06:01:39 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e4cb13d6/providers/Microsoft.HDInsight/clusters/hdisdk-humboldte4cb13d6/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 06:02:09 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e4cb13d6/providers/Microsoft.HDInsight/clusters/hdisdk-humboldte4cb13d6/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -2167,7 +1321,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:02:41 GMT + - Tue, 20 Oct 2020 02:27:50 GMT expires: - '-1' pragma: @@ -2199,23 +1353,23 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e4cb13d6/providers/Microsoft.HDInsight/clusters/hdisdk-humboldte4cb13d6?api-version=2018-06-01-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e4cb13d6/providers/Microsoft.HDInsight/clusters/hdisdk-humboldte4cb13d6","name":"hdisdk-humboldte4cb13d6","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"12769780-f7e5-4d66-a6df-c5f01e9f6961","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3027-5","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2007210011.json","kind":"hadoop","componentVersion":{"hadoop":"2.7"}},"clusterId":"016dbee4f3ce4471be268a643b7606c4","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a2_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2020-08-14T05:39:39.303","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdisdk-humboldte4cb13d6-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdisdk-humboldte4cb13d6.azurehdinsight.net","port":443}],"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-humboldte4cb13d6","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"m_Item1":"default","m_Item2":""}}}' + Central US","etag":"f318f20c-53bd-4cba-8726-6a5d1ef92853","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3026-7","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2009301626.json","kind":"hadoop","componentVersion":{"hadoop":"2.7"}},"clusterId":"0c28dce92bcf4f2683f1847bd5b2ccdf","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a1_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2020-10-20T02:14:00.23","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdisdk-humboldte4cb13d6-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdisdk-humboldte4cb13d6.azurehdinsight.net","port":443}],"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-humboldte4cb13d6","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"excludedServicesConfigId":"default","excludedServicesList":""},"computeIsolationProperties":{"enableComputeIsolation":false,"hostSku":null}}}' headers: cache-control: - no-cache content-length: - - '1942' + - '2048' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:02:42 GMT + - Tue, 20 Oct 2020 02:27:51 GMT expires: - '-1' pragma: diff --git a/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_create_humboldt_cluster_with_custom_vm_sizes.yaml b/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_create_humboldt_cluster_with_custom_vm_sizes.yaml index 5c203d1a5537..2dd0d6a96635 100644 --- a/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_create_humboldt_cluster_with_custom_vm_sizes.yaml +++ b/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_create_humboldt_cluster_with_custom_vm_sizes.yaml @@ -13,7 +13,7 @@ interactions: "Medium"}, "osProfile": {"linuxOperatingSystemProfile": {"username": "sshuser", "password": "Password1!"}}}]}, "storageProfile": {"storageaccounts": [{"name": "hdipy.blob.core.windows.net", "isDefault": true, "container": "hdisdk-customvmsizese6a41cba", - "key": "c+MzpJq7bWRQeairpoxw+yof2TQttGvsbUr7WcR/R9CtQgz9Jdq9wQDePWVImAv+Pl6SWjFfk1fbFyuV07HgZw=="}]}}}''' + "key": "q03qngPgpMdtPYeGNWJ6S6ZqKDoVSMiMqRJuXp6U8wQSK4kRfkcb0+YJm2/6gOvowuD/V0mSvxrpah7zn+oVrA=="}]}}}''' headers: Accept: - application/json @@ -26,8 +26,8 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python accept-language: - en-US method: PUT @@ -35,20 +35,20 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e6a41cba/providers/Microsoft.HDInsight/clusters/hdisdk-customvmsizese6a41cba","name":"hdisdk-customvmsizese6a41cba","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"cbcb507f-0b6a-4ab6-8b51-b4105f24dd5d","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2007210011.json","kind":"hadoop","componentVersion":{"hadoop":"2.7"}},"clusterId":"d56096acd6f24d2abf4affb2c83b8366","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a8_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a2_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"InProgress","clusterState":"Accepted","createdDate":"2020-08-14T06:03:32.377","quotaInfo":{"coresUsed":28},"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-customvmsizese6a41cba","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"m_Item1":"default","m_Item2":""}}}' + Central US","etag":"1eddb22e-2e4a-44d1-9927-5bb019b4ba8b","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2009301626.json","kind":"hadoop","componentVersion":{"hadoop":"2.7"}},"clusterId":"df713e5e555f40a992131d7c792d08aa","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a8_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a2_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"InProgress","clusterState":"Accepted","createdDate":"2020-10-20T02:29:04.6","quotaInfo":{"coresUsed":28},"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-customvmsizese6a41cba","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"excludedServicesConfigId":"default","excludedServicesList":""},"computeIsolationProperties":{"enableComputeIsolation":false,"hostSku":null}}}' headers: azure-asyncoperation: - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e6a41cba/providers/Microsoft.HDInsight/clusters/hdisdk-customvmsizese6a41cba/azureasyncoperations/create?api-version=2018-06-01-preview cache-control: - no-cache content-length: - - '1718' + - '1823' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:03:34 GMT + - Tue, 20 Oct 2020 02:29:06 GMT etag: - - '"cbcb507f-0b6a-4ab6-8b51-b4105f24dd5d"' + - '"1eddb22e-2e4a-44d1-9927-5bb019b4ba8b"' expires: - '-1' pragma: @@ -62,7 +62,7 @@ interactions: x-content-type-options: - nosniff x-ms-hdi-clusteruri: - - https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/hdipy-e6a41cba/providers/Microsoft.HDInsight/clusters/hdisdk-customvmsizese6a41cba?api-version=2018-06-01-preview + - https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hdipy-e6a41cba/providers/Microsoft.HDInsight/clusters/hdisdk-customvmsizese6a41cba?api-version=2018-06-01-preview x-ms-hdi-matched-rule: - ClusterResourcesAndSubResources x-ms-hdi-routed-to: @@ -70,7 +70,7 @@ interactions: x-ms-hdi-served-by: - northcentralus x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -84,8 +84,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e6a41cba/providers/Microsoft.HDInsight/clusters/hdisdk-customvmsizese6a41cba/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -99,7 +99,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:04:05 GMT + - Tue, 20 Oct 2020 02:29:37 GMT expires: - '-1' pragma: @@ -131,8 +131,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e6a41cba/providers/Microsoft.HDInsight/clusters/hdisdk-customvmsizese6a41cba/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -146,7 +146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:04:36 GMT + - Tue, 20 Oct 2020 02:30:08 GMT expires: - '-1' pragma: @@ -178,8 +178,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e6a41cba/providers/Microsoft.HDInsight/clusters/hdisdk-customvmsizese6a41cba/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -193,7 +193,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:05:06 GMT + - Tue, 20 Oct 2020 02:30:38 GMT expires: - '-1' pragma: @@ -225,8 +225,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e6a41cba/providers/Microsoft.HDInsight/clusters/hdisdk-customvmsizese6a41cba/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -240,7 +240,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:05:36 GMT + - Tue, 20 Oct 2020 02:31:08 GMT expires: - '-1' pragma: @@ -272,8 +272,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e6a41cba/providers/Microsoft.HDInsight/clusters/hdisdk-customvmsizese6a41cba/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -287,7 +287,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:06:08 GMT + - Tue, 20 Oct 2020 02:31:40 GMT expires: - '-1' pragma: @@ -319,8 +319,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e6a41cba/providers/Microsoft.HDInsight/clusters/hdisdk-customvmsizese6a41cba/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -334,7 +334,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:06:38 GMT + - Tue, 20 Oct 2020 02:32:10 GMT expires: - '-1' pragma: @@ -366,8 +366,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e6a41cba/providers/Microsoft.HDInsight/clusters/hdisdk-customvmsizese6a41cba/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -381,7 +381,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:07:08 GMT + - Tue, 20 Oct 2020 02:32:40 GMT expires: - '-1' pragma: @@ -413,8 +413,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e6a41cba/providers/Microsoft.HDInsight/clusters/hdisdk-customvmsizese6a41cba/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -428,7 +428,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:07:39 GMT + - Tue, 20 Oct 2020 02:33:10 GMT expires: - '-1' pragma: @@ -460,8 +460,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e6a41cba/providers/Microsoft.HDInsight/clusters/hdisdk-customvmsizese6a41cba/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -475,7 +475,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:08:10 GMT + - Tue, 20 Oct 2020 02:33:42 GMT expires: - '-1' pragma: @@ -507,8 +507,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e6a41cba/providers/Microsoft.HDInsight/clusters/hdisdk-customvmsizese6a41cba/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -522,7 +522,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:08:40 GMT + - Tue, 20 Oct 2020 02:34:12 GMT expires: - '-1' pragma: @@ -554,8 +554,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e6a41cba/providers/Microsoft.HDInsight/clusters/hdisdk-customvmsizese6a41cba/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -569,7 +569,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:09:11 GMT + - Tue, 20 Oct 2020 02:34:42 GMT expires: - '-1' pragma: @@ -601,8 +601,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e6a41cba/providers/Microsoft.HDInsight/clusters/hdisdk-customvmsizese6a41cba/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -616,7 +616,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:09:41 GMT + - Tue, 20 Oct 2020 02:35:13 GMT expires: - '-1' pragma: @@ -648,8 +648,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e6a41cba/providers/Microsoft.HDInsight/clusters/hdisdk-customvmsizese6a41cba/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -663,7 +663,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:10:13 GMT + - Tue, 20 Oct 2020 02:35:44 GMT expires: - '-1' pragma: @@ -695,8 +695,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e6a41cba/providers/Microsoft.HDInsight/clusters/hdisdk-customvmsizese6a41cba/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -710,7 +710,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:10:44 GMT + - Tue, 20 Oct 2020 02:36:15 GMT expires: - '-1' pragma: @@ -742,8 +742,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e6a41cba/providers/Microsoft.HDInsight/clusters/hdisdk-customvmsizese6a41cba/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -757,7 +757,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:11:14 GMT + - Tue, 20 Oct 2020 02:36:45 GMT expires: - '-1' pragma: @@ -789,8 +789,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e6a41cba/providers/Microsoft.HDInsight/clusters/hdisdk-customvmsizese6a41cba/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -804,7 +804,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:11:45 GMT + - Tue, 20 Oct 2020 02:37:16 GMT expires: - '-1' pragma: @@ -836,8 +836,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e6a41cba/providers/Microsoft.HDInsight/clusters/hdisdk-customvmsizese6a41cba/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -851,7 +851,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:12:16 GMT + - Tue, 20 Oct 2020 02:37:47 GMT expires: - '-1' pragma: @@ -883,8 +883,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e6a41cba/providers/Microsoft.HDInsight/clusters/hdisdk-customvmsizese6a41cba/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -898,7 +898,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:12:46 GMT + - Tue, 20 Oct 2020 02:38:17 GMT expires: - '-1' pragma: @@ -930,8 +930,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e6a41cba/providers/Microsoft.HDInsight/clusters/hdisdk-customvmsizese6a41cba/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -945,7 +945,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:13:16 GMT + - Tue, 20 Oct 2020 02:38:48 GMT expires: - '-1' pragma: @@ -977,8 +977,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e6a41cba/providers/Microsoft.HDInsight/clusters/hdisdk-customvmsizese6a41cba/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -992,7 +992,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:13:48 GMT + - Tue, 20 Oct 2020 02:39:19 GMT expires: - '-1' pragma: @@ -1024,8 +1024,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e6a41cba/providers/Microsoft.HDInsight/clusters/hdisdk-customvmsizese6a41cba/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1039,7 +1039,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:14:18 GMT + - Tue, 20 Oct 2020 02:39:50 GMT expires: - '-1' pragma: @@ -1071,8 +1071,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e6a41cba/providers/Microsoft.HDInsight/clusters/hdisdk-customvmsizese6a41cba/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1086,7 +1086,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:14:49 GMT + - Tue, 20 Oct 2020 02:40:20 GMT expires: - '-1' pragma: @@ -1118,431 +1118,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e6a41cba/providers/Microsoft.HDInsight/clusters/hdisdk-customvmsizese6a41cba/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 06:15:19 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e6a41cba/providers/Microsoft.HDInsight/clusters/hdisdk-customvmsizese6a41cba/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 06:15:50 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e6a41cba/providers/Microsoft.HDInsight/clusters/hdisdk-customvmsizese6a41cba/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 06:16:22 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e6a41cba/providers/Microsoft.HDInsight/clusters/hdisdk-customvmsizese6a41cba/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 06:16:52 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e6a41cba/providers/Microsoft.HDInsight/clusters/hdisdk-customvmsizese6a41cba/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 06:17:23 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e6a41cba/providers/Microsoft.HDInsight/clusters/hdisdk-customvmsizese6a41cba/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 06:17:54 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e6a41cba/providers/Microsoft.HDInsight/clusters/hdisdk-customvmsizese6a41cba/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 06:18:24 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e6a41cba/providers/Microsoft.HDInsight/clusters/hdisdk-customvmsizese6a41cba/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 06:18:55 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e6a41cba/providers/Microsoft.HDInsight/clusters/hdisdk-customvmsizese6a41cba/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 06:19:25 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e6a41cba/providers/Microsoft.HDInsight/clusters/hdisdk-customvmsizese6a41cba/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1556,7 +1133,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:19:55 GMT + - Tue, 20 Oct 2020 02:40:50 GMT expires: - '-1' pragma: @@ -1588,23 +1165,23 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e6a41cba/providers/Microsoft.HDInsight/clusters/hdisdk-customvmsizese6a41cba?api-version=2018-06-01-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e6a41cba/providers/Microsoft.HDInsight/clusters/hdisdk-customvmsizese6a41cba","name":"hdisdk-customvmsizese6a41cba","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"cbcb507f-0b6a-4ab6-8b51-b4105f24dd5d","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3027-5","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2007210011.json","kind":"hadoop","componentVersion":{"hadoop":"2.7"}},"clusterId":"d56096acd6f24d2abf4affb2c83b8366","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a8_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a2_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2020-08-14T06:03:32.377","quotaInfo":{"coresUsed":28},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdisdk-customvmsizese6a41cba-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdisdk-customvmsizese6a41cba.azurehdinsight.net","port":443}],"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-customvmsizese6a41cba","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"m_Item1":"default","m_Item2":""}}}' + Central US","etag":"1eddb22e-2e4a-44d1-9927-5bb019b4ba8b","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3026-7","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2009301626.json","kind":"hadoop","componentVersion":{"hadoop":"2.7"}},"clusterId":"df713e5e555f40a992131d7c792d08aa","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a8_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a2_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2020-10-20T02:29:04.6","quotaInfo":{"coresUsed":28},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdisdk-customvmsizese6a41cba-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdisdk-customvmsizese6a41cba.azurehdinsight.net","port":443}],"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-customvmsizese6a41cba","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"excludedServicesConfigId":"default","excludedServicesList":""},"computeIsolationProperties":{"enableComputeIsolation":false,"hostSku":null}}}' headers: cache-control: - no-cache content-length: - - '1967' + - '2072' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:19:56 GMT + - Tue, 20 Oct 2020 02:40:51 GMT expires: - '-1' pragma: diff --git a/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_create_humboldt_cluster_with_premium_tier.yaml b/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_create_humboldt_cluster_with_premium_tier.yaml index 05b3dfa7b4b5..a6f41348bac3 100644 --- a/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_create_humboldt_cluster_with_premium_tier.yaml +++ b/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_create_humboldt_cluster_with_premium_tier.yaml @@ -13,7 +13,7 @@ interactions: "Small"}, "osProfile": {"linuxOperatingSystemProfile": {"username": "sshuser", "password": "Password1!"}}}]}, "storageProfile": {"storageaccounts": [{"name": "hdipy.blob.core.windows.net", "isDefault": true, "container": "hdisdk-premium91811b62", - "key": "kIiwvdeg4gkdCAmnZzBJTvQLdOvb7E1VM2L89MSXmVd2XlLTLK2f6PPJFXU1O2ucOiUXXApkueXEA7tTz5Ig5w=="}]}}}''' + "key": "inMuCSqTyTRwOv4ASQsQuK2KR7ylHszEpjs77wYJIUme8LcXpLJukcr0mzuO1VOrPfqSZZY9Spl6Zh+KETBeSg=="}]}}}''' headers: Accept: - application/json @@ -26,8 +26,8 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python accept-language: - en-US method: PUT @@ -35,20 +35,20 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-91811b62/providers/Microsoft.HDInsight/clusters/hdisdk-premium91811b62","name":"hdisdk-premium91811b62","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"e538ca8d-7a6e-431f-b3e9-c1cf8d54fadf","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2007210011.json","kind":"hadoop","componentVersion":{"hadoop":"2.7"}},"clusterId":"c72453a7c097475fa36981b40a383205","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a2_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"InProgress","clusterState":"Accepted","createdDate":"2020-08-14T06:20:58.137","quotaInfo":{"coresUsed":20},"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-premium91811b62","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"m_Item1":"default","m_Item2":""}}}' + Central US","etag":"fc1db547-a671-49bc-b25d-fbf4379d9277","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2009301626.json","kind":"hadoop","componentVersion":{"hadoop":"2.7"}},"clusterId":"8379f82b07c64186a839a07c1569825d","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a1_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"InProgress","clusterState":"Accepted","createdDate":"2020-10-20T02:41:54.25","quotaInfo":{"coresUsed":20},"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-premium91811b62","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"excludedServicesConfigId":"default","excludedServicesList":""},"computeIsolationProperties":{"enableComputeIsolation":false,"hostSku":null}}}' headers: azure-asyncoperation: - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-91811b62/providers/Microsoft.HDInsight/clusters/hdisdk-premium91811b62/azureasyncoperations/create?api-version=2018-06-01-preview cache-control: - no-cache content-length: - - '1700' + - '1806' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:20:59 GMT + - Tue, 20 Oct 2020 02:41:55 GMT etag: - - '"e538ca8d-7a6e-431f-b3e9-c1cf8d54fadf"' + - '"fc1db547-a671-49bc-b25d-fbf4379d9277"' expires: - '-1' pragma: @@ -62,7 +62,7 @@ interactions: x-content-type-options: - nosniff x-ms-hdi-clusteruri: - - https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/hdipy-91811b62/providers/Microsoft.HDInsight/clusters/hdisdk-premium91811b62?api-version=2018-06-01-preview + - https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hdipy-91811b62/providers/Microsoft.HDInsight/clusters/hdisdk-premium91811b62?api-version=2018-06-01-preview x-ms-hdi-matched-rule: - ClusterResourcesAndSubResources x-ms-hdi-routed-to: @@ -84,8 +84,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-91811b62/providers/Microsoft.HDInsight/clusters/hdisdk-premium91811b62/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -99,7 +99,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:21:30 GMT + - Tue, 20 Oct 2020 02:42:26 GMT expires: - '-1' pragma: @@ -131,8 +131,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-91811b62/providers/Microsoft.HDInsight/clusters/hdisdk-premium91811b62/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -146,7 +146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:22:01 GMT + - Tue, 20 Oct 2020 02:42:57 GMT expires: - '-1' pragma: @@ -178,8 +178,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-91811b62/providers/Microsoft.HDInsight/clusters/hdisdk-premium91811b62/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -193,7 +193,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:22:31 GMT + - Tue, 20 Oct 2020 02:43:28 GMT expires: - '-1' pragma: @@ -225,8 +225,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-91811b62/providers/Microsoft.HDInsight/clusters/hdisdk-premium91811b62/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -240,7 +240,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:23:02 GMT + - Tue, 20 Oct 2020 02:43:58 GMT expires: - '-1' pragma: @@ -272,8 +272,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-91811b62/providers/Microsoft.HDInsight/clusters/hdisdk-premium91811b62/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -287,7 +287,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:23:33 GMT + - Tue, 20 Oct 2020 02:44:28 GMT expires: - '-1' pragma: @@ -319,8 +319,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-91811b62/providers/Microsoft.HDInsight/clusters/hdisdk-premium91811b62/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -334,7 +334,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:24:03 GMT + - Tue, 20 Oct 2020 02:45:00 GMT expires: - '-1' pragma: @@ -366,8 +366,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-91811b62/providers/Microsoft.HDInsight/clusters/hdisdk-premium91811b62/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -381,7 +381,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:24:33 GMT + - Tue, 20 Oct 2020 02:45:30 GMT expires: - '-1' pragma: @@ -413,8 +413,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-91811b62/providers/Microsoft.HDInsight/clusters/hdisdk-premium91811b62/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -428,7 +428,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:25:05 GMT + - Tue, 20 Oct 2020 02:46:00 GMT expires: - '-1' pragma: @@ -460,8 +460,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-91811b62/providers/Microsoft.HDInsight/clusters/hdisdk-premium91811b62/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -475,7 +475,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:25:35 GMT + - Tue, 20 Oct 2020 02:46:31 GMT expires: - '-1' pragma: @@ -507,8 +507,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-91811b62/providers/Microsoft.HDInsight/clusters/hdisdk-premium91811b62/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -522,7 +522,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:26:05 GMT + - Tue, 20 Oct 2020 02:47:01 GMT expires: - '-1' pragma: @@ -554,8 +554,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-91811b62/providers/Microsoft.HDInsight/clusters/hdisdk-premium91811b62/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -569,7 +569,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:26:36 GMT + - Tue, 20 Oct 2020 02:47:33 GMT expires: - '-1' pragma: @@ -601,8 +601,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-91811b62/providers/Microsoft.HDInsight/clusters/hdisdk-premium91811b62/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -616,7 +616,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:27:07 GMT + - Tue, 20 Oct 2020 02:48:04 GMT expires: - '-1' pragma: @@ -648,8 +648,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-91811b62/providers/Microsoft.HDInsight/clusters/hdisdk-premium91811b62/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -663,7 +663,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:27:38 GMT + - Tue, 20 Oct 2020 02:48:34 GMT expires: - '-1' pragma: @@ -695,8 +695,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-91811b62/providers/Microsoft.HDInsight/clusters/hdisdk-premium91811b62/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -710,7 +710,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:28:08 GMT + - Tue, 20 Oct 2020 02:49:05 GMT expires: - '-1' pragma: @@ -742,8 +742,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-91811b62/providers/Microsoft.HDInsight/clusters/hdisdk-premium91811b62/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -757,7 +757,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:28:39 GMT + - Tue, 20 Oct 2020 02:49:36 GMT expires: - '-1' pragma: @@ -789,8 +789,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-91811b62/providers/Microsoft.HDInsight/clusters/hdisdk-premium91811b62/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -804,7 +804,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:29:10 GMT + - Tue, 20 Oct 2020 02:50:06 GMT expires: - '-1' pragma: @@ -836,8 +836,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-91811b62/providers/Microsoft.HDInsight/clusters/hdisdk-premium91811b62/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -851,7 +851,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:29:40 GMT + - Tue, 20 Oct 2020 02:50:37 GMT expires: - '-1' pragma: @@ -883,8 +883,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-91811b62/providers/Microsoft.HDInsight/clusters/hdisdk-premium91811b62/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -898,7 +898,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:30:12 GMT + - Tue, 20 Oct 2020 02:51:07 GMT expires: - '-1' pragma: @@ -930,8 +930,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-91811b62/providers/Microsoft.HDInsight/clusters/hdisdk-premium91811b62/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -945,7 +945,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:30:42 GMT + - Tue, 20 Oct 2020 02:51:37 GMT expires: - '-1' pragma: @@ -977,8 +977,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-91811b62/providers/Microsoft.HDInsight/clusters/hdisdk-premium91811b62/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -992,7 +992,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:31:12 GMT + - Tue, 20 Oct 2020 02:52:08 GMT expires: - '-1' pragma: @@ -1024,8 +1024,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-91811b62/providers/Microsoft.HDInsight/clusters/hdisdk-premium91811b62/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1039,7 +1039,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:31:43 GMT + - Tue, 20 Oct 2020 02:52:40 GMT expires: - '-1' pragma: @@ -1071,8 +1071,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-91811b62/providers/Microsoft.HDInsight/clusters/hdisdk-premium91811b62/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1086,7 +1086,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:32:14 GMT + - Tue, 20 Oct 2020 02:53:10 GMT expires: - '-1' pragma: @@ -1118,8 +1118,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-91811b62/providers/Microsoft.HDInsight/clusters/hdisdk-premium91811b62/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1133,7 +1133,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:32:44 GMT + - Tue, 20 Oct 2020 02:53:40 GMT expires: - '-1' pragma: @@ -1165,8 +1165,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-91811b62/providers/Microsoft.HDInsight/clusters/hdisdk-premium91811b62/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1180,7 +1180,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:33:15 GMT + - Tue, 20 Oct 2020 02:54:12 GMT expires: - '-1' pragma: @@ -1212,431 +1212,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-91811b62/providers/Microsoft.HDInsight/clusters/hdisdk-premium91811b62/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 06:33:46 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-91811b62/providers/Microsoft.HDInsight/clusters/hdisdk-premium91811b62/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 06:34:16 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-91811b62/providers/Microsoft.HDInsight/clusters/hdisdk-premium91811b62/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 06:34:46 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-91811b62/providers/Microsoft.HDInsight/clusters/hdisdk-premium91811b62/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 06:35:17 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-91811b62/providers/Microsoft.HDInsight/clusters/hdisdk-premium91811b62/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 06:35:47 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-91811b62/providers/Microsoft.HDInsight/clusters/hdisdk-premium91811b62/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 06:36:19 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-91811b62/providers/Microsoft.HDInsight/clusters/hdisdk-premium91811b62/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 06:36:49 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-91811b62/providers/Microsoft.HDInsight/clusters/hdisdk-premium91811b62/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 06:37:20 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-91811b62/providers/Microsoft.HDInsight/clusters/hdisdk-premium91811b62/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 06:37:50 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-91811b62/providers/Microsoft.HDInsight/clusters/hdisdk-premium91811b62/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1650,7 +1227,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:38:21 GMT + - Tue, 20 Oct 2020 02:54:42 GMT expires: - '-1' pragma: @@ -1682,23 +1259,23 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-91811b62/providers/Microsoft.HDInsight/clusters/hdisdk-premium91811b62?api-version=2018-06-01-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-91811b62/providers/Microsoft.HDInsight/clusters/hdisdk-premium91811b62","name":"hdisdk-premium91811b62","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"e538ca8d-7a6e-431f-b3e9-c1cf8d54fadf","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3027-5","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2007210011.json","kind":"hadoop","componentVersion":{"hadoop":"2.7"}},"clusterId":"c72453a7c097475fa36981b40a383205","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a2_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2020-08-14T06:20:58.137","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdisdk-premium91811b62-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdisdk-premium91811b62.azurehdinsight.net","port":443}],"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-premium91811b62","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"m_Item1":"default","m_Item2":""}}}' + Central US","etag":"fc1db547-a671-49bc-b25d-fbf4379d9277","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3026-7","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2009301626.json","kind":"hadoop","componentVersion":{"hadoop":"2.7"}},"clusterId":"8379f82b07c64186a839a07c1569825d","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a1_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2020-10-20T02:41:54.25","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdisdk-premium91811b62-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdisdk-premium91811b62.azurehdinsight.net","port":443}],"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-premium91811b62","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"excludedServicesConfigId":"default","excludedServicesList":""},"computeIsolationProperties":{"enableComputeIsolation":false,"hostSku":null}}}' headers: cache-control: - no-cache content-length: - - '1937' + - '2043' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:38:22 GMT + - Tue, 20 Oct 2020 02:54:42 GMT expires: - '-1' pragma: diff --git a/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_create_kafka_cluster_with_managed_disks.yaml b/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_create_kafka_cluster_with_managed_disks.yaml index dd74fb2fba54..256cf67eef19 100644 --- a/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_create_kafka_cluster_with_managed_disks.yaml +++ b/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_create_kafka_cluster_with_managed_disks.yaml @@ -13,7 +13,7 @@ interactions: 3, "hardwareProfile": {"vmSize": "Small"}, "osProfile": {"linuxOperatingSystemProfile": {"username": "sshuser", "password": "Password1!"}}}]}, "storageProfile": {"storageaccounts": [{"name": "hdipy.blob.core.windows.net", "isDefault": true, "container": "hdisdk-kafka55a91a39", - "key": "AgMeIOEWKBZ3z1o2KA6M3XZ2MkLDFokFllW4O48T8jTD4hC1LTRlZ9nuPS8FWASHiwVUMCwSdotV7FPG2M8vJA=="}]}}}''' + "key": "9e+EPhRuKa5YSJEqhbFjMdtoafZ15aCdaZDqlFDQvKDJmMDEXZY9GxbEKQbRyaHiQ+ySg1ArzxqO0WnATfa1gg=="}]}}}''' headers: Accept: - application/json @@ -26,8 +26,8 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python accept-language: - en-US method: PUT @@ -35,20 +35,20 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-55a91a39/providers/Microsoft.HDInsight/clusters/hdisdk-kafka55a91a39","name":"hdisdk-kafka55a91a39","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"b0f8fdf5-560c-4f45-92ba-91e6458e3043","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.2007210011.json","kind":"Kafka","componentVersion":{"Kafka":"1.1"}},"clusterId":"956a35035f564289973829438d6a44a2","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"dataDisksGroups":[{"disksPerNode":8,"storageAccountType":"Standard_LRS","diskSizeGB":1023}],"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a1_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"InProgress","clusterState":"Accepted","createdDate":"2020-08-14T06:41:05.377","quotaInfo":{"coresUsed":23},"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-kafka55a91a39","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"m_Item1":"default","m_Item2":""}}}' + Central US","etag":"2bf0a83e-d43d-411c-874e-40e171c94cc2","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.2009301626.json","kind":"Kafka","componentVersion":{"Kafka":"1.1"}},"clusterId":"9bebe6001aef4cd9817a01e027129572","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"dataDisksGroups":[{"disksPerNode":8,"storageAccountType":"Standard_LRS","diskSizeGB":1023}],"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a1_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"InProgress","clusterState":"Accepted","createdDate":"2020-10-20T02:55:51.323","quotaInfo":{"coresUsed":23},"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-kafka55a91a39","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"excludedServicesConfigId":"default","excludedServicesList":""},"computeIsolationProperties":{"enableComputeIsolation":false,"hostSku":null}}}' headers: azure-asyncoperation: - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-55a91a39/providers/Microsoft.HDInsight/clusters/hdisdk-kafka55a91a39/azureasyncoperations/create?api-version=2018-06-01-preview cache-control: - no-cache content-length: - - '1784' + - '1891' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:41:06 GMT + - Tue, 20 Oct 2020 02:55:52 GMT etag: - - '"b0f8fdf5-560c-4f45-92ba-91e6458e3043"' + - '"2bf0a83e-d43d-411c-874e-40e171c94cc2"' expires: - '-1' pragma: @@ -62,7 +62,7 @@ interactions: x-content-type-options: - nosniff x-ms-hdi-clusteruri: - - https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/hdipy-55a91a39/providers/Microsoft.HDInsight/clusters/hdisdk-kafka55a91a39?api-version=2018-06-01-preview + - https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hdipy-55a91a39/providers/Microsoft.HDInsight/clusters/hdisdk-kafka55a91a39?api-version=2018-06-01-preview x-ms-hdi-matched-rule: - ClusterResourcesAndSubResources x-ms-hdi-routed-to: @@ -70,7 +70,7 @@ interactions: x-ms-hdi-served-by: - northcentralus x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1199' status: code: 200 message: OK @@ -84,8 +84,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-55a91a39/providers/Microsoft.HDInsight/clusters/hdisdk-kafka55a91a39/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -99,7 +99,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:41:39 GMT + - Tue, 20 Oct 2020 02:56:24 GMT expires: - '-1' pragma: @@ -131,8 +131,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-55a91a39/providers/Microsoft.HDInsight/clusters/hdisdk-kafka55a91a39/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -146,7 +146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:42:09 GMT + - Tue, 20 Oct 2020 02:56:55 GMT expires: - '-1' pragma: @@ -178,8 +178,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-55a91a39/providers/Microsoft.HDInsight/clusters/hdisdk-kafka55a91a39/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -193,7 +193,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:42:39 GMT + - Tue, 20 Oct 2020 02:57:25 GMT expires: - '-1' pragma: @@ -225,8 +225,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-55a91a39/providers/Microsoft.HDInsight/clusters/hdisdk-kafka55a91a39/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -240,7 +240,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:43:10 GMT + - Tue, 20 Oct 2020 02:57:56 GMT expires: - '-1' pragma: @@ -272,8 +272,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-55a91a39/providers/Microsoft.HDInsight/clusters/hdisdk-kafka55a91a39/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -287,7 +287,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:43:40 GMT + - Tue, 20 Oct 2020 02:58:27 GMT expires: - '-1' pragma: @@ -319,8 +319,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-55a91a39/providers/Microsoft.HDInsight/clusters/hdisdk-kafka55a91a39/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -334,7 +334,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:44:11 GMT + - Tue, 20 Oct 2020 02:58:57 GMT expires: - '-1' pragma: @@ -366,8 +366,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-55a91a39/providers/Microsoft.HDInsight/clusters/hdisdk-kafka55a91a39/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -381,7 +381,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:44:42 GMT + - Tue, 20 Oct 2020 02:59:28 GMT expires: - '-1' pragma: @@ -413,8 +413,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-55a91a39/providers/Microsoft.HDInsight/clusters/hdisdk-kafka55a91a39/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -428,7 +428,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:45:13 GMT + - Tue, 20 Oct 2020 02:59:58 GMT expires: - '-1' pragma: @@ -460,8 +460,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-55a91a39/providers/Microsoft.HDInsight/clusters/hdisdk-kafka55a91a39/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -475,7 +475,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:45:43 GMT + - Tue, 20 Oct 2020 03:00:28 GMT expires: - '-1' pragma: @@ -507,8 +507,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-55a91a39/providers/Microsoft.HDInsight/clusters/hdisdk-kafka55a91a39/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -522,7 +522,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:46:13 GMT + - Tue, 20 Oct 2020 03:01:00 GMT expires: - '-1' pragma: @@ -554,8 +554,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-55a91a39/providers/Microsoft.HDInsight/clusters/hdisdk-kafka55a91a39/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -569,7 +569,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:46:44 GMT + - Tue, 20 Oct 2020 03:01:31 GMT expires: - '-1' pragma: @@ -601,8 +601,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-55a91a39/providers/Microsoft.HDInsight/clusters/hdisdk-kafka55a91a39/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -616,7 +616,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:47:16 GMT + - Tue, 20 Oct 2020 03:02:01 GMT expires: - '-1' pragma: @@ -648,8 +648,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-55a91a39/providers/Microsoft.HDInsight/clusters/hdisdk-kafka55a91a39/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -663,7 +663,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:47:46 GMT + - Tue, 20 Oct 2020 03:02:32 GMT expires: - '-1' pragma: @@ -695,8 +695,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-55a91a39/providers/Microsoft.HDInsight/clusters/hdisdk-kafka55a91a39/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -710,7 +710,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:48:17 GMT + - Tue, 20 Oct 2020 03:03:02 GMT expires: - '-1' pragma: @@ -742,8 +742,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-55a91a39/providers/Microsoft.HDInsight/clusters/hdisdk-kafka55a91a39/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -757,7 +757,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:48:47 GMT + - Tue, 20 Oct 2020 03:03:33 GMT expires: - '-1' pragma: @@ -789,8 +789,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-55a91a39/providers/Microsoft.HDInsight/clusters/hdisdk-kafka55a91a39/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -804,7 +804,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:49:17 GMT + - Tue, 20 Oct 2020 03:04:03 GMT expires: - '-1' pragma: @@ -836,8 +836,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-55a91a39/providers/Microsoft.HDInsight/clusters/hdisdk-kafka55a91a39/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -851,7 +851,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:49:49 GMT + - Tue, 20 Oct 2020 03:04:34 GMT expires: - '-1' pragma: @@ -883,8 +883,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-55a91a39/providers/Microsoft.HDInsight/clusters/hdisdk-kafka55a91a39/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -898,7 +898,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:50:19 GMT + - Tue, 20 Oct 2020 03:05:05 GMT expires: - '-1' pragma: @@ -930,8 +930,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-55a91a39/providers/Microsoft.HDInsight/clusters/hdisdk-kafka55a91a39/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -945,7 +945,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:50:50 GMT + - Tue, 20 Oct 2020 03:05:35 GMT expires: - '-1' pragma: @@ -977,8 +977,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-55a91a39/providers/Microsoft.HDInsight/clusters/hdisdk-kafka55a91a39/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -992,7 +992,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:51:20 GMT + - Tue, 20 Oct 2020 03:06:05 GMT expires: - '-1' pragma: @@ -1024,525 +1024,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-55a91a39/providers/Microsoft.HDInsight/clusters/hdisdk-kafka55a91a39/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 06:51:50 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-55a91a39/providers/Microsoft.HDInsight/clusters/hdisdk-kafka55a91a39/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 06:52:22 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-55a91a39/providers/Microsoft.HDInsight/clusters/hdisdk-kafka55a91a39/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 06:52:53 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-55a91a39/providers/Microsoft.HDInsight/clusters/hdisdk-kafka55a91a39/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 06:53:23 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-55a91a39/providers/Microsoft.HDInsight/clusters/hdisdk-kafka55a91a39/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 06:53:54 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-55a91a39/providers/Microsoft.HDInsight/clusters/hdisdk-kafka55a91a39/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 06:54:24 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-55a91a39/providers/Microsoft.HDInsight/clusters/hdisdk-kafka55a91a39/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 06:54:56 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-55a91a39/providers/Microsoft.HDInsight/clusters/hdisdk-kafka55a91a39/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 06:55:26 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-55a91a39/providers/Microsoft.HDInsight/clusters/hdisdk-kafka55a91a39/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 06:55:57 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-55a91a39/providers/Microsoft.HDInsight/clusters/hdisdk-kafka55a91a39/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 06:56:27 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-55a91a39/providers/Microsoft.HDInsight/clusters/hdisdk-kafka55a91a39/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 06:56:57 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-55a91a39/providers/Microsoft.HDInsight/clusters/hdisdk-kafka55a91a39/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1556,7 +1039,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:57:29 GMT + - Tue, 20 Oct 2020 03:06:37 GMT expires: - '-1' pragma: @@ -1588,23 +1071,23 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-55a91a39/providers/Microsoft.HDInsight/clusters/hdisdk-kafka55a91a39?api-version=2018-06-01-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-55a91a39/providers/Microsoft.HDInsight/clusters/hdisdk-kafka55a91a39","name":"hdisdk-kafka55a91a39","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"b0f8fdf5-560c-4f45-92ba-91e6458e3043","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3027-5","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.2007210011.json","kind":"Kafka","componentVersion":{"Kafka":"1.1"}},"clusterId":"956a35035f564289973829438d6a44a2","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"dataDisksGroups":[{"disksPerNode":8,"storageAccountType":"Standard_LRS","diskSizeGB":1023}],"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a1_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2020-08-14T06:41:05.377","quotaInfo":{"coresUsed":23},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdisdk-kafka55a91a39-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdisdk-kafka55a91a39.azurehdinsight.net","port":443}],"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-kafka55a91a39","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"m_Item1":"default","m_Item2":""}}}' + Central US","etag":"2bf0a83e-d43d-411c-874e-40e171c94cc2","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3026-7","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/kafka-3.6.1000.67.2009301626.json","kind":"Kafka","componentVersion":{"Kafka":"1.1"}},"clusterId":"9bebe6001aef4cd9817a01e027129572","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"dataDisksGroups":[{"disksPerNode":8,"storageAccountType":"Standard_LRS","diskSizeGB":1023}],"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a1_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2020-10-20T02:55:51.323","quotaInfo":{"coresUsed":23},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdisdk-kafka55a91a39-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdisdk-kafka55a91a39.azurehdinsight.net","port":443}],"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-kafka55a91a39","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"excludedServicesConfigId":"default","excludedServicesList":""},"computeIsolationProperties":{"enableComputeIsolation":false,"hostSku":null}}}' headers: cache-control: - no-cache content-length: - - '2017' + - '2124' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:57:29 GMT + - Tue, 20 Oct 2020 03:06:38 GMT expires: - '-1' pragma: diff --git a/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_create_linux_spark_cluster_with_component_version.yaml b/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_create_linux_spark_cluster_with_component_version.yaml index 75dbfb795994..30002d7fdd49 100644 --- a/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_create_linux_spark_cluster_with_component_version.yaml +++ b/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_create_linux_spark_cluster_with_component_version.yaml @@ -13,7 +13,7 @@ interactions: "Small"}, "osProfile": {"linuxOperatingSystemProfile": {"username": "sshuser", "password": "Password1!"}}}]}, "storageProfile": {"storageaccounts": [{"name": "hdipy.blob.core.windows.net", "isDefault": true, "container": "hdisdk-sparkcomponentversions7dce1ed9", - "key": "+6MbYknicWJfQ2ITzMAN6bz9rbQb0caOfnj341LOxo11+Wa4dTlR9XS6Hvh5xyzPSPHtr33Sq+8d1dOolAlvqw=="}]}}}''' + "key": "Oa/mAxeZc5YYZHNYpBik63ay8Rsf1ATb1c+q3lhGSIuYWjeWFsllql99B1Y0FzkLg/q4v0D+Sum83pyt12gmZw=="}]}}}''' headers: Accept: - application/json @@ -26,8 +26,8 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python accept-language: - en-US method: PUT @@ -35,20 +35,20 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-7dce1ed9/providers/Microsoft.HDInsight/clusters/hdisdk-sparkcomponentversions7dce1ed9","name":"hdisdk-sparkcomponentversions7dce1ed9","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"32a84938-7854-4aee-b232-92a87cd391f6","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.2007210011.json","kind":"Spark","componentVersion":{"Spark":"2.3"}},"clusterId":"0f367d7f4288407da154c6898f153cba","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a2_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"InProgress","clusterState":"Accepted","createdDate":"2020-08-14T06:58:18.76","quotaInfo":{"coresUsed":20},"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-sparkcomponentversions7dce1ed9","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"m_Item1":"default","m_Item2":""}}}' + Central US","etag":"d4bd14e6-d22a-40c7-9e36-9f08832ac149","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.2009301626.json","kind":"Spark","componentVersion":{"Spark":"2.3"}},"clusterId":"b63a6cd7c11d43b28c1124bf1af15091","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a1_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"InProgress","clusterState":"Accepted","createdDate":"2020-10-20T03:07:45.17","quotaInfo":{"coresUsed":20},"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-sparkcomponentversions7dce1ed9","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"excludedServicesConfigId":"default","excludedServicesList":""},"computeIsolationProperties":{"enableComputeIsolation":false,"hostSku":null}}}' headers: azure-asyncoperation: - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-7dce1ed9/providers/Microsoft.HDInsight/clusters/hdisdk-sparkcomponentversions7dce1ed9/azureasyncoperations/create?api-version=2018-06-01-preview cache-control: - no-cache content-length: - - '1741' + - '1848' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:58:19 GMT + - Tue, 20 Oct 2020 03:07:46 GMT etag: - - '"32a84938-7854-4aee-b232-92a87cd391f6"' + - '"d4bd14e6-d22a-40c7-9e36-9f08832ac149"' expires: - '-1' pragma: @@ -62,7 +62,7 @@ interactions: x-content-type-options: - nosniff x-ms-hdi-clusteruri: - - https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/hdipy-7dce1ed9/providers/Microsoft.HDInsight/clusters/hdisdk-sparkcomponentversions7dce1ed9?api-version=2018-06-01-preview + - https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hdipy-7dce1ed9/providers/Microsoft.HDInsight/clusters/hdisdk-sparkcomponentversions7dce1ed9?api-version=2018-06-01-preview x-ms-hdi-matched-rule: - ClusterResourcesAndSubResources x-ms-hdi-routed-to: @@ -84,8 +84,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-7dce1ed9/providers/Microsoft.HDInsight/clusters/hdisdk-sparkcomponentversions7dce1ed9/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -99,7 +99,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:58:51 GMT + - Tue, 20 Oct 2020 03:08:18 GMT expires: - '-1' pragma: @@ -131,8 +131,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-7dce1ed9/providers/Microsoft.HDInsight/clusters/hdisdk-sparkcomponentversions7dce1ed9/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -146,7 +146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:59:21 GMT + - Tue, 20 Oct 2020 03:08:48 GMT expires: - '-1' pragma: @@ -178,8 +178,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-7dce1ed9/providers/Microsoft.HDInsight/clusters/hdisdk-sparkcomponentversions7dce1ed9/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -193,7 +193,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 06:59:52 GMT + - Tue, 20 Oct 2020 03:09:19 GMT expires: - '-1' pragma: @@ -225,8 +225,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-7dce1ed9/providers/Microsoft.HDInsight/clusters/hdisdk-sparkcomponentversions7dce1ed9/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -240,7 +240,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:00:22 GMT + - Tue, 20 Oct 2020 03:09:50 GMT expires: - '-1' pragma: @@ -272,8 +272,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-7dce1ed9/providers/Microsoft.HDInsight/clusters/hdisdk-sparkcomponentversions7dce1ed9/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -287,7 +287,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:00:52 GMT + - Tue, 20 Oct 2020 03:10:20 GMT expires: - '-1' pragma: @@ -319,8 +319,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-7dce1ed9/providers/Microsoft.HDInsight/clusters/hdisdk-sparkcomponentversions7dce1ed9/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -334,7 +334,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:01:24 GMT + - Tue, 20 Oct 2020 03:10:50 GMT expires: - '-1' pragma: @@ -366,8 +366,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-7dce1ed9/providers/Microsoft.HDInsight/clusters/hdisdk-sparkcomponentversions7dce1ed9/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -381,7 +381,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:01:54 GMT + - Tue, 20 Oct 2020 03:11:21 GMT expires: - '-1' pragma: @@ -413,8 +413,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-7dce1ed9/providers/Microsoft.HDInsight/clusters/hdisdk-sparkcomponentversions7dce1ed9/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -428,7 +428,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:02:24 GMT + - Tue, 20 Oct 2020 03:11:52 GMT expires: - '-1' pragma: @@ -460,8 +460,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-7dce1ed9/providers/Microsoft.HDInsight/clusters/hdisdk-sparkcomponentversions7dce1ed9/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -475,7 +475,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:02:56 GMT + - Tue, 20 Oct 2020 03:12:22 GMT expires: - '-1' pragma: @@ -507,8 +507,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-7dce1ed9/providers/Microsoft.HDInsight/clusters/hdisdk-sparkcomponentversions7dce1ed9/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -522,7 +522,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:03:26 GMT + - Tue, 20 Oct 2020 03:12:52 GMT expires: - '-1' pragma: @@ -554,8 +554,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-7dce1ed9/providers/Microsoft.HDInsight/clusters/hdisdk-sparkcomponentversions7dce1ed9/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -569,7 +569,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:03:57 GMT + - Tue, 20 Oct 2020 03:13:25 GMT expires: - '-1' pragma: @@ -601,8 +601,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-7dce1ed9/providers/Microsoft.HDInsight/clusters/hdisdk-sparkcomponentversions7dce1ed9/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -616,7 +616,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:04:27 GMT + - Tue, 20 Oct 2020 03:13:55 GMT expires: - '-1' pragma: @@ -648,8 +648,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-7dce1ed9/providers/Microsoft.HDInsight/clusters/hdisdk-sparkcomponentversions7dce1ed9/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -663,7 +663,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:04:59 GMT + - Tue, 20 Oct 2020 03:14:25 GMT expires: - '-1' pragma: @@ -695,8 +695,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-7dce1ed9/providers/Microsoft.HDInsight/clusters/hdisdk-sparkcomponentversions7dce1ed9/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -710,7 +710,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:05:29 GMT + - Tue, 20 Oct 2020 03:14:56 GMT expires: - '-1' pragma: @@ -742,8 +742,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-7dce1ed9/providers/Microsoft.HDInsight/clusters/hdisdk-sparkcomponentversions7dce1ed9/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -757,7 +757,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:05:59 GMT + - Tue, 20 Oct 2020 03:15:27 GMT expires: - '-1' pragma: @@ -789,8 +789,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-7dce1ed9/providers/Microsoft.HDInsight/clusters/hdisdk-sparkcomponentversions7dce1ed9/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -804,7 +804,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:06:30 GMT + - Tue, 20 Oct 2020 03:15:57 GMT expires: - '-1' pragma: @@ -836,8 +836,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-7dce1ed9/providers/Microsoft.HDInsight/clusters/hdisdk-sparkcomponentversions7dce1ed9/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -851,7 +851,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:07:01 GMT + - Tue, 20 Oct 2020 03:16:27 GMT expires: - '-1' pragma: @@ -883,8 +883,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-7dce1ed9/providers/Microsoft.HDInsight/clusters/hdisdk-sparkcomponentversions7dce1ed9/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -898,7 +898,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:07:32 GMT + - Tue, 20 Oct 2020 03:16:58 GMT expires: - '-1' pragma: @@ -930,8 +930,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-7dce1ed9/providers/Microsoft.HDInsight/clusters/hdisdk-sparkcomponentversions7dce1ed9/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -945,7 +945,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:08:03 GMT + - Tue, 20 Oct 2020 03:17:29 GMT expires: - '-1' pragma: @@ -977,8 +977,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-7dce1ed9/providers/Microsoft.HDInsight/clusters/hdisdk-sparkcomponentversions7dce1ed9/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -992,7 +992,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:08:33 GMT + - Tue, 20 Oct 2020 03:17:59 GMT expires: - '-1' pragma: @@ -1024,8 +1024,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-7dce1ed9/providers/Microsoft.HDInsight/clusters/hdisdk-sparkcomponentversions7dce1ed9/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1039,7 +1039,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:09:03 GMT + - Tue, 20 Oct 2020 03:18:31 GMT expires: - '-1' pragma: @@ -1071,8 +1071,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-7dce1ed9/providers/Microsoft.HDInsight/clusters/hdisdk-sparkcomponentversions7dce1ed9/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1086,7 +1086,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:09:52 GMT + - Tue, 20 Oct 2020 03:19:02 GMT expires: - '-1' pragma: @@ -1118,8 +1118,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-7dce1ed9/providers/Microsoft.HDInsight/clusters/hdisdk-sparkcomponentversions7dce1ed9/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1133,7 +1133,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:10:22 GMT + - Tue, 20 Oct 2020 03:19:32 GMT expires: - '-1' pragma: @@ -1165,8 +1165,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-7dce1ed9/providers/Microsoft.HDInsight/clusters/hdisdk-sparkcomponentversions7dce1ed9/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1180,7 +1180,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:10:53 GMT + - Tue, 20 Oct 2020 03:20:02 GMT expires: - '-1' pragma: @@ -1212,8 +1212,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-7dce1ed9/providers/Microsoft.HDInsight/clusters/hdisdk-sparkcomponentversions7dce1ed9/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1227,7 +1227,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:11:24 GMT + - Tue, 20 Oct 2020 03:20:33 GMT expires: - '-1' pragma: @@ -1259,8 +1259,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-7dce1ed9/providers/Microsoft.HDInsight/clusters/hdisdk-sparkcomponentversions7dce1ed9/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1274,7 +1274,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:11:54 GMT + - Tue, 20 Oct 2020 03:21:04 GMT expires: - '-1' pragma: @@ -1306,8 +1306,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-7dce1ed9/providers/Microsoft.HDInsight/clusters/hdisdk-sparkcomponentversions7dce1ed9/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1321,7 +1321,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:12:26 GMT + - Tue, 20 Oct 2020 03:21:34 GMT expires: - '-1' pragma: @@ -1353,8 +1353,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-7dce1ed9/providers/Microsoft.HDInsight/clusters/hdisdk-sparkcomponentversions7dce1ed9/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1368,7 +1368,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:12:57 GMT + - Tue, 20 Oct 2020 03:22:04 GMT expires: - '-1' pragma: @@ -1400,384 +1400,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-7dce1ed9/providers/Microsoft.HDInsight/clusters/hdisdk-sparkcomponentversions7dce1ed9/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 07:13:27 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-7dce1ed9/providers/Microsoft.HDInsight/clusters/hdisdk-sparkcomponentversions7dce1ed9/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 07:13:57 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-7dce1ed9/providers/Microsoft.HDInsight/clusters/hdisdk-sparkcomponentversions7dce1ed9/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 07:14:28 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-7dce1ed9/providers/Microsoft.HDInsight/clusters/hdisdk-sparkcomponentversions7dce1ed9/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 07:14:59 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-7dce1ed9/providers/Microsoft.HDInsight/clusters/hdisdk-sparkcomponentversions7dce1ed9/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 07:15:29 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-7dce1ed9/providers/Microsoft.HDInsight/clusters/hdisdk-sparkcomponentversions7dce1ed9/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 07:15:59 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-7dce1ed9/providers/Microsoft.HDInsight/clusters/hdisdk-sparkcomponentversions7dce1ed9/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 07:16:31 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-7dce1ed9/providers/Microsoft.HDInsight/clusters/hdisdk-sparkcomponentversions7dce1ed9/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 07:17:02 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-7dce1ed9/providers/Microsoft.HDInsight/clusters/hdisdk-sparkcomponentversions7dce1ed9/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1791,7 +1415,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:17:32 GMT + - Tue, 20 Oct 2020 03:22:36 GMT expires: - '-1' pragma: @@ -1823,23 +1447,23 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-7dce1ed9/providers/Microsoft.HDInsight/clusters/hdisdk-sparkcomponentversions7dce1ed9?api-version=2018-06-01-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-7dce1ed9/providers/Microsoft.HDInsight/clusters/hdisdk-sparkcomponentversions7dce1ed9","name":"hdisdk-sparkcomponentversions7dce1ed9","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"32a84938-7854-4aee-b232-92a87cd391f6","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3027-5","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.2007210011.json","kind":"Spark","componentVersion":{"Spark":"2.3"}},"clusterId":"0f367d7f4288407da154c6898f153cba","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a2_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2020-08-14T06:58:18.76","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdisdk-sparkcomponentversions7dce1ed9-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdisdk-sparkcomponentversions7dce1ed9.azurehdinsight.net","port":443}],"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-sparkcomponentversions7dce1ed9","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"m_Item1":"default","m_Item2":""}}}' + Central US","etag":"d4bd14e6-d22a-40c7-9e36-9f08832ac149","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3026-7","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/spark-3.6.1000.67.2009301626.json","kind":"Spark","componentVersion":{"Spark":"2.3"}},"clusterId":"b63a6cd7c11d43b28c1124bf1af15091","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a1_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2020-10-20T03:07:45.17","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdisdk-sparkcomponentversions7dce1ed9-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdisdk-sparkcomponentversions7dce1ed9.azurehdinsight.net","port":443}],"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-sparkcomponentversions7dce1ed9","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"excludedServicesConfigId":"default","excludedServicesList":""},"computeIsolationProperties":{"enableComputeIsolation":false,"hostSku":null}}}' headers: cache-control: - no-cache content-length: - - '2008' + - '2115' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:17:33 GMT + - Tue, 20 Oct 2020 03:22:36 GMT expires: - '-1' pragma: diff --git a/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_create_mlservices_cluster.yaml b/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_create_mlservices_cluster.yaml deleted file mode 100644 index 57e49aaef076..000000000000 --- a/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_create_mlservices_cluster.yaml +++ /dev/null @@ -1,2143 +0,0 @@ -interactions: -- request: - body: 'b''{"location": "North Central US", "tags": {}, "properties": {"clusterVersion": - "3.6", "osType": "Linux", "tier": "Standard", "clusterDefinition": {"kind": - "MLServices", "configurations": {"gateway": {"restAuthCredential.isEnabled": - "true", "restAuthCredential.username": "admin", "restAuthCredential.password": - "Password1!"}}}, "computeProfile": {"roles": [{"name": "headnode", "targetInstanceCount": - 2, "hardwareProfile": {"vmSize": "Large"}, "osProfile": {"linuxOperatingSystemProfile": - {"username": "sshuser", "password": "Password1!"}}}, {"name": "workernode", - "targetInstanceCount": 3, "hardwareProfile": {"vmSize": "Large"}, "osProfile": - {"linuxOperatingSystemProfile": {"username": "sshuser", "password": "Password1!"}}}, - {"name": "zookeepernode", "targetInstanceCount": 3, "hardwareProfile": {"vmSize": - "Small"}, "osProfile": {"linuxOperatingSystemProfile": {"username": "sshuser", - "password": "Password1!"}}}, {"name": "edgenode", "targetInstanceCount": 1, - "hardwareProfile": {"vmSize": "Standard_D4_v2"}, "osProfile": {"linuxOperatingSystemProfile": - {"username": "sshuser", "password": "Password1!"}}}]}, "storageProfile": {"storageaccounts": - [{"name": "hdipy.blob.core.windows.net", "isDefault": true, "container": "hdisdk-mlservicese3c14b4", - "key": "uVQj9NZW1d+oD4cRKnWadt/wplM9joGNoLQRlrNl4jXa2fb2gt6VRzSIPYEFvwzoep1j98kNi8x0OmJZ1BlQ0A=="}]}}}''' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '1362' - Content-Type: - - application/json; charset=utf-8 - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e3c14b4/providers/Microsoft.HDInsight/clusters/hdisdk-mlservicese3c14b4?api-version=2018-06-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e3c14b4/providers/Microsoft.HDInsight/clusters/hdisdk-mlservicese3c14b4","name":"hdisdk-mlservicese3c14b4","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"8337c81f-04ce-423f-b426-3630021d532a","tags":{},"properties":{"clusterVersion":"3.6.1000.3","clusterHdpVersion":"","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/mlservices-3.6.1000.3.2006112022.json","kind":"MLServices","componentVersion":{"spark":"2.2"}},"clusterId":"f7e71f62615441329a80b7fc3abac511","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a2_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"edgenode","targetInstanceCount":1,"hardwareProfile":{"vmSize":"standard_d4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"InProgress","clusterState":"Accepted","createdDate":"2020-08-14T07:18:41.503","quotaInfo":{"coresUsed":28},"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-mlservicese3c14b4","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"m_Item1":"default","m_Item2":""}}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e3c14b4/providers/Microsoft.HDInsight/clusters/hdisdk-mlservicese3c14b4/azureasyncoperations/create?api-version=2018-06-01-preview - cache-control: - - no-cache - content-length: - - '1891' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 07:18:43 GMT - etag: - - '"8337c81f-04ce-423f-b426-3630021d532a"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-clusteruri: - - https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/hdipy-e3c14b4/providers/Microsoft.HDInsight/clusters/hdisdk-mlservicese3c14b4?api-version=2018-06-01-preview - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - x-ms-ratelimit-remaining-subscription-writes: - - '1199' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e3c14b4/providers/Microsoft.HDInsight/clusters/hdisdk-mlservicese3c14b4/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 07:19:14 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e3c14b4/providers/Microsoft.HDInsight/clusters/hdisdk-mlservicese3c14b4/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 07:19:44 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e3c14b4/providers/Microsoft.HDInsight/clusters/hdisdk-mlservicese3c14b4/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 07:20:15 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e3c14b4/providers/Microsoft.HDInsight/clusters/hdisdk-mlservicese3c14b4/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 07:20:46 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e3c14b4/providers/Microsoft.HDInsight/clusters/hdisdk-mlservicese3c14b4/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 07:21:16 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e3c14b4/providers/Microsoft.HDInsight/clusters/hdisdk-mlservicese3c14b4/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 07:21:46 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e3c14b4/providers/Microsoft.HDInsight/clusters/hdisdk-mlservicese3c14b4/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"error":{"code":"GatewayTimeout","message":"The gateway did not receive - a response from ''Microsoft.HDInsight'' within the specified time period."}}' - headers: - cache-control: - - no-cache - connection: - - close - content-length: - - '147' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 07:22:37 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - x-content-type-options: - - nosniff - x-ms-failure-cause: - - service - status: - code: 504 - message: Gateway Timeout -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e3c14b4/providers/Microsoft.HDInsight/clusters/hdisdk-mlservicese3c14b4/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 07:22:39 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e3c14b4/providers/Microsoft.HDInsight/clusters/hdisdk-mlservicese3c14b4/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 07:23:10 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e3c14b4/providers/Microsoft.HDInsight/clusters/hdisdk-mlservicese3c14b4/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 07:23:41 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e3c14b4/providers/Microsoft.HDInsight/clusters/hdisdk-mlservicese3c14b4/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 07:24:12 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e3c14b4/providers/Microsoft.HDInsight/clusters/hdisdk-mlservicese3c14b4/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 07:24:42 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e3c14b4/providers/Microsoft.HDInsight/clusters/hdisdk-mlservicese3c14b4/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 07:25:12 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e3c14b4/providers/Microsoft.HDInsight/clusters/hdisdk-mlservicese3c14b4/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 07:25:44 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e3c14b4/providers/Microsoft.HDInsight/clusters/hdisdk-mlservicese3c14b4/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 07:26:14 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e3c14b4/providers/Microsoft.HDInsight/clusters/hdisdk-mlservicese3c14b4/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 07:26:45 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e3c14b4/providers/Microsoft.HDInsight/clusters/hdisdk-mlservicese3c14b4/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 07:27:16 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e3c14b4/providers/Microsoft.HDInsight/clusters/hdisdk-mlservicese3c14b4/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 07:27:47 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e3c14b4/providers/Microsoft.HDInsight/clusters/hdisdk-mlservicese3c14b4/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 07:28:17 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e3c14b4/providers/Microsoft.HDInsight/clusters/hdisdk-mlservicese3c14b4/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 07:28:48 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e3c14b4/providers/Microsoft.HDInsight/clusters/hdisdk-mlservicese3c14b4/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 07:29:19 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e3c14b4/providers/Microsoft.HDInsight/clusters/hdisdk-mlservicese3c14b4/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 07:29:50 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e3c14b4/providers/Microsoft.HDInsight/clusters/hdisdk-mlservicese3c14b4/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 07:30:21 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e3c14b4/providers/Microsoft.HDInsight/clusters/hdisdk-mlservicese3c14b4/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 07:30:51 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e3c14b4/providers/Microsoft.HDInsight/clusters/hdisdk-mlservicese3c14b4/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 07:31:21 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e3c14b4/providers/Microsoft.HDInsight/clusters/hdisdk-mlservicese3c14b4/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 07:31:52 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e3c14b4/providers/Microsoft.HDInsight/clusters/hdisdk-mlservicese3c14b4/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 07:32:23 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e3c14b4/providers/Microsoft.HDInsight/clusters/hdisdk-mlservicese3c14b4/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 07:32:53 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e3c14b4/providers/Microsoft.HDInsight/clusters/hdisdk-mlservicese3c14b4/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 07:33:24 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e3c14b4/providers/Microsoft.HDInsight/clusters/hdisdk-mlservicese3c14b4/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 07:33:55 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e3c14b4/providers/Microsoft.HDInsight/clusters/hdisdk-mlservicese3c14b4/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 07:34:25 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e3c14b4/providers/Microsoft.HDInsight/clusters/hdisdk-mlservicese3c14b4/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 07:34:56 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e3c14b4/providers/Microsoft.HDInsight/clusters/hdisdk-mlservicese3c14b4/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 07:35:26 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e3c14b4/providers/Microsoft.HDInsight/clusters/hdisdk-mlservicese3c14b4/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 07:35:57 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e3c14b4/providers/Microsoft.HDInsight/clusters/hdisdk-mlservicese3c14b4/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 07:36:28 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e3c14b4/providers/Microsoft.HDInsight/clusters/hdisdk-mlservicese3c14b4/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 07:36:59 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e3c14b4/providers/Microsoft.HDInsight/clusters/hdisdk-mlservicese3c14b4/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 07:37:29 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e3c14b4/providers/Microsoft.HDInsight/clusters/hdisdk-mlservicese3c14b4/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 07:38:01 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e3c14b4/providers/Microsoft.HDInsight/clusters/hdisdk-mlservicese3c14b4/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 07:38:31 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e3c14b4/providers/Microsoft.HDInsight/clusters/hdisdk-mlservicese3c14b4/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 07:39:02 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e3c14b4/providers/Microsoft.HDInsight/clusters/hdisdk-mlservicese3c14b4/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 07:39:32 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e3c14b4/providers/Microsoft.HDInsight/clusters/hdisdk-mlservicese3c14b4/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 07:40:03 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e3c14b4/providers/Microsoft.HDInsight/clusters/hdisdk-mlservicese3c14b4/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-cache - content-length: - - '22' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 07:40:33 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e3c14b4/providers/Microsoft.HDInsight/clusters/hdisdk-mlservicese3c14b4?api-version=2018-06-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-e3c14b4/providers/Microsoft.HDInsight/clusters/hdisdk-mlservicese3c14b4","name":"hdisdk-mlservicese3c14b4","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"8337c81f-04ce-423f-b426-3630021d532a","tags":{},"properties":{"clusterVersion":"3.6.1000.3","clusterHdpVersion":"2.6.3.84-1","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/mlservices-3.6.1000.3.2006112022.json","kind":"MLServices","componentVersion":{"spark":"2.2"}},"clusterId":"f7e71f62615441329a80b7fc3abac511","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a2_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"edgenode","targetInstanceCount":1,"hardwareProfile":{"vmSize":"standard_d4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2020-08-14T07:18:41.503","quotaInfo":{"coresUsed":28},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdisdk-mlservicese3c14b4-ssh.azurehdinsight.net","port":22},{"name":"EDGESSH","protocol":"TCP","location":"hdisdk-mlservicese3c14b4-ed-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdisdk-mlservicese3c14b4.azurehdinsight.net","port":443}],"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-mlservicese3c14b4","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"m_Item1":"default","m_Item2":""}}}' - headers: - cache-control: - - no-cache - content-length: - - '2240' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 07:40:34 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -version: 1 diff --git a/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_create_rserver_cluster.yaml b/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_create_rserver_cluster.yaml index 57a11a088a14..13dbe0bfde82 100644 --- a/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_create_rserver_cluster.yaml +++ b/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_create_rserver_cluster.yaml @@ -15,7 +15,7 @@ interactions: "hardwareProfile": {"vmSize": "Standard_D4_v2"}, "osProfile": {"linuxOperatingSystemProfile": {"username": "sshuser", "password": "Password1!"}}}]}, "storageProfile": {"storageaccounts": [{"name": "hdipy.blob.core.windows.net", "isDefault": true, "container": "hdisdk-rserverd20d1380", - "key": "hS8eiA0P9ZPFkdGbCrDeg4r+01LHijOrr7bBui9yixxyCZyRsE3uq7DmvPS8mbbrGH34zOCo7/IIToEymOc/1g=="}]}}}''' + "key": "Gv7LD6Wd8KHuAy5g+y4k8k3aBRaIVPL02PId+OLX7z57JxJ/wAulB65ZFi4M1QsM4widbC/blcgK3d/Og2bBJA=="}]}}}''' headers: Accept: - application/json @@ -28,8 +28,8 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python accept-language: - en-US method: PUT @@ -37,20 +37,20 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d20d1380/providers/Microsoft.HDInsight/clusters/hdisdk-rserverd20d1380","name":"hdisdk-rserverd20d1380","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"a5e18c33-b4ae-4212-9f37-0874a8a40c30","tags":{},"properties":{"clusterVersion":"3.6.1000.0","clusterHdpVersion":"","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/rserver-3.6.1000.0.2006040535.json","kind":"RServer","componentVersion":{"spark":"2.1"}},"clusterId":"9644eef9745a4cc08043de910107dc4c","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a2_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"edgenode","targetInstanceCount":1,"hardwareProfile":{"vmSize":"standard_d4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"InProgress","clusterState":"Accepted","createdDate":"2020-08-14T07:41:33.32","quotaInfo":{"coresUsed":28},"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-rserverd20d1380","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"m_Item1":"default","m_Item2":""}}}' + Central US","etag":"973a09e8-741a-4d76-a458-b9132e306111","tags":{},"properties":{"clusterVersion":"3.6.1000.0","clusterHdpVersion":"","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/rserver-3.6.1000.0.2006040535.json","kind":"RServer","componentVersion":{"spark":"2.1"}},"clusterId":"12e6089f13fe4f8ca5ecd9a220ccdf54","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a1_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"edgenode","targetInstanceCount":1,"hardwareProfile":{"vmSize":"standard_d4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"InProgress","clusterState":"Accepted","createdDate":"2020-10-20T03:24:33.09","quotaInfo":{"coresUsed":28},"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-rserverd20d1380","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"excludedServicesConfigId":"default","excludedServicesList":""},"computeIsolationProperties":{"enableComputeIsolation":false,"hostSku":null}}}' headers: azure-asyncoperation: - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d20d1380/providers/Microsoft.HDInsight/clusters/hdisdk-rserverd20d1380/azureasyncoperations/create?api-version=2018-06-01-preview cache-control: - no-cache content-length: - - '1880' + - '1987' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:41:35 GMT + - Tue, 20 Oct 2020 03:24:35 GMT etag: - - '"a5e18c33-b4ae-4212-9f37-0874a8a40c30"' + - '"973a09e8-741a-4d76-a458-b9132e306111"' expires: - '-1' pragma: @@ -64,7 +64,7 @@ interactions: x-content-type-options: - nosniff x-ms-hdi-clusteruri: - - https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/hdipy-d20d1380/providers/Microsoft.HDInsight/clusters/hdisdk-rserverd20d1380?api-version=2018-06-01-preview + - https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hdipy-d20d1380/providers/Microsoft.HDInsight/clusters/hdisdk-rserverd20d1380?api-version=2018-06-01-preview x-ms-hdi-matched-rule: - ClusterResourcesAndSubResources x-ms-hdi-routed-to: @@ -72,7 +72,7 @@ interactions: x-ms-hdi-served-by: - northcentralus x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1199' status: code: 200 message: OK @@ -86,8 +86,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d20d1380/providers/Microsoft.HDInsight/clusters/hdisdk-rserverd20d1380/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -101,7 +101,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:42:05 GMT + - Tue, 20 Oct 2020 03:25:06 GMT expires: - '-1' pragma: @@ -133,8 +133,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d20d1380/providers/Microsoft.HDInsight/clusters/hdisdk-rserverd20d1380/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -148,7 +148,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:42:36 GMT + - Tue, 20 Oct 2020 03:25:38 GMT expires: - '-1' pragma: @@ -180,8 +180,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d20d1380/providers/Microsoft.HDInsight/clusters/hdisdk-rserverd20d1380/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -195,7 +195,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:43:07 GMT + - Tue, 20 Oct 2020 03:26:08 GMT expires: - '-1' pragma: @@ -227,8 +227,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d20d1380/providers/Microsoft.HDInsight/clusters/hdisdk-rserverd20d1380/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -242,7 +242,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:43:37 GMT + - Tue, 20 Oct 2020 03:26:39 GMT expires: - '-1' pragma: @@ -274,8 +274,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d20d1380/providers/Microsoft.HDInsight/clusters/hdisdk-rserverd20d1380/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -289,7 +289,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:44:08 GMT + - Tue, 20 Oct 2020 03:27:09 GMT expires: - '-1' pragma: @@ -321,8 +321,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d20d1380/providers/Microsoft.HDInsight/clusters/hdisdk-rserverd20d1380/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -336,7 +336,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:44:38 GMT + - Tue, 20 Oct 2020 03:27:39 GMT expires: - '-1' pragma: @@ -368,8 +368,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d20d1380/providers/Microsoft.HDInsight/clusters/hdisdk-rserverd20d1380/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -383,7 +383,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:45:09 GMT + - Tue, 20 Oct 2020 03:28:10 GMT expires: - '-1' pragma: @@ -415,8 +415,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d20d1380/providers/Microsoft.HDInsight/clusters/hdisdk-rserverd20d1380/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -430,7 +430,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:45:39 GMT + - Tue, 20 Oct 2020 03:28:40 GMT expires: - '-1' pragma: @@ -462,8 +462,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d20d1380/providers/Microsoft.HDInsight/clusters/hdisdk-rserverd20d1380/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -477,7 +477,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:46:10 GMT + - Tue, 20 Oct 2020 03:29:12 GMT expires: - '-1' pragma: @@ -509,8 +509,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d20d1380/providers/Microsoft.HDInsight/clusters/hdisdk-rserverd20d1380/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -524,7 +524,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:46:41 GMT + - Tue, 20 Oct 2020 03:29:42 GMT expires: - '-1' pragma: @@ -556,8 +556,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d20d1380/providers/Microsoft.HDInsight/clusters/hdisdk-rserverd20d1380/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -571,7 +571,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:47:11 GMT + - Tue, 20 Oct 2020 03:30:12 GMT expires: - '-1' pragma: @@ -603,8 +603,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d20d1380/providers/Microsoft.HDInsight/clusters/hdisdk-rserverd20d1380/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -618,7 +618,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:47:41 GMT + - Tue, 20 Oct 2020 03:30:43 GMT expires: - '-1' pragma: @@ -650,8 +650,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d20d1380/providers/Microsoft.HDInsight/clusters/hdisdk-rserverd20d1380/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -665,7 +665,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:48:13 GMT + - Tue, 20 Oct 2020 03:31:14 GMT expires: - '-1' pragma: @@ -697,8 +697,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d20d1380/providers/Microsoft.HDInsight/clusters/hdisdk-rserverd20d1380/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -712,7 +712,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:48:43 GMT + - Tue, 20 Oct 2020 03:31:45 GMT expires: - '-1' pragma: @@ -744,8 +744,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d20d1380/providers/Microsoft.HDInsight/clusters/hdisdk-rserverd20d1380/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -759,7 +759,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:49:15 GMT + - Tue, 20 Oct 2020 03:32:16 GMT expires: - '-1' pragma: @@ -791,8 +791,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d20d1380/providers/Microsoft.HDInsight/clusters/hdisdk-rserverd20d1380/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -806,7 +806,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:49:45 GMT + - Tue, 20 Oct 2020 03:32:46 GMT expires: - '-1' pragma: @@ -838,8 +838,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d20d1380/providers/Microsoft.HDInsight/clusters/hdisdk-rserverd20d1380/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -853,7 +853,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:50:16 GMT + - Tue, 20 Oct 2020 03:33:17 GMT expires: - '-1' pragma: @@ -885,8 +885,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d20d1380/providers/Microsoft.HDInsight/clusters/hdisdk-rserverd20d1380/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -900,7 +900,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:50:47 GMT + - Tue, 20 Oct 2020 03:33:47 GMT expires: - '-1' pragma: @@ -932,8 +932,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d20d1380/providers/Microsoft.HDInsight/clusters/hdisdk-rserverd20d1380/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -947,7 +947,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:51:17 GMT + - Tue, 20 Oct 2020 03:34:18 GMT expires: - '-1' pragma: @@ -979,8 +979,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d20d1380/providers/Microsoft.HDInsight/clusters/hdisdk-rserverd20d1380/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -994,7 +994,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:51:47 GMT + - Tue, 20 Oct 2020 03:34:48 GMT expires: - '-1' pragma: @@ -1026,8 +1026,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d20d1380/providers/Microsoft.HDInsight/clusters/hdisdk-rserverd20d1380/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1041,7 +1041,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:52:19 GMT + - Tue, 20 Oct 2020 03:35:19 GMT expires: - '-1' pragma: @@ -1073,8 +1073,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d20d1380/providers/Microsoft.HDInsight/clusters/hdisdk-rserverd20d1380/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1088,7 +1088,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:52:49 GMT + - Tue, 20 Oct 2020 03:35:50 GMT expires: - '-1' pragma: @@ -1120,8 +1120,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d20d1380/providers/Microsoft.HDInsight/clusters/hdisdk-rserverd20d1380/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1135,7 +1135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:53:20 GMT + - Tue, 20 Oct 2020 03:36:20 GMT expires: - '-1' pragma: @@ -1167,8 +1167,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d20d1380/providers/Microsoft.HDInsight/clusters/hdisdk-rserverd20d1380/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1182,7 +1182,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:53:50 GMT + - Tue, 20 Oct 2020 03:36:51 GMT expires: - '-1' pragma: @@ -1214,8 +1214,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d20d1380/providers/Microsoft.HDInsight/clusters/hdisdk-rserverd20d1380/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1229,7 +1229,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:54:22 GMT + - Tue, 20 Oct 2020 03:37:22 GMT expires: - '-1' pragma: @@ -1261,8 +1261,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d20d1380/providers/Microsoft.HDInsight/clusters/hdisdk-rserverd20d1380/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1276,7 +1276,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:54:53 GMT + - Tue, 20 Oct 2020 03:37:53 GMT expires: - '-1' pragma: @@ -1308,8 +1308,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d20d1380/providers/Microsoft.HDInsight/clusters/hdisdk-rserverd20d1380/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1323,7 +1323,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:55:23 GMT + - Tue, 20 Oct 2020 03:38:23 GMT expires: - '-1' pragma: @@ -1355,8 +1355,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d20d1380/providers/Microsoft.HDInsight/clusters/hdisdk-rserverd20d1380/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1370,7 +1370,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:55:53 GMT + - Tue, 20 Oct 2020 03:38:54 GMT expires: - '-1' pragma: @@ -1402,8 +1402,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d20d1380/providers/Microsoft.HDInsight/clusters/hdisdk-rserverd20d1380/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1417,7 +1417,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:56:24 GMT + - Tue, 20 Oct 2020 03:39:25 GMT expires: - '-1' pragma: @@ -1449,8 +1449,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d20d1380/providers/Microsoft.HDInsight/clusters/hdisdk-rserverd20d1380/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1464,7 +1464,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:56:55 GMT + - Tue, 20 Oct 2020 03:39:55 GMT expires: - '-1' pragma: @@ -1496,8 +1496,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d20d1380/providers/Microsoft.HDInsight/clusters/hdisdk-rserverd20d1380/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1511,7 +1511,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:57:25 GMT + - Tue, 20 Oct 2020 03:40:25 GMT expires: - '-1' pragma: @@ -1543,8 +1543,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d20d1380/providers/Microsoft.HDInsight/clusters/hdisdk-rserverd20d1380/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1558,7 +1558,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:57:56 GMT + - Tue, 20 Oct 2020 03:40:56 GMT expires: - '-1' pragma: @@ -1590,8 +1590,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d20d1380/providers/Microsoft.HDInsight/clusters/hdisdk-rserverd20d1380/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1605,7 +1605,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:58:26 GMT + - Tue, 20 Oct 2020 03:41:26 GMT expires: - '-1' pragma: @@ -1637,8 +1637,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d20d1380/providers/Microsoft.HDInsight/clusters/hdisdk-rserverd20d1380/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1652,7 +1652,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:58:58 GMT + - Tue, 20 Oct 2020 03:41:57 GMT expires: - '-1' pragma: @@ -1684,8 +1684,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d20d1380/providers/Microsoft.HDInsight/clusters/hdisdk-rserverd20d1380/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1699,7 +1699,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:59:29 GMT + - Tue, 20 Oct 2020 03:42:28 GMT expires: - '-1' pragma: @@ -1731,8 +1731,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d20d1380/providers/Microsoft.HDInsight/clusters/hdisdk-rserverd20d1380/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1746,7 +1746,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 07:59:59 GMT + - Tue, 20 Oct 2020 03:42:58 GMT expires: - '-1' pragma: @@ -1778,8 +1778,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d20d1380/providers/Microsoft.HDInsight/clusters/hdisdk-rserverd20d1380/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1793,7 +1793,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:00:30 GMT + - Tue, 20 Oct 2020 03:43:30 GMT expires: - '-1' pragma: @@ -1825,8 +1825,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d20d1380/providers/Microsoft.HDInsight/clusters/hdisdk-rserverd20d1380/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1840,7 +1840,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:01:00 GMT + - Tue, 20 Oct 2020 03:44:00 GMT expires: - '-1' pragma: @@ -1872,8 +1872,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d20d1380/providers/Microsoft.HDInsight/clusters/hdisdk-rserverd20d1380/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1887,7 +1887,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:01:32 GMT + - Tue, 20 Oct 2020 03:44:31 GMT expires: - '-1' pragma: @@ -1919,8 +1919,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d20d1380/providers/Microsoft.HDInsight/clusters/hdisdk-rserverd20d1380/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1934,7 +1934,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:02:02 GMT + - Tue, 20 Oct 2020 03:45:01 GMT expires: - '-1' pragma: @@ -1966,8 +1966,337 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d20d1380/providers/Microsoft.HDInsight/clusters/hdisdk-rserverd20d1380/azureasyncoperations/create?api-version=2018-06-01-preview + response: + body: + string: '{"status":"InProgress"}' + headers: + cache-control: + - no-cache + content-length: + - '23' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 20 Oct 2020 03:45:32 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-hdi-matched-rule: + - ClusterResourcesAndSubResources + x-ms-hdi-routed-to: + - RegionalRp + x-ms-hdi-served-by: + - northcentralus + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d20d1380/providers/Microsoft.HDInsight/clusters/hdisdk-rserverd20d1380/azureasyncoperations/create?api-version=2018-06-01-preview + response: + body: + string: '{"status":"InProgress"}' + headers: + cache-control: + - no-cache + content-length: + - '23' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 20 Oct 2020 03:46:03 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-hdi-matched-rule: + - ClusterResourcesAndSubResources + x-ms-hdi-routed-to: + - RegionalRp + x-ms-hdi-served-by: + - northcentralus + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d20d1380/providers/Microsoft.HDInsight/clusters/hdisdk-rserverd20d1380/azureasyncoperations/create?api-version=2018-06-01-preview + response: + body: + string: '{"status":"InProgress"}' + headers: + cache-control: + - no-cache + content-length: + - '23' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 20 Oct 2020 03:46:33 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-hdi-matched-rule: + - ClusterResourcesAndSubResources + x-ms-hdi-routed-to: + - RegionalRp + x-ms-hdi-served-by: + - northcentralus + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d20d1380/providers/Microsoft.HDInsight/clusters/hdisdk-rserverd20d1380/azureasyncoperations/create?api-version=2018-06-01-preview + response: + body: + string: '{"status":"InProgress"}' + headers: + cache-control: + - no-cache + content-length: + - '23' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 20 Oct 2020 03:47:04 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-hdi-matched-rule: + - ClusterResourcesAndSubResources + x-ms-hdi-routed-to: + - RegionalRp + x-ms-hdi-served-by: + - northcentralus + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d20d1380/providers/Microsoft.HDInsight/clusters/hdisdk-rserverd20d1380/azureasyncoperations/create?api-version=2018-06-01-preview + response: + body: + string: '{"status":"InProgress"}' + headers: + cache-control: + - no-cache + content-length: + - '23' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 20 Oct 2020 03:47:34 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-hdi-matched-rule: + - ClusterResourcesAndSubResources + x-ms-hdi-routed-to: + - RegionalRp + x-ms-hdi-served-by: + - northcentralus + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d20d1380/providers/Microsoft.HDInsight/clusters/hdisdk-rserverd20d1380/azureasyncoperations/create?api-version=2018-06-01-preview + response: + body: + string: '{"status":"InProgress"}' + headers: + cache-control: + - no-cache + content-length: + - '23' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 20 Oct 2020 03:48:05 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-hdi-matched-rule: + - ClusterResourcesAndSubResources + x-ms-hdi-routed-to: + - RegionalRp + x-ms-hdi-served-by: + - northcentralus + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python + method: GET + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d20d1380/providers/Microsoft.HDInsight/clusters/hdisdk-rserverd20d1380/azureasyncoperations/create?api-version=2018-06-01-preview + response: + body: + string: '{"status":"InProgress"}' + headers: + cache-control: + - no-cache + content-length: + - '23' + content-type: + - application/json; charset=utf-8 + date: + - Tue, 20 Oct 2020 03:48:36 GMT + expires: + - '-1' + pragma: + - no-cache + strict-transport-security: + - max-age=31536000; includeSubDomains + transfer-encoding: + - chunked + vary: + - Accept-Encoding + x-content-type-options: + - nosniff + x-ms-hdi-matched-rule: + - ClusterResourcesAndSubResources + x-ms-hdi-routed-to: + - RegionalRp + x-ms-hdi-served-by: + - northcentralus + status: + code: 200 + message: OK +- request: + body: null + headers: + Accept: + - application/json + Accept-Encoding: + - gzip, deflate + Connection: + - keep-alive + User-Agent: + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d20d1380/providers/Microsoft.HDInsight/clusters/hdisdk-rserverd20d1380/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1981,7 +2310,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:02:32 GMT + - Tue, 20 Oct 2020 03:49:06 GMT expires: - '-1' pragma: @@ -2013,23 +2342,23 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d20d1380/providers/Microsoft.HDInsight/clusters/hdisdk-rserverd20d1380?api-version=2018-06-01-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d20d1380/providers/Microsoft.HDInsight/clusters/hdisdk-rserverd20d1380","name":"hdisdk-rserverd20d1380","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"a5e18c33-b4ae-4212-9f37-0874a8a40c30","tags":{},"properties":{"clusterVersion":"3.6.1000.0","clusterHdpVersion":"2.6.2.38-1","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/rserver-3.6.1000.0.2006040535.json","kind":"RServer","componentVersion":{"spark":"2.1"}},"clusterId":"9644eef9745a4cc08043de910107dc4c","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a2_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"edgenode","targetInstanceCount":1,"hardwareProfile":{"vmSize":"standard_d4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2020-08-14T07:41:33.32","quotaInfo":{"coresUsed":28},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdisdk-rserverd20d1380-ssh.azurehdinsight.net","port":22},{"name":"EDGESSH","protocol":"TCP","location":"hdisdk-rserverd20d1380-ed-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdisdk-rserverd20d1380.azurehdinsight.net","port":443}],"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-rserverd20d1380","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"m_Item1":"default","m_Item2":""}}}' + Central US","etag":"973a09e8-741a-4d76-a458-b9132e306111","tags":{},"properties":{"clusterVersion":"3.6.1000.0","clusterHdpVersion":"2.6.2.38-1","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/rserver-3.6.1000.0.2006040535.json","kind":"RServer","componentVersion":{"spark":"2.1"}},"clusterId":"12e6089f13fe4f8ca5ecd9a220ccdf54","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a1_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"edgenode","targetInstanceCount":1,"hardwareProfile":{"vmSize":"standard_d4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2020-10-20T03:24:33.09","quotaInfo":{"coresUsed":28},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdisdk-rserverd20d1380-ssh.azurehdinsight.net","port":22},{"name":"EDGESSH","protocol":"TCP","location":"hdisdk-rserverd20d1380-ed-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdisdk-rserverd20d1380.azurehdinsight.net","port":443}],"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-rserverd20d1380","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"excludedServicesConfigId":"default","excludedServicesList":""},"computeIsolationProperties":{"enableComputeIsolation":false,"hostSku":null}}}' headers: cache-control: - no-cache content-length: - - '2223' + - '2330' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:02:33 GMT + - Tue, 20 Oct 2020 03:49:07 GMT expires: - '-1' pragma: diff --git a/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_create_with_adls_gen2.yaml b/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_create_with_adls_gen2.yaml index e637ea58148d..55d8c3de4190 100644 --- a/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_create_with_adls_gen2.yaml +++ b/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_create_with_adls_gen2.yaml @@ -13,9 +13,9 @@ interactions: "Small"}, "osProfile": {"linuxOperatingSystemProfile": {"username": "sshuser", "password": "Password1!"}}}]}, "storageProfile": {"storageaccounts": [{"name": "hdipy.dfs.core.windows.net", "isDefault": true, "fileSystem": "hdisdk-adlgen2bcf612a0", - "key": "QabEosvPrTDOZt+/YnpD5b9gij1Fyk0tyjSu8mzT3paDt7bmxRaHl6Zd9kGJzzc+la6RQy9DiZf1LkFYld/8rg=="}, + "key": "pBuBv62o5+GOhWEwHTW7ZTVAIB1y2vRxD0bQQwKvuFypJtNVj7UlrWSpXg5Agz2LcARfbXtvnG0ZzcwNMt54lg=="}, {"name": "hdipy2.blob.core.windows.net", "isDefault": false, "container": "hdisdk-adlgen2bcf612a0", - "key": "FBsSMEeQ4IMKuca5B3BXGiXbP+/0ktl/8B+t9nDapbqfKxcbbNPVbzfOpO7f31XCtdh3l2bZvlPkTwf7vkashQ=="}]}}}\''''' + "key": "q1+zFlU0xrqh6mEsma+W25MpVJSB26wSVKXDZaz6egwd/M5jWKE/g1624SQuwJQE+XvsLTNCyDNvfBXHpZUlyw=="}]}}}\''''' headers: Accept: - application/json @@ -28,8 +28,8 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python accept-language: - en-US method: PUT @@ -37,20 +37,20 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-bcf612a0/providers/Microsoft.HDInsight/clusters/hdisdk-adlgen2bcf612a0","name":"hdisdk-adlgen2bcf612a0","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"9990f915-4681-4648-9bc9-433e92a5084c","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2007210011.json","kind":"hadoop","componentVersion":{"hadoop":"2.7"}},"clusterId":"32021ff0b2b645d9ba4d34856578dcf5","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a2_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"InProgress","clusterState":"Accepted","createdDate":"2020-08-14T08:04:07.697","quotaInfo":{"coresUsed":20},"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.dfs.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":"hdisdk-adlgen2bcf612a0","container":null,"saskey":null,"isDefault":true,"fileshare":null},{"name":"hdipy2.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-adlgen2bcf612a0","saskey":null,"isDefault":false,"fileshare":null}]},"excludedServicesConfig":{"m_Item1":"default","m_Item2":""}}}' + Central US","etag":"71047022-fe92-488d-b583-9157c2233236","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2009301626.json","kind":"hadoop","componentVersion":{"hadoop":"2.7"}},"clusterId":"4728dbf66c0d4da6b93c47d83911b114","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a1_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"InProgress","clusterState":"Accepted","createdDate":"2020-10-20T03:50:40.117","quotaInfo":{"coresUsed":20},"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.dfs.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":"hdisdk-adlgen2bcf612a0","container":null,"saskey":null,"isDefault":true,"fileshare":null},{"name":"hdipy2.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-adlgen2bcf612a0","saskey":null,"isDefault":false,"fileshare":null}]},"excludedServicesConfig":{"excludedServicesConfigId":"default","excludedServicesList":""},"computeIsolationProperties":{"enableComputeIsolation":false,"hostSku":null}}}' headers: azure-asyncoperation: - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-bcf612a0/providers/Microsoft.HDInsight/clusters/hdisdk-adlgen2bcf612a0/azureasyncoperations/create?api-version=2018-06-01-preview cache-control: - no-cache content-length: - - '1901' + - '2008' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:04:08 GMT + - Tue, 20 Oct 2020 03:50:41 GMT etag: - - '"9990f915-4681-4648-9bc9-433e92a5084c"' + - '"71047022-fe92-488d-b583-9157c2233236"' expires: - '-1' pragma: @@ -64,7 +64,7 @@ interactions: x-content-type-options: - nosniff x-ms-hdi-clusteruri: - - https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/hdipy-bcf612a0/providers/Microsoft.HDInsight/clusters/hdisdk-adlgen2bcf612a0?api-version=2018-06-01-preview + - https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hdipy-bcf612a0/providers/Microsoft.HDInsight/clusters/hdisdk-adlgen2bcf612a0?api-version=2018-06-01-preview x-ms-hdi-matched-rule: - ClusterResourcesAndSubResources x-ms-hdi-routed-to: @@ -72,7 +72,7 @@ interactions: x-ms-hdi-served-by: - northcentralus x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1198' status: code: 200 message: OK @@ -86,8 +86,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-bcf612a0/providers/Microsoft.HDInsight/clusters/hdisdk-adlgen2bcf612a0/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -101,7 +101,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:04:41 GMT + - Tue, 20 Oct 2020 03:51:13 GMT expires: - '-1' pragma: @@ -133,8 +133,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-bcf612a0/providers/Microsoft.HDInsight/clusters/hdisdk-adlgen2bcf612a0/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -148,7 +148,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:05:11 GMT + - Tue, 20 Oct 2020 03:51:43 GMT expires: - '-1' pragma: @@ -180,8 +180,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-bcf612a0/providers/Microsoft.HDInsight/clusters/hdisdk-adlgen2bcf612a0/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -195,7 +195,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:05:42 GMT + - Tue, 20 Oct 2020 03:52:14 GMT expires: - '-1' pragma: @@ -227,8 +227,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-bcf612a0/providers/Microsoft.HDInsight/clusters/hdisdk-adlgen2bcf612a0/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -242,7 +242,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:06:13 GMT + - Tue, 20 Oct 2020 03:52:45 GMT expires: - '-1' pragma: @@ -274,8 +274,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-bcf612a0/providers/Microsoft.HDInsight/clusters/hdisdk-adlgen2bcf612a0/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -289,7 +289,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:06:43 GMT + - Tue, 20 Oct 2020 03:53:16 GMT expires: - '-1' pragma: @@ -321,8 +321,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-bcf612a0/providers/Microsoft.HDInsight/clusters/hdisdk-adlgen2bcf612a0/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -336,7 +336,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:07:14 GMT + - Tue, 20 Oct 2020 03:53:46 GMT expires: - '-1' pragma: @@ -368,8 +368,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-bcf612a0/providers/Microsoft.HDInsight/clusters/hdisdk-adlgen2bcf612a0/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -383,7 +383,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:07:44 GMT + - Tue, 20 Oct 2020 03:54:16 GMT expires: - '-1' pragma: @@ -415,8 +415,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-bcf612a0/providers/Microsoft.HDInsight/clusters/hdisdk-adlgen2bcf612a0/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -430,7 +430,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:08:15 GMT + - Tue, 20 Oct 2020 03:54:47 GMT expires: - '-1' pragma: @@ -462,8 +462,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-bcf612a0/providers/Microsoft.HDInsight/clusters/hdisdk-adlgen2bcf612a0/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -477,7 +477,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:08:46 GMT + - Tue, 20 Oct 2020 03:55:17 GMT expires: - '-1' pragma: @@ -509,8 +509,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-bcf612a0/providers/Microsoft.HDInsight/clusters/hdisdk-adlgen2bcf612a0/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -524,7 +524,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:09:16 GMT + - Tue, 20 Oct 2020 03:55:48 GMT expires: - '-1' pragma: @@ -556,8 +556,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-bcf612a0/providers/Microsoft.HDInsight/clusters/hdisdk-adlgen2bcf612a0/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -571,7 +571,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:09:47 GMT + - Tue, 20 Oct 2020 03:56:19 GMT expires: - '-1' pragma: @@ -603,8 +603,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-bcf612a0/providers/Microsoft.HDInsight/clusters/hdisdk-adlgen2bcf612a0/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -618,7 +618,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:10:18 GMT + - Tue, 20 Oct 2020 03:56:51 GMT expires: - '-1' pragma: @@ -650,8 +650,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-bcf612a0/providers/Microsoft.HDInsight/clusters/hdisdk-adlgen2bcf612a0/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -665,7 +665,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:10:49 GMT + - Tue, 20 Oct 2020 03:57:21 GMT expires: - '-1' pragma: @@ -697,8 +697,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-bcf612a0/providers/Microsoft.HDInsight/clusters/hdisdk-adlgen2bcf612a0/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -712,7 +712,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:11:19 GMT + - Tue, 20 Oct 2020 03:57:51 GMT expires: - '-1' pragma: @@ -744,8 +744,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-bcf612a0/providers/Microsoft.HDInsight/clusters/hdisdk-adlgen2bcf612a0/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -759,7 +759,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:11:50 GMT + - Tue, 20 Oct 2020 03:58:22 GMT expires: - '-1' pragma: @@ -791,8 +791,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-bcf612a0/providers/Microsoft.HDInsight/clusters/hdisdk-adlgen2bcf612a0/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -806,7 +806,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:12:20 GMT + - Tue, 20 Oct 2020 03:58:53 GMT expires: - '-1' pragma: @@ -838,8 +838,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-bcf612a0/providers/Microsoft.HDInsight/clusters/hdisdk-adlgen2bcf612a0/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -853,7 +853,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:12:51 GMT + - Tue, 20 Oct 2020 03:59:23 GMT expires: - '-1' pragma: @@ -885,8 +885,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-bcf612a0/providers/Microsoft.HDInsight/clusters/hdisdk-adlgen2bcf612a0/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -900,7 +900,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:13:22 GMT + - Tue, 20 Oct 2020 03:59:54 GMT expires: - '-1' pragma: @@ -932,8 +932,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-bcf612a0/providers/Microsoft.HDInsight/clusters/hdisdk-adlgen2bcf612a0/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -947,7 +947,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:13:52 GMT + - Tue, 20 Oct 2020 04:00:24 GMT expires: - '-1' pragma: @@ -979,8 +979,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-bcf612a0/providers/Microsoft.HDInsight/clusters/hdisdk-adlgen2bcf612a0/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -994,7 +994,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:14:23 GMT + - Tue, 20 Oct 2020 04:00:54 GMT expires: - '-1' pragma: @@ -1026,8 +1026,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-bcf612a0/providers/Microsoft.HDInsight/clusters/hdisdk-adlgen2bcf612a0/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1041,7 +1041,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:14:55 GMT + - Tue, 20 Oct 2020 04:01:26 GMT expires: - '-1' pragma: @@ -1073,8 +1073,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-bcf612a0/providers/Microsoft.HDInsight/clusters/hdisdk-adlgen2bcf612a0/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1088,7 +1088,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:15:25 GMT + - Tue, 20 Oct 2020 04:01:56 GMT expires: - '-1' pragma: @@ -1120,8 +1120,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-bcf612a0/providers/Microsoft.HDInsight/clusters/hdisdk-adlgen2bcf612a0/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1135,7 +1135,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:15:55 GMT + - Tue, 20 Oct 2020 04:02:28 GMT expires: - '-1' pragma: @@ -1167,8 +1167,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-bcf612a0/providers/Microsoft.HDInsight/clusters/hdisdk-adlgen2bcf612a0/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1182,7 +1182,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:16:27 GMT + - Tue, 20 Oct 2020 04:02:58 GMT expires: - '-1' pragma: @@ -1214,8 +1214,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-bcf612a0/providers/Microsoft.HDInsight/clusters/hdisdk-adlgen2bcf612a0/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1229,7 +1229,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:16:57 GMT + - Tue, 20 Oct 2020 04:03:28 GMT expires: - '-1' pragma: @@ -1261,8 +1261,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-bcf612a0/providers/Microsoft.HDInsight/clusters/hdisdk-adlgen2bcf612a0/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1276,7 +1276,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:17:27 GMT + - Tue, 20 Oct 2020 04:04:00 GMT expires: - '-1' pragma: @@ -1308,243 +1308,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-bcf612a0/providers/Microsoft.HDInsight/clusters/hdisdk-adlgen2bcf612a0/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 08:17:58 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-bcf612a0/providers/Microsoft.HDInsight/clusters/hdisdk-adlgen2bcf612a0/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 08:18:29 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-bcf612a0/providers/Microsoft.HDInsight/clusters/hdisdk-adlgen2bcf612a0/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 08:19:00 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-bcf612a0/providers/Microsoft.HDInsight/clusters/hdisdk-adlgen2bcf612a0/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 08:19:30 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-bcf612a0/providers/Microsoft.HDInsight/clusters/hdisdk-adlgen2bcf612a0/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 08:20:01 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-bcf612a0/providers/Microsoft.HDInsight/clusters/hdisdk-adlgen2bcf612a0/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1558,7 +1323,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:20:32 GMT + - Tue, 20 Oct 2020 04:04:30 GMT expires: - '-1' pragma: @@ -1590,23 +1355,23 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-bcf612a0/providers/Microsoft.HDInsight/clusters/hdisdk-adlgen2bcf612a0?api-version=2018-06-01-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-bcf612a0/providers/Microsoft.HDInsight/clusters/hdisdk-adlgen2bcf612a0","name":"hdisdk-adlgen2bcf612a0","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"9990f915-4681-4648-9bc9-433e92a5084c","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3027-5","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2007210011.json","kind":"hadoop","componentVersion":{"hadoop":"2.7"}},"clusterId":"32021ff0b2b645d9ba4d34856578dcf5","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a2_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2020-08-14T08:04:07.697","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdisdk-adlgen2bcf612a0-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdisdk-adlgen2bcf612a0.azurehdinsight.net","port":443}],"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.dfs.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":"hdisdk-adlgen2bcf612a0","container":null,"saskey":null,"isDefault":true,"fileshare":null},{"name":"hdipy2.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-adlgen2bcf612a0","saskey":null,"isDefault":false,"fileshare":null}]},"excludedServicesConfig":{"m_Item1":"default","m_Item2":""}}}' + Central US","etag":"71047022-fe92-488d-b583-9157c2233236","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3026-7","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2009301626.json","kind":"hadoop","componentVersion":{"hadoop":"2.7"}},"clusterId":"4728dbf66c0d4da6b93c47d83911b114","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a1_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2020-10-20T03:50:40.117","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdisdk-adlgen2bcf612a0-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdisdk-adlgen2bcf612a0.azurehdinsight.net","port":443}],"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.dfs.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":"hdisdk-adlgen2bcf612a0","container":null,"saskey":null,"isDefault":true,"fileshare":null},{"name":"hdipy2.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-adlgen2bcf612a0","saskey":null,"isDefault":false,"fileshare":null}]},"excludedServicesConfig":{"excludedServicesConfigId":"default","excludedServicesList":""},"computeIsolationProperties":{"enableComputeIsolation":false,"hostSku":null}}}' headers: cache-control: - no-cache content-length: - - '2138' + - '2245' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:20:33 GMT + - Tue, 20 Oct 2020 04:04:31 GMT expires: - '-1' pragma: diff --git a/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_create_with_empty_extended_parameters.yaml b/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_create_with_empty_extended_parameters.yaml index 682726c89024..7eacd44f5fdb 100644 --- a/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_create_with_empty_extended_parameters.yaml +++ b/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_create_with_empty_extended_parameters.yaml @@ -13,8 +13,8 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python accept-language: - en-US method: PUT @@ -31,7 +31,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:21:33 GMT + - Tue, 20 Oct 2020 04:05:31 GMT expires: - '-1' pragma: diff --git a/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_gateway_settings.yaml b/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_gateway_settings.yaml index c02c71b151fa..3ed19404b0fc 100644 --- a/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_gateway_settings.yaml +++ b/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_gateway_settings.yaml @@ -13,7 +13,7 @@ interactions: "Small"}, "osProfile": {"linuxOperatingSystemProfile": {"username": "sshuser", "password": "Password1!"}}}]}, "storageProfile": {"storageaccounts": [{"name": "hdipy.blob.core.windows.net", "isDefault": true, "container": "hdisdk-http64501105", - "key": "BfBpuevF9kMTrM8OUYWLLrqfW0nqhI4R9HilD+SwrFWBaM/eCAerXRZSJpZrjHQj3fdc5Yutcua9TYqZIIcfSA=="}]}}}''' + "key": "QsV6xd1Ux2h0DCDcTchQLibYsae+/d4Z2TSpXh0qrYIJh/YqpHD41K6zm6ORkkYktvSbdE0lvpbf9lDRc0HY4A=="}]}}}''' headers: Accept: - application/json @@ -26,8 +26,8 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python accept-language: - en-US method: PUT @@ -35,20 +35,20 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-64501105/providers/Microsoft.HDInsight/clusters/hdisdk-http64501105","name":"hdisdk-http64501105","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"24cfcc37-68b0-4f88-8406-2a20145197b9","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2007210011.json","kind":"hadoop","componentVersion":{"hadoop":"2.7"}},"clusterId":"925414cef09c4a168862e8f032639916","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a2_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"InProgress","clusterState":"Accepted","createdDate":"2020-08-14T08:22:22.083","quotaInfo":{"coresUsed":20},"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-http64501105","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"m_Item1":"default","m_Item2":""}}}' + Central US","etag":"2ab5082d-dd03-426b-9147-201f0298728f","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2009301626.json","kind":"hadoop","componentVersion":{"hadoop":"2.7"}},"clusterId":"e17f024e9b674cf18e167f0a0088b3f1","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a1_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"InProgress","clusterState":"Accepted","createdDate":"2020-10-20T04:06:27.753","quotaInfo":{"coresUsed":20},"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-http64501105","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"excludedServicesConfigId":"default","excludedServicesList":""},"computeIsolationProperties":{"enableComputeIsolation":false,"hostSku":null}}}' headers: azure-asyncoperation: - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-64501105/providers/Microsoft.HDInsight/clusters/hdisdk-http64501105/azureasyncoperations/create?api-version=2018-06-01-preview cache-control: - no-cache content-length: - - '1691' + - '1798' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:22:23 GMT + - Tue, 20 Oct 2020 04:06:29 GMT etag: - - '"24cfcc37-68b0-4f88-8406-2a20145197b9"' + - '"2ab5082d-dd03-426b-9147-201f0298728f"' expires: - '-1' pragma: @@ -62,7 +62,7 @@ interactions: x-content-type-options: - nosniff x-ms-hdi-clusteruri: - - https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/hdipy-64501105/providers/Microsoft.HDInsight/clusters/hdisdk-http64501105?api-version=2018-06-01-preview + - https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hdipy-64501105/providers/Microsoft.HDInsight/clusters/hdisdk-http64501105?api-version=2018-06-01-preview x-ms-hdi-matched-rule: - ClusterResourcesAndSubResources x-ms-hdi-routed-to: @@ -70,383 +70,7 @@ interactions: x-ms-hdi-served-by: - northcentralus x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-64501105/providers/Microsoft.HDInsight/clusters/hdisdk-http64501105/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 08:22:54 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-64501105/providers/Microsoft.HDInsight/clusters/hdisdk-http64501105/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 08:23:25 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-64501105/providers/Microsoft.HDInsight/clusters/hdisdk-http64501105/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 08:23:56 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-64501105/providers/Microsoft.HDInsight/clusters/hdisdk-http64501105/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 08:24:27 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-64501105/providers/Microsoft.HDInsight/clusters/hdisdk-http64501105/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 08:24:57 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-64501105/providers/Microsoft.HDInsight/clusters/hdisdk-http64501105/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 08:25:27 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-64501105/providers/Microsoft.HDInsight/clusters/hdisdk-http64501105/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 08:25:59 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-64501105/providers/Microsoft.HDInsight/clusters/hdisdk-http64501105/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 08:26:29 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus + - '1199' status: code: 200 message: OK @@ -460,8 +84,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-64501105/providers/Microsoft.HDInsight/clusters/hdisdk-http64501105/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -475,7 +99,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:27:00 GMT + - Tue, 20 Oct 2020 04:07:01 GMT expires: - '-1' pragma: @@ -507,8 +131,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-64501105/providers/Microsoft.HDInsight/clusters/hdisdk-http64501105/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -522,7 +146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:27:30 GMT + - Tue, 20 Oct 2020 04:07:31 GMT expires: - '-1' pragma: @@ -554,8 +178,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-64501105/providers/Microsoft.HDInsight/clusters/hdisdk-http64501105/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -569,7 +193,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:28:00 GMT + - Tue, 20 Oct 2020 04:08:02 GMT expires: - '-1' pragma: @@ -601,8 +225,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-64501105/providers/Microsoft.HDInsight/clusters/hdisdk-http64501105/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -616,7 +240,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:28:31 GMT + - Tue, 20 Oct 2020 04:08:33 GMT expires: - '-1' pragma: @@ -648,8 +272,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-64501105/providers/Microsoft.HDInsight/clusters/hdisdk-http64501105/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -663,7 +287,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:29:02 GMT + - Tue, 20 Oct 2020 04:09:03 GMT expires: - '-1' pragma: @@ -695,8 +319,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-64501105/providers/Microsoft.HDInsight/clusters/hdisdk-http64501105/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -710,7 +334,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:29:33 GMT + - Tue, 20 Oct 2020 04:09:34 GMT expires: - '-1' pragma: @@ -742,8 +366,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-64501105/providers/Microsoft.HDInsight/clusters/hdisdk-http64501105/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -757,7 +381,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:30:04 GMT + - Tue, 20 Oct 2020 04:10:04 GMT expires: - '-1' pragma: @@ -789,8 +413,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-64501105/providers/Microsoft.HDInsight/clusters/hdisdk-http64501105/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -804,7 +428,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:30:34 GMT + - Tue, 20 Oct 2020 04:10:34 GMT expires: - '-1' pragma: @@ -836,8 +460,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-64501105/providers/Microsoft.HDInsight/clusters/hdisdk-http64501105/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -851,7 +475,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:31:05 GMT + - Tue, 20 Oct 2020 04:11:06 GMT expires: - '-1' pragma: @@ -883,8 +507,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-64501105/providers/Microsoft.HDInsight/clusters/hdisdk-http64501105/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -898,7 +522,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:31:36 GMT + - Tue, 20 Oct 2020 04:11:41 GMT expires: - '-1' pragma: @@ -930,8 +554,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-64501105/providers/Microsoft.HDInsight/clusters/hdisdk-http64501105/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -945,7 +569,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:32:06 GMT + - Tue, 20 Oct 2020 04:12:12 GMT expires: - '-1' pragma: @@ -977,8 +601,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-64501105/providers/Microsoft.HDInsight/clusters/hdisdk-http64501105/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -992,7 +616,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:32:37 GMT + - Tue, 20 Oct 2020 04:12:44 GMT expires: - '-1' pragma: @@ -1024,8 +648,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-64501105/providers/Microsoft.HDInsight/clusters/hdisdk-http64501105/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1039,7 +663,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:33:08 GMT + - Tue, 20 Oct 2020 04:13:14 GMT expires: - '-1' pragma: @@ -1071,8 +695,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-64501105/providers/Microsoft.HDInsight/clusters/hdisdk-http64501105/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1086,7 +710,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:33:38 GMT + - Tue, 20 Oct 2020 04:13:44 GMT expires: - '-1' pragma: @@ -1118,8 +742,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-64501105/providers/Microsoft.HDInsight/clusters/hdisdk-http64501105/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1133,7 +757,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:34:09 GMT + - Tue, 20 Oct 2020 04:14:15 GMT expires: - '-1' pragma: @@ -1165,8 +789,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-64501105/providers/Microsoft.HDInsight/clusters/hdisdk-http64501105/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1180,7 +804,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:34:40 GMT + - Tue, 20 Oct 2020 04:14:45 GMT expires: - '-1' pragma: @@ -1212,8 +836,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-64501105/providers/Microsoft.HDInsight/clusters/hdisdk-http64501105/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1227,7 +851,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:35:11 GMT + - Tue, 20 Oct 2020 04:15:16 GMT expires: - '-1' pragma: @@ -1259,8 +883,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-64501105/providers/Microsoft.HDInsight/clusters/hdisdk-http64501105/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1274,7 +898,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:35:42 GMT + - Tue, 20 Oct 2020 04:15:46 GMT expires: - '-1' pragma: @@ -1306,8 +930,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-64501105/providers/Microsoft.HDInsight/clusters/hdisdk-http64501105/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1321,7 +945,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:36:18 GMT + - Tue, 20 Oct 2020 04:16:17 GMT expires: - '-1' pragma: @@ -1353,8 +977,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-64501105/providers/Microsoft.HDInsight/clusters/hdisdk-http64501105/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1368,7 +992,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:36:49 GMT + - Tue, 20 Oct 2020 04:16:48 GMT expires: - '-1' pragma: @@ -1400,8 +1024,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-64501105/providers/Microsoft.HDInsight/clusters/hdisdk-http64501105/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1415,7 +1039,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:37:20 GMT + - Tue, 20 Oct 2020 04:17:19 GMT expires: - '-1' pragma: @@ -1447,8 +1071,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-64501105/providers/Microsoft.HDInsight/clusters/hdisdk-http64501105/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1462,7 +1086,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:37:51 GMT + - Tue, 20 Oct 2020 04:17:50 GMT expires: - '-1' pragma: @@ -1494,8 +1118,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-64501105/providers/Microsoft.HDInsight/clusters/hdisdk-http64501105/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1509,7 +1133,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:38:22 GMT + - Tue, 20 Oct 2020 04:18:20 GMT expires: - '-1' pragma: @@ -1541,8 +1165,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-64501105/providers/Microsoft.HDInsight/clusters/hdisdk-http64501105/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1556,7 +1180,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:38:53 GMT + - Tue, 20 Oct 2020 04:18:52 GMT expires: - '-1' pragma: @@ -1588,8 +1212,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-64501105/providers/Microsoft.HDInsight/clusters/hdisdk-http64501105/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1603,7 +1227,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:39:23 GMT + - Tue, 20 Oct 2020 04:19:22 GMT expires: - '-1' pragma: @@ -1635,8 +1259,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-64501105/providers/Microsoft.HDInsight/clusters/hdisdk-http64501105/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1650,7 +1274,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:39:54 GMT + - Tue, 20 Oct 2020 04:19:52 GMT expires: - '-1' pragma: @@ -1682,55 +1306,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-64501105/providers/Microsoft.HDInsight/clusters/hdisdk-http64501105/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 08:40:24 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-64501105/providers/Microsoft.HDInsight/clusters/hdisdk-http64501105/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1744,7 +1321,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:40:56 GMT + - Tue, 20 Oct 2020 04:20:23 GMT expires: - '-1' pragma: @@ -1776,23 +1353,23 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-64501105/providers/Microsoft.HDInsight/clusters/hdisdk-http64501105?api-version=2018-06-01-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-64501105/providers/Microsoft.HDInsight/clusters/hdisdk-http64501105","name":"hdisdk-http64501105","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"24cfcc37-68b0-4f88-8406-2a20145197b9","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3027-5","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2007210011.json","kind":"hadoop","componentVersion":{"hadoop":"2.7"}},"clusterId":"925414cef09c4a168862e8f032639916","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a2_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2020-08-14T08:22:22.083","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdisdk-http64501105-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdisdk-http64501105.azurehdinsight.net","port":443}],"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-http64501105","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"m_Item1":"default","m_Item2":""}}}' + Central US","etag":"2ab5082d-dd03-426b-9147-201f0298728f","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3026-7","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2009301626.json","kind":"hadoop","componentVersion":{"hadoop":"2.7"}},"clusterId":"e17f024e9b674cf18e167f0a0088b3f1","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a1_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2020-10-20T04:06:27.753","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdisdk-http64501105-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdisdk-http64501105.azurehdinsight.net","port":443}],"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-http64501105","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"excludedServicesConfigId":"default","excludedServicesList":""},"computeIsolationProperties":{"enableComputeIsolation":false,"hostSku":null}}}' headers: cache-control: - no-cache content-length: - - '1922' + - '2029' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:40:56 GMT + - Tue, 20 Oct 2020 04:20:23 GMT expires: - '-1' pragma: @@ -1826,8 +1403,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python accept-language: - en-US method: POST @@ -1843,7 +1420,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:41:00 GMT + - Tue, 20 Oct 2020 04:20:25 GMT expires: - '-1' pragma: @@ -1863,7 +1440,7 @@ interactions: x-ms-hdi-served-by: - northcentralus x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1199' status: code: 200 message: OK @@ -1882,8 +1459,8 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python accept-language: - en-US method: POST @@ -1893,17 +1470,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-64501105/providers/Microsoft.HDInsight/clusters/hdisdk-http64501105/azureasyncoperations/2fd7f51e-9a5b-4e7c-82d0-a3afe74470db-0-r?api-version=2018-06-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-64501105/providers/Microsoft.HDInsight/clusters/hdisdk-http64501105/azureasyncoperations/5ac1221c-5d4f-447a-acb9-3a9faf4e8f57-0-r?api-version=2018-06-01-preview cache-control: - no-cache content-length: - '0' date: - - Fri, 14 Aug 2020 08:41:06 GMT + - Tue, 20 Oct 2020 04:20:26 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-64501105/providers/Microsoft.HDInsight/clusters/hdisdk-http64501105/operationresults/2fd7f51e-9a5b-4e7c-82d0-a3afe74470db-0-r?api-version=2018-06-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-64501105/providers/Microsoft.HDInsight/clusters/hdisdk-http64501105/operationresults/5ac1221c-5d4f-447a-acb9-3a9faf4e8f57-0-r?api-version=2018-06-01-preview pragma: - no-cache strict-transport-security: @@ -1917,7 +1494,7 @@ interactions: x-ms-hdi-served-by: - northcentralus x-ms-ratelimit-remaining-subscription-writes: - - '1197' + - '1198' status: code: 202 message: Accepted @@ -1931,57 +1508,10 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-64501105/providers/Microsoft.HDInsight/clusters/hdisdk-http64501105/azureasyncoperations/2fd7f51e-9a5b-4e7c-82d0-a3afe74470db-0-r?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 08:42:08 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-64501105/providers/Microsoft.HDInsight/clusters/hdisdk-http64501105/azureasyncoperations/2fd7f51e-9a5b-4e7c-82d0-a3afe74470db-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-64501105/providers/Microsoft.HDInsight/clusters/hdisdk-http64501105/azureasyncoperations/5ac1221c-5d4f-447a-acb9-3a9faf4e8f57-0-r?api-version=2018-06-01-preview response: body: string: '{"status":"Succeeded"}' @@ -1993,7 +1523,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:42:39 GMT + - Tue, 20 Oct 2020 04:21:28 GMT expires: - '-1' pragma: @@ -2027,8 +1557,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python accept-language: - en-US method: POST @@ -2044,7 +1574,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:42:44 GMT + - Tue, 20 Oct 2020 04:21:30 GMT expires: - '-1' pragma: @@ -2064,7 +1594,7 @@ interactions: x-ms-hdi-served-by: - northcentralus x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1197' status: code: 200 message: OK diff --git a/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_get_configurations.yaml b/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_get_configurations.yaml index 10bb32a2affa..fb7e14de591c 100644 --- a/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_get_configurations.yaml +++ b/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_get_configurations.yaml @@ -14,7 +14,7 @@ interactions: "targetInstanceCount": 3, "hardwareProfile": {"vmSize": "Small"}, "osProfile": {"linuxOperatingSystemProfile": {"username": "sshuser", "password": "Password1!"}}}]}, "storageProfile": {"storageaccounts": [{"name": "hdipy.blob.core.windows.net", - "isDefault": true, "container": "hdisdk-configs868c11cd", "key": "+v3Fg5Y1/IkD51eAkA7xejC0K/9jzvB3DsYqkIOEalMyBBH4UnazNJiRm9Az1neUYxo89xka+t4rsldm+s4lDA=="}]}}}''' + "isDefault": true, "container": "hdisdk-configs868c11cd", "key": "6aidgiNy0R7Wkqs577XGztQnMv4oYAF3olr0PdUZc3f8FD0vigbH6rIs2dEjoWK6ILQ20lHJft/irl9VUL5UcQ=="}]}}}''' headers: Accept: - application/json @@ -27,8 +27,8 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python accept-language: - en-US method: PUT @@ -36,20 +36,20 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-868c11cd/providers/Microsoft.HDInsight/clusters/hdisdk-configs868c11cd","name":"hdisdk-configs868c11cd","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"4fce4bee-025f-4029-a66d-c030118434cf","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2007210011.json","kind":"hadoop","componentVersion":{"hadoop":"2.7"}},"clusterId":"0b7f0f9ed6fd483ba59375aeccab80a4","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a2_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"InProgress","clusterState":"Accepted","createdDate":"2020-08-14T08:43:52.59","quotaInfo":{"coresUsed":20},"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-configs868c11cd","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"m_Item1":"default","m_Item2":""}}}' + Central US","etag":"bdeb24ee-b005-4186-9f3f-1389b585232e","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2009301626.json","kind":"hadoop","componentVersion":{"hadoop":"2.7"}},"clusterId":"1869af53ea5644c0aa5d10bcf4604354","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a1_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"InProgress","clusterState":"Accepted","createdDate":"2020-10-20T04:22:31.427","quotaInfo":{"coresUsed":20},"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-configs868c11cd","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"excludedServicesConfigId":"default","excludedServicesList":""},"computeIsolationProperties":{"enableComputeIsolation":false,"hostSku":null}}}' headers: azure-asyncoperation: - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-868c11cd/providers/Microsoft.HDInsight/clusters/hdisdk-configs868c11cd/azureasyncoperations/create?api-version=2018-06-01-preview cache-control: - no-cache content-length: - - '1699' + - '1807' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:43:53 GMT + - Tue, 20 Oct 2020 04:22:33 GMT etag: - - '"4fce4bee-025f-4029-a66d-c030118434cf"' + - '"bdeb24ee-b005-4186-9f3f-1389b585232e"' expires: - '-1' pragma: @@ -63,7 +63,7 @@ interactions: x-content-type-options: - nosniff x-ms-hdi-clusteruri: - - https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/hdipy-868c11cd/providers/Microsoft.HDInsight/clusters/hdisdk-configs868c11cd?api-version=2018-06-01-preview + - https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hdipy-868c11cd/providers/Microsoft.HDInsight/clusters/hdisdk-configs868c11cd?api-version=2018-06-01-preview x-ms-hdi-matched-rule: - ClusterResourcesAndSubResources x-ms-hdi-routed-to: @@ -85,8 +85,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-868c11cd/providers/Microsoft.HDInsight/clusters/hdisdk-configs868c11cd/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -100,7 +100,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:44:26 GMT + - Tue, 20 Oct 2020 04:23:04 GMT expires: - '-1' pragma: @@ -132,8 +132,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-868c11cd/providers/Microsoft.HDInsight/clusters/hdisdk-configs868c11cd/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -147,7 +147,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:44:56 GMT + - Tue, 20 Oct 2020 04:23:36 GMT expires: - '-1' pragma: @@ -179,8 +179,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-868c11cd/providers/Microsoft.HDInsight/clusters/hdisdk-configs868c11cd/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -194,7 +194,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:45:26 GMT + - Tue, 20 Oct 2020 04:24:06 GMT expires: - '-1' pragma: @@ -226,8 +226,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-868c11cd/providers/Microsoft.HDInsight/clusters/hdisdk-configs868c11cd/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -241,7 +241,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:45:58 GMT + - Tue, 20 Oct 2020 04:24:37 GMT expires: - '-1' pragma: @@ -273,8 +273,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-868c11cd/providers/Microsoft.HDInsight/clusters/hdisdk-configs868c11cd/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -288,7 +288,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:46:28 GMT + - Tue, 20 Oct 2020 04:25:07 GMT expires: - '-1' pragma: @@ -320,8 +320,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-868c11cd/providers/Microsoft.HDInsight/clusters/hdisdk-configs868c11cd/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -335,7 +335,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:46:58 GMT + - Tue, 20 Oct 2020 04:25:37 GMT expires: - '-1' pragma: @@ -367,8 +367,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-868c11cd/providers/Microsoft.HDInsight/clusters/hdisdk-configs868c11cd/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -382,7 +382,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:47:28 GMT + - Tue, 20 Oct 2020 04:26:09 GMT expires: - '-1' pragma: @@ -414,8 +414,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-868c11cd/providers/Microsoft.HDInsight/clusters/hdisdk-configs868c11cd/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -429,7 +429,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:48:00 GMT + - Tue, 20 Oct 2020 04:26:39 GMT expires: - '-1' pragma: @@ -461,8 +461,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-868c11cd/providers/Microsoft.HDInsight/clusters/hdisdk-configs868c11cd/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -476,7 +476,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:48:30 GMT + - Tue, 20 Oct 2020 04:27:09 GMT expires: - '-1' pragma: @@ -508,8 +508,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-868c11cd/providers/Microsoft.HDInsight/clusters/hdisdk-configs868c11cd/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -523,7 +523,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:49:00 GMT + - Tue, 20 Oct 2020 04:27:40 GMT expires: - '-1' pragma: @@ -555,8 +555,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-868c11cd/providers/Microsoft.HDInsight/clusters/hdisdk-configs868c11cd/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -570,7 +570,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:49:31 GMT + - Tue, 20 Oct 2020 04:28:10 GMT expires: - '-1' pragma: @@ -602,8 +602,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-868c11cd/providers/Microsoft.HDInsight/clusters/hdisdk-configs868c11cd/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -617,7 +617,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:50:03 GMT + - Tue, 20 Oct 2020 04:28:42 GMT expires: - '-1' pragma: @@ -649,8 +649,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-868c11cd/providers/Microsoft.HDInsight/clusters/hdisdk-configs868c11cd/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -664,7 +664,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:50:34 GMT + - Tue, 20 Oct 2020 04:29:12 GMT expires: - '-1' pragma: @@ -696,8 +696,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-868c11cd/providers/Microsoft.HDInsight/clusters/hdisdk-configs868c11cd/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -711,7 +711,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:51:04 GMT + - Tue, 20 Oct 2020 04:29:43 GMT expires: - '-1' pragma: @@ -743,8 +743,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-868c11cd/providers/Microsoft.HDInsight/clusters/hdisdk-configs868c11cd/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -758,7 +758,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:51:35 GMT + - Tue, 20 Oct 2020 04:30:14 GMT expires: - '-1' pragma: @@ -790,8 +790,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-868c11cd/providers/Microsoft.HDInsight/clusters/hdisdk-configs868c11cd/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -805,7 +805,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:52:06 GMT + - Tue, 20 Oct 2020 04:30:44 GMT expires: - '-1' pragma: @@ -837,8 +837,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-868c11cd/providers/Microsoft.HDInsight/clusters/hdisdk-configs868c11cd/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -852,7 +852,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:52:36 GMT + - Tue, 20 Oct 2020 04:31:15 GMT expires: - '-1' pragma: @@ -884,8 +884,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-868c11cd/providers/Microsoft.HDInsight/clusters/hdisdk-configs868c11cd/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -899,7 +899,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:53:06 GMT + - Tue, 20 Oct 2020 04:31:45 GMT expires: - '-1' pragma: @@ -931,8 +931,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-868c11cd/providers/Microsoft.HDInsight/clusters/hdisdk-configs868c11cd/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -946,7 +946,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:53:38 GMT + - Tue, 20 Oct 2020 04:32:16 GMT expires: - '-1' pragma: @@ -978,8 +978,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-868c11cd/providers/Microsoft.HDInsight/clusters/hdisdk-configs868c11cd/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -993,7 +993,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:54:08 GMT + - Tue, 20 Oct 2020 04:32:47 GMT expires: - '-1' pragma: @@ -1025,8 +1025,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-868c11cd/providers/Microsoft.HDInsight/clusters/hdisdk-configs868c11cd/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1040,7 +1040,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:54:38 GMT + - Tue, 20 Oct 2020 04:33:17 GMT expires: - '-1' pragma: @@ -1072,8 +1072,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-868c11cd/providers/Microsoft.HDInsight/clusters/hdisdk-configs868c11cd/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1087,7 +1087,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:55:10 GMT + - Tue, 20 Oct 2020 04:33:48 GMT expires: - '-1' pragma: @@ -1119,8 +1119,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-868c11cd/providers/Microsoft.HDInsight/clusters/hdisdk-configs868c11cd/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1134,7 +1134,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:55:41 GMT + - Tue, 20 Oct 2020 04:34:18 GMT expires: - '-1' pragma: @@ -1166,8 +1166,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-868c11cd/providers/Microsoft.HDInsight/clusters/hdisdk-configs868c11cd/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1181,7 +1181,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:56:11 GMT + - Tue, 20 Oct 2020 04:34:49 GMT expires: - '-1' pragma: @@ -1213,8 +1213,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-868c11cd/providers/Microsoft.HDInsight/clusters/hdisdk-configs868c11cd/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1228,7 +1228,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:56:41 GMT + - Tue, 20 Oct 2020 04:35:19 GMT expires: - '-1' pragma: @@ -1260,8 +1260,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-868c11cd/providers/Microsoft.HDInsight/clusters/hdisdk-configs868c11cd/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1275,7 +1275,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:57:13 GMT + - Tue, 20 Oct 2020 04:35:50 GMT expires: - '-1' pragma: @@ -1307,8 +1307,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-868c11cd/providers/Microsoft.HDInsight/clusters/hdisdk-configs868c11cd/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1322,7 +1322,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 08:57:43 GMT + - Tue, 20 Oct 2020 04:36:22 GMT expires: - '-1' pragma: @@ -1354,243 +1354,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-868c11cd/providers/Microsoft.HDInsight/clusters/hdisdk-configs868c11cd/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 08:58:13 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-868c11cd/providers/Microsoft.HDInsight/clusters/hdisdk-configs868c11cd/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 08:58:44 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-868c11cd/providers/Microsoft.HDInsight/clusters/hdisdk-configs868c11cd/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 08:59:15 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-868c11cd/providers/Microsoft.HDInsight/clusters/hdisdk-configs868c11cd/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 08:59:45 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-868c11cd/providers/Microsoft.HDInsight/clusters/hdisdk-configs868c11cd/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 09:00:16 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-868c11cd/providers/Microsoft.HDInsight/clusters/hdisdk-configs868c11cd/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1604,7 +1369,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:00:47 GMT + - Tue, 20 Oct 2020 04:36:52 GMT expires: - '-1' pragma: @@ -1636,23 +1401,23 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-868c11cd/providers/Microsoft.HDInsight/clusters/hdisdk-configs868c11cd?api-version=2018-06-01-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-868c11cd/providers/Microsoft.HDInsight/clusters/hdisdk-configs868c11cd","name":"hdisdk-configs868c11cd","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"4fce4bee-025f-4029-a66d-c030118434cf","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3027-5","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2007210011.json","kind":"hadoop","componentVersion":{"hadoop":"2.7"}},"clusterId":"0b7f0f9ed6fd483ba59375aeccab80a4","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a2_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2020-08-14T08:43:52.59","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdisdk-configs868c11cd-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdisdk-configs868c11cd.azurehdinsight.net","port":443}],"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-configs868c11cd","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"m_Item1":"default","m_Item2":""}}}' + Central US","etag":"bdeb24ee-b005-4186-9f3f-1389b585232e","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3026-7","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2009301626.json","kind":"hadoop","componentVersion":{"hadoop":"2.7"}},"clusterId":"1869af53ea5644c0aa5d10bcf4604354","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a1_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2020-10-20T04:22:31.427","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdisdk-configs868c11cd-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdisdk-configs868c11cd.azurehdinsight.net","port":443}],"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-configs868c11cd","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"excludedServicesConfigId":"default","excludedServicesList":""},"computeIsolationProperties":{"enableComputeIsolation":false,"hostSku":null}}}' headers: cache-control: - no-cache content-length: - - '1936' + - '2044' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:00:48 GMT + - Tue, 20 Oct 2020 04:36:52 GMT expires: - '-1' pragma: @@ -1684,8 +1449,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -1701,7 +1466,7 @@ interactions: content-type: - application/json; charset=Windows-1252 date: - - Fri, 14 Aug 2020 09:00:50 GMT + - Tue, 20 Oct 2020 04:36:54 GMT expires: - '-1' pragma: @@ -1733,8 +1498,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -1750,7 +1515,7 @@ interactions: content-type: - application/json; charset=Windows-1252 date: - - Fri, 14 Aug 2020 09:00:51 GMT + - Tue, 20 Oct 2020 04:36:55 GMT expires: - '-1' pragma: @@ -1782,8 +1547,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -1799,7 +1564,7 @@ interactions: content-type: - application/json; charset=Windows-1252 date: - - Fri, 14 Aug 2020 09:00:52 GMT + - Tue, 20 Oct 2020 04:36:55 GMT expires: - '-1' pragma: @@ -1831,8 +1596,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -1848,7 +1613,7 @@ interactions: content-type: - application/json; charset=Windows-1252 date: - - Fri, 14 Aug 2020 09:00:52 GMT + - Tue, 20 Oct 2020 04:36:56 GMT expires: - '-1' pragma: @@ -1880,8 +1645,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -1897,7 +1662,7 @@ interactions: content-type: - application/json; charset=Windows-1252 date: - - Fri, 14 Aug 2020 09:00:53 GMT + - Tue, 20 Oct 2020 04:36:56 GMT expires: - '-1' pragma: diff --git a/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_get_usages.yaml b/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_get_usages.yaml index fd68a2858473..8b123ae21e7e 100644 --- a/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_get_usages.yaml +++ b/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_get_usages.yaml @@ -9,15 +9,15 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.HDInsight/locations/North%20Central%20US/usages?api-version=2018-06-01-preview response: body: - string: '{"value":[{"unit":"Count","currentValue":44,"limit":250,"name":{"value":"cores","localizedValue":"Cores"}}]}' + string: '{"value":[{"unit":"Count","currentValue":20,"limit":250,"name":{"value":"cores","localizedValue":"Cores"}}]}' headers: cache-control: - no-cache @@ -26,7 +26,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:01:12 GMT + - Tue, 20 Oct 2020 04:37:17 GMT expires: - '-1' pragma: diff --git a/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_hue_on_running_cluster.yaml b/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_hue_on_running_cluster.yaml index b3f8b0be92f9..12a22db9cd70 100644 --- a/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_hue_on_running_cluster.yaml +++ b/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_hue_on_running_cluster.yaml @@ -13,7 +13,7 @@ interactions: "Small"}, "osProfile": {"linuxOperatingSystemProfile": {"username": "sshuser", "password": "Password1!"}}}]}, "storageProfile": {"storageaccounts": [{"name": "hdipy.blob.core.windows.net", "isDefault": true, "container": "hdisdk-applications-hued29c1382", - "key": "659myjIIniyX+GS5qm4+SMdollMA6nhatNo5lipO/YDNEXfHP5IUSE/02sPnBKo/z9PQccQyKPNXdq/0eBE/JQ=="}]}}}''' + "key": "8fDAgKmM+4Vp+cY3mGSkUxDy7Hq/W5osrYjVoiyye6OjtX31tZjkTxarsQoKVbtXsKfZCXLDfc/0sbJpIqrozw=="}]}}}''' headers: Accept: - application/json @@ -26,8 +26,8 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python accept-language: - en-US method: PUT @@ -35,20 +35,20 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d29c1382/providers/Microsoft.HDInsight/clusters/hdisdk-applications-hued29c1382","name":"hdisdk-applications-hued29c1382","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"fa6968ff-5c56-4af8-9ecc-1fb2967aff8f","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3027-5","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2007210011.json","kind":"hadoop","componentVersion":{"hadoop":"2.7"}},"clusterId":"49f3446581734fc483a51eb6b3ba3ed4","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a2_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"edgenode1","targetInstanceCount":1,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2020-08-14T06:32:41.287","quotaInfo":{"coresUsed":24},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdisdk-applications-hued29c1382-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdisdk-applications-hued29c1382.azurehdinsight.net","port":443}],"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-applications-hued29c1382","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"m_Item1":"default","m_Item2":""}}}' + Central US","etag":"5d0198c1-0bcc-4415-86ee-a3c30e127702","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3026-7","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2009301626.json","kind":"hadoop","componentVersion":{"hadoop":"2.7"}},"clusterId":"097669da55f94f99a3462972aadfe9d0","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a1_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"edgenode1","targetInstanceCount":1,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2020-10-20T04:38:03.71","quotaInfo":{"coresUsed":24},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdisdk-applications-hued29c1382-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdisdk-applications-hued29c1382.azurehdinsight.net","port":443}],"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-applications-hued29c1382","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"excludedServicesConfigId":"default","excludedServicesList":""},"computeIsolationProperties":{"enableComputeIsolation":false,"hostSku":null}}}' headers: azure-asyncoperation: - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d29c1382/providers/Microsoft.HDInsight/clusters/hdisdk-applications-hued29c1382/azureasyncoperations/create?api-version=2018-06-01-preview cache-control: - no-cache content-length: - - '2165' + - '2271' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:01:47 GMT + - Tue, 20 Oct 2020 06:33:18 GMT etag: - - '"fa6968ff-5c56-4af8-9ecc-1fb2967aff8f"' + - '"5d0198c1-0bcc-4415-86ee-a3c30e127702"' expires: - '-1' pragma: @@ -62,7 +62,7 @@ interactions: x-content-type-options: - nosniff x-ms-hdi-clusteruri: - - https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/hdipy-d29c1382/providers/Microsoft.HDInsight/clusters/hdisdk-applications-hued29c1382?api-version=2018-06-01-preview + - https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hdipy-d29c1382/providers/Microsoft.HDInsight/clusters/hdisdk-applications-hued29c1382?api-version=2018-06-01-preview x-ms-hdi-matched-rule: - ClusterResourcesAndSubResources x-ms-hdi-routed-to: @@ -84,8 +84,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d29c1382/providers/Microsoft.HDInsight/clusters/hdisdk-applications-hued29c1382/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -99,7 +99,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:02:20 GMT + - Tue, 20 Oct 2020 06:33:50 GMT expires: - '-1' pragma: @@ -131,23 +131,23 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d29c1382/providers/Microsoft.HDInsight/clusters/hdisdk-applications-hued29c1382?api-version=2018-06-01-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d29c1382/providers/Microsoft.HDInsight/clusters/hdisdk-applications-hued29c1382","name":"hdisdk-applications-hued29c1382","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"fa6968ff-5c56-4af8-9ecc-1fb2967aff8f","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3027-5","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2007210011.json","kind":"hadoop","componentVersion":{"hadoop":"2.7"}},"clusterId":"49f3446581734fc483a51eb6b3ba3ed4","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a2_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"edgenode1","targetInstanceCount":1,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2020-08-14T06:32:41.287","quotaInfo":{"coresUsed":24},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdisdk-applications-hued29c1382-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdisdk-applications-hued29c1382.azurehdinsight.net","port":443}],"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-applications-hued29c1382","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"m_Item1":"default","m_Item2":""}}}' + Central US","etag":"5d0198c1-0bcc-4415-86ee-a3c30e127702","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3026-7","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2009301626.json","kind":"hadoop","componentVersion":{"hadoop":"2.7"}},"clusterId":"097669da55f94f99a3462972aadfe9d0","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a1_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"edgenode1","targetInstanceCount":1,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2020-10-20T04:38:03.71","quotaInfo":{"coresUsed":24},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdisdk-applications-hued29c1382-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdisdk-applications-hued29c1382.azurehdinsight.net","port":443}],"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-applications-hued29c1382","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"excludedServicesConfigId":"default","excludedServicesList":""},"computeIsolationProperties":{"enableComputeIsolation":false,"hostSku":null}}}' headers: cache-control: - no-cache content-length: - - '2165' + - '2271' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:02:20 GMT + - Tue, 20 Oct 2020 06:33:51 GMT expires: - '-1' pragma: @@ -187,29 +187,29 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python accept-language: - en-US method: PUT uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d29c1382/providers/Microsoft.HDInsight/clusters/hdisdk-applications-hued29c1382/applications/MyApplication?api-version=2018-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d29c1382/providers/Microsoft.HDInsight/clusters/hdisdk-applications-hued29c1382/applications/MyApplication","name":"MyApplication","type":"Microsoft.HDInsight/clusters/applications","etag":"7A5949A4-0DE7-44C0-885D-B2D491E6B6AE","tags":null,"properties":{"computeProfile":{"roles":[{"name":"edgenode","targetInstanceCount":1,"VMGroupName":"edgenode1","hardwareProfile":{"vmSize":"standard_a4_v2"},"encryptDataDisks":false}]},"installScriptActions":[{"name":"InstallHue","uri":"https://hdiconfigactions.blob.core.windows.net/linuxhueconfigactionv02/install-hue-uber-v02.sh","roles":["edgenode"]}],"uninstallScriptActions":[],"httpsEndpoints":[],"sshEndpoints":[{"location":"MyApplication.hdisdk-applications-hued29c1382-ssh.azurehdinsight.net:22","destinationPort":22,"publicPort":22}],"provisioningState":"Failed","applicationState":"Error","errors":[{"code":"FailedToAddApplicationErrorCode","message":"Failed - to add an application {ApplicationName: MyApplication, ApplicationId: 267}"}],"createdDate":"2020-08-14T06:51:09.277","applicationType":"CustomApplication"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d29c1382/providers/Microsoft.HDInsight/clusters/hdisdk-applications-hued29c1382/applications/MyApplication","name":"MyApplication","type":"Microsoft.HDInsight/clusters/applications","etag":"182B3ED9-A63B-4C63-844D-B35892E15A67","tags":null,"properties":{"computeProfile":{"roles":[{"name":"edgenode","targetInstanceCount":1,"VMGroupName":"edgenode1","hardwareProfile":{"vmSize":"standard_a4_v2"},"encryptDataDisks":false}]},"installScriptActions":[{"name":"InstallHue","uri":"https://hdiconfigactions.blob.core.windows.net/linuxhueconfigactionv02/install-hue-uber-v02.sh","roles":["edgenode"]}],"uninstallScriptActions":[],"httpsEndpoints":[],"sshEndpoints":[{"location":"MyApplication.hdisdk-applications-hued29c1382-ssh.azurehdinsight.net:22","destinationPort":22,"publicPort":22}],"provisioningState":"Failed","applicationState":"Error","errors":[{"code":"FailedToAddApplicationErrorCode","message":"Failed + to add an application {ApplicationName: MyApplication, ApplicationId: 277}"}],"createdDate":"2020-10-20T04:51:27.51","applicationType":"CustomApplication"}}' headers: azure-asyncoperation: - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d29c1382/providers/Microsoft.HDInsight/clusters/hdisdk-applications-hued29c1382/azureasyncoperations/create?api-version=2018-06-01-preview cache-control: - no-cache content-length: - - '1147' + - '1146' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:02:22 GMT + - Tue, 20 Oct 2020 06:33:51 GMT etag: - - '"7A5949A4-0DE7-44C0-885D-B2D491E6B6AE"' + - '"182B3ED9-A63B-4C63-844D-B35892E15A67"' expires: - '-1' pragma: @@ -223,7 +223,7 @@ interactions: x-content-type-options: - nosniff x-ms-hdi-appuri: - - https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/hdipy-d29c1382/providers/Microsoft.HDInsight/clusters/hdisdk-applications-hued29c1382/applications/MyApplication?api-version=2018-06-01-preview + - https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hdipy-d29c1382/providers/Microsoft.HDInsight/clusters/hdisdk-applications-hued29c1382/applications/MyApplication?api-version=2018-06-01-preview x-ms-hdi-matched-rule: - ClusterResourcesAndSubResources x-ms-hdi-routed-to: @@ -245,8 +245,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d29c1382/providers/Microsoft.HDInsight/clusters/hdisdk-applications-hued29c1382/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -260,7 +260,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:02:53 GMT + - Tue, 20 Oct 2020 06:34:23 GMT expires: - '-1' pragma: @@ -292,23 +292,23 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d29c1382/providers/Microsoft.HDInsight/clusters/hdisdk-applications-hued29c1382/applications/MyApplication?api-version=2018-06-01-preview response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d29c1382/providers/Microsoft.HDInsight/clusters/hdisdk-applications-hued29c1382/applications/MyApplication","name":"MyApplication","type":"Microsoft.HDInsight/clusters/applications","etag":"7A5949A4-0DE7-44C0-885D-B2D491E6B6AE","tags":null,"properties":{"computeProfile":{"roles":[{"name":"edgenode","targetInstanceCount":1,"VMGroupName":"edgenode1","hardwareProfile":{"vmSize":"standard_a4_v2"},"encryptDataDisks":false}]},"installScriptActions":[{"name":"InstallHue","uri":"https://hdiconfigactions.blob.core.windows.net/linuxhueconfigactionv02/install-hue-uber-v02.sh","roles":["edgenode"]}],"uninstallScriptActions":[],"httpsEndpoints":[],"sshEndpoints":[{"location":"MyApplication.hdisdk-applications-hued29c1382-ssh.azurehdinsight.net:22","destinationPort":22,"publicPort":22}],"provisioningState":"Failed","applicationState":"Error","errors":[{"code":"FailedToAddApplicationErrorCode","message":"Failed - to add an application {ApplicationName: MyApplication, ApplicationId: 267}"}],"createdDate":"2020-08-14T06:51:09.277","applicationType":"CustomApplication"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d29c1382/providers/Microsoft.HDInsight/clusters/hdisdk-applications-hued29c1382/applications/MyApplication","name":"MyApplication","type":"Microsoft.HDInsight/clusters/applications","etag":"182B3ED9-A63B-4C63-844D-B35892E15A67","tags":null,"properties":{"computeProfile":{"roles":[{"name":"edgenode","targetInstanceCount":1,"VMGroupName":"edgenode1","hardwareProfile":{"vmSize":"standard_a4_v2"},"encryptDataDisks":false}]},"installScriptActions":[{"name":"InstallHue","uri":"https://hdiconfigactions.blob.core.windows.net/linuxhueconfigactionv02/install-hue-uber-v02.sh","roles":["edgenode"]}],"uninstallScriptActions":[],"httpsEndpoints":[],"sshEndpoints":[{"location":"MyApplication.hdisdk-applications-hued29c1382-ssh.azurehdinsight.net:22","destinationPort":22,"publicPort":22}],"provisioningState":"Failed","applicationState":"Error","errors":[{"code":"FailedToAddApplicationErrorCode","message":"Failed + to add an application {ApplicationName: MyApplication, ApplicationId: 277}"}],"createdDate":"2020-10-20T04:51:27.51","applicationType":"CustomApplication"}}' headers: cache-control: - no-cache content-length: - - '1147' + - '1146' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:02:53 GMT + - Tue, 20 Oct 2020 06:34:23 GMT expires: - '-1' pragma: @@ -340,25 +340,25 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d29c1382/providers/Microsoft.HDInsight/clusters/hdisdk-applications-hued29c1382/applications?api-version=2018-06-01-preview response: body: - string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d29c1382/providers/Microsoft.HDInsight/clusters/hdisdk-applications-hued29c1382/applications/MyApplication","name":"MyApplication","type":"Microsoft.HDInsight/clusters/applications","etag":"7A5949A4-0DE7-44C0-885D-B2D491E6B6AE","tags":null,"properties":{"computeProfile":{"roles":[{"name":"edgenode","targetInstanceCount":1,"VMGroupName":"edgenode1","hardwareProfile":{"vmSize":"standard_a4_v2"},"encryptDataDisks":false}]},"installScriptActions":[{"name":"InstallHue","uri":"https://hdiconfigactions.blob.core.windows.net/linuxhueconfigactionv02/install-hue-uber-v02.sh","roles":["edgenode"]}],"uninstallScriptActions":[],"httpsEndpoints":[],"sshEndpoints":[{"location":"MyApplication.hdisdk-applications-hued29c1382-ssh.azurehdinsight.net:22","destinationPort":22,"publicPort":22}],"provisioningState":"Failed","applicationState":"Error","errors":[{"code":"FailedToAddApplicationErrorCode","message":"Failed - to add an application {ApplicationName: MyApplication, ApplicationId: 267}"}],"createdDate":"2020-08-14T06:51:09.277","applicationType":"CustomApplication"}}]}' + string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d29c1382/providers/Microsoft.HDInsight/clusters/hdisdk-applications-hued29c1382/applications/MyApplication","name":"MyApplication","type":"Microsoft.HDInsight/clusters/applications","etag":"182B3ED9-A63B-4C63-844D-B35892E15A67","tags":null,"properties":{"computeProfile":{"roles":[{"name":"edgenode","targetInstanceCount":1,"VMGroupName":"edgenode1","hardwareProfile":{"vmSize":"standard_a4_v2"},"encryptDataDisks":false}]},"installScriptActions":[{"name":"InstallHue","uri":"https://hdiconfigactions.blob.core.windows.net/linuxhueconfigactionv02/install-hue-uber-v02.sh","roles":["edgenode"]}],"uninstallScriptActions":[],"httpsEndpoints":[],"sshEndpoints":[{"location":"MyApplication.hdisdk-applications-hued29c1382-ssh.azurehdinsight.net:22","destinationPort":22,"publicPort":22}],"provisioningState":"Failed","applicationState":"Error","errors":[{"code":"FailedToAddApplicationErrorCode","message":"Failed + to add an application {ApplicationName: MyApplication, ApplicationId: 277}"}],"createdDate":"2020-10-20T04:51:27.51","applicationType":"CustomApplication"}}]}' headers: cache-control: - no-cache content-length: - - '1159' + - '1158' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:02:54 GMT + - Tue, 20 Oct 2020 06:34:24 GMT expires: - '-1' pragma: @@ -392,8 +392,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -403,17 +403,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d29c1382/providers/Microsoft.HDInsight/clusters/hdisdk-applications-hued29c1382/azureasyncoperations/9b048286-525b-46c0-9c0e-904eafd005dd-0-r?api-version=2018-06-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d29c1382/providers/Microsoft.HDInsight/clusters/hdisdk-applications-hued29c1382/azureasyncoperations/70aabd30-4c51-4687-a459-e0cc9bd34e7c-0-r?api-version=2018-06-01-preview cache-control: - no-cache content-length: - '0' date: - - Fri, 14 Aug 2020 09:04:56 GMT + - Tue, 20 Oct 2020 06:36:27 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d29c1382/providers/Microsoft.HDInsight/clusters/hdisdk-applications-hued29c1382/operationresults/9b048286-525b-46c0-9c0e-904eafd005dd-0-r?api-version=2018-06-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d29c1382/providers/Microsoft.HDInsight/clusters/hdisdk-applications-hued29c1382/operationresults/70aabd30-4c51-4687-a459-e0cc9bd34e7c-0-r?api-version=2018-06-01-preview pragma: - no-cache strict-transport-security: @@ -441,10 +441,10 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d29c1382/providers/Microsoft.HDInsight/clusters/hdisdk-applications-hued29c1382/azureasyncoperations/9b048286-525b-46c0-9c0e-904eafd005dd-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d29c1382/providers/Microsoft.HDInsight/clusters/hdisdk-applications-hued29c1382/azureasyncoperations/70aabd30-4c51-4687-a459-e0cc9bd34e7c-0-r?api-version=2018-06-01-preview response: body: string: '{"status":"InProgress"}' @@ -456,7 +456,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:05:58 GMT + - Tue, 20 Oct 2020 06:37:28 GMT expires: - '-1' pragma: @@ -488,10 +488,10 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d29c1382/providers/Microsoft.HDInsight/clusters/hdisdk-applications-hued29c1382/azureasyncoperations/9b048286-525b-46c0-9c0e-904eafd005dd-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d29c1382/providers/Microsoft.HDInsight/clusters/hdisdk-applications-hued29c1382/azureasyncoperations/70aabd30-4c51-4687-a459-e0cc9bd34e7c-0-r?api-version=2018-06-01-preview response: body: string: '{"status":"InProgress"}' @@ -503,7 +503,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:06:29 GMT + - Tue, 20 Oct 2020 06:37:59 GMT expires: - '-1' pragma: @@ -535,10 +535,10 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d29c1382/providers/Microsoft.HDInsight/clusters/hdisdk-applications-hued29c1382/azureasyncoperations/9b048286-525b-46c0-9c0e-904eafd005dd-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-d29c1382/providers/Microsoft.HDInsight/clusters/hdisdk-applications-hued29c1382/azureasyncoperations/70aabd30-4c51-4687-a459-e0cc9bd34e7c-0-r?api-version=2018-06-01-preview response: body: string: '{"status":"Succeeded"}' @@ -550,7 +550,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:06:59 GMT + - Tue, 20 Oct 2020 06:38:29 GMT expires: - '-1' pragma: @@ -582,8 +582,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -599,7 +599,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:07:00 GMT + - Tue, 20 Oct 2020 06:38:30 GMT expires: - '-1' pragma: diff --git a/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_list_clusters_in_resource_group.yaml b/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_list_clusters_in_resource_group.yaml index c496b9f93f04..54f2dbb271e0 100644 --- a/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_list_clusters_in_resource_group.yaml +++ b/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_list_clusters_in_resource_group.yaml @@ -9,8 +9,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -26,7 +26,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:07:49 GMT + - Tue, 20 Oct 2020 04:54:54 GMT expires: - '-1' pragma: @@ -54,7 +54,7 @@ interactions: "Small"}, "osProfile": {"linuxOperatingSystemProfile": {"username": "sshuser", "password": "Password1!"}}}]}, "storageProfile": {"storageaccounts": [{"name": "hdipy.blob.core.windows.net", "isDefault": true, "container": "hdisdk-cluster-rg196ce175c", - "key": "PgrAqrbhtYXQZs77oWlVzf3wLBc196EuHO85T0lTE95Za/zYN4AFi80KO89wTfB2bfq8fYp31QtWBB2RQIiDvQ=="}]}}}''' + "key": "kNdSlKMt3ZN2GY5yA6+ZrwZuQGrJd7hSEcxfkgpY0P1+v7yniSN3AU0xayZi+t+4sdpYnyd5e8YJEPe+ZCOq6A=="}]}}}''' headers: Accept: - application/json @@ -67,8 +67,8 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python accept-language: - en-US method: PUT @@ -76,20 +76,20 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg196ce175c","name":"hdisdk-cluster-rg196ce175c","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"156cb2cb-325d-4b66-ba8e-1612048a2389","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2007210011.json","kind":"hadoop","componentVersion":{"hadoop":"2.7"}},"clusterId":"3e1e8f5083d845998c2fa115b62c8cf6","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a2_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"InProgress","clusterState":"Accepted","createdDate":"2020-08-14T09:08:00.717","quotaInfo":{"coresUsed":20},"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-cluster-rg196ce175c","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"m_Item1":"default","m_Item2":""}}}' + Central US","etag":"f44c6c4e-8070-405d-8aed-81773ec74dd9","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2009301626.json","kind":"hadoop","componentVersion":{"hadoop":"2.7"}},"clusterId":"3774364202fb4aad82a5e027ce4ceb42","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a1_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"InProgress","clusterState":"Accepted","createdDate":"2020-10-20T04:55:04.84","quotaInfo":{"coresUsed":20},"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-cluster-rg196ce175c","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"excludedServicesConfigId":"default","excludedServicesList":""},"computeIsolationProperties":{"enableComputeIsolation":false,"hostSku":null}}}' headers: azure-asyncoperation: - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg196ce175c/azureasyncoperations/create?api-version=2018-06-01-preview cache-control: - no-cache content-length: - - '1712' + - '1818' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:08:01 GMT + - Tue, 20 Oct 2020 04:55:06 GMT etag: - - '"156cb2cb-325d-4b66-ba8e-1612048a2389"' + - '"f44c6c4e-8070-405d-8aed-81773ec74dd9"' expires: - '-1' pragma: @@ -103,7 +103,7 @@ interactions: x-content-type-options: - nosniff x-ms-hdi-clusteruri: - - https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg196ce175c?api-version=2018-06-01-preview + - https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg196ce175c?api-version=2018-06-01-preview x-ms-hdi-matched-rule: - ClusterResourcesAndSubResources x-ms-hdi-routed-to: @@ -125,8 +125,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg196ce175c/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -140,7 +140,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:08:33 GMT + - Tue, 20 Oct 2020 04:55:38 GMT expires: - '-1' pragma: @@ -172,8 +172,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg196ce175c/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -187,7 +187,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:09:04 GMT + - Tue, 20 Oct 2020 04:56:08 GMT expires: - '-1' pragma: @@ -219,8 +219,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg196ce175c/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -234,7 +234,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:09:35 GMT + - Tue, 20 Oct 2020 04:56:39 GMT expires: - '-1' pragma: @@ -266,8 +266,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg196ce175c/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -281,7 +281,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:10:05 GMT + - Tue, 20 Oct 2020 04:57:10 GMT expires: - '-1' pragma: @@ -313,8 +313,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg196ce175c/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -328,7 +328,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:10:36 GMT + - Tue, 20 Oct 2020 04:57:40 GMT expires: - '-1' pragma: @@ -360,8 +360,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg196ce175c/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -375,7 +375,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:11:07 GMT + - Tue, 20 Oct 2020 04:58:11 GMT expires: - '-1' pragma: @@ -407,8 +407,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg196ce175c/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -422,7 +422,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:11:37 GMT + - Tue, 20 Oct 2020 04:58:41 GMT expires: - '-1' pragma: @@ -454,8 +454,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg196ce175c/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -469,7 +469,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:12:08 GMT + - Tue, 20 Oct 2020 04:59:11 GMT expires: - '-1' pragma: @@ -501,8 +501,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg196ce175c/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -516,7 +516,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:12:39 GMT + - Tue, 20 Oct 2020 04:59:43 GMT expires: - '-1' pragma: @@ -548,8 +548,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg196ce175c/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -563,7 +563,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:13:10 GMT + - Tue, 20 Oct 2020 05:00:13 GMT expires: - '-1' pragma: @@ -595,8 +595,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg196ce175c/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -610,7 +610,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:13:41 GMT + - Tue, 20 Oct 2020 05:00:44 GMT expires: - '-1' pragma: @@ -642,8 +642,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg196ce175c/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -657,7 +657,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:14:11 GMT + - Tue, 20 Oct 2020 05:01:15 GMT expires: - '-1' pragma: @@ -689,8 +689,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg196ce175c/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -704,7 +704,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:14:42 GMT + - Tue, 20 Oct 2020 05:01:46 GMT expires: - '-1' pragma: @@ -736,8 +736,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg196ce175c/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -751,7 +751,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:15:13 GMT + - Tue, 20 Oct 2020 05:02:16 GMT expires: - '-1' pragma: @@ -783,8 +783,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg196ce175c/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -798,7 +798,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:15:43 GMT + - Tue, 20 Oct 2020 05:02:47 GMT expires: - '-1' pragma: @@ -830,8 +830,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg196ce175c/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -845,7 +845,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:16:13 GMT + - Tue, 20 Oct 2020 05:03:17 GMT expires: - '-1' pragma: @@ -877,8 +877,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg196ce175c/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -892,7 +892,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:16:45 GMT + - Tue, 20 Oct 2020 05:03:48 GMT expires: - '-1' pragma: @@ -924,8 +924,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg196ce175c/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -939,7 +939,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:17:15 GMT + - Tue, 20 Oct 2020 05:04:19 GMT expires: - '-1' pragma: @@ -971,8 +971,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg196ce175c/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -986,7 +986,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:17:46 GMT + - Tue, 20 Oct 2020 05:04:49 GMT expires: - '-1' pragma: @@ -1018,8 +1018,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg196ce175c/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1033,7 +1033,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:18:17 GMT + - Tue, 20 Oct 2020 05:05:20 GMT expires: - '-1' pragma: @@ -1065,8 +1065,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg196ce175c/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1080,7 +1080,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:18:48 GMT + - Tue, 20 Oct 2020 05:05:51 GMT expires: - '-1' pragma: @@ -1112,8 +1112,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg196ce175c/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1127,7 +1127,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:19:18 GMT + - Tue, 20 Oct 2020 05:06:22 GMT expires: - '-1' pragma: @@ -1159,8 +1159,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg196ce175c/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1174,7 +1174,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:19:49 GMT + - Tue, 20 Oct 2020 05:06:53 GMT expires: - '-1' pragma: @@ -1206,8 +1206,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg196ce175c/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1221,7 +1221,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:20:20 GMT + - Tue, 20 Oct 2020 05:07:23 GMT expires: - '-1' pragma: @@ -1253,8 +1253,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg196ce175c/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1268,7 +1268,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:20:50 GMT + - Tue, 20 Oct 2020 05:07:53 GMT expires: - '-1' pragma: @@ -1300,1038 +1300,22 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg196ce175c/azureasyncoperations/create?api-version=2018-06-01-preview response: body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 09:21:20 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg196ce175c/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 09:21:52 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg196ce175c/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 09:22:23 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg196ce175c/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 09:22:53 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg196ce175c/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 09:23:25 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg196ce175c/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 09:23:55 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg196ce175c/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 09:24:25 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg196ce175c/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 09:24:57 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg196ce175c/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"Succeeded"}' - headers: - cache-control: - - no-cache - content-length: - - '22' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 09:25:27 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg196ce175c?api-version=2018-06-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg196ce175c","name":"hdisdk-cluster-rg196ce175c","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"156cb2cb-325d-4b66-ba8e-1612048a2389","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3027-5","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2007210011.json","kind":"hadoop","componentVersion":{"hadoop":"2.7"}},"clusterId":"3e1e8f5083d845998c2fa115b62c8cf6","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a2_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2020-08-14T09:08:00.717","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdisdk-cluster-rg196ce175c-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdisdk-cluster-rg196ce175c.azurehdinsight.net","port":443}],"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-cluster-rg196ce175c","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"m_Item1":"default","m_Item2":""}}}' - headers: - cache-control: - - no-cache - content-length: - - '1957' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 09:25:28 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: 'b''{"location": "North Central US", "tags": {}, "properties": {"clusterVersion": - "3.6", "osType": "Linux", "tier": "Standard", "clusterDefinition": {"kind": - "hadoop", "configurations": {"gateway": {"restAuthCredential.isEnabled": "true", - "restAuthCredential.username": "admin", "restAuthCredential.password": "Password1!"}}}, - "computeProfile": {"roles": [{"name": "headnode", "targetInstanceCount": 2, - "hardwareProfile": {"vmSize": "Large"}, "osProfile": {"linuxOperatingSystemProfile": - {"username": "sshuser", "password": "Password1!"}}}, {"name": "workernode", - "targetInstanceCount": 3, "hardwareProfile": {"vmSize": "Large"}, "osProfile": - {"linuxOperatingSystemProfile": {"username": "sshuser", "password": "Password1!"}}}, - {"name": "zookeepernode", "targetInstanceCount": 3, "hardwareProfile": {"vmSize": - "Small"}, "osProfile": {"linuxOperatingSystemProfile": {"username": "sshuser", - "password": "Password1!"}}}]}, "storageProfile": {"storageaccounts": [{"name": - "hdipy.blob.core.windows.net", "isDefault": true, "container": "hdisdk-cluster-rg296ce175c", - "key": "PgrAqrbhtYXQZs77oWlVzf3wLBc196EuHO85T0lTE95Za/zYN4AFi80KO89wTfB2bfq8fYp31QtWBB2RQIiDvQ=="}]}}}''' - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - Content-Length: - - '1167' - Content-Type: - - application/json; charset=utf-8 - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - accept-language: - - en-US - method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg296ce175c?api-version=2018-06-01-preview - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg296ce175c","name":"hdisdk-cluster-rg296ce175c","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"acb6f4d5-0a99-46e4-9b73-2245428ba23f","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2007210011.json","kind":"hadoop","componentVersion":{"hadoop":"2.7"}},"clusterId":"a1c1271f25104586bb4fe036ec1505c8","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a2_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"InProgress","clusterState":"Accepted","createdDate":"2020-08-14T09:25:38.387","quotaInfo":{"coresUsed":20},"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-cluster-rg296ce175c","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"m_Item1":"default","m_Item2":""}}}' - headers: - azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg296ce175c/azureasyncoperations/create?api-version=2018-06-01-preview - cache-control: - - no-cache - content-length: - - '1712' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 09:25:39 GMT - etag: - - '"acb6f4d5-0a99-46e4-9b73-2245428ba23f"' - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-clusteruri: - - https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg296ce175c?api-version=2018-06-01-preview - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - x-ms-ratelimit-remaining-subscription-writes: - - '1197' - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg296ce175c/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 09:26:11 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg296ce175c/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 09:26:42 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg296ce175c/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 09:27:12 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg296ce175c/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 09:27:43 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg296ce175c/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 09:28:13 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg296ce175c/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 09:28:44 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg296ce175c/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 09:29:15 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg296ce175c/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 09:29:45 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg296ce175c/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 09:30:16 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg296ce175c/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 09:30:46 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg296ce175c/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' + string: '{"status":"Succeeded"}' headers: cache-control: - no-cache content-length: - - '23' + - '22' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:31:16 GMT + - Tue, 20 Oct 2020 05:08:24 GMT expires: - '-1' pragma: @@ -2363,22 +1347,23 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg296ce175c/azureasyncoperations/create?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg196ce175c?api-version=2018-06-01-preview response: body: - string: '{"status":"InProgress"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg196ce175c","name":"hdisdk-cluster-rg196ce175c","type":"Microsoft.HDInsight/clusters","location":"North + Central US","etag":"f44c6c4e-8070-405d-8aed-81773ec74dd9","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3026-7","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2009301626.json","kind":"hadoop","componentVersion":{"hadoop":"2.7"}},"clusterId":"3774364202fb4aad82a5e027ce4ceb42","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a1_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2020-10-20T04:55:04.84","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdisdk-cluster-rg196ce175c-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdisdk-cluster-rg196ce175c.azurehdinsight.net","port":443}],"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-cluster-rg196ce175c","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"excludedServicesConfigId":"default","excludedServicesList":""},"computeIsolationProperties":{"enableComputeIsolation":false,"hostSku":null}}}' headers: cache-control: - no-cache content-length: - - '23' + - '2063' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:31:48 GMT + - Tue, 20 Oct 2020 05:08:24 GMT expires: - '-1' pragma: @@ -2401,7 +1386,20 @@ interactions: code: 200 message: OK - request: - body: null + body: 'b''{"location": "North Central US", "tags": {}, "properties": {"clusterVersion": + "3.6", "osType": "Linux", "tier": "Standard", "clusterDefinition": {"kind": + "hadoop", "configurations": {"gateway": {"restAuthCredential.isEnabled": "true", + "restAuthCredential.username": "admin", "restAuthCredential.password": "Password1!"}}}, + "computeProfile": {"roles": [{"name": "headnode", "targetInstanceCount": 2, + "hardwareProfile": {"vmSize": "Large"}, "osProfile": {"linuxOperatingSystemProfile": + {"username": "sshuser", "password": "Password1!"}}}, {"name": "workernode", + "targetInstanceCount": 3, "hardwareProfile": {"vmSize": "Large"}, "osProfile": + {"linuxOperatingSystemProfile": {"username": "sshuser", "password": "Password1!"}}}, + {"name": "zookeepernode", "targetInstanceCount": 3, "hardwareProfile": {"vmSize": + "Small"}, "osProfile": {"linuxOperatingSystemProfile": {"username": "sshuser", + "password": "Password1!"}}}]}, "storageProfile": {"storageaccounts": [{"name": + "hdipy.blob.core.windows.net", "isDefault": true, "container": "hdisdk-cluster-rg296ce175c", + "key": "kNdSlKMt3ZN2GY5yA6+ZrwZuQGrJd7hSEcxfkgpY0P1+v7yniSN3AU0xayZi+t+4sdpYnyd5e8YJEPe+ZCOq6A=="}]}}}''' headers: Accept: - application/json @@ -2409,70 +1407,34 @@ interactions: - gzip, deflate Connection: - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg296ce175c/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: + Content-Length: + - '1167' + Content-Type: - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 09:32:18 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg296ce175c/azureasyncoperations/create?api-version=2018-06-01-preview + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python + accept-language: + - en-US + method: PUT + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg296ce175c?api-version=2018-06-01-preview response: body: - string: '{"status":"InProgress"}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg296ce175c","name":"hdisdk-cluster-rg296ce175c","type":"Microsoft.HDInsight/clusters","location":"North + Central US","etag":"082edb22-bbb9-49f0-a686-8a1e7bbb7b07","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2009301626.json","kind":"hadoop","componentVersion":{"hadoop":"2.7"}},"clusterId":"9ddce76a1b544ff1bfab5c7d2ce0b539","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a1_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"InProgress","clusterState":"Accepted","createdDate":"2020-10-20T05:08:35.19","quotaInfo":{"coresUsed":20},"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-cluster-rg296ce175c","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"excludedServicesConfigId":"default","excludedServicesList":""},"computeIsolationProperties":{"enableComputeIsolation":false,"hostSku":null}}}' headers: + azure-asyncoperation: + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg296ce175c/azureasyncoperations/create?api-version=2018-06-01-preview cache-control: - no-cache content-length: - - '23' + - '1818' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:32:50 GMT + - Tue, 20 Oct 2020 05:08:36 GMT + etag: + - '"082edb22-bbb9-49f0-a686-8a1e7bbb7b07"' expires: - '-1' pragma: @@ -2485,12 +1447,16 @@ interactions: - Accept-Encoding x-content-type-options: - nosniff + x-ms-hdi-clusteruri: + - https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg296ce175c?api-version=2018-06-01-preview x-ms-hdi-matched-rule: - ClusterResourcesAndSubResources x-ms-hdi-routed-to: - RegionalRp x-ms-hdi-served-by: - northcentralus + x-ms-ratelimit-remaining-subscription-writes: + - '1198' status: code: 200 message: OK @@ -2504,8 +1470,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg296ce175c/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -2519,7 +1485,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:33:20 GMT + - Tue, 20 Oct 2020 05:09:07 GMT expires: - '-1' pragma: @@ -2551,8 +1517,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg296ce175c/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -2566,7 +1532,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:33:51 GMT + - Tue, 20 Oct 2020 05:09:37 GMT expires: - '-1' pragma: @@ -2598,8 +1564,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg296ce175c/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -2613,7 +1579,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:34:22 GMT + - Tue, 20 Oct 2020 05:10:07 GMT expires: - '-1' pragma: @@ -2645,8 +1611,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg296ce175c/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -2660,7 +1626,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:34:52 GMT + - Tue, 20 Oct 2020 05:10:39 GMT expires: - '-1' pragma: @@ -2692,8 +1658,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg296ce175c/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -2707,7 +1673,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:35:23 GMT + - Tue, 20 Oct 2020 05:11:09 GMT expires: - '-1' pragma: @@ -2739,8 +1705,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg296ce175c/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -2754,7 +1720,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:35:53 GMT + - Tue, 20 Oct 2020 05:11:40 GMT expires: - '-1' pragma: @@ -2786,8 +1752,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg296ce175c/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -2801,7 +1767,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:36:24 GMT + - Tue, 20 Oct 2020 05:12:10 GMT expires: - '-1' pragma: @@ -2833,8 +1799,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg296ce175c/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -2848,7 +1814,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:36:55 GMT + - Tue, 20 Oct 2020 05:12:41 GMT expires: - '-1' pragma: @@ -2880,8 +1846,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg296ce175c/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -2895,7 +1861,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:37:25 GMT + - Tue, 20 Oct 2020 05:13:11 GMT expires: - '-1' pragma: @@ -2927,8 +1893,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg296ce175c/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -2942,7 +1908,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:37:57 GMT + - Tue, 20 Oct 2020 05:13:42 GMT expires: - '-1' pragma: @@ -2974,8 +1940,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg296ce175c/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -2989,7 +1955,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:38:27 GMT + - Tue, 20 Oct 2020 05:14:13 GMT expires: - '-1' pragma: @@ -3021,8 +1987,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg296ce175c/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -3036,7 +2002,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:38:58 GMT + - Tue, 20 Oct 2020 05:14:45 GMT expires: - '-1' pragma: @@ -3068,8 +2034,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg296ce175c/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -3083,7 +2049,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:39:29 GMT + - Tue, 20 Oct 2020 05:15:15 GMT expires: - '-1' pragma: @@ -3115,8 +2081,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg296ce175c/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -3130,7 +2096,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:40:00 GMT + - Tue, 20 Oct 2020 05:15:45 GMT expires: - '-1' pragma: @@ -3162,8 +2128,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg296ce175c/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -3177,7 +2143,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:40:30 GMT + - Tue, 20 Oct 2020 05:16:15 GMT expires: - '-1' pragma: @@ -3209,8 +2175,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg296ce175c/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -3224,7 +2190,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:41:01 GMT + - Tue, 20 Oct 2020 05:16:47 GMT expires: - '-1' pragma: @@ -3256,8 +2222,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg296ce175c/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -3271,7 +2237,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:41:31 GMT + - Tue, 20 Oct 2020 05:17:17 GMT expires: - '-1' pragma: @@ -3303,8 +2269,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg296ce175c/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -3318,7 +2284,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:42:02 GMT + - Tue, 20 Oct 2020 05:17:47 GMT expires: - '-1' pragma: @@ -3350,8 +2316,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg296ce175c/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -3365,7 +2331,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:42:32 GMT + - Tue, 20 Oct 2020 05:18:18 GMT expires: - '-1' pragma: @@ -3397,8 +2363,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg296ce175c/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -3412,7 +2378,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:43:03 GMT + - Tue, 20 Oct 2020 05:18:49 GMT expires: - '-1' pragma: @@ -3444,8 +2410,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg296ce175c/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -3459,7 +2425,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:43:33 GMT + - Tue, 20 Oct 2020 05:19:20 GMT expires: - '-1' pragma: @@ -3491,8 +2457,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg296ce175c/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -3506,7 +2472,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:44:05 GMT + - Tue, 20 Oct 2020 05:19:51 GMT expires: - '-1' pragma: @@ -3538,8 +2504,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg296ce175c/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -3553,7 +2519,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:44:36 GMT + - Tue, 20 Oct 2020 05:20:21 GMT expires: - '-1' pragma: @@ -3585,8 +2551,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg296ce175c/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -3600,7 +2566,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:45:06 GMT + - Tue, 20 Oct 2020 05:20:53 GMT expires: - '-1' pragma: @@ -3632,8 +2598,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg296ce175c/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -3647,7 +2613,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:45:36 GMT + - Tue, 20 Oct 2020 05:21:23 GMT expires: - '-1' pragma: @@ -3679,8 +2645,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg296ce175c/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -3694,7 +2660,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:46:08 GMT + - Tue, 20 Oct 2020 05:21:53 GMT expires: - '-1' pragma: @@ -3726,8 +2692,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg296ce175c/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -3741,7 +2707,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:46:38 GMT + - Tue, 20 Oct 2020 05:22:24 GMT expires: - '-1' pragma: @@ -3773,23 +2739,23 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg296ce175c?api-version=2018-06-01-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg296ce175c","name":"hdisdk-cluster-rg296ce175c","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"acb6f4d5-0a99-46e4-9b73-2245428ba23f","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3027-5","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2007210011.json","kind":"hadoop","componentVersion":{"hadoop":"2.7"}},"clusterId":"a1c1271f25104586bb4fe036ec1505c8","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a2_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2020-08-14T09:25:38.387","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdisdk-cluster-rg296ce175c-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdisdk-cluster-rg296ce175c.azurehdinsight.net","port":443}],"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-cluster-rg296ce175c","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"m_Item1":"default","m_Item2":""}}}' + Central US","etag":"082edb22-bbb9-49f0-a686-8a1e7bbb7b07","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3026-7","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2009301626.json","kind":"hadoop","componentVersion":{"hadoop":"2.7"}},"clusterId":"9ddce76a1b544ff1bfab5c7d2ce0b539","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a1_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2020-10-20T05:08:35.19","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdisdk-cluster-rg296ce175c-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdisdk-cluster-rg296ce175c.azurehdinsight.net","port":443}],"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-cluster-rg296ce175c","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"excludedServicesConfigId":"default","excludedServicesList":""},"computeIsolationProperties":{"enableComputeIsolation":false,"hostSku":null}}}' headers: cache-control: - no-cache content-length: - - '1957' + - '2063' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:46:39 GMT + - Tue, 20 Oct 2020 05:22:24 GMT expires: - '-1' pragma: @@ -3821,8 +2787,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -3830,17 +2796,17 @@ interactions: response: body: string: '{"value":[{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg196ce175c","name":"hdisdk-cluster-rg196ce175c","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"156cb2cb-325d-4b66-ba8e-1612048a2389","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3027-5","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2007210011.json","kind":"hadoop","componentVersion":{"hadoop":"2.7"}},"clusterId":"3e1e8f5083d845998c2fa115b62c8cf6","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a2_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2020-08-14T09:08:00.717","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdisdk-cluster-rg196ce175c-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdisdk-cluster-rg196ce175c.azurehdinsight.net","port":443}],"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-cluster-rg196ce175c","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"m_Item1":"default","m_Item2":""}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg296ce175c","name":"hdisdk-cluster-rg296ce175c","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"acb6f4d5-0a99-46e4-9b73-2245428ba23f","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3027-5","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2007210011.json","kind":"hadoop","componentVersion":{"hadoop":"2.7"}},"clusterId":"a1c1271f25104586bb4fe036ec1505c8","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a2_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2020-08-14T09:25:38.387","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdisdk-cluster-rg296ce175c-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdisdk-cluster-rg296ce175c.azurehdinsight.net","port":443}],"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-cluster-rg296ce175c","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"m_Item1":"default","m_Item2":""}}}]}' + Central US","etag":"f44c6c4e-8070-405d-8aed-81773ec74dd9","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3026-7","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2009301626.json","kind":"hadoop","componentVersion":{"hadoop":"2.7"}},"clusterId":"3774364202fb4aad82a5e027ce4ceb42","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a1_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2020-10-20T04:55:04.84","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdisdk-cluster-rg196ce175c-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdisdk-cluster-rg196ce175c.azurehdinsight.net","port":443}],"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-cluster-rg196ce175c","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"excludedServicesConfigId":"default","excludedServicesList":""},"computeIsolationProperties":{"enableComputeIsolation":false,"hostSku":null}}},{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-96ce175c/providers/Microsoft.HDInsight/clusters/hdisdk-cluster-rg296ce175c","name":"hdisdk-cluster-rg296ce175c","type":"Microsoft.HDInsight/clusters","location":"North + Central US","etag":"082edb22-bbb9-49f0-a686-8a1e7bbb7b07","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3026-7","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2009301626.json","kind":"hadoop","componentVersion":{"hadoop":"2.7"}},"clusterId":"9ddce76a1b544ff1bfab5c7d2ce0b539","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a1_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2020-10-20T05:08:35.19","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdisdk-cluster-rg296ce175c-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdisdk-cluster-rg296ce175c.azurehdinsight.net","port":443}],"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-cluster-rg296ce175c","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"excludedServicesConfigId":"default","excludedServicesList":""},"computeIsolationProperties":{"enableComputeIsolation":false,"hostSku":null}}}]}' headers: cache-control: - no-cache content-length: - - '3927' + - '4139' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:46:41 GMT + - Tue, 20 Oct 2020 05:22:26 GMT expires: - '-1' pragma: diff --git a/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_resize_cluster.yaml b/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_resize_cluster.yaml index f37cab884d1d..eb41b8cf3d80 100644 --- a/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_resize_cluster.yaml +++ b/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_resize_cluster.yaml @@ -13,7 +13,7 @@ interactions: "Small"}, "osProfile": {"linuxOperatingSystemProfile": {"username": "sshuser", "password": "Password1!"}}}]}, "storageProfile": {"storageaccounts": [{"name": "hdipy.blob.core.windows.net", "isDefault": true, "container": "hdisdk-clusterresize43531036", - "key": "vwirtz4x3+UsmUAhBKaQ0nj0qtd5POqfhE1mvfT9NIEtUjiS6RFbxRmTA/5VOfFkGvxAfpNISmP7mVPie+DbnA=="}]}}}''' + "key": "Z6adXIVVZ+0m52f0RWlx5xSud3LBiRRg24DVHj9OHwssBvQpOyrfA7QLyY+Qphxog77W58xgCDPmWhrYwcEhGw=="}]}}}''' headers: Accept: - application/json @@ -26,8 +26,8 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python accept-language: - en-US method: PUT @@ -35,20 +35,20 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036","name":"hdisdk-clusterresize43531036","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"b8dd8389-0876-4e56-8897-c35211afe9f9","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2007210011.json","kind":"hadoop","componentVersion":{"hadoop":"2.7"}},"clusterId":"487083d406264709ad39d82ec020805f","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a2_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"InProgress","clusterState":"Accepted","createdDate":"2020-08-14T09:47:38.897","quotaInfo":{"coresUsed":20},"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-clusterresize43531036","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"m_Item1":"default","m_Item2":""}}}' + Central US","etag":"1d2b3e30-8b43-4774-bbab-ddc2d195e0f9","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2009301626.json","kind":"hadoop","componentVersion":{"hadoop":"2.7"}},"clusterId":"54929df3f9ae42c784f2c3363173496f","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a1_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"InProgress","clusterState":"Accepted","createdDate":"2020-10-20T05:23:26.953","quotaInfo":{"coresUsed":20},"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-clusterresize43531036","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"excludedServicesConfigId":"default","excludedServicesList":""},"computeIsolationProperties":{"enableComputeIsolation":false,"hostSku":null}}}' headers: azure-asyncoperation: - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/create?api-version=2018-06-01-preview cache-control: - no-cache content-length: - - '1718' + - '1825' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:47:40 GMT + - Tue, 20 Oct 2020 05:23:27 GMT etag: - - '"b8dd8389-0876-4e56-8897-c35211afe9f9"' + - '"1d2b3e30-8b43-4774-bbab-ddc2d195e0f9"' expires: - '-1' pragma: @@ -62,7 +62,7 @@ interactions: x-content-type-options: - nosniff x-ms-hdi-clusteruri: - - https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036?api-version=2018-06-01-preview + - https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036?api-version=2018-06-01-preview x-ms-hdi-matched-rule: - ClusterResourcesAndSubResources x-ms-hdi-routed-to: @@ -70,7 +70,7 @@ interactions: x-ms-hdi-served-by: - northcentralus x-ms-ratelimit-remaining-subscription-writes: - - '1196' + - '1198' status: code: 200 message: OK @@ -84,8 +84,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -99,7 +99,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:48:12 GMT + - Tue, 20 Oct 2020 05:24:00 GMT expires: - '-1' pragma: @@ -131,8 +131,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -146,7 +146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:48:43 GMT + - Tue, 20 Oct 2020 05:24:31 GMT expires: - '-1' pragma: @@ -178,8 +178,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -193,7 +193,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:49:13 GMT + - Tue, 20 Oct 2020 05:25:01 GMT expires: - '-1' pragma: @@ -225,8 +225,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -240,7 +240,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:49:44 GMT + - Tue, 20 Oct 2020 05:25:32 GMT expires: - '-1' pragma: @@ -272,8 +272,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -287,7 +287,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:50:15 GMT + - Tue, 20 Oct 2020 05:26:02 GMT expires: - '-1' pragma: @@ -319,8 +319,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -334,7 +334,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:50:45 GMT + - Tue, 20 Oct 2020 05:26:33 GMT expires: - '-1' pragma: @@ -366,8 +366,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -381,7 +381,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:51:15 GMT + - Tue, 20 Oct 2020 05:27:03 GMT expires: - '-1' pragma: @@ -413,8 +413,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -428,7 +428,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:51:47 GMT + - Tue, 20 Oct 2020 05:27:33 GMT expires: - '-1' pragma: @@ -460,8 +460,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -475,7 +475,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:52:17 GMT + - Tue, 20 Oct 2020 05:28:05 GMT expires: - '-1' pragma: @@ -507,8 +507,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -522,7 +522,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:52:47 GMT + - Tue, 20 Oct 2020 05:28:36 GMT expires: - '-1' pragma: @@ -554,8 +554,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -569,7 +569,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:53:18 GMT + - Tue, 20 Oct 2020 05:29:06 GMT expires: - '-1' pragma: @@ -601,8 +601,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -616,7 +616,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:53:48 GMT + - Tue, 20 Oct 2020 05:29:37 GMT expires: - '-1' pragma: @@ -648,8 +648,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -663,7 +663,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:54:21 GMT + - Tue, 20 Oct 2020 05:30:07 GMT expires: - '-1' pragma: @@ -695,8 +695,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -710,7 +710,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:54:51 GMT + - Tue, 20 Oct 2020 05:30:38 GMT expires: - '-1' pragma: @@ -742,8 +742,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -757,7 +757,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:55:21 GMT + - Tue, 20 Oct 2020 05:31:09 GMT expires: - '-1' pragma: @@ -789,8 +789,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -804,7 +804,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:55:52 GMT + - Tue, 20 Oct 2020 05:31:39 GMT expires: - '-1' pragma: @@ -836,8 +836,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -851,7 +851,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:56:23 GMT + - Tue, 20 Oct 2020 05:32:09 GMT expires: - '-1' pragma: @@ -883,8 +883,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -898,7 +898,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:56:53 GMT + - Tue, 20 Oct 2020 05:32:40 GMT expires: - '-1' pragma: @@ -930,8 +930,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -945,7 +945,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:57:24 GMT + - Tue, 20 Oct 2020 05:33:12 GMT expires: - '-1' pragma: @@ -977,8 +977,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -992,7 +992,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:57:54 GMT + - Tue, 20 Oct 2020 05:33:43 GMT expires: - '-1' pragma: @@ -1024,8 +1024,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1039,7 +1039,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:58:25 GMT + - Tue, 20 Oct 2020 05:34:13 GMT expires: - '-1' pragma: @@ -1071,8 +1071,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1086,7 +1086,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:58:56 GMT + - Tue, 20 Oct 2020 05:34:43 GMT expires: - '-1' pragma: @@ -1118,8 +1118,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1133,7 +1133,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:59:27 GMT + - Tue, 20 Oct 2020 05:35:14 GMT expires: - '-1' pragma: @@ -1165,8 +1165,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1180,7 +1180,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 09:59:57 GMT + - Tue, 20 Oct 2020 05:35:44 GMT expires: - '-1' pragma: @@ -1212,8 +1212,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1227,7 +1227,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:00:29 GMT + - Tue, 20 Oct 2020 05:36:15 GMT expires: - '-1' pragma: @@ -1259,8 +1259,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1274,7 +1274,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:00:59 GMT + - Tue, 20 Oct 2020 05:36:46 GMT expires: - '-1' pragma: @@ -1306,8 +1306,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1321,7 +1321,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:01:30 GMT + - Tue, 20 Oct 2020 05:37:16 GMT expires: - '-1' pragma: @@ -1353,8 +1353,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1368,7 +1368,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:02:01 GMT + - Tue, 20 Oct 2020 05:37:48 GMT expires: - '-1' pragma: @@ -1400,8 +1400,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1415,7 +1415,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:02:31 GMT + - Tue, 20 Oct 2020 05:38:18 GMT expires: - '-1' pragma: @@ -1447,8 +1447,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1462,7 +1462,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:03:01 GMT + - Tue, 20 Oct 2020 05:38:48 GMT expires: - '-1' pragma: @@ -1494,8 +1494,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1509,7 +1509,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:03:32 GMT + - Tue, 20 Oct 2020 05:39:20 GMT expires: - '-1' pragma: @@ -1541,8 +1541,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1556,7 +1556,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:04:03 GMT + - Tue, 20 Oct 2020 05:39:50 GMT expires: - '-1' pragma: @@ -1588,8 +1588,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1603,7 +1603,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:04:33 GMT + - Tue, 20 Oct 2020 05:40:21 GMT expires: - '-1' pragma: @@ -1635,102 +1635,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 10:05:04 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 10:05:34 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1744,7 +1650,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:06:06 GMT + - Tue, 20 Oct 2020 05:40:51 GMT expires: - '-1' pragma: @@ -1776,23 +1682,23 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036?api-version=2018-06-01-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036","name":"hdisdk-clusterresize43531036","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"b8dd8389-0876-4e56-8897-c35211afe9f9","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3027-5","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2007210011.json","kind":"hadoop","componentVersion":{"hadoop":"2.7"}},"clusterId":"487083d406264709ad39d82ec020805f","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a2_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2020-08-14T09:47:38.897","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdisdk-clusterresize43531036-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdisdk-clusterresize43531036.azurehdinsight.net","port":443}],"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-clusterresize43531036","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"m_Item1":"default","m_Item2":""}}}' + Central US","etag":"1d2b3e30-8b43-4774-bbab-ddc2d195e0f9","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3026-7","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2009301626.json","kind":"hadoop","componentVersion":{"hadoop":"2.7"}},"clusterId":"54929df3f9ae42c784f2c3363173496f","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a1_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2020-10-20T05:23:26.953","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdisdk-clusterresize43531036-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdisdk-clusterresize43531036.azurehdinsight.net","port":443}],"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-clusterresize43531036","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"excludedServicesConfigId":"default","excludedServicesList":""},"computeIsolationProperties":{"enableComputeIsolation":false,"hostSku":null}}}' headers: cache-control: - no-cache content-length: - - '1967' + - '2074' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:06:07 GMT + - Tue, 20 Oct 2020 05:40:51 GMT expires: - '-1' pragma: @@ -1824,8 +1730,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -1833,16 +1739,16 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036","name":"hdisdk-clusterresize43531036","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"b8dd8389-0876-4e56-8897-c35211afe9f9","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3027-5","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2007210011.json","kind":"hadoop","componentVersion":{"hadoop":"2.7"}},"clusterId":"487083d406264709ad39d82ec020805f","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a2_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2020-08-14T09:47:38.897","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdisdk-clusterresize43531036-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdisdk-clusterresize43531036.azurehdinsight.net","port":443}],"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-clusterresize43531036","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"m_Item1":"default","m_Item2":""}}}' + Central US","etag":"1d2b3e30-8b43-4774-bbab-ddc2d195e0f9","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3026-7","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2009301626.json","kind":"hadoop","componentVersion":{"hadoop":"2.7"}},"clusterId":"54929df3f9ae42c784f2c3363173496f","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a1_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2020-10-20T05:23:26.953","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdisdk-clusterresize43531036-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdisdk-clusterresize43531036.azurehdinsight.net","port":443}],"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-clusterresize43531036","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"excludedServicesConfigId":"default","excludedServicesList":""},"computeIsolationProperties":{"enableComputeIsolation":false,"hostSku":null}}}' headers: cache-control: - no-cache content-length: - - '1967' + - '2074' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:06:09 GMT + - Tue, 20 Oct 2020 05:40:53 GMT expires: - '-1' pragma: @@ -1878,8 +1784,8 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python accept-language: - en-US method: POST @@ -1889,17 +1795,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/4a2f7449-c4f0-4fab-81ef-d87c709b4b87-0-r?api-version=2018-06-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/a6eb14e3-a4ad-4765-8309-46c4cbcdca40-0-r?api-version=2018-06-01-preview cache-control: - no-cache content-length: - '0' date: - - Fri, 14 Aug 2020 10:06:10 GMT + - Tue, 20 Oct 2020 05:40:54 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/operationresults/4a2f7449-c4f0-4fab-81ef-d87c709b4b87-0-r?api-version=2018-06-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/operationresults/a6eb14e3-a4ad-4765-8309-46c4cbcdca40-0-r?api-version=2018-06-01-preview pragma: - no-cache strict-transport-security: @@ -1927,433 +1833,10 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/4a2f7449-c4f0-4fab-81ef-d87c709b4b87-0-r?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 10:07:12 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/4a2f7449-c4f0-4fab-81ef-d87c709b4b87-0-r?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 10:07:43 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/4a2f7449-c4f0-4fab-81ef-d87c709b4b87-0-r?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 10:08:13 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/4a2f7449-c4f0-4fab-81ef-d87c709b4b87-0-r?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 10:08:43 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/4a2f7449-c4f0-4fab-81ef-d87c709b4b87-0-r?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 10:09:14 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/4a2f7449-c4f0-4fab-81ef-d87c709b4b87-0-r?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 10:09:44 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/4a2f7449-c4f0-4fab-81ef-d87c709b4b87-0-r?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 10:10:14 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/4a2f7449-c4f0-4fab-81ef-d87c709b4b87-0-r?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 10:10:45 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/4a2f7449-c4f0-4fab-81ef-d87c709b4b87-0-r?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 10:11:16 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/4a2f7449-c4f0-4fab-81ef-d87c709b4b87-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/a6eb14e3-a4ad-4765-8309-46c4cbcdca40-0-r?api-version=2018-06-01-preview response: body: string: '{"status":"InProgress"}' @@ -2365,7 +1848,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:11:46 GMT + - Tue, 20 Oct 2020 05:41:57 GMT expires: - '-1' pragma: @@ -2397,10 +1880,10 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/4a2f7449-c4f0-4fab-81ef-d87c709b4b87-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/a6eb14e3-a4ad-4765-8309-46c4cbcdca40-0-r?api-version=2018-06-01-preview response: body: string: '{"status":"InProgress"}' @@ -2412,7 +1895,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:12:16 GMT + - Tue, 20 Oct 2020 05:42:27 GMT expires: - '-1' pragma: @@ -2444,10 +1927,10 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/4a2f7449-c4f0-4fab-81ef-d87c709b4b87-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/a6eb14e3-a4ad-4765-8309-46c4cbcdca40-0-r?api-version=2018-06-01-preview response: body: string: '{"status":"InProgress"}' @@ -2459,7 +1942,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:12:46 GMT + - Tue, 20 Oct 2020 05:42:57 GMT expires: - '-1' pragma: @@ -2491,10 +1974,10 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/4a2f7449-c4f0-4fab-81ef-d87c709b4b87-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/a6eb14e3-a4ad-4765-8309-46c4cbcdca40-0-r?api-version=2018-06-01-preview response: body: string: '{"status":"InProgress"}' @@ -2506,7 +1989,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:13:17 GMT + - Tue, 20 Oct 2020 05:43:28 GMT expires: - '-1' pragma: @@ -2538,10 +2021,10 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/4a2f7449-c4f0-4fab-81ef-d87c709b4b87-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/a6eb14e3-a4ad-4765-8309-46c4cbcdca40-0-r?api-version=2018-06-01-preview response: body: string: '{"status":"InProgress"}' @@ -2553,7 +2036,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:13:48 GMT + - Tue, 20 Oct 2020 05:43:58 GMT expires: - '-1' pragma: @@ -2585,10 +2068,10 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/4a2f7449-c4f0-4fab-81ef-d87c709b4b87-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/a6eb14e3-a4ad-4765-8309-46c4cbcdca40-0-r?api-version=2018-06-01-preview response: body: string: '{"status":"InProgress"}' @@ -2600,7 +2083,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:14:18 GMT + - Tue, 20 Oct 2020 05:44:28 GMT expires: - '-1' pragma: @@ -2632,10 +2115,10 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/4a2f7449-c4f0-4fab-81ef-d87c709b4b87-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/a6eb14e3-a4ad-4765-8309-46c4cbcdca40-0-r?api-version=2018-06-01-preview response: body: string: '{"status":"InProgress"}' @@ -2647,7 +2130,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:14:49 GMT + - Tue, 20 Oct 2020 05:44:59 GMT expires: - '-1' pragma: @@ -2679,10 +2162,10 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/4a2f7449-c4f0-4fab-81ef-d87c709b4b87-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/a6eb14e3-a4ad-4765-8309-46c4cbcdca40-0-r?api-version=2018-06-01-preview response: body: string: '{"status":"InProgress"}' @@ -2694,7 +2177,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:15:20 GMT + - Tue, 20 Oct 2020 05:45:29 GMT expires: - '-1' pragma: @@ -2726,10 +2209,10 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/4a2f7449-c4f0-4fab-81ef-d87c709b4b87-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036/azureasyncoperations/a6eb14e3-a4ad-4765-8309-46c4cbcdca40-0-r?api-version=2018-06-01-preview response: body: string: '{"status":"Succeeded"}' @@ -2741,7 +2224,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:15:50 GMT + - Tue, 20 Oct 2020 05:46:00 GMT expires: - '-1' pragma: @@ -2773,8 +2256,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -2782,16 +2265,16 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-43531036/providers/Microsoft.HDInsight/clusters/hdisdk-clusterresize43531036","name":"hdisdk-clusterresize43531036","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"b8dd8389-0876-4e56-8897-c35211afe9f9","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3027-5","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2007210011.json","kind":"hadoop","componentVersion":{"hadoop":"2.7"}},"clusterId":"487083d406264709ad39d82ec020805f","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":4,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a2_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2020-08-14T09:47:38.897","quotaInfo":{"coresUsed":24},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdisdk-clusterresize43531036-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdisdk-clusterresize43531036.azurehdinsight.net","port":443}],"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-clusterresize43531036","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"m_Item1":"default","m_Item2":""}}}' + Central US","etag":"1d2b3e30-8b43-4774-bbab-ddc2d195e0f9","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3026-7","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2009301626.json","kind":"hadoop","componentVersion":{"hadoop":"2.7"}},"clusterId":"54929df3f9ae42c784f2c3363173496f","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":4,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a1_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2020-10-20T05:23:26.953","quotaInfo":{"coresUsed":24},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdisdk-clusterresize43531036-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdisdk-clusterresize43531036.azurehdinsight.net","port":443}],"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-clusterresize43531036","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"excludedServicesConfigId":"default","excludedServicesList":""},"computeIsolationProperties":{"enableComputeIsolation":false,"hostSku":null}}}' headers: cache-control: - no-cache content-length: - - '1967' + - '2074' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:15:52 GMT + - Tue, 20 Oct 2020 05:46:02 GMT expires: - '-1' pragma: diff --git a/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_script_actions_on_running_cluster.yaml b/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_script_actions_on_running_cluster.yaml index 154cb62157b0..eb072e23fc21 100644 --- a/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_script_actions_on_running_cluster.yaml +++ b/sdk/hdinsight/azure-mgmt-hdinsight/test/recordings/test_mgmt_hdinsight.test_script_actions_on_running_cluster.yaml @@ -13,7 +13,7 @@ interactions: "Small"}, "osProfile": {"linuxOperatingSystemProfile": {"username": "sshuser", "password": "Password1!"}}}]}, "storageProfile": {"storageaccounts": [{"name": "hdipy.blob.core.windows.net", "isDefault": true, "container": "hdisdk-scriptactionsc5331825", - "key": "a4rZONbu/hXvbLDR73PQCZPf9TrlHVYxyKbfa1CrnVII6nSHIEfNT8NfQO+88Cj476le16suARMHwqHA3+92FA=="}]}}}''' + "key": "dzw1MspORFV4IUWhK89xH5RTS7ub8g4ehC+iMWu3WlnxfRUonFXvfK+U/3dxYlZNchQXHE30M8WkVl/r/3KAoQ=="}]}}}''' headers: Accept: - application/json @@ -26,8 +26,8 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python accept-language: - en-US method: PUT @@ -35,20 +35,20 @@ interactions: response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825","name":"hdisdk-scriptactionsc5331825","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"732e572d-d760-43b5-a81b-04da3e4803ec","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2007210011.json","kind":"hadoop","componentVersion":{"hadoop":"2.7"}},"clusterId":"af96d5b43ed34506ad9bf2fd91a9d7eb","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a2_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"InProgress","clusterState":"Accepted","createdDate":"2020-08-14T10:16:47.263","quotaInfo":{"coresUsed":20},"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-scriptactionsc5331825","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"m_Item1":"default","m_Item2":""}}}' + Central US","etag":"98b58db6-8495-43c6-9dbe-a6ca79a0a8dc","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2009301626.json","kind":"hadoop","componentVersion":{"hadoop":"2.7"}},"clusterId":"c23e0e7445944a7db8af47d81ead5e8f","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a1_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"InProgress","clusterState":"Accepted","createdDate":"2020-10-20T05:47:03.82","quotaInfo":{"coresUsed":20},"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-scriptactionsc5331825","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"excludedServicesConfigId":"default","excludedServicesList":""},"computeIsolationProperties":{"enableComputeIsolation":false,"hostSku":null}}}' headers: azure-asyncoperation: - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825/azureasyncoperations/create?api-version=2018-06-01-preview cache-control: - no-cache content-length: - - '1718' + - '1824' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:16:48 GMT + - Tue, 20 Oct 2020 05:47:04 GMT etag: - - '"732e572d-d760-43b5-a81b-04da3e4803ec"' + - '"98b58db6-8495-43c6-9dbe-a6ca79a0a8dc"' expires: - '-1' pragma: @@ -62,7 +62,7 @@ interactions: x-content-type-options: - nosniff x-ms-hdi-clusteruri: - - https://management.azure.com/subscriptions/92f95d8f-3c67-4124-91c7-8cf07cdbf241/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825?api-version=2018-06-01-preview + - https://management.azure.com/subscriptions/0b1f6471-1bf0-4dda-aec3-cb9272f09590/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825?api-version=2018-06-01-preview x-ms-hdi-matched-rule: - ClusterResourcesAndSubResources x-ms-hdi-routed-to: @@ -84,8 +84,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -99,7 +99,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:17:20 GMT + - Tue, 20 Oct 2020 05:47:37 GMT expires: - '-1' pragma: @@ -131,8 +131,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -146,7 +146,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:17:51 GMT + - Tue, 20 Oct 2020 05:48:07 GMT expires: - '-1' pragma: @@ -178,8 +178,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -193,7 +193,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:18:22 GMT + - Tue, 20 Oct 2020 05:48:38 GMT expires: - '-1' pragma: @@ -225,8 +225,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -240,7 +240,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:18:52 GMT + - Tue, 20 Oct 2020 05:49:08 GMT expires: - '-1' pragma: @@ -272,8 +272,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -287,7 +287,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:19:23 GMT + - Tue, 20 Oct 2020 05:49:39 GMT expires: - '-1' pragma: @@ -319,8 +319,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -334,7 +334,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:19:53 GMT + - Tue, 20 Oct 2020 05:50:10 GMT expires: - '-1' pragma: @@ -366,8 +366,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -381,7 +381,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:20:24 GMT + - Tue, 20 Oct 2020 05:50:40 GMT expires: - '-1' pragma: @@ -413,8 +413,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -428,7 +428,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:20:54 GMT + - Tue, 20 Oct 2020 05:51:10 GMT expires: - '-1' pragma: @@ -460,8 +460,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -475,7 +475,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:21:26 GMT + - Tue, 20 Oct 2020 05:51:41 GMT expires: - '-1' pragma: @@ -507,8 +507,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -522,7 +522,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:21:56 GMT + - Tue, 20 Oct 2020 05:52:12 GMT expires: - '-1' pragma: @@ -554,8 +554,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -569,7 +569,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:22:26 GMT + - Tue, 20 Oct 2020 05:52:43 GMT expires: - '-1' pragma: @@ -601,8 +601,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -616,7 +616,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:22:57 GMT + - Tue, 20 Oct 2020 05:53:13 GMT expires: - '-1' pragma: @@ -648,8 +648,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -663,7 +663,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:23:28 GMT + - Tue, 20 Oct 2020 05:53:43 GMT expires: - '-1' pragma: @@ -695,8 +695,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -710,7 +710,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:23:59 GMT + - Tue, 20 Oct 2020 05:54:15 GMT expires: - '-1' pragma: @@ -742,8 +742,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -757,7 +757,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:24:30 GMT + - Tue, 20 Oct 2020 05:54:45 GMT expires: - '-1' pragma: @@ -789,8 +789,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -804,7 +804,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:25:00 GMT + - Tue, 20 Oct 2020 05:55:16 GMT expires: - '-1' pragma: @@ -836,8 +836,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -851,7 +851,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:25:31 GMT + - Tue, 20 Oct 2020 05:55:47 GMT expires: - '-1' pragma: @@ -883,8 +883,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -898,7 +898,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:26:02 GMT + - Tue, 20 Oct 2020 05:56:18 GMT expires: - '-1' pragma: @@ -930,8 +930,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -945,7 +945,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:26:32 GMT + - Tue, 20 Oct 2020 05:56:48 GMT expires: - '-1' pragma: @@ -977,8 +977,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -992,7 +992,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:27:03 GMT + - Tue, 20 Oct 2020 05:57:18 GMT expires: - '-1' pragma: @@ -1024,8 +1024,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1039,7 +1039,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:27:34 GMT + - Tue, 20 Oct 2020 05:57:49 GMT expires: - '-1' pragma: @@ -1071,8 +1071,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1086,7 +1086,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:28:04 GMT + - Tue, 20 Oct 2020 05:58:19 GMT expires: - '-1' pragma: @@ -1118,8 +1118,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1133,7 +1133,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:28:35 GMT + - Tue, 20 Oct 2020 05:58:50 GMT expires: - '-1' pragma: @@ -1165,8 +1165,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1180,7 +1180,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:29:05 GMT + - Tue, 20 Oct 2020 05:59:21 GMT expires: - '-1' pragma: @@ -1212,8 +1212,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1227,7 +1227,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:29:35 GMT + - Tue, 20 Oct 2020 05:59:51 GMT expires: - '-1' pragma: @@ -1259,290 +1259,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 10:30:07 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 10:30:38 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 10:31:08 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 10:31:39 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 10:32:09 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825/azureasyncoperations/create?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 10:32:40 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825/azureasyncoperations/create?api-version=2018-06-01-preview response: @@ -1556,7 +1274,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:33:11 GMT + - Tue, 20 Oct 2020 06:00:22 GMT expires: - '-1' pragma: @@ -1588,23 +1306,23 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825?api-version=2018-06-01-preview response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825","name":"hdisdk-scriptactionsc5331825","type":"Microsoft.HDInsight/clusters","location":"North - Central US","etag":"732e572d-d760-43b5-a81b-04da3e4803ec","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3027-5","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2007210011.json","kind":"hadoop","componentVersion":{"hadoop":"2.7"}},"clusterId":"af96d5b43ed34506ad9bf2fd91a9d7eb","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a2_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2020-08-14T10:16:47.263","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdisdk-scriptactionsc5331825-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdisdk-scriptactionsc5331825.azurehdinsight.net","port":443}],"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-scriptactionsc5331825","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"m_Item1":"default","m_Item2":""}}}' + Central US","etag":"98b58db6-8495-43c6-9dbe-a6ca79a0a8dc","tags":{},"properties":{"clusterVersion":"3.6.1000.67","clusterHdpVersion":"2.6.5.3026-7","osType":"Linux","clusterDefinition":{"blueprint":"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2009301626.json","kind":"hadoop","componentVersion":{"hadoop":"2.7"}},"clusterId":"c23e0e7445944a7db8af47d81ead5e8f","computeProfile":{"roles":[{"name":"headnode","targetInstanceCount":2,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"workernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a4_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false},{"name":"zookeepernode","targetInstanceCount":3,"hardwareProfile":{"vmSize":"standard_a1_v2"},"osProfile":{"linuxOperatingSystemProfile":{"username":"sshuser"}},"encryptDataDisks":false}]},"provisioningState":"Succeeded","clusterState":"Running","createdDate":"2020-10-20T05:47:03.82","quotaInfo":{"coresUsed":20},"connectivityEndpoints":[{"name":"SSH","protocol":"TCP","location":"hdisdk-scriptactionsc5331825-ssh.azurehdinsight.net","port":22},{"name":"HTTPS","protocol":"TCP","location":"hdisdk-scriptactionsc5331825.azurehdinsight.net","port":443}],"tier":"standard","encryptionInTransitProperties":{"isEncryptionInTransitEnabled":false},"storageProfile":{"storageaccounts":[{"name":"hdipy.blob.core.windows.net","resourceId":null,"msiResourceId":null,"key":null,"fileSystem":null,"container":"hdisdk-scriptactionsc5331825","saskey":null,"isDefault":true,"fileshare":null}]},"excludedServicesConfig":{"excludedServicesConfigId":"default","excludedServicesList":""},"computeIsolationProperties":{"enableComputeIsolation":false,"hostSku":null}}}' headers: cache-control: - no-cache content-length: - - '1967' + - '2073' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:33:12 GMT + - Tue, 20 Oct 2020 06:00:23 GMT expires: - '-1' pragma: @@ -1641,8 +1359,8 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python accept-language: - en-US method: POST @@ -1652,17 +1370,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825/azureasyncoperations/ede40a1b-2dae-435e-9eff-febbbb9251d4-0-r?api-version=2018-06-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825/azureasyncoperations/05e669cf-f6ed-4346-b29c-70a16648aed0-0-r?api-version=2018-06-01-preview cache-control: - no-cache content-length: - '0' date: - - Fri, 14 Aug 2020 10:33:14 GMT + - Tue, 20 Oct 2020 06:00:26 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825/operationresults/ede40a1b-2dae-435e-9eff-febbbb9251d4-0-r?api-version=2018-06-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825/operationresults/05e669cf-f6ed-4346-b29c-70a16648aed0-0-r?api-version=2018-06-01-preview pragma: - no-cache strict-transport-security: @@ -1676,7 +1394,7 @@ interactions: x-ms-hdi-served-by: - northcentralus x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1196' status: code: 202 message: Accepted @@ -1690,10 +1408,10 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825/azureasyncoperations/ede40a1b-2dae-435e-9eff-febbbb9251d4-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825/azureasyncoperations/05e669cf-f6ed-4346-b29c-70a16648aed0-0-r?api-version=2018-06-01-preview response: body: string: '{"status":"InProgress"}' @@ -1705,7 +1423,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:34:16 GMT + - Tue, 20 Oct 2020 06:01:28 GMT expires: - '-1' pragma: @@ -1737,10 +1455,10 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825/azureasyncoperations/ede40a1b-2dae-435e-9eff-febbbb9251d4-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825/azureasyncoperations/05e669cf-f6ed-4346-b29c-70a16648aed0-0-r?api-version=2018-06-01-preview response: body: string: '{"status":"InProgress"}' @@ -1752,7 +1470,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:34:47 GMT + - Tue, 20 Oct 2020 06:01:58 GMT expires: - '-1' pragma: @@ -1784,57 +1502,10 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825/azureasyncoperations/ede40a1b-2dae-435e-9eff-febbbb9251d4-0-r?api-version=2018-06-01-preview - response: - body: - string: '{"status":"InProgress"}' - headers: - cache-control: - - no-cache - content-length: - - '23' - content-type: - - application/json; charset=utf-8 - date: - - Fri, 14 Aug 2020 10:35:17 GMT - expires: - - '-1' - pragma: - - no-cache - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding - x-content-type-options: - - nosniff - x-ms-hdi-matched-rule: - - ClusterResourcesAndSubResources - x-ms-hdi-routed-to: - - RegionalRp - x-ms-hdi-served-by: - - northcentralus - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825/azureasyncoperations/ede40a1b-2dae-435e-9eff-febbbb9251d4-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825/azureasyncoperations/05e669cf-f6ed-4346-b29c-70a16648aed0-0-r?api-version=2018-06-01-preview response: body: string: '{"status":"Succeeded"}' @@ -1846,7 +1517,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:35:47 GMT + - Tue, 20 Oct 2020 06:02:30 GMT expires: - '-1' pragma: @@ -1878,8 +1549,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -1895,7 +1566,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:35:49 GMT + - Tue, 20 Oct 2020 06:02:31 GMT expires: - '-1' pragma: @@ -1929,8 +1600,8 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python accept-language: - en-US method: DELETE @@ -1944,7 +1615,7 @@ interactions: content-length: - '0' date: - - Fri, 14 Aug 2020 10:35:50 GMT + - Tue, 20 Oct 2020 06:02:31 GMT expires: - '-1' pragma: @@ -1974,8 +1645,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -1991,7 +1662,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:35:50 GMT + - Tue, 20 Oct 2020 06:02:32 GMT expires: - '-1' pragma: @@ -2023,24 +1694,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825/scriptExecutionHistory?api-version=2018-06-01-preview response: body: - string: '{"value":[{"scriptExecutionId":1457947946130813,"name":"script1","applicationName":null,"uri":"https://hdiconfigactions.blob.core.windows.net/linuxgiraphconfigactionv01/giraph-installer-v01.sh","parameters":"","roles":["headnode","workernode"],"startTime":"2020-08-14T10:33:16.7636025Z","endTime":"2020-08-14T10:35:38.070997Z","status":"Succeeded","operation":"PostClusterCreateScriptActionRequest","executionSummary":[{"status":"COMPLETED","instanceCount":5}]}]}' + string: '{"value":[{"scriptExecutionId":1515672268358589,"name":"script1","applicationName":null,"uri":"https://hdiconfigactions.blob.core.windows.net/linuxgiraphconfigactionv01/giraph-installer-v01.sh","parameters":"","roles":["headnode","workernode"],"startTime":"2020-10-20T06:00:28.740305Z","endTime":"2020-10-20T06:02:09.91357Z","status":"Succeeded","operation":"PostClusterCreateScriptActionRequest","executionSummary":[{"status":"COMPLETED","instanceCount":5}]}]}' headers: cache-control: - no-cache content-length: - - '463' + - '461' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:35:51 GMT + - Tue, 20 Oct 2020 06:02:32 GMT expires: - '-1' pragma: @@ -2072,29 +1743,29 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825/scriptExecutionHistory/1457947946130813?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825/scriptExecutionHistory/1515672268358589?api-version=2018-06-01-preview response: body: - string: '{"scriptExecutionId":1457947946130813,"name":"script1","applicationName":null,"uri":"https://hdiconfigactions.blob.core.windows.net/linuxgiraphconfigactionv01/giraph-installer-v01.sh","parameters":"","roles":["headnode","workernode"],"startTime":"2020-08-14T10:33:16.7636025Z","endTime":"2020-08-14T10:35:38.070997Z","status":"Succeeded","operation":"PostClusterCreateScriptActionRequest","executionSummary":[{"status":"COMPLETED","instanceCount":5}],"debugInformation":"{\"href\":\"http://hn0-hdisdk.0pxgbfmaxnsezlh2dhx02i4yme.ex.internal.cloudapp.net:8080/api/v1/clusters/hdisdk-scriptactionsc5331825/requests/31\",\"tasks\":[{\"href\":\"http://hn0-hdisdk.0pxgbfmaxnsezlh2dhx02i4yme.ex.internal.cloudapp.net:8080/api/v1/clusters/hdisdk-scriptactionsc5331825/requests/31/tasks/82\",\"Tasks\":{\"attempt_cnt\":1,\"command\":\"ACTIONEXECUTE\",\"command_detail\":\"run_customscriptaction - ACTIONEXECUTE\",\"end_time\":1597401337005,\"error_log\":\"/var/lib/ambari-agent/data/errors-82.txt\",\"exit_code\":0,\"host_name\":\"hn0-hdisdk.0pxgbfmaxnsezlh2dhx02i4yme.ex.internal.cloudapp.net\",\"id\":\"82\",\"output_log\":\"/var/lib/ambari-agent/data/output-82.txt\",\"request_id\":\"31\",\"role\":\"run_customscriptaction\",\"stage_id\":\"0\",\"start_time\":1597401303922,\"status\":\"COMPLETED\",\"stderr\":null,\"stdout\":null,\"structured_out\":null}},{\"href\":\"http://hn0-hdisdk.0pxgbfmaxnsezlh2dhx02i4yme.ex.internal.cloudapp.net:8080/api/v1/clusters/hdisdk-scriptactionsc5331825/requests/31/tasks/83\",\"Tasks\":{\"attempt_cnt\":1,\"command\":\"ACTIONEXECUTE\",\"command_detail\":\"run_customscriptaction - ACTIONEXECUTE\",\"end_time\":1597401332001,\"error_log\":\"/var/lib/ambari-agent/data/errors-83.txt\",\"exit_code\":0,\"host_name\":\"hn1-hdisdk.0pxgbfmaxnsezlh2dhx02i4yme.ex.internal.cloudapp.net\",\"id\":\"83\",\"output_log\":\"/var/lib/ambari-agent/data/output-83.txt\",\"request_id\":\"31\",\"role\":\"run_customscriptaction\",\"stage_id\":\"0\",\"start_time\":1597401303922,\"status\":\"COMPLETED\",\"stderr\":null,\"stdout\":null,\"structured_out\":null}},{\"href\":\"http://hn0-hdisdk.0pxgbfmaxnsezlh2dhx02i4yme.ex.internal.cloudapp.net:8080/api/v1/clusters/hdisdk-scriptactionsc5331825/requests/31/tasks/84\",\"Tasks\":{\"attempt_cnt\":1,\"command\":\"ACTIONEXECUTE\",\"command_detail\":\"run_customscriptaction - ACTIONEXECUTE\",\"end_time\":1597401312021,\"error_log\":\"/var/lib/ambari-agent/data/errors-84.txt\",\"exit_code\":0,\"host_name\":\"wn1-hdisdk.0pxgbfmaxnsezlh2dhx02i4yme.ex.internal.cloudapp.net\",\"id\":\"84\",\"output_log\":\"/var/lib/ambari-agent/data/output-84.txt\",\"request_id\":\"31\",\"role\":\"run_customscriptaction\",\"stage_id\":\"0\",\"start_time\":1597401303922,\"status\":\"COMPLETED\",\"stderr\":null,\"stdout\":null,\"structured_out\":null}},{\"href\":\"http://hn0-hdisdk.0pxgbfmaxnsezlh2dhx02i4yme.ex.internal.cloudapp.net:8080/api/v1/clusters/hdisdk-scriptactionsc5331825/requests/31/tasks/85\",\"Tasks\":{\"attempt_cnt\":1,\"command\":\"ACTIONEXECUTE\",\"command_detail\":\"run_customscriptaction - ACTIONEXECUTE\",\"end_time\":1597401308002,\"error_log\":\"/var/lib/ambari-agent/data/errors-85.txt\",\"exit_code\":0,\"host_name\":\"wn2-hdisdk.0pxgbfmaxnsezlh2dhx02i4yme.ex.internal.cloudapp.net\",\"id\":\"85\",\"output_log\":\"/var/lib/ambari-agent/data/output-85.txt\",\"request_id\":\"31\",\"role\":\"run_customscriptaction\",\"stage_id\":\"0\",\"start_time\":1597401303922,\"status\":\"COMPLETED\",\"stderr\":null,\"stdout\":null,\"structured_out\":null}},{\"href\":\"http://hn0-hdisdk.0pxgbfmaxnsezlh2dhx02i4yme.ex.internal.cloudapp.net:8080/api/v1/clusters/hdisdk-scriptactionsc5331825/requests/31/tasks/86\",\"Tasks\":{\"attempt_cnt\":1,\"command\":\"ACTIONEXECUTE\",\"command_detail\":\"run_customscriptaction - ACTIONEXECUTE\",\"end_time\":1597401312047,\"error_log\":\"/var/lib/ambari-agent/data/errors-86.txt\",\"exit_code\":0,\"host_name\":\"wn4-hdisdk.0pxgbfmaxnsezlh2dhx02i4yme.ex.internal.cloudapp.net\",\"id\":\"86\",\"output_log\":\"/var/lib/ambari-agent/data/output-86.txt\",\"request_id\":\"31\",\"role\":\"run_customscriptaction\",\"stage_id\":\"0\",\"start_time\":1597401303922,\"status\":\"COMPLETED\",\"stderr\":null,\"stdout\":null,\"structured_out\":null}}]}"}' + string: '{"scriptExecutionId":1515672268358589,"name":"script1","applicationName":null,"uri":"https://hdiconfigactions.blob.core.windows.net/linuxgiraphconfigactionv01/giraph-installer-v01.sh","parameters":"","roles":["headnode","workernode"],"startTime":"2020-10-20T06:00:28.740305Z","endTime":"2020-10-20T06:02:09.91357Z","status":"Succeeded","operation":"PostClusterCreateScriptActionRequest","executionSummary":[{"status":"COMPLETED","instanceCount":5}],"debugInformation":"{\"href\":\"http://hn1-hdisdk.u5eyzlh2we0eldnafhbn5uumgc.ex.internal.cloudapp.net:8080/api/v1/clusters/hdisdk-scriptactionsc5331825/requests/40\",\"tasks\":[{\"href\":\"http://hn1-hdisdk.u5eyzlh2we0eldnafhbn5uumgc.ex.internal.cloudapp.net:8080/api/v1/clusters/hdisdk-scriptactionsc5331825/requests/40/tasks/86\",\"Tasks\":{\"attempt_cnt\":1,\"command\":\"ACTIONEXECUTE\",\"command_detail\":\"run_customscriptaction + ACTIONEXECUTE\",\"end_time\":1603173728790,\"error_log\":\"/var/lib/ambari-agent/data/errors-86.txt\",\"exit_code\":0,\"host_name\":\"hn0-hdisdk.u5eyzlh2we0eldnafhbn5uumgc.ex.internal.cloudapp.net\",\"id\":\"86\",\"output_log\":\"/var/lib/ambari-agent/data/output-86.txt\",\"request_id\":\"40\",\"role\":\"run_customscriptaction\",\"stage_id\":\"0\",\"start_time\":1603173697040,\"status\":\"COMPLETED\",\"stderr\":null,\"stdout\":null,\"structured_out\":null}},{\"href\":\"http://hn1-hdisdk.u5eyzlh2we0eldnafhbn5uumgc.ex.internal.cloudapp.net:8080/api/v1/clusters/hdisdk-scriptactionsc5331825/requests/40/tasks/87\",\"Tasks\":{\"attempt_cnt\":1,\"command\":\"ACTIONEXECUTE\",\"command_detail\":\"run_customscriptaction + ACTIONEXECUTE\",\"end_time\":1603173729792,\"error_log\":\"/var/lib/ambari-agent/data/errors-87.txt\",\"exit_code\":0,\"host_name\":\"hn1-hdisdk.u5eyzlh2we0eldnafhbn5uumgc.ex.internal.cloudapp.net\",\"id\":\"87\",\"output_log\":\"/var/lib/ambari-agent/data/output-87.txt\",\"request_id\":\"40\",\"role\":\"run_customscriptaction\",\"stage_id\":\"0\",\"start_time\":1603173697041,\"status\":\"COMPLETED\",\"stderr\":null,\"stdout\":null,\"structured_out\":null}},{\"href\":\"http://hn1-hdisdk.u5eyzlh2we0eldnafhbn5uumgc.ex.internal.cloudapp.net:8080/api/v1/clusters/hdisdk-scriptactionsc5331825/requests/40/tasks/88\",\"Tasks\":{\"attempt_cnt\":1,\"command\":\"ACTIONEXECUTE\",\"command_detail\":\"run_customscriptaction + ACTIONEXECUTE\",\"end_time\":1603173708790,\"error_log\":\"/var/lib/ambari-agent/data/errors-88.txt\",\"exit_code\":0,\"host_name\":\"wn1-hdisdk.u5eyzlh2we0eldnafhbn5uumgc.ex.internal.cloudapp.net\",\"id\":\"88\",\"output_log\":\"/var/lib/ambari-agent/data/output-88.txt\",\"request_id\":\"40\",\"role\":\"run_customscriptaction\",\"stage_id\":\"0\",\"start_time\":1603173697041,\"status\":\"COMPLETED\",\"stderr\":null,\"stdout\":null,\"structured_out\":null}},{\"href\":\"http://hn1-hdisdk.u5eyzlh2we0eldnafhbn5uumgc.ex.internal.cloudapp.net:8080/api/v1/clusters/hdisdk-scriptactionsc5331825/requests/40/tasks/89\",\"Tasks\":{\"attempt_cnt\":1,\"command\":\"ACTIONEXECUTE\",\"command_detail\":\"run_customscriptaction + ACTIONEXECUTE\",\"end_time\":1603173703791,\"error_log\":\"/var/lib/ambari-agent/data/errors-89.txt\",\"exit_code\":0,\"host_name\":\"wn2-hdisdk.u5eyzlh2we0eldnafhbn5uumgc.ex.internal.cloudapp.net\",\"id\":\"89\",\"output_log\":\"/var/lib/ambari-agent/data/output-89.txt\",\"request_id\":\"40\",\"role\":\"run_customscriptaction\",\"stage_id\":\"0\",\"start_time\":1603173697041,\"status\":\"COMPLETED\",\"stderr\":null,\"stdout\":null,\"structured_out\":null}},{\"href\":\"http://hn1-hdisdk.u5eyzlh2we0eldnafhbn5uumgc.ex.internal.cloudapp.net:8080/api/v1/clusters/hdisdk-scriptactionsc5331825/requests/40/tasks/90\",\"Tasks\":{\"attempt_cnt\":1,\"command\":\"ACTIONEXECUTE\",\"command_detail\":\"run_customscriptaction + ACTIONEXECUTE\",\"end_time\":1603173702823,\"error_log\":\"/var/lib/ambari-agent/data/errors-90.txt\",\"exit_code\":0,\"host_name\":\"wn4-hdisdk.u5eyzlh2we0eldnafhbn5uumgc.ex.internal.cloudapp.net\",\"id\":\"90\",\"output_log\":\"/var/lib/ambari-agent/data/output-90.txt\",\"request_id\":\"40\",\"role\":\"run_customscriptaction\",\"stage_id\":\"0\",\"start_time\":1603173697041,\"status\":\"COMPLETED\",\"stderr\":null,\"stdout\":null,\"structured_out\":null}}]}"}' headers: cache-control: - no-cache content-length: - - '4231' + - '4229' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:35:52 GMT + - Tue, 20 Oct 2020 06:02:33 GMT expires: - '-1' pragma: @@ -2131,8 +1802,8 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python accept-language: - en-US method: POST @@ -2142,17 +1813,17 @@ interactions: string: '' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825/azureasyncoperations/058f46ef-e7dd-4433-b02f-ce259ea8793e-0-r?api-version=2018-06-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825/azureasyncoperations/724151ac-43f2-48c1-b28f-dc3b591236b8-0-r?api-version=2018-06-01-preview cache-control: - no-cache content-length: - '0' date: - - Fri, 14 Aug 2020 10:35:53 GMT + - Tue, 20 Oct 2020 06:02:35 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825/operationresults/058f46ef-e7dd-4433-b02f-ce259ea8793e-0-r?api-version=2018-06-01-preview + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825/operationresults/724151ac-43f2-48c1-b28f-dc3b591236b8-0-r?api-version=2018-06-01-preview pragma: - no-cache strict-transport-security: @@ -2166,7 +1837,7 @@ interactions: x-ms-hdi-served-by: - northcentralus x-ms-ratelimit-remaining-subscription-writes: - - '1199' + - '1195' status: code: 202 message: Accepted @@ -2180,10 +1851,10 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825/azureasyncoperations/058f46ef-e7dd-4433-b02f-ce259ea8793e-0-r?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825/azureasyncoperations/724151ac-43f2-48c1-b28f-dc3b591236b8-0-r?api-version=2018-06-01-preview response: body: string: '{"status":"Succeeded"}' @@ -2195,7 +1866,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:36:54 GMT + - Tue, 20 Oct 2020 06:03:37 GMT expires: - '-1' pragma: @@ -2227,24 +1898,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825/scriptExecutionHistory?api-version=2018-06-01-preview response: body: - string: '{"value":[{"scriptExecutionId":1457949535893981,"name":"script5baf","applicationName":null,"uri":"https://hdiconfigactions.blob.core.windows.net/linuxgiraphconfigactionv01/giraph-installer-v01.sh","parameters":"","roles":["headnode","workernode"],"startTime":"2020-08-14T10:35:55.3006071Z","endTime":"2020-08-14T10:36:05.4630002Z","status":"Succeeded","operation":"PostClusterCreateScriptActionRequest","executionSummary":[{"status":"COMPLETED","instanceCount":5}]},{"scriptExecutionId":1457947946130813,"name":"script1","applicationName":null,"uri":"https://hdiconfigactions.blob.core.windows.net/linuxgiraphconfigactionv01/giraph-installer-v01.sh","parameters":"","roles":["headnode","workernode"],"startTime":"2020-08-14T10:33:16.7636025Z","endTime":"2020-08-14T10:35:38.070997Z","status":"Succeeded","operation":"PostClusterCreateScriptActionRequest","executionSummary":[{"status":"COMPLETED","instanceCount":5}]}]}' + string: '{"value":[{"scriptExecutionId":1515673550657069,"name":"script5baf","applicationName":null,"uri":"https://hdiconfigactions.blob.core.windows.net/linuxgiraphconfigactionv01/giraph-installer-v01.sh","parameters":"","roles":["headnode","workernode"],"startTime":"2020-10-20T06:02:36.9598254Z","endTime":"2020-10-20T06:02:47.1431684Z","status":"Succeeded","operation":"PostClusterCreateScriptActionRequest","executionSummary":[{"status":"COMPLETED","instanceCount":5}]},{"scriptExecutionId":1515672268358589,"name":"script1","applicationName":null,"uri":"https://hdiconfigactions.blob.core.windows.net/linuxgiraphconfigactionv01/giraph-installer-v01.sh","parameters":"","roles":["headnode","workernode"],"startTime":"2020-10-20T06:00:28.740305Z","endTime":"2020-10-20T06:02:09.91357Z","status":"Succeeded","operation":"PostClusterCreateScriptActionRequest","executionSummary":[{"status":"COMPLETED","instanceCount":5}]}]}' headers: cache-control: - no-cache content-length: - - '919' + - '917' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:36:57 GMT + - Tue, 20 Oct 2020 06:03:37 GMT expires: - '-1' pragma: @@ -2278,12 +1949,12 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825/scriptExecutionHistory/1457949535893981/promote?api-version=2018-06-01-preview + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825/scriptExecutionHistory/1515673550657069/promote?api-version=2018-06-01-preview response: body: string: '' @@ -2293,7 +1964,7 @@ interactions: content-length: - '0' date: - - Fri, 14 Aug 2020 10:36:58 GMT + - Tue, 20 Oct 2020 06:03:39 GMT expires: - '-1' pragma: @@ -2309,7 +1980,7 @@ interactions: x-ms-hdi-served-by: - northcentralus x-ms-ratelimit-remaining-subscription-writes: - - '1198' + - '1194' status: code: 200 message: OK @@ -2323,8 +1994,8 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python accept-language: - en-US method: GET @@ -2340,7 +2011,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:36:58 GMT + - Tue, 20 Oct 2020 06:03:40 GMT expires: - '-1' pragma: @@ -2372,24 +2043,24 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.6.8 (Windows-10-10.0.19041-SP0) msrest/0.6.13 msrest_azure/0.4.34 - azure-mgmt-hdinsight/1.7.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-hdinsight/2.0.0 Azure-SDK-For-Python accept-language: - en-US method: GET uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/hdipy-c5331825/providers/Microsoft.HDInsight/clusters/hdisdk-scriptactionsc5331825/scriptExecutionHistory?api-version=2018-06-01-preview response: body: - string: '{"value":[{"scriptExecutionId":1457949535893981,"name":"script5baf","applicationName":null,"uri":"https://hdiconfigactions.blob.core.windows.net/linuxgiraphconfigactionv01/giraph-installer-v01.sh","parameters":"","roles":["headnode","workernode"],"startTime":"2020-08-14T10:35:55.3006071Z","endTime":"2020-08-14T10:36:05.4630002Z","status":"Succeeded","operation":"PostClusterCreateScriptActionRequest","executionSummary":[{"status":"COMPLETED","instanceCount":5}]},{"scriptExecutionId":1457947946130813,"name":"script1","applicationName":null,"uri":"https://hdiconfigactions.blob.core.windows.net/linuxgiraphconfigactionv01/giraph-installer-v01.sh","parameters":"","roles":["headnode","workernode"],"startTime":"2020-08-14T10:33:16.7636025Z","endTime":"2020-08-14T10:35:38.070997Z","status":"Succeeded","operation":"PostClusterCreateScriptActionRequest","executionSummary":[{"status":"COMPLETED","instanceCount":5}]}]}' + string: '{"value":[{"scriptExecutionId":1515673550657069,"name":"script5baf","applicationName":null,"uri":"https://hdiconfigactions.blob.core.windows.net/linuxgiraphconfigactionv01/giraph-installer-v01.sh","parameters":"","roles":["headnode","workernode"],"startTime":"2020-10-20T06:02:36.9598254Z","endTime":"2020-10-20T06:02:47.1431684Z","status":"Succeeded","operation":"PostClusterCreateScriptActionRequest","executionSummary":[{"status":"COMPLETED","instanceCount":5}]},{"scriptExecutionId":1515672268358589,"name":"script1","applicationName":null,"uri":"https://hdiconfigactions.blob.core.windows.net/linuxgiraphconfigactionv01/giraph-installer-v01.sh","parameters":"","roles":["headnode","workernode"],"startTime":"2020-10-20T06:00:28.740305Z","endTime":"2020-10-20T06:02:09.91357Z","status":"Succeeded","operation":"PostClusterCreateScriptActionRequest","executionSummary":[{"status":"COMPLETED","instanceCount":5}]}]}' headers: cache-control: - no-cache content-length: - - '919' + - '917' content-type: - application/json; charset=utf-8 date: - - Fri, 14 Aug 2020 10:36:59 GMT + - Tue, 20 Oct 2020 06:03:40 GMT expires: - '-1' pragma: diff --git a/sdk/hdinsight/azure-mgmt-hdinsight/test/test_mgmt_hdinsight.py b/sdk/hdinsight/azure-mgmt-hdinsight/test/test_mgmt_hdinsight.py index e0ba0e127dca..974be7c97202 100644 --- a/sdk/hdinsight/azure-mgmt-hdinsight/test/test_mgmt_hdinsight.py +++ b/sdk/hdinsight/azure-mgmt-hdinsight/test/test_mgmt_hdinsight.py @@ -317,12 +317,13 @@ def test_create_rserver_cluster(self, resource_group, location, storage_account, cluster = create_poller.result() self.validate_cluster(cluster_name, create_params, cluster) + @unittest.skip("HDInsight will not support to create MLService cluster after 1/1/2021.") @ResourceGroupPreparer(name_prefix='hdipy-', location=LOCATION) @StorageAccountPreparer(name_prefix='hdipy', location=LOCATION) def test_create_mlservices_cluster(self, resource_group, location, storage_account, storage_account_key): cluster_name = self.get_resource_name('hdisdk-mlservices') create_params = self.get_cluster_create_params(location, cluster_name, storage_account, storage_account_key) - create_params.properties.cluster_version = "3.6" + create_params.properties.cluster_version = "4.0" create_params.properties.cluster_definition.kind = 'MLServices' create_params.properties.compute_profile.roles.append( Role( diff --git a/sdk/kusto/azure-mgmt-kusto/CHANGELOG.md b/sdk/kusto/azure-mgmt-kusto/CHANGELOG.md index a076e7efca5f..e44cecd5b0c6 100644 --- a/sdk/kusto/azure-mgmt-kusto/CHANGELOG.md +++ b/sdk/kusto/azure-mgmt-kusto/CHANGELOG.md @@ -1,5 +1,16 @@ # Release History +## 0.10.0 (2020-10-23) + +**Features** + + - Model EventHubDataConnection has a new parameter provisioning_state + - Model KeyVaultProperties has a new parameter user_identity + - Model EventGridDataConnection has a new parameter provisioning_state + - Model IotHubDataConnection has a new parameter provisioning_state + - Model Cluster has a new parameter engine_type + - Model ClusterUpdate has a new parameter engine_type + ## 0.9.0 (2020-07-13) **Features** diff --git a/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/_kusto_management_client.py b/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/_kusto_management_client.py index 595bd9af8f43..782bee0f4f29 100644 --- a/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/_kusto_management_client.py +++ b/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/_kusto_management_client.py @@ -61,7 +61,7 @@ def __init__( super(KustoManagementClient, self).__init__(self.config.credentials, self.config) client_models = {k: v for k, v in models.__dict__.items() if isinstance(v, type)} - self.api_version = '2020-06-14' + self.api_version = '2020-09-18' self._serialize = Serializer(client_models) self._deserialize = Deserializer(client_models) diff --git a/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/models/__init__.py b/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/models/__init__.py index 4b4cde2b39c2..c84307e11514 100644 --- a/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/models/__init__.py +++ b/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/models/__init__.py @@ -119,6 +119,7 @@ State, ProvisioningState, LanguageExtensionName, + EngineType, AzureSkuName, AzureSkuTier, AzureScaleType, @@ -200,6 +201,7 @@ 'State', 'ProvisioningState', 'LanguageExtensionName', + 'EngineType', 'AzureSkuName', 'AzureSkuTier', 'AzureScaleType', diff --git a/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/models/_kusto_management_client_enums.py b/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/models/_kusto_management_client_enums.py index cade6676edc6..b9bc2cdde484 100644 --- a/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/models/_kusto_management_client_enums.py +++ b/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/models/_kusto_management_client_enums.py @@ -41,6 +41,12 @@ class LanguageExtensionName(str, Enum): r = "R" +class EngineType(str, Enum): + + v2 = "V2" + v3 = "V3" + + class AzureSkuName(str, Enum): standard_ds13_v21_tb_ps = "Standard_DS13_v2+1TB_PS" @@ -55,6 +61,7 @@ class AzureSkuName(str, Enum): standard_d12_v2 = "Standard_D12_v2" standard_l4s = "Standard_L4s" dev_no_sla_standard_d11_v2 = "Dev(No SLA)_Standard_D11_v2" + standard_e64i_v3 = "Standard_E64i_v3" standard_e2a_v4 = "Standard_E2a_v4" standard_e4a_v4 = "Standard_E4a_v4" standard_e8a_v4 = "Standard_E8a_v4" @@ -169,6 +176,8 @@ class IdentityType(str, Enum): none = "None" system_assigned = "SystemAssigned" + user_assigned = "UserAssigned" + system_assigned_user_assigned = "SystemAssigned, UserAssigned" class DatabasePrincipalRole(str, Enum): diff --git a/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/models/_models.py b/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/models/_models.py index 0dbc4cf11a18..4f2511e4301e 100644 --- a/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/models/_models.py +++ b/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/models/_models.py @@ -264,10 +264,10 @@ class AzureSku(Model): 'Standard_DS14_v2+3TB_PS', 'Standard_DS14_v2+4TB_PS', 'Standard_D13_v2', 'Standard_D14_v2', 'Standard_L8s', 'Standard_L16s', 'Standard_D11_v2', 'Standard_D12_v2', 'Standard_L4s', 'Dev(No SLA)_Standard_D11_v2', - 'Standard_E2a_v4', 'Standard_E4a_v4', 'Standard_E8a_v4', - 'Standard_E16a_v4', 'Standard_E8as_v4+1TB_PS', 'Standard_E8as_v4+2TB_PS', - 'Standard_E16as_v4+3TB_PS', 'Standard_E16as_v4+4TB_PS', 'Dev(No - SLA)_Standard_E2a_v4' + 'Standard_E64i_v3', 'Standard_E2a_v4', 'Standard_E4a_v4', + 'Standard_E8a_v4', 'Standard_E16a_v4', 'Standard_E8as_v4+1TB_PS', + 'Standard_E8as_v4+2TB_PS', 'Standard_E16as_v4+3TB_PS', + 'Standard_E16as_v4+4TB_PS', 'Dev(No SLA)_Standard_E2a_v4' :type name: str or ~azure.mgmt.kusto.models.AzureSkuName :param capacity: The number of instances of the cluster. :type capacity: int @@ -524,6 +524,8 @@ class Cluster(TrackedResource): :param enable_double_encryption: A boolean value that indicates if double encryption is enabled. Default value: False . :type enable_double_encryption: bool + :param engine_type: The engine type. Possible values include: 'V2', 'V3' + :type engine_type: str or ~azure.mgmt.kusto.models.EngineType """ _validation = { @@ -563,6 +565,7 @@ class Cluster(TrackedResource): 'enable_purge': {'key': 'properties.enablePurge', 'type': 'bool'}, 'language_extensions': {'key': 'properties.languageExtensions', 'type': 'LanguageExtensionsList'}, 'enable_double_encryption': {'key': 'properties.enableDoubleEncryption', 'type': 'bool'}, + 'engine_type': {'key': 'properties.engineType', 'type': 'str'}, } def __init__(self, **kwargs): @@ -584,6 +587,7 @@ def __init__(self, **kwargs): self.enable_purge = kwargs.get('enable_purge', False) self.language_extensions = None self.enable_double_encryption = kwargs.get('enable_double_encryption', False) + self.engine_type = kwargs.get('engine_type', None) class ClusterCheckNameRequest(Model): @@ -788,6 +792,8 @@ class ClusterUpdate(Resource): :param enable_double_encryption: A boolean value that indicates if double encryption is enabled. Default value: False . :type enable_double_encryption: bool + :param engine_type: The engine type. Possible values include: 'V2', 'V3' + :type engine_type: str or ~azure.mgmt.kusto.models.EngineType """ _validation = { @@ -824,6 +830,7 @@ class ClusterUpdate(Resource): 'enable_purge': {'key': 'properties.enablePurge', 'type': 'bool'}, 'language_extensions': {'key': 'properties.languageExtensions', 'type': 'LanguageExtensionsList'}, 'enable_double_encryption': {'key': 'properties.enableDoubleEncryption', 'type': 'bool'}, + 'engine_type': {'key': 'properties.engineType', 'type': 'str'}, } def __init__(self, **kwargs): @@ -846,6 +853,7 @@ def __init__(self, **kwargs): self.enable_purge = kwargs.get('enable_purge', False) self.language_extensions = None self.enable_double_encryption = kwargs.get('enable_double_encryption', False) + self.engine_type = kwargs.get('engine_type', None) class Database(ProxyResource): @@ -1311,6 +1319,11 @@ class EventGridDataConnection(DataConnection): 'Microsoft.Storage.BlobRenamed' :type blob_storage_event_type: str or ~azure.mgmt.kusto.models.BlobStorageEventType + :ivar provisioning_state: The provisioned state of the resource. Possible + values include: 'Running', 'Creating', 'Deleting', 'Succeeded', 'Failed', + 'Moving' + :vartype provisioning_state: str or + ~azure.mgmt.kusto.models.ProvisioningState """ _validation = { @@ -1321,6 +1334,7 @@ class EventGridDataConnection(DataConnection): 'storage_account_resource_id': {'required': True}, 'event_hub_resource_id': {'required': True}, 'consumer_group': {'required': True}, + 'provisioning_state': {'readonly': True}, } _attribute_map = { @@ -1337,6 +1351,7 @@ class EventGridDataConnection(DataConnection): 'data_format': {'key': 'properties.dataFormat', 'type': 'str'}, 'ignore_first_record': {'key': 'properties.ignoreFirstRecord', 'type': 'bool'}, 'blob_storage_event_type': {'key': 'properties.blobStorageEventType', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, } def __init__(self, **kwargs): @@ -1349,6 +1364,7 @@ def __init__(self, **kwargs): self.data_format = kwargs.get('data_format', None) self.ignore_first_record = kwargs.get('ignore_first_record', None) self.blob_storage_event_type = kwargs.get('blob_storage_event_type', None) + self.provisioning_state = None self.kind = 'EventGrid' @@ -1393,6 +1409,11 @@ class EventHubDataConnection(DataConnection): :param compression: The event hub messages compression type. Possible values include: 'None', 'GZip' :type compression: str or ~azure.mgmt.kusto.models.Compression + :ivar provisioning_state: The provisioned state of the resource. Possible + values include: 'Running', 'Creating', 'Deleting', 'Succeeded', 'Failed', + 'Moving' + :vartype provisioning_state: str or + ~azure.mgmt.kusto.models.ProvisioningState """ _validation = { @@ -1402,6 +1423,7 @@ class EventHubDataConnection(DataConnection): 'kind': {'required': True}, 'event_hub_resource_id': {'required': True}, 'consumer_group': {'required': True}, + 'provisioning_state': {'readonly': True}, } _attribute_map = { @@ -1417,6 +1439,7 @@ class EventHubDataConnection(DataConnection): 'data_format': {'key': 'properties.dataFormat', 'type': 'str'}, 'event_system_properties': {'key': 'properties.eventSystemProperties', 'type': '[str]'}, 'compression': {'key': 'properties.compression', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, } def __init__(self, **kwargs): @@ -1428,6 +1451,7 @@ def __init__(self, **kwargs): self.data_format = kwargs.get('data_format', None) self.event_system_properties = kwargs.get('event_system_properties', None) self.compression = kwargs.get('compression', None) + self.provisioning_state = None self.kind = 'EventHub' @@ -1481,8 +1505,11 @@ class Identity(Model): :vartype principal_id: str :ivar tenant_id: The tenant ID of resource. :vartype tenant_id: str - :param type: Required. The identity type. Possible values include: 'None', - 'SystemAssigned' + :param type: Required. The type of managed identity used. The type + 'SystemAssigned, UserAssigned' includes both an implicitly created + identity and a set of user-assigned identities. The type 'None' will + remove all identities. Possible values include: 'None', 'SystemAssigned', + 'UserAssigned', 'SystemAssigned, UserAssigned' :type type: str or ~azure.mgmt.kusto.models.IdentityType :param user_assigned_identities: The list of user identities associated with the Kusto cluster. The user identity dictionary key references will @@ -1501,7 +1528,7 @@ class Identity(Model): _attribute_map = { 'principal_id': {'key': 'principalId', 'type': 'str'}, 'tenant_id': {'key': 'tenantId', 'type': 'str'}, - 'type': {'key': 'type', 'type': 'IdentityType'}, + 'type': {'key': 'type', 'type': 'str'}, 'user_assigned_identities': {'key': 'userAssignedIdentities', 'type': '{IdentityUserAssignedIdentitiesValue}'}, } @@ -1582,6 +1609,11 @@ class IotHubDataConnection(DataConnection): :param shared_access_policy_name: Required. The name of the share access policy :type shared_access_policy_name: str + :ivar provisioning_state: The provisioned state of the resource. Possible + values include: 'Running', 'Creating', 'Deleting', 'Succeeded', 'Failed', + 'Moving' + :vartype provisioning_state: str or + ~azure.mgmt.kusto.models.ProvisioningState """ _validation = { @@ -1592,6 +1624,7 @@ class IotHubDataConnection(DataConnection): 'iot_hub_resource_id': {'required': True}, 'consumer_group': {'required': True}, 'shared_access_policy_name': {'required': True}, + 'provisioning_state': {'readonly': True}, } _attribute_map = { @@ -1607,6 +1640,7 @@ class IotHubDataConnection(DataConnection): 'data_format': {'key': 'properties.dataFormat', 'type': 'str'}, 'event_system_properties': {'key': 'properties.eventSystemProperties', 'type': '[str]'}, 'shared_access_policy_name': {'key': 'properties.sharedAccessPolicyName', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, } def __init__(self, **kwargs): @@ -1618,6 +1652,7 @@ def __init__(self, **kwargs): self.data_format = kwargs.get('data_format', None) self.event_system_properties = kwargs.get('event_system_properties', None) self.shared_access_policy_name = kwargs.get('shared_access_policy_name', None) + self.provisioning_state = None self.kind = 'IotHub' @@ -1628,15 +1663,17 @@ class KeyVaultProperties(Model): :param key_name: Required. The name of the key vault key. :type key_name: str - :param key_version: Required. The version of the key vault key. + :param key_version: The version of the key vault key. :type key_version: str :param key_vault_uri: Required. The Uri of the key vault. :type key_vault_uri: str + :param user_identity: The user assigned identity (ARM resource id) that + has access to the key. + :type user_identity: str """ _validation = { 'key_name': {'required': True}, - 'key_version': {'required': True}, 'key_vault_uri': {'required': True}, } @@ -1644,6 +1681,7 @@ class KeyVaultProperties(Model): 'key_name': {'key': 'keyName', 'type': 'str'}, 'key_version': {'key': 'keyVersion', 'type': 'str'}, 'key_vault_uri': {'key': 'keyVaultUri', 'type': 'str'}, + 'user_identity': {'key': 'userIdentity', 'type': 'str'}, } def __init__(self, **kwargs): @@ -1651,6 +1689,7 @@ def __init__(self, **kwargs): self.key_name = kwargs.get('key_name', None) self.key_version = kwargs.get('key_version', None) self.key_vault_uri = kwargs.get('key_vault_uri', None) + self.user_identity = kwargs.get('user_identity', None) class LanguageExtension(Model): diff --git a/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/models/_models_py3.py b/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/models/_models_py3.py index 335e27993aa2..5a74ad658569 100644 --- a/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/models/_models_py3.py +++ b/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/models/_models_py3.py @@ -264,10 +264,10 @@ class AzureSku(Model): 'Standard_DS14_v2+3TB_PS', 'Standard_DS14_v2+4TB_PS', 'Standard_D13_v2', 'Standard_D14_v2', 'Standard_L8s', 'Standard_L16s', 'Standard_D11_v2', 'Standard_D12_v2', 'Standard_L4s', 'Dev(No SLA)_Standard_D11_v2', - 'Standard_E2a_v4', 'Standard_E4a_v4', 'Standard_E8a_v4', - 'Standard_E16a_v4', 'Standard_E8as_v4+1TB_PS', 'Standard_E8as_v4+2TB_PS', - 'Standard_E16as_v4+3TB_PS', 'Standard_E16as_v4+4TB_PS', 'Dev(No - SLA)_Standard_E2a_v4' + 'Standard_E64i_v3', 'Standard_E2a_v4', 'Standard_E4a_v4', + 'Standard_E8a_v4', 'Standard_E16a_v4', 'Standard_E8as_v4+1TB_PS', + 'Standard_E8as_v4+2TB_PS', 'Standard_E16as_v4+3TB_PS', + 'Standard_E16as_v4+4TB_PS', 'Dev(No SLA)_Standard_E2a_v4' :type name: str or ~azure.mgmt.kusto.models.AzureSkuName :param capacity: The number of instances of the cluster. :type capacity: int @@ -524,6 +524,8 @@ class Cluster(TrackedResource): :param enable_double_encryption: A boolean value that indicates if double encryption is enabled. Default value: False . :type enable_double_encryption: bool + :param engine_type: The engine type. Possible values include: 'V2', 'V3' + :type engine_type: str or ~azure.mgmt.kusto.models.EngineType """ _validation = { @@ -563,9 +565,10 @@ class Cluster(TrackedResource): 'enable_purge': {'key': 'properties.enablePurge', 'type': 'bool'}, 'language_extensions': {'key': 'properties.languageExtensions', 'type': 'LanguageExtensionsList'}, 'enable_double_encryption': {'key': 'properties.enableDoubleEncryption', 'type': 'bool'}, + 'engine_type': {'key': 'properties.engineType', 'type': 'str'}, } - def __init__(self, *, location: str, sku, tags=None, zones=None, identity=None, trusted_external_tenants=None, optimized_autoscale=None, enable_disk_encryption: bool=None, enable_streaming_ingest: bool=False, virtual_network_configuration=None, key_vault_properties=None, enable_purge: bool=False, enable_double_encryption: bool=False, **kwargs) -> None: + def __init__(self, *, location: str, sku, tags=None, zones=None, identity=None, trusted_external_tenants=None, optimized_autoscale=None, enable_disk_encryption: bool=None, enable_streaming_ingest: bool=False, virtual_network_configuration=None, key_vault_properties=None, enable_purge: bool=False, enable_double_encryption: bool=False, engine_type=None, **kwargs) -> None: super(Cluster, self).__init__(tags=tags, location=location, **kwargs) self.sku = sku self.zones = zones @@ -584,6 +587,7 @@ def __init__(self, *, location: str, sku, tags=None, zones=None, identity=None, self.enable_purge = enable_purge self.language_extensions = None self.enable_double_encryption = enable_double_encryption + self.engine_type = engine_type class ClusterCheckNameRequest(Model): @@ -788,6 +792,8 @@ class ClusterUpdate(Resource): :param enable_double_encryption: A boolean value that indicates if double encryption is enabled. Default value: False . :type enable_double_encryption: bool + :param engine_type: The engine type. Possible values include: 'V2', 'V3' + :type engine_type: str or ~azure.mgmt.kusto.models.EngineType """ _validation = { @@ -824,9 +830,10 @@ class ClusterUpdate(Resource): 'enable_purge': {'key': 'properties.enablePurge', 'type': 'bool'}, 'language_extensions': {'key': 'properties.languageExtensions', 'type': 'LanguageExtensionsList'}, 'enable_double_encryption': {'key': 'properties.enableDoubleEncryption', 'type': 'bool'}, + 'engine_type': {'key': 'properties.engineType', 'type': 'str'}, } - def __init__(self, *, tags=None, location: str=None, sku=None, identity=None, trusted_external_tenants=None, optimized_autoscale=None, enable_disk_encryption: bool=None, enable_streaming_ingest: bool=False, virtual_network_configuration=None, key_vault_properties=None, enable_purge: bool=False, enable_double_encryption: bool=False, **kwargs) -> None: + def __init__(self, *, tags=None, location: str=None, sku=None, identity=None, trusted_external_tenants=None, optimized_autoscale=None, enable_disk_encryption: bool=None, enable_streaming_ingest: bool=False, virtual_network_configuration=None, key_vault_properties=None, enable_purge: bool=False, enable_double_encryption: bool=False, engine_type=None, **kwargs) -> None: super(ClusterUpdate, self).__init__(**kwargs) self.tags = tags self.location = location @@ -846,6 +853,7 @@ def __init__(self, *, tags=None, location: str=None, sku=None, identity=None, tr self.enable_purge = enable_purge self.language_extensions = None self.enable_double_encryption = enable_double_encryption + self.engine_type = engine_type class Database(ProxyResource): @@ -1311,6 +1319,11 @@ class EventGridDataConnection(DataConnection): 'Microsoft.Storage.BlobRenamed' :type blob_storage_event_type: str or ~azure.mgmt.kusto.models.BlobStorageEventType + :ivar provisioning_state: The provisioned state of the resource. Possible + values include: 'Running', 'Creating', 'Deleting', 'Succeeded', 'Failed', + 'Moving' + :vartype provisioning_state: str or + ~azure.mgmt.kusto.models.ProvisioningState """ _validation = { @@ -1321,6 +1334,7 @@ class EventGridDataConnection(DataConnection): 'storage_account_resource_id': {'required': True}, 'event_hub_resource_id': {'required': True}, 'consumer_group': {'required': True}, + 'provisioning_state': {'readonly': True}, } _attribute_map = { @@ -1337,6 +1351,7 @@ class EventGridDataConnection(DataConnection): 'data_format': {'key': 'properties.dataFormat', 'type': 'str'}, 'ignore_first_record': {'key': 'properties.ignoreFirstRecord', 'type': 'bool'}, 'blob_storage_event_type': {'key': 'properties.blobStorageEventType', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, } def __init__(self, *, storage_account_resource_id: str, event_hub_resource_id: str, consumer_group: str, location: str=None, table_name: str=None, mapping_rule_name: str=None, data_format=None, ignore_first_record: bool=None, blob_storage_event_type=None, **kwargs) -> None: @@ -1349,6 +1364,7 @@ def __init__(self, *, storage_account_resource_id: str, event_hub_resource_id: s self.data_format = data_format self.ignore_first_record = ignore_first_record self.blob_storage_event_type = blob_storage_event_type + self.provisioning_state = None self.kind = 'EventGrid' @@ -1393,6 +1409,11 @@ class EventHubDataConnection(DataConnection): :param compression: The event hub messages compression type. Possible values include: 'None', 'GZip' :type compression: str or ~azure.mgmt.kusto.models.Compression + :ivar provisioning_state: The provisioned state of the resource. Possible + values include: 'Running', 'Creating', 'Deleting', 'Succeeded', 'Failed', + 'Moving' + :vartype provisioning_state: str or + ~azure.mgmt.kusto.models.ProvisioningState """ _validation = { @@ -1402,6 +1423,7 @@ class EventHubDataConnection(DataConnection): 'kind': {'required': True}, 'event_hub_resource_id': {'required': True}, 'consumer_group': {'required': True}, + 'provisioning_state': {'readonly': True}, } _attribute_map = { @@ -1417,6 +1439,7 @@ class EventHubDataConnection(DataConnection): 'data_format': {'key': 'properties.dataFormat', 'type': 'str'}, 'event_system_properties': {'key': 'properties.eventSystemProperties', 'type': '[str]'}, 'compression': {'key': 'properties.compression', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, } def __init__(self, *, event_hub_resource_id: str, consumer_group: str, location: str=None, table_name: str=None, mapping_rule_name: str=None, data_format=None, event_system_properties=None, compression=None, **kwargs) -> None: @@ -1428,6 +1451,7 @@ def __init__(self, *, event_hub_resource_id: str, consumer_group: str, location: self.data_format = data_format self.event_system_properties = event_system_properties self.compression = compression + self.provisioning_state = None self.kind = 'EventHub' @@ -1481,8 +1505,11 @@ class Identity(Model): :vartype principal_id: str :ivar tenant_id: The tenant ID of resource. :vartype tenant_id: str - :param type: Required. The identity type. Possible values include: 'None', - 'SystemAssigned' + :param type: Required. The type of managed identity used. The type + 'SystemAssigned, UserAssigned' includes both an implicitly created + identity and a set of user-assigned identities. The type 'None' will + remove all identities. Possible values include: 'None', 'SystemAssigned', + 'UserAssigned', 'SystemAssigned, UserAssigned' :type type: str or ~azure.mgmt.kusto.models.IdentityType :param user_assigned_identities: The list of user identities associated with the Kusto cluster. The user identity dictionary key references will @@ -1501,7 +1528,7 @@ class Identity(Model): _attribute_map = { 'principal_id': {'key': 'principalId', 'type': 'str'}, 'tenant_id': {'key': 'tenantId', 'type': 'str'}, - 'type': {'key': 'type', 'type': 'IdentityType'}, + 'type': {'key': 'type', 'type': 'str'}, 'user_assigned_identities': {'key': 'userAssignedIdentities', 'type': '{IdentityUserAssignedIdentitiesValue}'}, } @@ -1582,6 +1609,11 @@ class IotHubDataConnection(DataConnection): :param shared_access_policy_name: Required. The name of the share access policy :type shared_access_policy_name: str + :ivar provisioning_state: The provisioned state of the resource. Possible + values include: 'Running', 'Creating', 'Deleting', 'Succeeded', 'Failed', + 'Moving' + :vartype provisioning_state: str or + ~azure.mgmt.kusto.models.ProvisioningState """ _validation = { @@ -1592,6 +1624,7 @@ class IotHubDataConnection(DataConnection): 'iot_hub_resource_id': {'required': True}, 'consumer_group': {'required': True}, 'shared_access_policy_name': {'required': True}, + 'provisioning_state': {'readonly': True}, } _attribute_map = { @@ -1607,6 +1640,7 @@ class IotHubDataConnection(DataConnection): 'data_format': {'key': 'properties.dataFormat', 'type': 'str'}, 'event_system_properties': {'key': 'properties.eventSystemProperties', 'type': '[str]'}, 'shared_access_policy_name': {'key': 'properties.sharedAccessPolicyName', 'type': 'str'}, + 'provisioning_state': {'key': 'properties.provisioningState', 'type': 'str'}, } def __init__(self, *, iot_hub_resource_id: str, consumer_group: str, shared_access_policy_name: str, location: str=None, table_name: str=None, mapping_rule_name: str=None, data_format=None, event_system_properties=None, **kwargs) -> None: @@ -1618,6 +1652,7 @@ def __init__(self, *, iot_hub_resource_id: str, consumer_group: str, shared_acce self.data_format = data_format self.event_system_properties = event_system_properties self.shared_access_policy_name = shared_access_policy_name + self.provisioning_state = None self.kind = 'IotHub' @@ -1628,15 +1663,17 @@ class KeyVaultProperties(Model): :param key_name: Required. The name of the key vault key. :type key_name: str - :param key_version: Required. The version of the key vault key. + :param key_version: The version of the key vault key. :type key_version: str :param key_vault_uri: Required. The Uri of the key vault. :type key_vault_uri: str + :param user_identity: The user assigned identity (ARM resource id) that + has access to the key. + :type user_identity: str """ _validation = { 'key_name': {'required': True}, - 'key_version': {'required': True}, 'key_vault_uri': {'required': True}, } @@ -1644,13 +1681,15 @@ class KeyVaultProperties(Model): 'key_name': {'key': 'keyName', 'type': 'str'}, 'key_version': {'key': 'keyVersion', 'type': 'str'}, 'key_vault_uri': {'key': 'keyVaultUri', 'type': 'str'}, + 'user_identity': {'key': 'userIdentity', 'type': 'str'}, } - def __init__(self, *, key_name: str, key_version: str, key_vault_uri: str, **kwargs) -> None: + def __init__(self, *, key_name: str, key_vault_uri: str, key_version: str=None, user_identity: str=None, **kwargs) -> None: super(KeyVaultProperties, self).__init__(**kwargs) self.key_name = key_name self.key_version = key_version self.key_vault_uri = key_vault_uri + self.user_identity = user_identity class LanguageExtension(Model): diff --git a/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/operations/_attached_database_configurations_operations.py b/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/operations/_attached_database_configurations_operations.py index e95d3e88efa9..4e681d721160 100644 --- a/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/operations/_attached_database_configurations_operations.py +++ b/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/operations/_attached_database_configurations_operations.py @@ -27,7 +27,7 @@ class AttachedDatabaseConfigurationsOperations(object): :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: Client API Version. Constant value: "2020-06-14". + :ivar api_version: Client API Version. Constant value: "2020-09-18". """ models = models @@ -37,7 +37,7 @@ def __init__(self, client, config, serializer, deserializer): self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2020-06-14" + self.api_version = "2020-09-18" self.config = config diff --git a/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/operations/_cluster_principal_assignments_operations.py b/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/operations/_cluster_principal_assignments_operations.py index f87176c19599..23c3eb6dd336 100644 --- a/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/operations/_cluster_principal_assignments_operations.py +++ b/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/operations/_cluster_principal_assignments_operations.py @@ -27,7 +27,7 @@ class ClusterPrincipalAssignmentsOperations(object): :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: Client API Version. Constant value: "2020-06-14". + :ivar api_version: Client API Version. Constant value: "2020-09-18". """ models = models @@ -37,7 +37,7 @@ def __init__(self, client, config, serializer, deserializer): self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2020-06-14" + self.api_version = "2020-09-18" self.config = config diff --git a/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/operations/_clusters_operations.py b/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/operations/_clusters_operations.py index 12e8bc86bf0d..79eaccb242c8 100644 --- a/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/operations/_clusters_operations.py +++ b/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/operations/_clusters_operations.py @@ -27,7 +27,7 @@ class ClustersOperations(object): :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: Client API Version. Constant value: "2020-06-14". + :ivar api_version: Client API Version. Constant value: "2020-09-18". """ models = models @@ -37,7 +37,7 @@ def __init__(self, client, config, serializer, deserializer): self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2020-06-14" + self.api_version = "2020-09-18" self.config = config diff --git a/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/operations/_data_connections_operations.py b/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/operations/_data_connections_operations.py index a744f5126ac3..3c20e0672115 100644 --- a/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/operations/_data_connections_operations.py +++ b/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/operations/_data_connections_operations.py @@ -27,7 +27,7 @@ class DataConnectionsOperations(object): :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: Client API Version. Constant value: "2020-06-14". + :ivar api_version: Client API Version. Constant value: "2020-09-18". """ models = models @@ -37,7 +37,7 @@ def __init__(self, client, config, serializer, deserializer): self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2020-06-14" + self.api_version = "2020-09-18" self.config = config diff --git a/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/operations/_database_principal_assignments_operations.py b/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/operations/_database_principal_assignments_operations.py index 1c2a15f98ab8..9d88a41d9c28 100644 --- a/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/operations/_database_principal_assignments_operations.py +++ b/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/operations/_database_principal_assignments_operations.py @@ -27,7 +27,7 @@ class DatabasePrincipalAssignmentsOperations(object): :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: Client API Version. Constant value: "2020-06-14". + :ivar api_version: Client API Version. Constant value: "2020-09-18". """ models = models @@ -37,7 +37,7 @@ def __init__(self, client, config, serializer, deserializer): self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2020-06-14" + self.api_version = "2020-09-18" self.config = config diff --git a/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/operations/_databases_operations.py b/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/operations/_databases_operations.py index 89ad2c0c7af6..539a4c1caebe 100644 --- a/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/operations/_databases_operations.py +++ b/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/operations/_databases_operations.py @@ -27,7 +27,7 @@ class DatabasesOperations(object): :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: Client API Version. Constant value: "2020-06-14". + :ivar api_version: Client API Version. Constant value: "2020-09-18". """ models = models @@ -37,7 +37,7 @@ def __init__(self, client, config, serializer, deserializer): self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2020-06-14" + self.api_version = "2020-09-18" self.config = config diff --git a/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/operations/_operations.py b/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/operations/_operations.py index eb09f3f97e1d..d422481440f1 100644 --- a/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/operations/_operations.py +++ b/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/operations/_operations.py @@ -25,7 +25,7 @@ class Operations(object): :param config: Configuration of service client. :param serializer: An object model serializer. :param deserializer: An object model deserializer. - :ivar api_version: Client API Version. Constant value: "2020-06-14". + :ivar api_version: Client API Version. Constant value: "2020-09-18". """ models = models @@ -35,7 +35,7 @@ def __init__(self, client, config, serializer, deserializer): self._client = client self._serialize = serializer self._deserialize = deserializer - self.api_version = "2020-06-14" + self.api_version = "2020-09-18" self.config = config diff --git a/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/version.py b/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/version.py index f6eb18195bcd..134c2da968ad 100644 --- a/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/version.py +++ b/sdk/kusto/azure-mgmt-kusto/azure/mgmt/kusto/version.py @@ -9,4 +9,4 @@ # regenerated. # -------------------------------------------------------------------------- -VERSION = "0.9.0" +VERSION = "0.10.0" diff --git a/sdk/kusto/azure-mgmt-kusto/tests/recordings/test_cli_mgmt_kusto.test_kusto_adjusted.yaml b/sdk/kusto/azure-mgmt-kusto/tests/recordings/test_cli_mgmt_kusto.test_kusto_adjusted.yaml index 021a96f43f39..b32f52d3e5d5 100644 --- a/sdk/kusto/azure-mgmt-kusto/tests/recordings/test_cli_mgmt_kusto.test_kusto_adjusted.yaml +++ b/sdk/kusto/azure-mgmt-kusto/tests/recordings/test_cli_mgmt_kusto.test_kusto_adjusted.yaml @@ -15,18 +15,18 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-kusto/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_kusto_test_kusto_adjusted440a1037/providers/Microsoft.Kusto/clusters/MyClusterNameXarqRnd?api-version=2020-06-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_kusto_test_kusto_adjusted440a1037/providers/Microsoft.Kusto/clusters/MyClusterNameXarqRnd?api-version=2020-09-18 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_kusto_test_kusto_adjusted440a1037/providers/Microsoft.Kusto/Clusters/MyClusterNameXarqRnd","name":"MyClusterNameXarqRnd","type":"Microsoft.Kusto/Clusters","etag":"\"\"","location":"westus","sku":{"name":"Standard_L8s","tier":"Standard","capacity":2},"properties":{"enableStreamingIngest":true,"state":"Creating","provisioningState":"Creating"},"identity":{"type":"SystemAssigned"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/facc64ef-96b9-4e23-ad60-dc8336e43ff7?api-version=2020-06-14 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/3adf6bc6-7859-420c-b3a9-145b02b49ed8?api-version=2020-09-18 cache-control: - no-cache content-length: @@ -34,7 +34,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jul 2020 09:06:14 GMT + - Tue, 20 Oct 2020 02:29:39 GMT etag: - '""' expires: @@ -42,7 +42,8 @@ interactions: pragma: - no-cache set-cookie: - - ARRAffinity=05893460edd64dea18419719afaa21f452a43339bdce881ba0f8ccabe7ab2e9c;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=99339843ceb188a538d6685b884e4f2de7070cfb5c36939385778ca277976849;Path=/;HttpOnly;Secure;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinitySameSite=99339843ceb188a538d6685b884e4f2de7070cfb5c36939385778ca277976849;Path=/;HttpOnly;SameSite=None;Secure;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: @@ -64,13 +65,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-kusto/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/facc64ef-96b9-4e23-ad60-dc8336e43ff7?api-version=2020-06-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/3adf6bc6-7859-420c-b3a9-145b02b49ed8?api-version=2020-09-18 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/facc64ef-96b9-4e23-ad60-dc8336e43ff7","name":"facc64ef-96b9-4e23-ad60-dc8336e43ff7","status":"Running","startTime":"2020-07-13T09:06:13.0379226Z","endTime":"2020-07-13T09:06:16.3738497Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"a57241c7-abbc-4db3-8dec-9c2cddc54fcf","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/3adf6bc6-7859-420c-b3a9-145b02b49ed8","name":"3adf6bc6-7859-420c-b3a9-145b02b49ed8","status":"Running","startTime":"2020-10-20T02:29:38.3850187Z","endTime":"2020-10-20T02:29:38.3850187Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"1a084f02-61ae-4e43-8dbc-930a3f1d39bd","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -79,13 +80,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jul 2020 09:06:45 GMT + - Tue, 20 Oct 2020 02:30:11 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=99339843ceb188a538d6685b884e4f2de7070cfb5c36939385778ca277976849;Path=/;HttpOnly;Secure;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinitySameSite=99339843ceb188a538d6685b884e4f2de7070cfb5c36939385778ca277976849;Path=/;HttpOnly;SameSite=None;Secure;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -111,13 +113,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-kusto/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/facc64ef-96b9-4e23-ad60-dc8336e43ff7?api-version=2020-06-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/3adf6bc6-7859-420c-b3a9-145b02b49ed8?api-version=2020-09-18 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/facc64ef-96b9-4e23-ad60-dc8336e43ff7","name":"facc64ef-96b9-4e23-ad60-dc8336e43ff7","status":"Running","startTime":"2020-07-13T09:06:13.0379226Z","endTime":"2020-07-13T09:06:16.3738497Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"a57241c7-abbc-4db3-8dec-9c2cddc54fcf","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/3adf6bc6-7859-420c-b3a9-145b02b49ed8","name":"3adf6bc6-7859-420c-b3a9-145b02b49ed8","status":"Running","startTime":"2020-10-20T02:29:38.3850187Z","endTime":"2020-10-20T02:29:38.3850187Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"1a084f02-61ae-4e43-8dbc-930a3f1d39bd","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -126,13 +128,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jul 2020 09:07:16 GMT + - Tue, 20 Oct 2020 02:30:41 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=99339843ceb188a538d6685b884e4f2de7070cfb5c36939385778ca277976849;Path=/;HttpOnly;Secure;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinitySameSite=99339843ceb188a538d6685b884e4f2de7070cfb5c36939385778ca277976849;Path=/;HttpOnly;SameSite=None;Secure;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -158,13 +161,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-kusto/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/facc64ef-96b9-4e23-ad60-dc8336e43ff7?api-version=2020-06-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/3adf6bc6-7859-420c-b3a9-145b02b49ed8?api-version=2020-09-18 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/facc64ef-96b9-4e23-ad60-dc8336e43ff7","name":"facc64ef-96b9-4e23-ad60-dc8336e43ff7","status":"Running","startTime":"2020-07-13T09:06:13.0379226Z","endTime":"2020-07-13T09:06:16.3738497Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"a57241c7-abbc-4db3-8dec-9c2cddc54fcf","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/3adf6bc6-7859-420c-b3a9-145b02b49ed8","name":"3adf6bc6-7859-420c-b3a9-145b02b49ed8","status":"Running","startTime":"2020-10-20T02:29:38.3850187Z","endTime":"2020-10-20T02:29:38.3850187Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"1a084f02-61ae-4e43-8dbc-930a3f1d39bd","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -173,13 +176,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jul 2020 09:07:46 GMT + - Tue, 20 Oct 2020 02:31:11 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=05893460edd64dea18419719afaa21f452a43339bdce881ba0f8ccabe7ab2e9c;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=674fe96f3bce8188d0eb2fc0614159377a36737bc9fcea8ee39a46646238bc6d;Path=/;HttpOnly;Secure;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinitySameSite=674fe96f3bce8188d0eb2fc0614159377a36737bc9fcea8ee39a46646238bc6d;Path=/;HttpOnly;SameSite=None;Secure;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -205,13 +209,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-kusto/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/facc64ef-96b9-4e23-ad60-dc8336e43ff7?api-version=2020-06-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/3adf6bc6-7859-420c-b3a9-145b02b49ed8?api-version=2020-09-18 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/facc64ef-96b9-4e23-ad60-dc8336e43ff7","name":"facc64ef-96b9-4e23-ad60-dc8336e43ff7","status":"Running","startTime":"2020-07-13T09:06:13.0379226Z","endTime":"2020-07-13T09:06:16.3738497Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"a57241c7-abbc-4db3-8dec-9c2cddc54fcf","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/3adf6bc6-7859-420c-b3a9-145b02b49ed8","name":"3adf6bc6-7859-420c-b3a9-145b02b49ed8","status":"Running","startTime":"2020-10-20T02:29:38.3850187Z","endTime":"2020-10-20T02:29:38.3850187Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"1a084f02-61ae-4e43-8dbc-930a3f1d39bd","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -220,13 +224,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jul 2020 09:08:17 GMT + - Tue, 20 Oct 2020 02:31:42 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=05893460edd64dea18419719afaa21f452a43339bdce881ba0f8ccabe7ab2e9c;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=99339843ceb188a538d6685b884e4f2de7070cfb5c36939385778ca277976849;Path=/;HttpOnly;Secure;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinitySameSite=99339843ceb188a538d6685b884e4f2de7070cfb5c36939385778ca277976849;Path=/;HttpOnly;SameSite=None;Secure;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -252,13 +257,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-kusto/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/facc64ef-96b9-4e23-ad60-dc8336e43ff7?api-version=2020-06-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/3adf6bc6-7859-420c-b3a9-145b02b49ed8?api-version=2020-09-18 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/facc64ef-96b9-4e23-ad60-dc8336e43ff7","name":"facc64ef-96b9-4e23-ad60-dc8336e43ff7","status":"Running","startTime":"2020-07-13T09:06:13.0379226Z","endTime":"2020-07-13T09:06:16.3738497Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"a57241c7-abbc-4db3-8dec-9c2cddc54fcf","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/3adf6bc6-7859-420c-b3a9-145b02b49ed8","name":"3adf6bc6-7859-420c-b3a9-145b02b49ed8","status":"Running","startTime":"2020-10-20T02:29:38.3850187Z","endTime":"2020-10-20T02:29:38.3850187Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"1a084f02-61ae-4e43-8dbc-930a3f1d39bd","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -267,13 +272,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jul 2020 09:08:47 GMT + - Tue, 20 Oct 2020 02:32:12 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=674fe96f3bce8188d0eb2fc0614159377a36737bc9fcea8ee39a46646238bc6d;Path=/;HttpOnly;Secure;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinitySameSite=674fe96f3bce8188d0eb2fc0614159377a36737bc9fcea8ee39a46646238bc6d;Path=/;HttpOnly;SameSite=None;Secure;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -299,13 +305,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-kusto/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/facc64ef-96b9-4e23-ad60-dc8336e43ff7?api-version=2020-06-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/3adf6bc6-7859-420c-b3a9-145b02b49ed8?api-version=2020-09-18 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/facc64ef-96b9-4e23-ad60-dc8336e43ff7","name":"facc64ef-96b9-4e23-ad60-dc8336e43ff7","status":"Running","startTime":"2020-07-13T09:06:13.0379226Z","endTime":"2020-07-13T09:06:16.3738497Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"a57241c7-abbc-4db3-8dec-9c2cddc54fcf","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/3adf6bc6-7859-420c-b3a9-145b02b49ed8","name":"3adf6bc6-7859-420c-b3a9-145b02b49ed8","status":"Running","startTime":"2020-10-20T02:29:38.3850187Z","endTime":"2020-10-20T02:29:38.3850187Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"1a084f02-61ae-4e43-8dbc-930a3f1d39bd","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -314,13 +320,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jul 2020 09:09:17 GMT + - Tue, 20 Oct 2020 02:32:42 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=05893460edd64dea18419719afaa21f452a43339bdce881ba0f8ccabe7ab2e9c;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=99339843ceb188a538d6685b884e4f2de7070cfb5c36939385778ca277976849;Path=/;HttpOnly;Secure;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinitySameSite=99339843ceb188a538d6685b884e4f2de7070cfb5c36939385778ca277976849;Path=/;HttpOnly;SameSite=None;Secure;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -346,13 +353,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-kusto/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/facc64ef-96b9-4e23-ad60-dc8336e43ff7?api-version=2020-06-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/3adf6bc6-7859-420c-b3a9-145b02b49ed8?api-version=2020-09-18 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/facc64ef-96b9-4e23-ad60-dc8336e43ff7","name":"facc64ef-96b9-4e23-ad60-dc8336e43ff7","status":"Running","startTime":"2020-07-13T09:06:13.0379226Z","endTime":"2020-07-13T09:06:16.3738497Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"a57241c7-abbc-4db3-8dec-9c2cddc54fcf","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/3adf6bc6-7859-420c-b3a9-145b02b49ed8","name":"3adf6bc6-7859-420c-b3a9-145b02b49ed8","status":"Running","startTime":"2020-10-20T02:29:38.3850187Z","endTime":"2020-10-20T02:29:38.3850187Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"1a084f02-61ae-4e43-8dbc-930a3f1d39bd","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -361,13 +368,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jul 2020 09:09:48 GMT + - Tue, 20 Oct 2020 02:33:13 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=674fe96f3bce8188d0eb2fc0614159377a36737bc9fcea8ee39a46646238bc6d;Path=/;HttpOnly;Secure;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinitySameSite=674fe96f3bce8188d0eb2fc0614159377a36737bc9fcea8ee39a46646238bc6d;Path=/;HttpOnly;SameSite=None;Secure;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -393,13 +401,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-kusto/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/facc64ef-96b9-4e23-ad60-dc8336e43ff7?api-version=2020-06-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/3adf6bc6-7859-420c-b3a9-145b02b49ed8?api-version=2020-09-18 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/facc64ef-96b9-4e23-ad60-dc8336e43ff7","name":"facc64ef-96b9-4e23-ad60-dc8336e43ff7","status":"Running","startTime":"2020-07-13T09:06:13.0379226Z","endTime":"2020-07-13T09:06:16.3738497Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"a57241c7-abbc-4db3-8dec-9c2cddc54fcf","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/3adf6bc6-7859-420c-b3a9-145b02b49ed8","name":"3adf6bc6-7859-420c-b3a9-145b02b49ed8","status":"Running","startTime":"2020-10-20T02:29:38.3850187Z","endTime":"2020-10-20T02:29:38.3850187Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"1a084f02-61ae-4e43-8dbc-930a3f1d39bd","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -408,13 +416,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jul 2020 09:10:18 GMT + - Tue, 20 Oct 2020 02:33:43 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=05893460edd64dea18419719afaa21f452a43339bdce881ba0f8ccabe7ab2e9c;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=674fe96f3bce8188d0eb2fc0614159377a36737bc9fcea8ee39a46646238bc6d;Path=/;HttpOnly;Secure;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinitySameSite=674fe96f3bce8188d0eb2fc0614159377a36737bc9fcea8ee39a46646238bc6d;Path=/;HttpOnly;SameSite=None;Secure;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -440,28 +449,29 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-kusto/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/facc64ef-96b9-4e23-ad60-dc8336e43ff7?api-version=2020-06-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/3adf6bc6-7859-420c-b3a9-145b02b49ed8?api-version=2020-09-18 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/facc64ef-96b9-4e23-ad60-dc8336e43ff7","name":"facc64ef-96b9-4e23-ad60-dc8336e43ff7","status":"Running","startTime":"2020-07-13T09:06:13.0379226Z","endTime":"2020-07-13T09:06:16.3738497Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"a57241c7-abbc-4db3-8dec-9c2cddc54fcf","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/3adf6bc6-7859-420c-b3a9-145b02b49ed8","name":"3adf6bc6-7859-420c-b3a9-145b02b49ed8","status":"Running","startTime":"2020-10-20T02:29:38.3850187Z","endTime":"2020-10-20T02:33:50.499333Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"1a084f02-61ae-4e43-8dbc-930a3f1d39bd","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '499' + - '498' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jul 2020 09:10:49 GMT + - Tue, 20 Oct 2020 02:34:13 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=99339843ceb188a538d6685b884e4f2de7070cfb5c36939385778ca277976849;Path=/;HttpOnly;Secure;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinitySameSite=99339843ceb188a538d6685b884e4f2de7070cfb5c36939385778ca277976849;Path=/;HttpOnly;SameSite=None;Secure;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -487,28 +497,29 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-kusto/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/facc64ef-96b9-4e23-ad60-dc8336e43ff7?api-version=2020-06-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/3adf6bc6-7859-420c-b3a9-145b02b49ed8?api-version=2020-09-18 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/facc64ef-96b9-4e23-ad60-dc8336e43ff7","name":"facc64ef-96b9-4e23-ad60-dc8336e43ff7","status":"Running","startTime":"2020-07-13T09:06:13.0379226Z","endTime":"2020-07-13T09:06:16.3738497Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"a57241c7-abbc-4db3-8dec-9c2cddc54fcf","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/3adf6bc6-7859-420c-b3a9-145b02b49ed8","name":"3adf6bc6-7859-420c-b3a9-145b02b49ed8","status":"Running","startTime":"2020-10-20T02:29:38.3850187Z","endTime":"2020-10-20T02:33:50.499333Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"1a084f02-61ae-4e43-8dbc-930a3f1d39bd","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '499' + - '498' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jul 2020 09:11:19 GMT + - Tue, 20 Oct 2020 02:34:44 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=674fe96f3bce8188d0eb2fc0614159377a36737bc9fcea8ee39a46646238bc6d;Path=/;HttpOnly;Secure;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinitySameSite=674fe96f3bce8188d0eb2fc0614159377a36737bc9fcea8ee39a46646238bc6d;Path=/;HttpOnly;SameSite=None;Secure;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -534,28 +545,29 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-kusto/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/facc64ef-96b9-4e23-ad60-dc8336e43ff7?api-version=2020-06-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/3adf6bc6-7859-420c-b3a9-145b02b49ed8?api-version=2020-09-18 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/facc64ef-96b9-4e23-ad60-dc8336e43ff7","name":"facc64ef-96b9-4e23-ad60-dc8336e43ff7","status":"Running","startTime":"2020-07-13T09:06:13.0379226Z","endTime":"2020-07-13T09:06:16.3738497Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"a57241c7-abbc-4db3-8dec-9c2cddc54fcf","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/3adf6bc6-7859-420c-b3a9-145b02b49ed8","name":"3adf6bc6-7859-420c-b3a9-145b02b49ed8","status":"Running","startTime":"2020-10-20T02:29:38.3850187Z","endTime":"2020-10-20T02:33:50.499333Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"1a084f02-61ae-4e43-8dbc-930a3f1d39bd","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '499' + - '498' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jul 2020 09:11:49 GMT + - Tue, 20 Oct 2020 02:35:14 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=99339843ceb188a538d6685b884e4f2de7070cfb5c36939385778ca277976849;Path=/;HttpOnly;Secure;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinitySameSite=99339843ceb188a538d6685b884e4f2de7070cfb5c36939385778ca277976849;Path=/;HttpOnly;SameSite=None;Secure;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -581,28 +593,29 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-kusto/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/facc64ef-96b9-4e23-ad60-dc8336e43ff7?api-version=2020-06-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/3adf6bc6-7859-420c-b3a9-145b02b49ed8?api-version=2020-09-18 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/facc64ef-96b9-4e23-ad60-dc8336e43ff7","name":"facc64ef-96b9-4e23-ad60-dc8336e43ff7","status":"Running","startTime":"2020-07-13T09:06:13.0379226Z","endTime":"2020-07-13T09:06:16.3738497Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"a57241c7-abbc-4db3-8dec-9c2cddc54fcf","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/3adf6bc6-7859-420c-b3a9-145b02b49ed8","name":"3adf6bc6-7859-420c-b3a9-145b02b49ed8","status":"Running","startTime":"2020-10-20T02:29:38.3850187Z","endTime":"2020-10-20T02:33:50.499333Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"1a084f02-61ae-4e43-8dbc-930a3f1d39bd","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '499' + - '498' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jul 2020 09:12:20 GMT + - Tue, 20 Oct 2020 02:35:44 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=99339843ceb188a538d6685b884e4f2de7070cfb5c36939385778ca277976849;Path=/;HttpOnly;Secure;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinitySameSite=99339843ceb188a538d6685b884e4f2de7070cfb5c36939385778ca277976849;Path=/;HttpOnly;SameSite=None;Secure;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -628,28 +641,29 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-kusto/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/facc64ef-96b9-4e23-ad60-dc8336e43ff7?api-version=2020-06-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/3adf6bc6-7859-420c-b3a9-145b02b49ed8?api-version=2020-09-18 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/facc64ef-96b9-4e23-ad60-dc8336e43ff7","name":"facc64ef-96b9-4e23-ad60-dc8336e43ff7","status":"Running","startTime":"2020-07-13T09:06:13.0379226Z","endTime":"2020-07-13T09:06:16.3738497Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"a57241c7-abbc-4db3-8dec-9c2cddc54fcf","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/3adf6bc6-7859-420c-b3a9-145b02b49ed8","name":"3adf6bc6-7859-420c-b3a9-145b02b49ed8","status":"Running","startTime":"2020-10-20T02:29:38.3850187Z","endTime":"2020-10-20T02:33:50.499333Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"1a084f02-61ae-4e43-8dbc-930a3f1d39bd","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '499' + - '498' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jul 2020 09:12:50 GMT + - Tue, 20 Oct 2020 02:36:15 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=05893460edd64dea18419719afaa21f452a43339bdce881ba0f8ccabe7ab2e9c;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=99339843ceb188a538d6685b884e4f2de7070cfb5c36939385778ca277976849;Path=/;HttpOnly;Secure;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinitySameSite=99339843ceb188a538d6685b884e4f2de7070cfb5c36939385778ca277976849;Path=/;HttpOnly;SameSite=None;Secure;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -675,28 +689,29 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-kusto/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/facc64ef-96b9-4e23-ad60-dc8336e43ff7?api-version=2020-06-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/3adf6bc6-7859-420c-b3a9-145b02b49ed8?api-version=2020-09-18 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/facc64ef-96b9-4e23-ad60-dc8336e43ff7","name":"facc64ef-96b9-4e23-ad60-dc8336e43ff7","status":"Running","startTime":"2020-07-13T09:06:13.0379226Z","endTime":"2020-07-13T09:06:16.3738497Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"a57241c7-abbc-4db3-8dec-9c2cddc54fcf","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/3adf6bc6-7859-420c-b3a9-145b02b49ed8","name":"3adf6bc6-7859-420c-b3a9-145b02b49ed8","status":"Running","startTime":"2020-10-20T02:29:38.3850187Z","endTime":"2020-10-20T02:33:50.499333Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"1a084f02-61ae-4e43-8dbc-930a3f1d39bd","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '499' + - '498' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jul 2020 09:13:21 GMT + - Tue, 20 Oct 2020 02:36:45 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=674fe96f3bce8188d0eb2fc0614159377a36737bc9fcea8ee39a46646238bc6d;Path=/;HttpOnly;Secure;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinitySameSite=674fe96f3bce8188d0eb2fc0614159377a36737bc9fcea8ee39a46646238bc6d;Path=/;HttpOnly;SameSite=None;Secure;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -722,28 +737,29 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-kusto/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/facc64ef-96b9-4e23-ad60-dc8336e43ff7?api-version=2020-06-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/3adf6bc6-7859-420c-b3a9-145b02b49ed8?api-version=2020-09-18 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/facc64ef-96b9-4e23-ad60-dc8336e43ff7","name":"facc64ef-96b9-4e23-ad60-dc8336e43ff7","status":"Running","startTime":"2020-07-13T09:06:13.0379226Z","endTime":"2020-07-13T09:06:16.3738497Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"a57241c7-abbc-4db3-8dec-9c2cddc54fcf","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/3adf6bc6-7859-420c-b3a9-145b02b49ed8","name":"3adf6bc6-7859-420c-b3a9-145b02b49ed8","status":"Running","startTime":"2020-10-20T02:29:38.3850187Z","endTime":"2020-10-20T02:33:50.499333Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"1a084f02-61ae-4e43-8dbc-930a3f1d39bd","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '499' + - '498' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jul 2020 09:13:51 GMT + - Tue, 20 Oct 2020 02:37:16 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=99339843ceb188a538d6685b884e4f2de7070cfb5c36939385778ca277976849;Path=/;HttpOnly;Secure;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinitySameSite=99339843ceb188a538d6685b884e4f2de7070cfb5c36939385778ca277976849;Path=/;HttpOnly;SameSite=None;Secure;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -769,28 +785,29 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-kusto/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/facc64ef-96b9-4e23-ad60-dc8336e43ff7?api-version=2020-06-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/3adf6bc6-7859-420c-b3a9-145b02b49ed8?api-version=2020-09-18 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/facc64ef-96b9-4e23-ad60-dc8336e43ff7","name":"facc64ef-96b9-4e23-ad60-dc8336e43ff7","status":"Running","startTime":"2020-07-13T09:06:13.0379226Z","endTime":"2020-07-13T09:06:16.3738497Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"a57241c7-abbc-4db3-8dec-9c2cddc54fcf","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/3adf6bc6-7859-420c-b3a9-145b02b49ed8","name":"3adf6bc6-7859-420c-b3a9-145b02b49ed8","status":"Running","startTime":"2020-10-20T02:29:38.3850187Z","endTime":"2020-10-20T02:33:50.499333Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"1a084f02-61ae-4e43-8dbc-930a3f1d39bd","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '499' + - '498' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jul 2020 09:14:22 GMT + - Tue, 20 Oct 2020 02:37:47 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=674fe96f3bce8188d0eb2fc0614159377a36737bc9fcea8ee39a46646238bc6d;Path=/;HttpOnly;Secure;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinitySameSite=674fe96f3bce8188d0eb2fc0614159377a36737bc9fcea8ee39a46646238bc6d;Path=/;HttpOnly;SameSite=None;Secure;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -816,28 +833,29 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-kusto/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/facc64ef-96b9-4e23-ad60-dc8336e43ff7?api-version=2020-06-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/3adf6bc6-7859-420c-b3a9-145b02b49ed8?api-version=2020-09-18 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/facc64ef-96b9-4e23-ad60-dc8336e43ff7","name":"facc64ef-96b9-4e23-ad60-dc8336e43ff7","status":"Running","startTime":"2020-07-13T09:06:13.0379226Z","endTime":"2020-07-13T09:06:16.3738497Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"a57241c7-abbc-4db3-8dec-9c2cddc54fcf","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/3adf6bc6-7859-420c-b3a9-145b02b49ed8","name":"3adf6bc6-7859-420c-b3a9-145b02b49ed8","status":"Running","startTime":"2020-10-20T02:29:38.3850187Z","endTime":"2020-10-20T02:33:50.499333Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"1a084f02-61ae-4e43-8dbc-930a3f1d39bd","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '499' + - '498' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jul 2020 09:14:52 GMT + - Tue, 20 Oct 2020 02:38:17 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=674fe96f3bce8188d0eb2fc0614159377a36737bc9fcea8ee39a46646238bc6d;Path=/;HttpOnly;Secure;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinitySameSite=674fe96f3bce8188d0eb2fc0614159377a36737bc9fcea8ee39a46646238bc6d;Path=/;HttpOnly;SameSite=None;Secure;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -863,122 +881,29 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/facc64ef-96b9-4e23-ad60-dc8336e43ff7?api-version=2020-06-14 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/facc64ef-96b9-4e23-ad60-dc8336e43ff7","name":"facc64ef-96b9-4e23-ad60-dc8336e43ff7","status":"Running","startTime":"2020-07-13T09:06:13.0379226Z","endTime":"2020-07-13T09:06:16.3738497Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"a57241c7-abbc-4db3-8dec-9c2cddc54fcf","provisioningState":"Running","OperationState":"InProgress"}}' - headers: - cache-control: - - no-cache - content-length: - - '499' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Jul 2020 09:15:22 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '289' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-kusto/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/facc64ef-96b9-4e23-ad60-dc8336e43ff7?api-version=2020-06-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/3adf6bc6-7859-420c-b3a9-145b02b49ed8?api-version=2020-09-18 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/facc64ef-96b9-4e23-ad60-dc8336e43ff7","name":"facc64ef-96b9-4e23-ad60-dc8336e43ff7","status":"Running","startTime":"2020-07-13T09:06:13.0379226Z","endTime":"2020-07-13T09:06:16.3738497Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"a57241c7-abbc-4db3-8dec-9c2cddc54fcf","provisioningState":"Running","OperationState":"InProgress"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/3adf6bc6-7859-420c-b3a9-145b02b49ed8","name":"3adf6bc6-7859-420c-b3a9-145b02b49ed8","status":"Running","startTime":"2020-10-20T02:29:38.3850187Z","endTime":"2020-10-20T02:33:50.499333Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"1a084f02-61ae-4e43-8dbc-930a3f1d39bd","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache content-length: - - '499' - content-type: - - application/json; charset=utf-8 - date: - - Mon, 13 Jul 2020 09:15:53 GMT - expires: - - '-1' - pragma: - - no-cache - set-cookie: - - ARRAffinity=05893460edd64dea18419719afaa21f452a43339bdce881ba0f8ccabe7ab2e9c;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net - strict-transport-security: - - max-age=31536000; includeSubDomains - transfer-encoding: - - chunked - vary: - - Accept-Encoding,Accept-Encoding - x-content-type-options: - - nosniff - x-ms-ratelimit-remaining-subscription-resource-requests: - - '288' - x-powered-by: - - ASP.NET - status: - code: 200 - message: OK -- request: - body: null - headers: - Accept: - - application/json - Accept-Encoding: - - gzip, deflate - Connection: - - keep-alive - User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python - method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/facc64ef-96b9-4e23-ad60-dc8336e43ff7?api-version=2020-06-14 - response: - body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/facc64ef-96b9-4e23-ad60-dc8336e43ff7","name":"facc64ef-96b9-4e23-ad60-dc8336e43ff7","status":"Running","startTime":"2020-07-13T09:06:13.0379226Z","endTime":"2020-07-13T09:06:16.3738497Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"a57241c7-abbc-4db3-8dec-9c2cddc54fcf","provisioningState":"Running","OperationState":"InProgress"}}' - headers: - cache-control: - - no-cache - content-length: - - '499' + - '498' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jul 2020 09:16:23 GMT + - Tue, 20 Oct 2020 02:38:47 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=05893460edd64dea18419719afaa21f452a43339bdce881ba0f8ccabe7ab2e9c;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=674fe96f3bce8188d0eb2fc0614159377a36737bc9fcea8ee39a46646238bc6d;Path=/;HttpOnly;Secure;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinitySameSite=674fe96f3bce8188d0eb2fc0614159377a36737bc9fcea8ee39a46646238bc6d;Path=/;HttpOnly;SameSite=None;Secure;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -988,7 +913,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '287' + - '282' x-powered-by: - ASP.NET status: @@ -1004,13 +929,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-kusto/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/facc64ef-96b9-4e23-ad60-dc8336e43ff7?api-version=2020-06-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/3adf6bc6-7859-420c-b3a9-145b02b49ed8?api-version=2020-09-18 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/facc64ef-96b9-4e23-ad60-dc8336e43ff7","name":"facc64ef-96b9-4e23-ad60-dc8336e43ff7","status":"Succeeded","startTime":"2020-07-13T09:06:13.0379226Z","endTime":"2020-07-13T09:16:25.0397386Z","percentComplete":1.0,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"a57241c7-abbc-4db3-8dec-9c2cddc54fcf","provisioningState":"Succeeded","OperationState":"Completed"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/3adf6bc6-7859-420c-b3a9-145b02b49ed8","name":"3adf6bc6-7859-420c-b3a9-145b02b49ed8","status":"Succeeded","startTime":"2020-10-20T02:29:38.3850187Z","endTime":"2020-10-20T02:39:06.2729061Z","percentComplete":1.0,"properties":{"OperationKind":"ClusterCreateExternal","RootActivityId":"1a084f02-61ae-4e43-8dbc-930a3f1d39bd","provisioningState":"Succeeded","OperationState":"Completed"}}' headers: cache-control: - no-cache @@ -1019,13 +944,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jul 2020 09:16:53 GMT + - Tue, 20 Oct 2020 02:39:17 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=05893460edd64dea18419719afaa21f452a43339bdce881ba0f8ccabe7ab2e9c;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=99339843ceb188a538d6685b884e4f2de7070cfb5c36939385778ca277976849;Path=/;HttpOnly;Secure;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinitySameSite=99339843ceb188a538d6685b884e4f2de7070cfb5c36939385778ca277976849;Path=/;HttpOnly;SameSite=None;Secure;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1035,7 +961,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '286' + - '281' x-powered-by: - ASP.NET status: @@ -1051,23 +977,23 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-kusto/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_kusto_test_kusto_adjusted440a1037/providers/Microsoft.Kusto/clusters/MyClusterNameXarqRnd?api-version=2020-06-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_kusto_test_kusto_adjusted440a1037/providers/Microsoft.Kusto/clusters/MyClusterNameXarqRnd?api-version=2020-09-18 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_kusto_test_kusto_adjusted440a1037/providers/Microsoft.Kusto/Clusters/MyClusterNameXarqRnd","name":"MyClusterNameXarqRnd","type":"Microsoft.Kusto/Clusters","etag":"\"\"","location":"West - US","sku":{"name":"Standard_L8s","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://myclusternamexarqrnd.westus.kusto.windows.net","dataIngestionUri":"https://ingest-myclusternamexarqrnd.westus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"enableStorageDoubleEncryption":false,"provisioningState":"Succeeded"},"identity":{"principalId":"4c4fc6d7-044c-410d-be8f-5ed9f71ccc8e","tenantId":"00000000-0000-0000-0000-000000000000","type":"SystemAssigned"}}' + US","sku":{"name":"Standard_L8s","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://myclusternamexarqrnd.westus.kusto.windows.net","dataIngestionUri":"https://ingest-myclusternamexarqrnd.westus.kusto.windows.net","trustedExternalTenants":[{"value":"*"}],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":false,"engineType":"V2","provisioningState":"Succeeded"},"identity":{"principalId":"65288c21-2d76-4319-90a7-95fd5c76e0e6","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"}}' headers: cache-control: - no-cache content-length: - - '981' + - '1005' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jul 2020 09:16:54 GMT + - Tue, 20 Oct 2020 02:39:18 GMT etag: - '""' expires: @@ -1075,7 +1001,8 @@ interactions: pragma: - no-cache set-cookie: - - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=99339843ceb188a538d6685b884e4f2de7070cfb5c36939385778ca277976849;Path=/;HttpOnly;Secure;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinitySameSite=99339843ceb188a538d6685b884e4f2de7070cfb5c36939385778ca277976849;Path=/;HttpOnly;SameSite=None;Secure;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1106,18 +1033,18 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-kusto/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: PUT - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_kusto_test_kusto_adjusted440a1037/providers/Microsoft.Kusto/clusters/MyClusterNameXarqRnd/databases/MyDatabase?api-version=2020-06-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_kusto_test_kusto_adjusted440a1037/providers/Microsoft.Kusto/clusters/MyClusterNameXarqRnd/databases/MyDatabase?api-version=2020-09-18 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_kusto_test_kusto_adjusted440a1037/providers/Microsoft.Kusto/Clusters/MyClusterNameXarqRnd/Databases/MyDatabase","name":"MyClusterNameXarqRnd/MyDatabase","type":"Microsoft.Kusto/Clusters/Databases","etag":"\"\"","location":"westus","kind":"ReadWrite","properties":{"softDeletePeriod":"P1D","provisioningState":"Creating"}}' headers: azure-asyncoperation: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/af52439a-59c8-48f3-9ac2-281d7b9dddb4?api-version=2020-06-14 + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/057a0ddd-dc51-4aa8-8a26-c8d16a83174b?api-version=2020-09-18 cache-control: - no-cache content-length: @@ -1125,7 +1052,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jul 2020 09:16:56 GMT + - Tue, 20 Oct 2020 02:39:20 GMT etag: - '""' expires: @@ -1133,7 +1060,8 @@ interactions: pragma: - no-cache set-cookie: - - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=674fe96f3bce8188d0eb2fc0614159377a36737bc9fcea8ee39a46646238bc6d;Path=/;HttpOnly;Secure;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinitySameSite=674fe96f3bce8188d0eb2fc0614159377a36737bc9fcea8ee39a46646238bc6d;Path=/;HttpOnly;SameSite=None;Secure;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: @@ -1155,13 +1083,13 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-kusto/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/af52439a-59c8-48f3-9ac2-281d7b9dddb4?api-version=2020-06-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationResults/057a0ddd-dc51-4aa8-8a26-c8d16a83174b?api-version=2020-09-18 response: body: - string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/af52439a-59c8-48f3-9ac2-281d7b9dddb4","name":"af52439a-59c8-48f3-9ac2-281d7b9dddb4","status":"Succeeded","startTime":"2020-07-13T09:16:57.2205646Z","endTime":"2020-07-13T09:16:59.7049702Z","percentComplete":1.0,"properties":{"OperationKind":"DatabaseCreate","RootActivityId":"652d5dec-9c67-478f-8d49-60b179b4b6e8","provisioningState":"Succeeded","OperationState":"Completed"}}' + string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/westus/operationresults/057a0ddd-dc51-4aa8-8a26-c8d16a83174b","name":"057a0ddd-dc51-4aa8-8a26-c8d16a83174b","status":"Succeeded","startTime":"2020-10-20T02:39:21.1498411Z","endTime":"2020-10-20T02:39:24.5316878Z","percentComplete":1.0,"properties":{"OperationKind":"DatabaseCreate","RootActivityId":"ee8d0acd-e8bd-4ed3-a9c5-2ce8b6187cfa","provisioningState":"Succeeded","OperationState":"Completed"}}' headers: cache-control: - no-cache @@ -1170,13 +1098,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jul 2020 09:17:28 GMT + - Tue, 20 Oct 2020 02:39:52 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=05893460edd64dea18419719afaa21f452a43339bdce881ba0f8ccabe7ab2e9c;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=99339843ceb188a538d6685b884e4f2de7070cfb5c36939385778ca277976849;Path=/;HttpOnly;Secure;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinitySameSite=99339843ceb188a538d6685b884e4f2de7070cfb5c36939385778ca277976849;Path=/;HttpOnly;SameSite=None;Secure;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1202,10 +1131,10 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-kusto/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_kusto_test_kusto_adjusted440a1037/providers/Microsoft.Kusto/clusters/MyClusterNameXarqRnd/databases/MyDatabase?api-version=2020-06-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_kusto_test_kusto_adjusted440a1037/providers/Microsoft.Kusto/clusters/MyClusterNameXarqRnd/databases/MyDatabase?api-version=2020-09-18 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_kusto_test_kusto_adjusted440a1037/providers/Microsoft.Kusto/Clusters/MyClusterNameXarqRnd/Databases/MyDatabase","name":"MyClusterNameXarqRnd/MyDatabase","type":"Microsoft.Kusto/Clusters/Databases","etag":"\"\"","location":"West @@ -1218,7 +1147,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jul 2020 09:17:29 GMT + - Tue, 20 Oct 2020 02:39:52 GMT etag: - '""' expires: @@ -1226,7 +1155,8 @@ interactions: pragma: - no-cache set-cookie: - - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=674fe96f3bce8188d0eb2fc0614159377a36737bc9fcea8ee39a46646238bc6d;Path=/;HttpOnly;Secure;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinitySameSite=674fe96f3bce8188d0eb2fc0614159377a36737bc9fcea8ee39a46646238bc6d;Path=/;HttpOnly;SameSite=None;Secure;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1252,12 +1182,12 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-kusto/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_kusto_test_kusto_adjusted440a1037/providers/Microsoft.Kusto/clusters/MyClusterNameXarqRnd/databases/MyDatabase?api-version=2020-06-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_kusto_test_kusto_adjusted440a1037/providers/Microsoft.Kusto/clusters/MyClusterNameXarqRnd/databases/MyDatabase?api-version=2020-09-18 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_kusto_test_kusto_adjusted440a1037/providers/Microsoft.Kusto/Clusters/MyClusterNameXarqRnd/Databases/MyDatabase","name":"MyClusterNameXarqRnd/MyDatabase","type":"Microsoft.Kusto/Clusters/Databases","etag":"\"\"","location":"West @@ -1270,7 +1200,7 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jul 2020 09:17:30 GMT + - Tue, 20 Oct 2020 02:39:53 GMT etag: - '""' expires: @@ -1278,7 +1208,8 @@ interactions: pragma: - no-cache set-cookie: - - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=674fe96f3bce8188d0eb2fc0614159377a36737bc9fcea8ee39a46646238bc6d;Path=/;HttpOnly;Secure;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinitySameSite=674fe96f3bce8188d0eb2fc0614159377a36737bc9fcea8ee39a46646238bc6d;Path=/;HttpOnly;SameSite=None;Secure;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1304,25 +1235,25 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-kusto/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_kusto_test_kusto_adjusted440a1037/providers/Microsoft.Kusto/clusters/MyClusterNameXarqRnd?api-version=2020-06-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_kusto_test_kusto_adjusted440a1037/providers/Microsoft.Kusto/clusters/MyClusterNameXarqRnd?api-version=2020-09-18 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_kusto_test_kusto_adjusted440a1037/providers/Microsoft.Kusto/Clusters/MyClusterNameXarqRnd","name":"MyClusterNameXarqRnd","type":"Microsoft.Kusto/Clusters","etag":"\"\"","location":"West - US","sku":{"name":"Standard_L8s","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://myclusternamexarqrnd.westus.kusto.windows.net","dataIngestionUri":"https://ingest-myclusternamexarqrnd.westus.kusto.windows.net","trustedExternalTenants":[],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"enableStorageDoubleEncryption":false,"provisioningState":"Succeeded"},"identity":{"principalId":"4c4fc6d7-044c-410d-be8f-5ed9f71ccc8e","tenantId":"00000000-0000-0000-0000-000000000000","type":"SystemAssigned"}}' + US","sku":{"name":"Standard_L8s","tier":"Standard","capacity":2},"tags":{},"properties":{"state":"Running","stateReason":null,"uri":"https://myclusternamexarqrnd.westus.kusto.windows.net","dataIngestionUri":"https://ingest-myclusternamexarqrnd.westus.kusto.windows.net","trustedExternalTenants":[{"value":"*"}],"virtualNetworkConfiguration":null,"optimizedAutoscale":null,"enableDiskEncryption":false,"enableStreamingIngest":true,"keyVaultProperties":null,"languageExtensions":{"value":[]},"enablePurge":null,"enableDoubleEncryption":false,"engineType":"V2","provisioningState":"Succeeded"},"identity":{"principalId":"65288c21-2d76-4319-90a7-95fd5c76e0e6","tenantId":"54826b22-38d6-4fb2-bad9-b7b93a3e9c5a","type":"SystemAssigned"}}' headers: cache-control: - no-cache content-length: - - '981' + - '1005' content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jul 2020 09:17:31 GMT + - Tue, 20 Oct 2020 02:39:54 GMT etag: - '""' expires: @@ -1330,7 +1261,8 @@ interactions: pragma: - no-cache set-cookie: - - ARRAffinity=05893460edd64dea18419719afaa21f452a43339bdce881ba0f8ccabe7ab2e9c;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=99339843ceb188a538d6685b884e4f2de7070cfb5c36939385778ca277976849;Path=/;HttpOnly;Secure;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinitySameSite=99339843ceb188a538d6685b884e4f2de7070cfb5c36939385778ca277976849;Path=/;HttpOnly;SameSite=None;Secure;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1360,12 +1292,12 @@ interactions: Content-Type: - application/json; charset=utf-8 User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-kusto/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_kusto_test_kusto_adjusted440a1037/providers/Microsoft.Kusto/clusters/MyClusterNameXarqRnd/databases/MyDatabase/checkNameAvailability?api-version=2020-06-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_kusto_test_kusto_adjusted440a1037/providers/Microsoft.Kusto/clusters/MyClusterNameXarqRnd/databases/MyDatabase/checkNameAvailability?api-version=2020-09-18 response: body: string: '{"name":"abc","nameAvailable":true,"message":""}' @@ -1377,13 +1309,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jul 2020 09:17:32 GMT + - Tue, 20 Oct 2020 02:39:55 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=674fe96f3bce8188d0eb2fc0614159377a36737bc9fcea8ee39a46646238bc6d;Path=/;HttpOnly;Secure;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinitySameSite=674fe96f3bce8188d0eb2fc0614159377a36737bc9fcea8ee39a46646238bc6d;Path=/;HttpOnly;SameSite=None;Secure;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1411,33 +1344,34 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-kusto/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_kusto_test_kusto_adjusted440a1037/providers/Microsoft.Kusto/clusters/MyClusterNameXarqRnd/start?api-version=2020-06-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_kusto_test_kusto_adjusted440a1037/providers/Microsoft.Kusto/clusters/MyClusterNameXarqRnd/start?api-version=2020-09-18 response: body: string: '' headers: azure-asyncoperation: - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationResults/cb2cfff5-5ee4-4769-bd58-9408550f158f?api-version=2020-06-14 + US/operationResults/aca2803b-a5fe-45e4-8178-76f75f1695fc?api-version=2020-09-18 cache-control: - no-cache content-length: - '0' date: - - Mon, 13 Jul 2020 09:17:32 GMT + - Tue, 20 Oct 2020 02:39:55 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/cb2cfff5-5ee4-4769-bd58-9408550f158f?api-version=2020-06-14&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/aca2803b-a5fe-45e4-8178-76f75f1695fc?api-version=2020-09-18&operationResultResponseType=Location pragma: - no-cache set-cookie: - - ARRAffinity=05893460edd64dea18419719afaa21f452a43339bdce881ba0f8ccabe7ab2e9c;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=99339843ceb188a538d6685b884e4f2de7070cfb5c36939385778ca277976849;Path=/;HttpOnly;Secure;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinitySameSite=99339843ceb188a538d6685b884e4f2de7070cfb5c36939385778ca277976849;Path=/;HttpOnly;SameSite=None;Secure;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: @@ -1459,14 +1393,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-kusto/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/cb2cfff5-5ee4-4769-bd58-9408550f158f?api-version=2020-06-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/aca2803b-a5fe-45e4-8178-76f75f1695fc?api-version=2020-09-18 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/cb2cfff5-5ee4-4769-bd58-9408550f158f","name":"cb2cfff5-5ee4-4769-bd58-9408550f158f","status":"Succeeded","startTime":"2020-07-13T09:17:32.7659915Z","endTime":"2020-07-13T09:17:36.0160218Z","percentComplete":1.0,"properties":{"OperationKind":"ClusterResume","RootActivityId":"95b178be-64f9-4518-8efe-95e99142b855","provisioningState":"Succeeded","OperationState":"Completed"}}' + US/operationresults/aca2803b-a5fe-45e4-8178-76f75f1695fc","name":"aca2803b-a5fe-45e4-8178-76f75f1695fc","status":"Succeeded","startTime":"2020-10-20T02:39:55.8015332Z","endTime":"2020-10-20T02:40:00.0202501Z","percentComplete":1.0,"properties":{"OperationKind":"ClusterResume","RootActivityId":"4a272466-6f5f-4dab-a45b-b84befe02b68","provisioningState":"Succeeded","OperationState":"Completed"}}' headers: cache-control: - no-cache @@ -1475,13 +1409,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jul 2020 09:18:04 GMT + - Tue, 20 Oct 2020 02:40:26 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=674fe96f3bce8188d0eb2fc0614159377a36737bc9fcea8ee39a46646238bc6d;Path=/;HttpOnly;Secure;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinitySameSite=674fe96f3bce8188d0eb2fc0614159377a36737bc9fcea8ee39a46646238bc6d;Path=/;HttpOnly;SameSite=None;Secure;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1509,33 +1444,34 @@ interactions: Content-Length: - '0' User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-kusto/0.10.0 Azure-SDK-For-Python accept-language: - en-US method: POST - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_kusto_test_kusto_adjusted440a1037/providers/Microsoft.Kusto/clusters/MyClusterNameXarqRnd/stop?api-version=2020-06-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/test_cli_mgmt_kusto_test_kusto_adjusted440a1037/providers/Microsoft.Kusto/clusters/MyClusterNameXarqRnd/stop?api-version=2020-09-18 response: body: string: '' headers: azure-asyncoperation: - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationResults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1?api-version=2020-06-14 + US/operationResults/226a5383-2213-4866-827f-f99e590c05e1?api-version=2020-09-18 cache-control: - no-cache content-length: - '0' date: - - Mon, 13 Jul 2020 09:18:04 GMT + - Tue, 20 Oct 2020 02:40:27 GMT expires: - '-1' location: - - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1?api-version=2020-06-14&operationResultResponseType=Location + - https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/226a5383-2213-4866-827f-f99e590c05e1?api-version=2020-09-18&operationResultResponseType=Location pragma: - no-cache set-cookie: - - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=99339843ceb188a538d6685b884e4f2de7070cfb5c36939385778ca277976849;Path=/;HttpOnly;Secure;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinitySameSite=99339843ceb188a538d6685b884e4f2de7070cfb5c36939385778ca277976849;Path=/;HttpOnly;SameSite=None;Secure;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains x-content-type-options: @@ -1557,14 +1493,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-kusto/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1?api-version=2020-06-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/226a5383-2213-4866-827f-f99e590c05e1?api-version=2020-09-18 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","name":"de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","status":"Running","startTime":"2020-07-13T09:18:04.7961727Z","endTime":"2020-07-13T09:18:05.9211489Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"9dbe83bc-3c8a-4fb5-9363-1a933cf43e13","provisioningState":"Running","OperationState":"InProgress"}}' + US/operationresults/226a5383-2213-4866-827f-f99e590c05e1","name":"226a5383-2213-4866-827f-f99e590c05e1","status":"Running","startTime":"2020-10-20T02:40:27.8102746Z","endTime":"2020-10-20T02:40:30.2790335Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"b6c69c31-684a-48db-98ed-d76637c88eb3","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -1573,13 +1509,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jul 2020 09:18:35 GMT + - Tue, 20 Oct 2020 02:40:59 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=05893460edd64dea18419719afaa21f452a43339bdce881ba0f8ccabe7ab2e9c;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=674fe96f3bce8188d0eb2fc0614159377a36737bc9fcea8ee39a46646238bc6d;Path=/;HttpOnly;Secure;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinitySameSite=674fe96f3bce8188d0eb2fc0614159377a36737bc9fcea8ee39a46646238bc6d;Path=/;HttpOnly;SameSite=None;Secure;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1605,14 +1542,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-kusto/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1?api-version=2020-06-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/226a5383-2213-4866-827f-f99e590c05e1?api-version=2020-09-18 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","name":"de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","status":"Running","startTime":"2020-07-13T09:18:04.7961727Z","endTime":"2020-07-13T09:18:05.9211489Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"9dbe83bc-3c8a-4fb5-9363-1a933cf43e13","provisioningState":"Running","OperationState":"InProgress"}}' + US/operationresults/226a5383-2213-4866-827f-f99e590c05e1","name":"226a5383-2213-4866-827f-f99e590c05e1","status":"Running","startTime":"2020-10-20T02:40:27.8102746Z","endTime":"2020-10-20T02:40:30.2790335Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"b6c69c31-684a-48db-98ed-d76637c88eb3","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -1621,13 +1558,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jul 2020 09:19:06 GMT + - Tue, 20 Oct 2020 02:41:29 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=99339843ceb188a538d6685b884e4f2de7070cfb5c36939385778ca277976849;Path=/;HttpOnly;Secure;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinitySameSite=99339843ceb188a538d6685b884e4f2de7070cfb5c36939385778ca277976849;Path=/;HttpOnly;SameSite=None;Secure;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1653,14 +1591,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-kusto/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1?api-version=2020-06-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/226a5383-2213-4866-827f-f99e590c05e1?api-version=2020-09-18 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","name":"de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","status":"Running","startTime":"2020-07-13T09:18:04.7961727Z","endTime":"2020-07-13T09:18:05.9211489Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"9dbe83bc-3c8a-4fb5-9363-1a933cf43e13","provisioningState":"Running","OperationState":"InProgress"}}' + US/operationresults/226a5383-2213-4866-827f-f99e590c05e1","name":"226a5383-2213-4866-827f-f99e590c05e1","status":"Running","startTime":"2020-10-20T02:40:27.8102746Z","endTime":"2020-10-20T02:40:30.2790335Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"b6c69c31-684a-48db-98ed-d76637c88eb3","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -1669,13 +1607,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jul 2020 09:19:36 GMT + - Tue, 20 Oct 2020 02:41:59 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=05893460edd64dea18419719afaa21f452a43339bdce881ba0f8ccabe7ab2e9c;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=99339843ceb188a538d6685b884e4f2de7070cfb5c36939385778ca277976849;Path=/;HttpOnly;Secure;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinitySameSite=99339843ceb188a538d6685b884e4f2de7070cfb5c36939385778ca277976849;Path=/;HttpOnly;SameSite=None;Secure;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1701,14 +1640,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-kusto/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1?api-version=2020-06-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/226a5383-2213-4866-827f-f99e590c05e1?api-version=2020-09-18 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","name":"de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","status":"Running","startTime":"2020-07-13T09:18:04.7961727Z","endTime":"2020-07-13T09:18:05.9211489Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"9dbe83bc-3c8a-4fb5-9363-1a933cf43e13","provisioningState":"Running","OperationState":"InProgress"}}' + US/operationresults/226a5383-2213-4866-827f-f99e590c05e1","name":"226a5383-2213-4866-827f-f99e590c05e1","status":"Running","startTime":"2020-10-20T02:40:27.8102746Z","endTime":"2020-10-20T02:40:30.2790335Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"b6c69c31-684a-48db-98ed-d76637c88eb3","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -1717,13 +1656,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jul 2020 09:20:06 GMT + - Tue, 20 Oct 2020 02:42:29 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=05893460edd64dea18419719afaa21f452a43339bdce881ba0f8ccabe7ab2e9c;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=674fe96f3bce8188d0eb2fc0614159377a36737bc9fcea8ee39a46646238bc6d;Path=/;HttpOnly;Secure;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinitySameSite=674fe96f3bce8188d0eb2fc0614159377a36737bc9fcea8ee39a46646238bc6d;Path=/;HttpOnly;SameSite=None;Secure;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1749,14 +1689,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-kusto/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1?api-version=2020-06-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/226a5383-2213-4866-827f-f99e590c05e1?api-version=2020-09-18 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","name":"de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","status":"Running","startTime":"2020-07-13T09:18:04.7961727Z","endTime":"2020-07-13T09:18:05.9211489Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"9dbe83bc-3c8a-4fb5-9363-1a933cf43e13","provisioningState":"Running","OperationState":"InProgress"}}' + US/operationresults/226a5383-2213-4866-827f-f99e590c05e1","name":"226a5383-2213-4866-827f-f99e590c05e1","status":"Running","startTime":"2020-10-20T02:40:27.8102746Z","endTime":"2020-10-20T02:40:30.2790335Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"b6c69c31-684a-48db-98ed-d76637c88eb3","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -1765,13 +1705,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jul 2020 09:20:37 GMT + - Tue, 20 Oct 2020 02:42:59 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=05893460edd64dea18419719afaa21f452a43339bdce881ba0f8ccabe7ab2e9c;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=674fe96f3bce8188d0eb2fc0614159377a36737bc9fcea8ee39a46646238bc6d;Path=/;HttpOnly;Secure;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinitySameSite=674fe96f3bce8188d0eb2fc0614159377a36737bc9fcea8ee39a46646238bc6d;Path=/;HttpOnly;SameSite=None;Secure;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1797,14 +1738,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-kusto/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1?api-version=2020-06-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/226a5383-2213-4866-827f-f99e590c05e1?api-version=2020-09-18 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","name":"de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","status":"Running","startTime":"2020-07-13T09:18:04.7961727Z","endTime":"2020-07-13T09:18:05.9211489Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"9dbe83bc-3c8a-4fb5-9363-1a933cf43e13","provisioningState":"Running","OperationState":"InProgress"}}' + US/operationresults/226a5383-2213-4866-827f-f99e590c05e1","name":"226a5383-2213-4866-827f-f99e590c05e1","status":"Running","startTime":"2020-10-20T02:40:27.8102746Z","endTime":"2020-10-20T02:40:30.2790335Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"b6c69c31-684a-48db-98ed-d76637c88eb3","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -1813,13 +1754,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jul 2020 09:21:07 GMT + - Tue, 20 Oct 2020 02:43:30 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=99339843ceb188a538d6685b884e4f2de7070cfb5c36939385778ca277976849;Path=/;HttpOnly;Secure;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinitySameSite=99339843ceb188a538d6685b884e4f2de7070cfb5c36939385778ca277976849;Path=/;HttpOnly;SameSite=None;Secure;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1845,14 +1787,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-kusto/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1?api-version=2020-06-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/226a5383-2213-4866-827f-f99e590c05e1?api-version=2020-09-18 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","name":"de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","status":"Running","startTime":"2020-07-13T09:18:04.7961727Z","endTime":"2020-07-13T09:18:05.9211489Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"9dbe83bc-3c8a-4fb5-9363-1a933cf43e13","provisioningState":"Running","OperationState":"InProgress"}}' + US/operationresults/226a5383-2213-4866-827f-f99e590c05e1","name":"226a5383-2213-4866-827f-f99e590c05e1","status":"Running","startTime":"2020-10-20T02:40:27.8102746Z","endTime":"2020-10-20T02:40:30.2790335Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"b6c69c31-684a-48db-98ed-d76637c88eb3","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -1861,13 +1803,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jul 2020 09:21:37 GMT + - Tue, 20 Oct 2020 02:44:00 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=05893460edd64dea18419719afaa21f452a43339bdce881ba0f8ccabe7ab2e9c;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=674fe96f3bce8188d0eb2fc0614159377a36737bc9fcea8ee39a46646238bc6d;Path=/;HttpOnly;Secure;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinitySameSite=674fe96f3bce8188d0eb2fc0614159377a36737bc9fcea8ee39a46646238bc6d;Path=/;HttpOnly;SameSite=None;Secure;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1893,14 +1836,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-kusto/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1?api-version=2020-06-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/226a5383-2213-4866-827f-f99e590c05e1?api-version=2020-09-18 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","name":"de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","status":"Running","startTime":"2020-07-13T09:18:04.7961727Z","endTime":"2020-07-13T09:18:05.9211489Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"9dbe83bc-3c8a-4fb5-9363-1a933cf43e13","provisioningState":"Running","OperationState":"InProgress"}}' + US/operationresults/226a5383-2213-4866-827f-f99e590c05e1","name":"226a5383-2213-4866-827f-f99e590c05e1","status":"Running","startTime":"2020-10-20T02:40:27.8102746Z","endTime":"2020-10-20T02:40:30.2790335Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"b6c69c31-684a-48db-98ed-d76637c88eb3","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -1909,13 +1852,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jul 2020 09:22:07 GMT + - Tue, 20 Oct 2020 02:44:30 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=99339843ceb188a538d6685b884e4f2de7070cfb5c36939385778ca277976849;Path=/;HttpOnly;Secure;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinitySameSite=99339843ceb188a538d6685b884e4f2de7070cfb5c36939385778ca277976849;Path=/;HttpOnly;SameSite=None;Secure;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1941,14 +1885,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-kusto/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1?api-version=2020-06-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/226a5383-2213-4866-827f-f99e590c05e1?api-version=2020-09-18 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","name":"de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","status":"Running","startTime":"2020-07-13T09:18:04.7961727Z","endTime":"2020-07-13T09:18:05.9211489Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"9dbe83bc-3c8a-4fb5-9363-1a933cf43e13","provisioningState":"Running","OperationState":"InProgress"}}' + US/operationresults/226a5383-2213-4866-827f-f99e590c05e1","name":"226a5383-2213-4866-827f-f99e590c05e1","status":"Running","startTime":"2020-10-20T02:40:27.8102746Z","endTime":"2020-10-20T02:40:30.2790335Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"b6c69c31-684a-48db-98ed-d76637c88eb3","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -1957,13 +1901,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jul 2020 09:22:38 GMT + - Tue, 20 Oct 2020 02:45:01 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=05893460edd64dea18419719afaa21f452a43339bdce881ba0f8ccabe7ab2e9c;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=674fe96f3bce8188d0eb2fc0614159377a36737bc9fcea8ee39a46646238bc6d;Path=/;HttpOnly;Secure;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinitySameSite=674fe96f3bce8188d0eb2fc0614159377a36737bc9fcea8ee39a46646238bc6d;Path=/;HttpOnly;SameSite=None;Secure;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -1989,14 +1934,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-kusto/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1?api-version=2020-06-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/226a5383-2213-4866-827f-f99e590c05e1?api-version=2020-09-18 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","name":"de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","status":"Running","startTime":"2020-07-13T09:18:04.7961727Z","endTime":"2020-07-13T09:18:05.9211489Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"9dbe83bc-3c8a-4fb5-9363-1a933cf43e13","provisioningState":"Running","OperationState":"InProgress"}}' + US/operationresults/226a5383-2213-4866-827f-f99e590c05e1","name":"226a5383-2213-4866-827f-f99e590c05e1","status":"Running","startTime":"2020-10-20T02:40:27.8102746Z","endTime":"2020-10-20T02:40:30.2790335Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"b6c69c31-684a-48db-98ed-d76637c88eb3","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -2005,13 +1950,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jul 2020 09:23:08 GMT + - Tue, 20 Oct 2020 02:45:32 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=99339843ceb188a538d6685b884e4f2de7070cfb5c36939385778ca277976849;Path=/;HttpOnly;Secure;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinitySameSite=99339843ceb188a538d6685b884e4f2de7070cfb5c36939385778ca277976849;Path=/;HttpOnly;SameSite=None;Secure;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2037,14 +1983,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-kusto/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1?api-version=2020-06-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/226a5383-2213-4866-827f-f99e590c05e1?api-version=2020-09-18 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","name":"de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","status":"Running","startTime":"2020-07-13T09:18:04.7961727Z","endTime":"2020-07-13T09:18:05.9211489Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"9dbe83bc-3c8a-4fb5-9363-1a933cf43e13","provisioningState":"Running","OperationState":"InProgress"}}' + US/operationresults/226a5383-2213-4866-827f-f99e590c05e1","name":"226a5383-2213-4866-827f-f99e590c05e1","status":"Running","startTime":"2020-10-20T02:40:27.8102746Z","endTime":"2020-10-20T02:40:30.2790335Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"b6c69c31-684a-48db-98ed-d76637c88eb3","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -2053,13 +1999,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jul 2020 09:23:39 GMT + - Tue, 20 Oct 2020 02:46:02 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=674fe96f3bce8188d0eb2fc0614159377a36737bc9fcea8ee39a46646238bc6d;Path=/;HttpOnly;Secure;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinitySameSite=674fe96f3bce8188d0eb2fc0614159377a36737bc9fcea8ee39a46646238bc6d;Path=/;HttpOnly;SameSite=None;Secure;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2085,14 +2032,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-kusto/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1?api-version=2020-06-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/226a5383-2213-4866-827f-f99e590c05e1?api-version=2020-09-18 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","name":"de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","status":"Running","startTime":"2020-07-13T09:18:04.7961727Z","endTime":"2020-07-13T09:18:05.9211489Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"9dbe83bc-3c8a-4fb5-9363-1a933cf43e13","provisioningState":"Running","OperationState":"InProgress"}}' + US/operationresults/226a5383-2213-4866-827f-f99e590c05e1","name":"226a5383-2213-4866-827f-f99e590c05e1","status":"Running","startTime":"2020-10-20T02:40:27.8102746Z","endTime":"2020-10-20T02:40:30.2790335Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"b6c69c31-684a-48db-98ed-d76637c88eb3","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -2101,13 +2048,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jul 2020 09:24:09 GMT + - Tue, 20 Oct 2020 02:46:33 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=674fe96f3bce8188d0eb2fc0614159377a36737bc9fcea8ee39a46646238bc6d;Path=/;HttpOnly;Secure;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinitySameSite=674fe96f3bce8188d0eb2fc0614159377a36737bc9fcea8ee39a46646238bc6d;Path=/;HttpOnly;SameSite=None;Secure;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2133,14 +2081,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-kusto/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1?api-version=2020-06-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/226a5383-2213-4866-827f-f99e590c05e1?api-version=2020-09-18 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","name":"de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","status":"Running","startTime":"2020-07-13T09:18:04.7961727Z","endTime":"2020-07-13T09:18:05.9211489Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"9dbe83bc-3c8a-4fb5-9363-1a933cf43e13","provisioningState":"Running","OperationState":"InProgress"}}' + US/operationresults/226a5383-2213-4866-827f-f99e590c05e1","name":"226a5383-2213-4866-827f-f99e590c05e1","status":"Running","startTime":"2020-10-20T02:40:27.8102746Z","endTime":"2020-10-20T02:40:30.2790335Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"b6c69c31-684a-48db-98ed-d76637c88eb3","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -2149,13 +2097,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jul 2020 09:24:39 GMT + - Tue, 20 Oct 2020 02:47:03 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=674fe96f3bce8188d0eb2fc0614159377a36737bc9fcea8ee39a46646238bc6d;Path=/;HttpOnly;Secure;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinitySameSite=674fe96f3bce8188d0eb2fc0614159377a36737bc9fcea8ee39a46646238bc6d;Path=/;HttpOnly;SameSite=None;Secure;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2181,14 +2130,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-kusto/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1?api-version=2020-06-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/226a5383-2213-4866-827f-f99e590c05e1?api-version=2020-09-18 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","name":"de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","status":"Running","startTime":"2020-07-13T09:18:04.7961727Z","endTime":"2020-07-13T09:18:05.9211489Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"9dbe83bc-3c8a-4fb5-9363-1a933cf43e13","provisioningState":"Running","OperationState":"InProgress"}}' + US/operationresults/226a5383-2213-4866-827f-f99e590c05e1","name":"226a5383-2213-4866-827f-f99e590c05e1","status":"Running","startTime":"2020-10-20T02:40:27.8102746Z","endTime":"2020-10-20T02:40:30.2790335Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"b6c69c31-684a-48db-98ed-d76637c88eb3","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -2197,13 +2146,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jul 2020 09:25:09 GMT + - Tue, 20 Oct 2020 02:47:33 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=674fe96f3bce8188d0eb2fc0614159377a36737bc9fcea8ee39a46646238bc6d;Path=/;HttpOnly;Secure;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinitySameSite=674fe96f3bce8188d0eb2fc0614159377a36737bc9fcea8ee39a46646238bc6d;Path=/;HttpOnly;SameSite=None;Secure;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2213,7 +2163,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '289' + - '286' x-powered-by: - ASP.NET status: @@ -2229,14 +2179,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-kusto/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1?api-version=2020-06-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/226a5383-2213-4866-827f-f99e590c05e1?api-version=2020-09-18 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","name":"de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","status":"Running","startTime":"2020-07-13T09:18:04.7961727Z","endTime":"2020-07-13T09:18:05.9211489Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"9dbe83bc-3c8a-4fb5-9363-1a933cf43e13","provisioningState":"Running","OperationState":"InProgress"}}' + US/operationresults/226a5383-2213-4866-827f-f99e590c05e1","name":"226a5383-2213-4866-827f-f99e590c05e1","status":"Running","startTime":"2020-10-20T02:40:27.8102746Z","endTime":"2020-10-20T02:40:30.2790335Z","percentComplete":0.5,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"b6c69c31-684a-48db-98ed-d76637c88eb3","provisioningState":"Running","OperationState":"InProgress"}}' headers: cache-control: - no-cache @@ -2245,13 +2195,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jul 2020 09:25:41 GMT + - Tue, 20 Oct 2020 02:48:03 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=99339843ceb188a538d6685b884e4f2de7070cfb5c36939385778ca277976849;Path=/;HttpOnly;Secure;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinitySameSite=99339843ceb188a538d6685b884e4f2de7070cfb5c36939385778ca277976849;Path=/;HttpOnly;SameSite=None;Secure;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2261,7 +2212,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '288' + - '285' x-powered-by: - ASP.NET status: @@ -2277,14 +2228,14 @@ interactions: Connection: - keep-alive User-Agent: - - python/3.8.1 (Windows-10-10.0.18362-SP0) msrest/0.6.13 msrest_azure/0.6.3 - azure-mgmt-kusto/0.9.0 Azure-SDK-For-Python + - python/3.6.9 (Linux-4.19.76-linuxkit-x86_64-with-Ubuntu-18.04-bionic) msrest/0.6.10 + msrest_azure/0.6.2 azure-mgmt-kusto/0.10.0 Azure-SDK-For-Python method: GET - uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1?api-version=2020-06-14 + uri: https://management.azure.com/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West%20US/operationResults/226a5383-2213-4866-827f-f99e590c05e1?api-version=2020-09-18 response: body: string: '{"id":"/subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.Kusto/locations/West - US/operationresults/de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","name":"de67f4b1-bcac-4250-a6dd-29f9a59cd5d1","status":"Succeeded","startTime":"2020-07-13T09:18:04.7961727Z","endTime":"2020-07-13T09:25:56.8391979Z","percentComplete":1.0,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"9dbe83bc-3c8a-4fb5-9363-1a933cf43e13","provisioningState":"Succeeded","OperationState":"Completed"}}' + US/operationresults/226a5383-2213-4866-827f-f99e590c05e1","name":"226a5383-2213-4866-827f-f99e590c05e1","status":"Succeeded","startTime":"2020-10-20T02:40:27.8102746Z","endTime":"2020-10-20T02:48:22.8265877Z","percentComplete":1.0,"properties":{"OperationKind":"ClusterSuspend","RootActivityId":"b6c69c31-684a-48db-98ed-d76637c88eb3","provisioningState":"Succeeded","OperationState":"Completed"}}' headers: cache-control: - no-cache @@ -2293,13 +2244,14 @@ interactions: content-type: - application/json; charset=utf-8 date: - - Mon, 13 Jul 2020 09:26:11 GMT + - Tue, 20 Oct 2020 02:48:33 GMT expires: - '-1' pragma: - no-cache set-cookie: - - ARRAffinity=2acce272a34c56e348910ad32322519db6b963aaa031549d660cf73518fd5461;Path=/;HttpOnly;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinity=99339843ceb188a538d6685b884e4f2de7070cfb5c36939385778ca277976849;Path=/;HttpOnly;Secure;Domain=armrp-kustorpwus.kusto.windows.net + - ARRAffinitySameSite=99339843ceb188a538d6685b884e4f2de7070cfb5c36939385778ca277976849;Path=/;HttpOnly;SameSite=None;Secure;Domain=armrp-kustorpwus.kusto.windows.net strict-transport-security: - max-age=31536000; includeSubDomains transfer-encoding: @@ -2309,7 +2261,7 @@ interactions: x-content-type-options: - nosniff x-ms-ratelimit-remaining-subscription-resource-requests: - - '287' + - '284' x-powered-by: - ASP.NET status: