diff --git a/eng/mgmt/mgmtmetadata/hdinsight_resource-manager.txt b/eng/mgmt/mgmtmetadata/hdinsight_resource-manager.txt
index 66698dd4fa06..54051344513c 100644
--- a/eng/mgmt/mgmtmetadata/hdinsight_resource-manager.txt
+++ b/eng/mgmt/mgmtmetadata/hdinsight_resource-manager.txt
@@ -4,11 +4,11 @@ Commencing code generation
Generating CSharp code
Executing AutoRest command
cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/hdinsight/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp-sdks-folder=D:\source\azure-sdk-for-net\sdk
-2020-08-13 08:20:32 UTC
+2020-10-16 05:31:30 UTC
Azure-rest-api-specs repository information
GitHub fork: Azure
Branch: master
-Commit: afbd723252e704e2763de2ec324a8263d67e8867
+Commit: 85a3955a1e1f4576a501db17e0d7b7998fe9cfdb
AutoRest information
Requested version: v2
Bootstrapper version: autorest@2.0.4413
diff --git a/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/src/Generated/Models/ClusterCreateProperties.cs b/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/src/Generated/Models/ClusterCreateProperties.cs
index b81b136c9c32..c18112019b2b 100644
--- a/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/src/Generated/Models/ClusterCreateProperties.cs
+++ b/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/src/Generated/Models/ClusterCreateProperties.cs
@@ -46,8 +46,8 @@ public ClusterCreateProperties()
/// encryption-in-transit properties.
/// The minimal supported tls
/// version.
- /// The network settings.
- public ClusterCreateProperties(string clusterVersion = default(string), OSType? osType = default(OSType?), Tier? tier = default(Tier?), ClusterDefinition clusterDefinition = default(ClusterDefinition), KafkaRestProperties kafkaRestProperties = default(KafkaRestProperties), SecurityProfile securityProfile = default(SecurityProfile), ComputeProfile computeProfile = default(ComputeProfile), StorageProfile storageProfile = default(StorageProfile), DiskEncryptionProperties diskEncryptionProperties = default(DiskEncryptionProperties), EncryptionInTransitProperties encryptionInTransitProperties = default(EncryptionInTransitProperties), string minSupportedTlsVersion = default(string), NetworkSettings networkSettings = default(NetworkSettings))
+ /// The network properties.
+ public ClusterCreateProperties(string clusterVersion = default(string), OSType? osType = default(OSType?), Tier? tier = default(Tier?), ClusterDefinition clusterDefinition = default(ClusterDefinition), KafkaRestProperties kafkaRestProperties = default(KafkaRestProperties), SecurityProfile securityProfile = default(SecurityProfile), ComputeProfile computeProfile = default(ComputeProfile), StorageProfile storageProfile = default(StorageProfile), DiskEncryptionProperties diskEncryptionProperties = default(DiskEncryptionProperties), EncryptionInTransitProperties encryptionInTransitProperties = default(EncryptionInTransitProperties), string minSupportedTlsVersion = default(string), NetworkProperties networkProperties = default(NetworkProperties))
{
ClusterVersion = clusterVersion;
OsType = osType;
@@ -60,7 +60,7 @@ public ClusterCreateProperties()
DiskEncryptionProperties = diskEncryptionProperties;
EncryptionInTransitProperties = encryptionInTransitProperties;
MinSupportedTlsVersion = minSupportedTlsVersion;
- NetworkSettings = networkSettings;
+ NetworkProperties = networkProperties;
CustomInit();
}
@@ -138,10 +138,10 @@ public ClusterCreateProperties()
public string MinSupportedTlsVersion { get; set; }
///
- /// Gets or sets the network settings.
+ /// Gets or sets the network properties.
///
- [JsonProperty(PropertyName = "networkSettings")]
- public NetworkSettings NetworkSettings { get; set; }
+ [JsonProperty(PropertyName = "networkProperties")]
+ public NetworkProperties NetworkProperties { get; set; }
}
}
diff --git a/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/src/Generated/Models/ClusterGetProperties.cs b/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/src/Generated/Models/ClusterGetProperties.cs
index b882dff14dc4..f13958bf1f70 100644
--- a/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/src/Generated/Models/ClusterGetProperties.cs
+++ b/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/src/Generated/Models/ClusterGetProperties.cs
@@ -38,6 +38,7 @@ public ClusterGetProperties()
/// include: 'Windows', 'Linux'
/// The cluster tier. Possible values include:
/// 'Standard', 'Premium'
+ /// The cluster id.
/// The cluster kafka rest proxy
/// configuration.
/// The security profile.
@@ -58,12 +59,13 @@ public ClusterGetProperties()
/// encryption-in-transit properties.
/// The minimal supported tls
/// version.
- /// The network settings.
- public ClusterGetProperties(ClusterDefinition clusterDefinition, string clusterVersion = default(string), OSType? osType = default(OSType?), Tier? tier = default(Tier?), KafkaRestProperties kafkaRestProperties = default(KafkaRestProperties), SecurityProfile securityProfile = default(SecurityProfile), ComputeProfile computeProfile = default(ComputeProfile), HDInsightClusterProvisioningState? provisioningState = default(HDInsightClusterProvisioningState?), string createdDate = default(string), string clusterState = default(string), QuotaInfo quotaInfo = default(QuotaInfo), IList errors = default(IList), IList connectivityEndpoints = default(IList), DiskEncryptionProperties diskEncryptionProperties = default(DiskEncryptionProperties), EncryptionInTransitProperties encryptionInTransitProperties = default(EncryptionInTransitProperties), string minSupportedTlsVersion = default(string), NetworkSettings networkSettings = default(NetworkSettings))
+ /// The network properties.
+ public ClusterGetProperties(ClusterDefinition clusterDefinition, string clusterVersion = default(string), OSType? osType = default(OSType?), Tier? tier = default(Tier?), string clusterId = default(string), KafkaRestProperties kafkaRestProperties = default(KafkaRestProperties), SecurityProfile securityProfile = default(SecurityProfile), ComputeProfile computeProfile = default(ComputeProfile), HDInsightClusterProvisioningState? provisioningState = default(HDInsightClusterProvisioningState?), string createdDate = default(string), string clusterState = default(string), QuotaInfo quotaInfo = default(QuotaInfo), IList errors = default(IList), IList connectivityEndpoints = default(IList), DiskEncryptionProperties diskEncryptionProperties = default(DiskEncryptionProperties), EncryptionInTransitProperties encryptionInTransitProperties = default(EncryptionInTransitProperties), string minSupportedTlsVersion = default(string), NetworkProperties networkProperties = default(NetworkProperties))
{
ClusterVersion = clusterVersion;
OsType = osType;
Tier = tier;
+ ClusterId = clusterId;
ClusterDefinition = clusterDefinition;
KafkaRestProperties = kafkaRestProperties;
SecurityProfile = securityProfile;
@@ -77,7 +79,7 @@ public ClusterGetProperties()
DiskEncryptionProperties = diskEncryptionProperties;
EncryptionInTransitProperties = encryptionInTransitProperties;
MinSupportedTlsVersion = minSupportedTlsVersion;
- NetworkSettings = networkSettings;
+ NetworkProperties = networkProperties;
CustomInit();
}
@@ -106,6 +108,12 @@ public ClusterGetProperties()
[JsonProperty(PropertyName = "tier")]
public Tier? Tier { get; set; }
+ ///
+ /// Gets or sets the cluster id.
+ ///
+ [JsonProperty(PropertyName = "clusterId")]
+ public string ClusterId { get; set; }
+
///
/// Gets or sets the cluster definition.
///
@@ -187,10 +195,10 @@ public ClusterGetProperties()
public string MinSupportedTlsVersion { get; set; }
///
- /// Gets or sets the network settings.
+ /// Gets or sets the network properties.
///
- [JsonProperty(PropertyName = "networkSettings")]
- public NetworkSettings NetworkSettings { get; set; }
+ [JsonProperty(PropertyName = "networkProperties")]
+ public NetworkProperties NetworkProperties { get; set; }
///
/// Validate the object.
diff --git a/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/src/Generated/Models/NetworkProperties.cs b/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/src/Generated/Models/NetworkProperties.cs
new file mode 100644
index 000000000000..80963dcb2eda
--- /dev/null
+++ b/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/src/Generated/Models/NetworkProperties.cs
@@ -0,0 +1,64 @@
+//
+// 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.
+//
+
+namespace Microsoft.Azure.Management.HDInsight.Models
+{
+ using Newtonsoft.Json;
+ using System.Linq;
+
+ ///
+ /// The network properties.
+ ///
+ public partial class NetworkProperties
+ {
+ ///
+ /// Initializes a new instance of the NetworkProperties class.
+ ///
+ public NetworkProperties()
+ {
+ CustomInit();
+ }
+
+ ///
+ /// Initializes a new instance of the NetworkProperties class.
+ ///
+ /// The direction for the
+ /// resource provider connection. Possible values include: 'Inbound',
+ /// 'Outbound'
+ /// Indicates whether or not private link is
+ /// enabled. Possible values include: 'Disabled', 'Enabled'
+ public NetworkProperties(string resourceProviderConnection = default(string), string privateLink = default(string))
+ {
+ ResourceProviderConnection = resourceProviderConnection;
+ PrivateLink = privateLink;
+ CustomInit();
+ }
+
+ ///
+ /// An initialization method that performs custom operations like setting defaults
+ ///
+ partial void CustomInit();
+
+ ///
+ /// Gets or sets the direction for the resource provider connection.
+ /// Possible values include: 'Inbound', 'Outbound'
+ ///
+ [JsonProperty(PropertyName = "resourceProviderConnection")]
+ public string ResourceProviderConnection { get; set; }
+
+ ///
+ /// Gets or sets indicates whether or not private link is enabled.
+ /// Possible values include: 'Disabled', 'Enabled'
+ ///
+ [JsonProperty(PropertyName = "privateLink")]
+ public string PrivateLink { get; set; }
+
+ }
+}
diff --git a/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/src/Generated/Models/NetworkSettings.cs b/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/src/Generated/Models/NetworkSettings.cs
deleted file mode 100644
index c2fefa587ade..000000000000
--- a/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/src/Generated/Models/NetworkSettings.cs
+++ /dev/null
@@ -1,69 +0,0 @@
-//
-// 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.
-//
-
-namespace Microsoft.Azure.Management.HDInsight.Models
-{
- using Newtonsoft.Json;
- using System.Linq;
-
- ///
- /// The network settings.
- ///
- public partial class NetworkSettings
- {
- ///
- /// Initializes a new instance of the NetworkSettings class.
- ///
- public NetworkSettings()
- {
- CustomInit();
- }
-
- ///
- /// Initializes a new instance of the NetworkSettings class.
- ///
- /// Specifies whether public network
- /// access is enabled for inbound and outbound, or outbound only.
- /// Possible values include: 'InboundAndOutbound',
- /// 'OutboundOnly'
- /// The mechanism
- /// through which the cluster will have outbound access to the public
- /// network. Possible values include: 'PublicLoadBalancer',
- /// 'UDR'
- public NetworkSettings(string publicNetworkAccess = default(string), string outboundOnlyPublicNetworkAccessType = default(string))
- {
- PublicNetworkAccess = publicNetworkAccess;
- OutboundOnlyPublicNetworkAccessType = outboundOnlyPublicNetworkAccessType;
- CustomInit();
- }
-
- ///
- /// An initialization method that performs custom operations like setting defaults
- ///
- partial void CustomInit();
-
- ///
- /// Gets or sets specifies whether public network access is enabled for
- /// inbound and outbound, or outbound only. Possible values include:
- /// 'InboundAndOutbound', 'OutboundOnly'
- ///
- [JsonProperty(PropertyName = "publicNetworkAccess")]
- public string PublicNetworkAccess { get; set; }
-
- ///
- /// Gets or sets the mechanism through which the cluster will have
- /// outbound access to the public network. Possible values include:
- /// 'PublicLoadBalancer', 'UDR'
- ///
- [JsonProperty(PropertyName = "outboundOnlyPublicNetworkAccessType")]
- public string OutboundOnlyPublicNetworkAccessType { get; set; }
-
- }
-}
diff --git a/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/src/Generated/Models/PublicNetworkAccess.cs b/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/src/Generated/Models/PrivateLink.cs
similarity index 67%
rename from sdk/hdinsight/Microsoft.Azure.Management.HDInsight/src/Generated/Models/PublicNetworkAccess.cs
rename to sdk/hdinsight/Microsoft.Azure.Management.HDInsight/src/Generated/Models/PrivateLink.cs
index 310812ccc836..b81434346c59 100644
--- a/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/src/Generated/Models/PublicNetworkAccess.cs
+++ b/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/src/Generated/Models/PrivateLink.cs
@@ -12,11 +12,11 @@ namespace Microsoft.Azure.Management.HDInsight.Models
{
///
- /// Defines values for PublicNetworkAccess.
+ /// Defines values for PrivateLink.
///
- public static class PublicNetworkAccess
+ public static class PrivateLink
{
- public const string InboundAndOutbound = "InboundAndOutbound";
- public const string OutboundOnly = "OutboundOnly";
+ public const string Disabled = "Disabled";
+ public const string Enabled = "Enabled";
}
}
diff --git a/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/src/Generated/Models/OutboundOnlyPublicNetworkAccessType.cs b/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/src/Generated/Models/ResourceProviderConnection.cs
similarity index 66%
rename from sdk/hdinsight/Microsoft.Azure.Management.HDInsight/src/Generated/Models/OutboundOnlyPublicNetworkAccessType.cs
rename to sdk/hdinsight/Microsoft.Azure.Management.HDInsight/src/Generated/Models/ResourceProviderConnection.cs
index ffff3c30cd63..65e3234b93bc 100644
--- a/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/src/Generated/Models/OutboundOnlyPublicNetworkAccessType.cs
+++ b/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/src/Generated/Models/ResourceProviderConnection.cs
@@ -12,11 +12,11 @@ namespace Microsoft.Azure.Management.HDInsight.Models
{
///
- /// Defines values for OutboundOnlyPublicNetworkAccessType.
+ /// Defines values for ResourceProviderConnection.
///
- public static class OutboundOnlyPublicNetworkAccessType
+ public static class ResourceProviderConnection
{
- public const string PublicLoadBalancer = "PublicLoadBalancer";
- public const string UDR = "UDR";
+ public const string Inbound = "Inbound";
+ public const string Outbound = "Outbound";
}
}
diff --git a/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/src/Generated/SdkInfo_HDInsightManagementClient.cs b/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/src/Generated/SdkInfo_HDInsightManagementClient.cs
index 27a79f62d50e..22f5c9d97d16 100644
--- a/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/src/Generated/SdkInfo_HDInsightManagementClient.cs
+++ b/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/src/Generated/SdkInfo_HDInsightManagementClient.cs
@@ -37,7 +37,7 @@ public static IEnumerable> ApiInfo_HDInsightManage
public static readonly String AutoRestCmdExecuted = "cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/hdinsight/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp-sdks-folder=D:\\source\\azure-sdk-for-net\\sdk";
public static readonly String GithubForkName = "Azure";
public static readonly String GithubBranchName = "master";
- public static readonly String GithubCommidId = "afbd723252e704e2763de2ec324a8263d67e8867";
+ public static readonly String GithubCommidId = "85a3955a1e1f4576a501db17e0d7b7998fe9cfdb";
public static readonly String CodeGenerationErrors = "";
public static readonly String GithubRepoName = "azure-rest-api-specs";
// END: Code Generation Metadata Section
diff --git a/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/src/Microsoft.Azure.Management.HDInsight.csproj b/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/src/Microsoft.Azure.Management.HDInsight.csproj
index fd52a4a056a3..ac2ad4480f51 100644
--- a/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/src/Microsoft.Azure.Management.HDInsight.csproj
+++ b/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/src/Microsoft.Azure.Management.HDInsight.csproj
@@ -7,12 +7,14 @@
Microsoft.Azure.Management.HDInsight
Azure HDInsight Management SDK Library
Microsoft.Azure.Management.HDInsight
- 5.6.0
+ 6.0.0
Microsoft Azure HDInsight Management;HDInsight;HDInsight Management
diff --git a/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/src/Properties/AssemblyInfo.cs b/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/src/Properties/AssemblyInfo.cs
index 9eef44a7b3b1..4f7b0c925812 100644
--- a/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/src/Properties/AssemblyInfo.cs
+++ b/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/src/Properties/AssemblyInfo.cs
@@ -21,8 +21,8 @@
[assembly: AssemblyTitle("Microsoft Azure HDInsight Management Library")]
[assembly: AssemblyDescription("Provides management functionality for Microsoft Azure HDInsight.")]
-[assembly: AssemblyVersion("5.0.0.0")]
-[assembly: AssemblyFileVersion("5.6.0.0")]
+[assembly: AssemblyVersion("6.0.0.0")]
+[assembly: AssemblyFileVersion("6.0.0.0")]
[assembly: InternalsVisibleTo("Microsoft.Azure.Management.HDInsight.Tests, PublicKey=0024000004800000940000000602000000240000525341310004000001000100b5fc90e7027f67871e773a8fde8938c81dd402ba65b9201d60593e96c492651e889cc13f1415ebb53fac1131ae0bd333c5ee6021672d9718ea31a8aebd0da0072f25d87dba6fc90ffd598ed4da35e44c398c454307e8e33b8426143daec9f596836f97c8f74750e5975c64e2189f45def46b2a2b1247adc3652bf5c308055da9")]
diff --git a/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/tests/ScenarioTests/ClusterOperationTests.cs b/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/tests/ScenarioTests/ClusterOperationTests.cs
index 1581ceea11c4..20ee5a68cd84 100644
--- a/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/tests/ScenarioTests/ClusterOperationTests.cs
+++ b/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/tests/ScenarioTests/ClusterOperationTests.cs
@@ -656,24 +656,23 @@ public void TestCreateClusterWithTLS12()
}
[Fact]
- public void TestCreateClusterWithPrivateLink()
+ public void TestCreateClusterWithOutboundAndPrivateLink()
{
TestInitialize();
- string clusterName = TestUtilities.GenerateName("hdisdk-privatelink");
+ string clusterName = TestUtilities.GenerateName("hdisdk-outboundpl");
var createParams = CommonData.PrepareClusterCreateParamsForWasb();
createParams.Location = "South Central US";
- var networkSetting = new NetworkSettings(PublicNetworkAccess.OutboundOnly, OutboundOnlyPublicNetworkAccessType.PublicLoadBalancer);
- createParams.Properties.NetworkSettings = networkSetting;
+ var networkProperties = new NetworkProperties(ResourceProviderConnection.Outbound, PrivateLink.Enabled);
+ createParams.Properties.NetworkProperties = networkProperties;
- //Create Virturl Network
- string virtualNetworkName= TestUtilities.GenerateName("hdisdkvnet");
- var vnet = CreateVnetForPrivateLink(createParams.Location, virtualNetworkName);
+ string vnetId = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet";
+ string subnetId = "/subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet/subnets/default";
foreach (var role in createParams.Properties.ComputeProfile.Roles)
{
- role.VirtualNetworkProfile = new VirtualNetworkProfile(vnet.Id, vnet.Subnets.First().Id);
+ role.VirtualNetworkProfile = new VirtualNetworkProfile(vnetId, subnetId);
}
var cluster = HDInsightClient.Clusters.Create(CommonData.ResourceGroupName, clusterName, createParams);
diff --git a/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/tests/ScenarioTests/HDInsightManagementTestBase.cs b/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/tests/ScenarioTests/HDInsightManagementTestBase.cs
index 95b1b4ad465e..cec1b7c1e750 100644
--- a/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/tests/ScenarioTests/HDInsightManagementTestBase.cs
+++ b/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/tests/ScenarioTests/HDInsightManagementTestBase.cs
@@ -113,9 +113,19 @@ internal Identity CreateMsi(string msiName)
return HDInsightManagementHelper.CreateManagedIdentity(CommonData.ResourceGroupName, msiName, CommonData.Location);
}
- internal VirtualNetwork CreateVnetForPrivateLink(string location, string virtualNetworkName, string subnetName = "default")
+ internal VirtualNetwork CreateVnetForPrivateLink(string location, string virtualNetworkName, NetworkSecurityGroup networkSecurityGroup=null, string subnetName = "default")
{
- return HDInsightManagementHelper.CreateVirtualNetworkWithSubnet(CommonData.ResourceGroupName, location, virtualNetworkName, subnetName, false, false);
+ return HDInsightManagementHelper.CreateVirtualNetworkWithSubnet(CommonData.ResourceGroupName, location, virtualNetworkName, subnetName, networkSecurityGroup, false, false);
+ }
+
+ internal NetworkSecurityGroup CreateNetworkSecurityGroup(string location, string networkSecurityGroupName)
+ {
+ NetworkSecurityGroup networkSecurityGroup = new NetworkSecurityGroup()
+ {
+ Location = location
+ };
+
+ return HDInsightManagementHelper.CreateNetworkSecurityGroup(CommonData.ResourceGroupName, networkSecurityGroupName, networkSecurityGroup);
}
#region Dispose
diff --git a/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/tests/SessionRecords/ClusterOperationTests/TestCreateClusterWithOutboundAndPrivateLink.json b/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/tests/SessionRecords/ClusterOperationTests/TestCreateClusterWithOutboundAndPrivateLink.json
new file mode 100644
index 000000000000..730b8eadc7a1
--- /dev/null
+++ b/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/tests/SessionRecords/ClusterOperationTests/TestCreateClusterWithOutboundAndPrivateLink.json
@@ -0,0 +1,5824 @@
+{
+ "Entries": [
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076?api-version=2018-06-01-preview",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6\",\r\n \"osType\": \"Linux\",\r\n \"tier\": \"Standard\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\",\r\n \"configurations\": {\r\n \"gateway\": {\r\n \"restAuthCredential.isEnabled\": \"true\",\r\n \"restAuthCredential.username\": \"admin5051\",\r\n \"restAuthCredential.password\": \"Password1!833\"\r\n }\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Large\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser591\",\r\n \"password\": \"Password1!115\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet\",\r\n \"subnet\": \"/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet/subnets/default\"\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Large\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser591\",\r\n \"password\": \"Password1!115\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet\",\r\n \"subnet\": \"/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet/subnets/default\"\r\n }\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Small\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser591\",\r\n \"password\": \"Password1!115\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet\",\r\n \"subnet\": \"/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet/subnets/default\"\r\n }\r\n }\r\n ]\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage2900.blob.core.windows.net\",\r\n \"isDefault\": true,\r\n \"container\": \"default8303\",\r\n \"key\": \"pxqOBSnfbIVVfD0SQrOx/dT+dEg5+08jfFpAtKYLcK0/CrDy7GxtXekRXc2NRY758EIhK1fI4L6EOLfNNqkxSA==\"\r\n }\r\n ]\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n }\r\n }\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "341524db-f895-447c-adde-b62775955934"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "3164"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 03:56:41 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "ETag": [
+ "\"d20e9b17-0e73-44be-890c-c30b33c2d998\""
+ ],
+ "x-ms-hdi-clusteruri": [
+ "https://management.azure.com/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076?api-version=2018-06-01-preview"
+ ],
+ "Azure-AsyncOperation": [
+ "https://management.azure.com:443/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview"
+ ],
+ "x-ms-request-id": [
+ "11addb33-f283-44ce-8973-7cf8150f6722"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "b5db143e-5435-4523-9dc9-c0576bb32897"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T035642Z:b5db143e-5435-4523-9dc9-c0576bb32897"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "2919"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076\",\r\n \"name\": \"hdisdk-outboundpl7076\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"d20e9b17-0e73-44be-890c-c30b33c2d998\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2010090238.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"1d112f136bfd4961aa9a641bc2bb9ada\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser591\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet\",\r\n \"subnet\": \"/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser591\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet\",\r\n \"subnet\": \"/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser591\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet\",\r\n \"subnet\": \"/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2020-10-16T03:56:41.41\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage2900.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default8303\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 03:57:13 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "34ee5966-b3b4-4b9b-99a7-2126e7e26005"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "7c54c6f3-4d88-4bed-a311-202418b10e7d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T035713Z:7c54c6f3-4d88-4bed-a311-202418b10e7d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 03:57:43 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "c1f62e48-615e-41fa-af0d-55d475251b37"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "fd5fb5ad-9830-487b-bd35-3776881ea424"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T035743Z:fd5fb5ad-9830-487b-bd35-3776881ea424"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 03:58:13 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "bd462c1e-66bf-409e-8ee0-f49c62eb2c1f"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "72bf4af5-ca0e-4028-86cd-98f74290bc1f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T035814Z:72bf4af5-ca0e-4028-86cd-98f74290bc1f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 03:58:43 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "08859c12-9ba7-43cf-a59e-1b099f20bc36"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "187f3686-c8eb-45a5-8f28-3a994f250e3d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T035844Z:187f3686-c8eb-45a5-8f28-3a994f250e3d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 03:59:14 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "0c6b41e8-4529-4b43-b525-c87a4f1bc844"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "33d232cd-cd48-4346-9575-9b9b0874f3ac"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T035915Z:33d232cd-cd48-4346-9575-9b9b0874f3ac"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 03:59:44 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "a859b2a0-a98c-43f5-b541-5583911246cc"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "4d56a17c-0d69-4eca-9870-b73ad15562ee"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T035945Z:4d56a17c-0d69-4eca-9870-b73ad15562ee"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:00:15 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "e8d5b118-b245-40c2-aa38-677c789be5e1"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "b3dfdc9b-676e-40a9-b730-bf900837f21d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T040016Z:b3dfdc9b-676e-40a9-b730-bf900837f21d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:00:46 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "796ddc69-213b-493c-a3bb-645dd3c99086"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "c9fd3773-5ae5-48db-a359-7ec3da091769"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11992"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T040046Z:c9fd3773-5ae5-48db-a359-7ec3da091769"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:01:16 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "fe0f5989-3d40-4905-9507-558170052c75"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "eb594b4d-6230-409e-a1e6-9c52ada192dd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11991"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T040117Z:eb594b4d-6230-409e-a1e6-9c52ada192dd"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:01:47 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "61d3e8e1-ac2d-4d39-a242-95b83a4f0ffa"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "38156885-c49b-4954-9403-a538c07cfbf5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T040147Z:38156885-c49b-4954-9403-a538c07cfbf5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:02:17 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "8ec5def9-76e6-4607-9826-847f441a53ed"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "367b1e68-66bf-4798-af7f-1cafb3252f35"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11989"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T040218Z:367b1e68-66bf-4798-af7f-1cafb3252f35"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:02:48 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "16e42bcb-91c8-480f-b671-b62c82124517"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "1127628b-8b9d-4c98-aee1-98c6b3b81e11"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11988"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T040248Z:1127628b-8b9d-4c98-aee1-98c6b3b81e11"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:03:18 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "0d4cab03-0272-4225-8c18-9ba011963c01"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "438bc6a8-3fdc-4ad7-9723-b361a17a40e0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11987"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T040319Z:438bc6a8-3fdc-4ad7-9723-b361a17a40e0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:03:48 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "b7752b3e-e484-4a62-8c7e-21c3d801e7f3"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "0622f91e-2c3d-4fe9-a2d4-f17da80488f4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11986"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T040349Z:0622f91e-2c3d-4fe9-a2d4-f17da80488f4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:04:20 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "1260a7c2-f9b2-42aa-9ad8-631b91f6f204"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "c605acbe-648d-45b6-892d-e43a85f6d643"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11985"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T040420Z:c605acbe-648d-45b6-892d-e43a85f6d643"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:04:50 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "8b0605ba-bc7f-4e56-9a72-22054b40f016"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "f69367ad-a276-4fd8-baf5-b2b5d56780fd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11984"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T040450Z:f69367ad-a276-4fd8-baf5-b2b5d56780fd"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:05:20 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "24ee2fb9-205c-4ddd-867b-c1436e189171"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "1f0c92ba-16d1-48e8-a1f8-600996ad1be3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11983"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T040521Z:1f0c92ba-16d1-48e8-a1f8-600996ad1be3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:05:50 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "3e2286ea-7de5-4a7d-b67b-2568071b1e15"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "2a4f645a-b605-44dc-9987-f22e0ba80489"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11982"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T040551Z:2a4f645a-b605-44dc-9987-f22e0ba80489"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:06:22 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "fff7b38f-5a31-4f3a-94c4-a031edea1388"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "f40f5ed9-d6cc-409d-b792-13e717774231"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11981"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T040622Z:f40f5ed9-d6cc-409d-b792-13e717774231"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:06:52 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "8bff6717-f4bb-404d-849b-11ccd83c9d40"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "bf880c36-9bac-49b6-82dd-fc568683c733"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11980"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T040652Z:bf880c36-9bac-49b6-82dd-fc568683c733"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:07:24 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "33a9321a-a014-4f27-bb78-a61586eeb716"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "7502cf1e-c1b5-4be1-ab97-609989c39a8e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11979"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T040724Z:7502cf1e-c1b5-4be1-ab97-609989c39a8e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:07:55 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "fbb3e3ce-88c9-446b-8126-0ca243fc1357"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "eb39ca86-86e8-4819-a63d-1cbfae5f833c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11978"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T040755Z:eb39ca86-86e8-4819-a63d-1cbfae5f833c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:08:25 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "f58abd84-c9c6-47e3-af2d-cc69053a9cf5"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "fd5ae17e-e093-401a-bb80-48a052c3ebaf"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11977"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T040825Z:fd5ae17e-e093-401a-bb80-48a052c3ebaf"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:08:55 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "eb273f34-c713-4b66-ae82-e3a0ed7c58f2"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "81b37b40-37b4-4fbd-9539-dcafd56d9954"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11976"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T040856Z:81b37b40-37b4-4fbd-9539-dcafd56d9954"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:09:25 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "086451c9-66ab-4d5c-900b-bdd645d2085c"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "2f350e95-0384-486b-b2e7-709673101147"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11975"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T040926Z:2f350e95-0384-486b-b2e7-709673101147"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:09:57 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "ad908de7-f657-47a2-8928-936667243e05"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "ffaa0cd7-ad24-49f9-8412-216e5e4f2bce"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11974"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T040957Z:ffaa0cd7-ad24-49f9-8412-216e5e4f2bce"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:10:27 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "ed2a6ce0-ca71-4638-bc5c-fa9a6698e25c"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "39225226-345f-486d-839d-c7e9a808f865"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11973"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T041027Z:39225226-345f-486d-839d-c7e9a808f865"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:10:57 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "a16607f0-c387-4f18-82b2-69954a4b0bde"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "6e4c84e8-4e5b-4e56-9b74-659697528513"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11972"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T041058Z:6e4c84e8-4e5b-4e56-9b74-659697528513"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:11:28 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "c77139e7-d6ed-4b60-b415-2fdb4eb4ea46"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "8987fbd7-4a3f-4710-aa3e-d62cacb12e5d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11971"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T041128Z:8987fbd7-4a3f-4710-aa3e-d62cacb12e5d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:11:59 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "90473dac-dd3f-4ffd-a44d-c5ffb781b193"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "a2b4ef6f-e027-4c82-8212-d5882785c9f5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11970"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T041159Z:a2b4ef6f-e027-4c82-8212-d5882785c9f5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:12:30 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "b3e36d5a-1976-4c0b-9c90-834b58e980b3"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "8acbdb29-6f90-499d-8d26-23923ed05f60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11969"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T041230Z:8acbdb29-6f90-499d-8d26-23923ed05f60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:13:00 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "299bf458-7d2f-43c6-94e8-ca3ca611c1de"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "f8653045-9e5e-463b-a0c7-8ac8d606096e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11968"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T041300Z:f8653045-9e5e-463b-a0c7-8ac8d606096e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:13:30 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "a4abe88d-79cf-4b6b-9b76-579e13938f62"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "dc100c4e-62dd-44c0-828d-d9fb4920caa5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11967"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T041331Z:dc100c4e-62dd-44c0-828d-d9fb4920caa5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:14:01 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "65d4b62e-6f6e-44a2-a71e-0a4f6e9ae5a9"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "4e8297b3-c958-41ef-ad2a-8386babd08de"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11966"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T041401Z:4e8297b3-c958-41ef-ad2a-8386babd08de"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:14:31 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "70b25ea3-5cb6-4c31-b30b-08d700cf3d1b"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "eb815d2b-2f91-4314-8aea-49f83b1b498d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11965"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T041432Z:eb815d2b-2f91-4314-8aea-49f83b1b498d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:15:02 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "ae5e7a47-43b2-472b-93f5-db27446d100f"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "beaec60a-31bc-4bfe-ae7c-12af6b908695"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11964"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T041502Z:beaec60a-31bc-4bfe-ae7c-12af6b908695"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:15:33 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "c5ebf6eb-76c1-4058-8e9c-367a97c90cd4"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "1726f51e-73f5-4b69-a26a-864de6c0d1da"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T041533Z:1726f51e-73f5-4b69-a26a-864de6c0d1da"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:16:04 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "e8fc2f7d-5250-4196-a1f9-bd34b0cf2ecc"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "e770dca6-5aff-4265-91db-28a9711ffc0f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T041604Z:e770dca6-5aff-4265-91db-28a9711ffc0f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:16:34 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "2b2cd3f0-a2c9-4779-834a-c809b89001dd"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "c9aeced3-5ca3-4620-82e4-c19db7cfa887"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T041634Z:c9aeced3-5ca3-4620-82e4-c19db7cfa887"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:17:04 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "d58fab8d-882e-4cfb-812b-e80d6f17d652"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "3b436bea-a18c-48e4-8bd0-ba4b87e00643"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T041705Z:3b436bea-a18c-48e4-8bd0-ba4b87e00643"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:17:36 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "89512c24-e7bd-404a-a449-46ce6a284438"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "ad08a51e-8edb-4849-b676-b472051b19d6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T041736Z:ad08a51e-8edb-4849-b676-b472051b19d6"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:18:06 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "81938a89-12bc-4bbe-83d3-8a258cd283d3"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "89bec78a-116d-4373-acac-0b760e7e26c0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T041806Z:89bec78a-116d-4373-acac-0b760e7e26c0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:18:36 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "6355eacf-6851-4c69-a5e8-52c5be070fda"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "39eadc57-bc32-4a74-996d-a5111466665b"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T041837Z:39eadc57-bc32-4a74-996d-a5111466665b"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:19:07 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "8e37e33d-e19c-4c78-adea-9bed8cb86b3c"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "488c07dd-05a9-41bf-83e8-7631302cfd29"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T041907Z:488c07dd-05a9-41bf-83e8-7631302cfd29"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:19:38 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "f92de705-09ec-4bcf-9ddd-583d35949d81"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "7a7cee1a-1b00-4398-b3c8-85f4418b9ca1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T041939Z:7a7cee1a-1b00-4398-b3c8-85f4418b9ca1"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:20:08 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "8172785f-cd53-4b22-81c5-506005212935"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "6dbc1e78-ba5f-43c9-ab8c-1fbe61cce9b7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T042009Z:6dbc1e78-ba5f-43c9-ab8c-1fbe61cce9b7"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:20:40 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "047f3859-e536-47c9-8ffe-1ebea4658371"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "e8fa6baa-0f91-4b40-bc25-f6f951b1addd"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T042040Z:e8fa6baa-0f91-4b40-bc25-f6f951b1addd"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:21:11 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "4421d9d5-12bf-4941-9a45-5970b79aef80"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "5b6e07c4-6e21-4113-8dde-b12601f45d64"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T042111Z:5b6e07c4-6e21-4113-8dde-b12601f45d64"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:21:41 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "0943e967-9bad-445e-ab6c-81b3b72cfff9"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "4f141c6a-7390-41f3-8a56-d6d251d668d7"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T042142Z:4f141c6a-7390-41f3-8a56-d6d251d668d7"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:22:11 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "6db80705-fd15-47cc-9075-95ef3ed58bdf"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "ef918061-a4d2-4439-9e6b-08ec2caab58a"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T042212Z:ef918061-a4d2-4439-9e6b-08ec2caab58a"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:22:42 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "b4fddabb-b970-43c2-85b6-979f1762243f"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "158444bd-57b0-4327-962c-865778617eea"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11993"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T042243Z:158444bd-57b0-4327-962c-865778617eea"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:23:13 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "724072f2-fcd4-4316-8a4b-63204119d747"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "c65d08a3-0b48-4c91-b39d-b63ba31c8090"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11992"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T042313Z:c65d08a3-0b48-4c91-b39d-b63ba31c8090"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:23:43 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "5e3e1097-267b-485f-b81f-790b5ba6c9af"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "ba90afbc-dd32-4ae2-bebb-b82e98a82d84"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11991"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T042343Z:ba90afbc-dd32-4ae2-bebb-b82e98a82d84"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:24:13 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "850ac576-5505-4a4b-8ac4-ceb6782f6290"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "b6bcb862-0090-4ad7-8b48-7a1eb6156da9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11990"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T042414Z:b6bcb862-0090-4ad7-8b48-7a1eb6156da9"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:24:44 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "30ed1d17-9114-46f2-9cb0-c2bac7c0dc3d"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "5147259e-93ca-4bf1-b653-e7151d0c2a06"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11989"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T042444Z:5147259e-93ca-4bf1-b653-e7151d0c2a06"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:25:15 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "8a3bf276-ce2d-4240-b03c-5c7fbb875bc4"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "8be96f0f-8888-4ad6-8234-808f1a659c85"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11988"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T042515Z:8be96f0f-8888-4ad6-8234-808f1a659c85"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:25:45 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "b1895c50-7091-474c-9894-f4547c26583f"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "de50bce0-c04e-4ac4-9463-fe815a1a6324"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11987"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T042545Z:de50bce0-c04e-4ac4-9463-fe815a1a6324"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:26:15 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "62d9c763-43fd-4444-ae24-f8ec8452faa7"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "c093f7c5-e558-4df0-b7e2-bab644def18c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11986"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T042616Z:c093f7c5-e558-4df0-b7e2-bab644def18c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:26:45 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "1919593c-610a-4b93-b1ca-d2825b044f59"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "910b3032-c604-43e6-9446-ebb9a93eacb1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11985"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T042646Z:910b3032-c604-43e6-9446-ebb9a93eacb1"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:27:17 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "56e8745f-6be9-4565-ac30-f442c005033d"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "609a329d-9075-4f0f-9440-fca11fad36bf"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11984"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T042717Z:609a329d-9075-4f0f-9440-fca11fad36bf"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:27:47 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "cba3c87e-5fe7-4692-9bc9-ce6c66737385"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "ca469f87-56ab-4b6a-bec4-21e6adbc44a0"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11983"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T042747Z:ca469f87-56ab-4b6a-bec4-21e6adbc44a0"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:28:17 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "af96cc24-7f4f-40f0-8a48-b9091bd99c2a"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "99e0087e-14e6-41e0-b789-18a0eff131da"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11982"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T042818Z:99e0087e-14e6-41e0-b789-18a0eff131da"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:28:48 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "ef6657e3-2c9e-4578-be88-ac14e03d727f"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "a41114f3-d6d4-489b-a909-358f204e4de2"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11981"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T042848Z:a41114f3-d6d4-489b-a909-358f204e4de2"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:29:18 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "70d1a2ca-76e4-4d71-8785-5e2b1ff80a4c"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "5a825b8a-a848-4ae6-9cde-8f5fb626def1"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11980"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T042919Z:5a825b8a-a848-4ae6-9cde-8f5fb626def1"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:29:49 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "0dcbfc42-f706-4919-acc9-a0e9c82f485d"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "f352df32-48f3-4a10-9b90-22a07e9f0638"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11979"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T042949Z:f352df32-48f3-4a10-9b90-22a07e9f0638"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:30:19 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "21743bba-71e9-4836-b410-2774c512fc18"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "e2d84bd4-f4f9-4342-8dfe-87f83a8d3603"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11978"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T043020Z:e2d84bd4-f4f9-4342-8dfe-87f83a8d3603"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:30:51 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "b5dc55e1-2c4e-4c5a-8552-0c8ef5073b5d"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "61d0a615-02eb-4f5c-8d1a-9fd902735854"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11977"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T043051Z:61d0a615-02eb-4f5c-8d1a-9fd902735854"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:31:21 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "c6ce0c43-0a11-4580-b81c-f7bd237d8aa3"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "55a07650-782f-4fdc-9a91-d387d5ef41f9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11976"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T043121Z:55a07650-782f-4fdc-9a91-d387d5ef41f9"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:31:51 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "986c6649-b28e-486c-84a3-30051627ad52"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "c9283162-134f-4621-b216-c88a675e056f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11975"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T043152Z:c9283162-134f-4621-b216-c88a675e056f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:32:21 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "3ec9f8d3-794b-48e6-9c4c-2722e68c81dc"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "c133721b-8618-40cb-9d3e-7a5f74388546"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11974"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T043222Z:c133721b-8618-40cb-9d3e-7a5f74388546"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:32:53 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "188090be-bcb3-4ff8-822f-de7922902fd6"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "7b525973-fe20-4e1c-bd90-7d2cb3fcea3c"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11973"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T043253Z:7b525973-fe20-4e1c-bd90-7d2cb3fcea3c"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:33:23 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "6df1ea97-76e9-4ce9-b299-246af93dc491"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "806c64eb-b81f-409d-84d9-b0f36eea4023"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11972"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T043323Z:806c64eb-b81f-409d-84d9-b0f36eea4023"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:33:53 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "9a9c100c-c153-4ced-8678-72d2e570f230"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "fc1c66ef-6bd4-47ac-bf2a-e4ef8cd78f48"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11971"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T043354Z:fc1c66ef-6bd4-47ac-bf2a-e4ef8cd78f48"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:34:24 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "488cf800-5162-451e-8518-9bb58321a61c"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "52e4bcea-1fdd-48f9-8f93-a0e55bf7ed4f"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11970"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T043424Z:52e4bcea-1fdd-48f9-8f93-a0e55bf7ed4f"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:34:54 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "a0786c0f-13e0-450f-be5b-721ec09eb6ed"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "647a2eab-f58b-443a-9e6b-6494a755f996"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11969"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T043455Z:647a2eab-f58b-443a-9e6b-6494a755f996"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:35:24 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "80b9f4ac-b340-4cb1-a48f-b1f5a030a793"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "fe05e9b5-de4b-42e8-8a9a-7912495f70be"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11968"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T043525Z:fe05e9b5-de4b-42e8-8a9a-7912495f70be"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:35:56 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "abaa6568-6705-4502-8483-ba0588dd7c7b"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "19933abe-eaf9-4160-a2ac-d908b73a20dc"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11967"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T043556Z:19933abe-eaf9-4160-a2ac-d908b73a20dc"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:36:27 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "7fa82317-9afe-477f-b016-3781c78aa900"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "472ce9b0-ff9b-49c0-b17c-aa0e7fbc8ec5"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11966"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T043627Z:472ce9b0-ff9b-49c0-b17c-aa0e7fbc8ec5"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:36:57 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "44f79c51-21ac-4942-88e0-6552ed653072"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "e54b09e6-2af7-4d3f-8115-53e3783e9ad9"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11965"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T043657Z:e54b09e6-2af7-4d3f-8115-53e3783e9ad9"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:37:28 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "5114f436-3163-4497-a0b7-2f349f91848f"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "fea1c3a5-fd16-4179-9085-fc30e7028f84"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11964"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T043728Z:fea1c3a5-fd16-4179-9085-fc30e7028f84"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:37:58 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "6b188b5d-90a7-4c24-b60e-726433c81f02"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "98d4de46-3100-4731-92e6-8dadfec2e8db"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11963"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T043758Z:98d4de46-3100-4731-92e6-8dadfec2e8db"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:38:28 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "97c6a303-0cce-4ba4-93e2-afcd745a9e8b"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "dab835ce-c217-4bf0-884b-38a93fc795eb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11962"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T043829Z:dab835ce-c217-4bf0-884b-38a93fc795eb"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:38:59 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "34f8f230-d46b-422f-a9fd-9bad44427161"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "56e66bf0-3201-4396-acbf-3f605d6dc3cf"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11961"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T043859Z:56e66bf0-3201-4396-acbf-3f605d6dc3cf"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:39:30 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "80eeb3e6-3a3e-4abb-8094-7864fd96d57f"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "eddb0025-0aab-4f54-9cdd-418095346729"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11960"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T043930Z:eddb0025-0aab-4f54-9cdd-418095346729"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:40:00 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "a26096d6-65fe-4094-a418-a25178542267"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "96c211b0-8712-4bbe-a232-2002dc3ce732"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11959"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T044000Z:96c211b0-8712-4bbe-a232-2002dc3ce732"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:40:31 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "511ee14c-0121-4d1d-b916-b6ab957894d0"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "ebb36165-04a8-43a4-aaac-b8c04ac8fb49"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11958"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T044031Z:ebb36165-04a8-43a4-aaac-b8c04ac8fb49"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:41:01 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "9ac44d54-44f6-4697-9089-3942b7c2d9fd"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "c8e00428-c179-4ee5-b16d-aa62fb243fc3"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11957"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T044101Z:c8e00428-c179-4ee5-b16d-aa62fb243fc3"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:41:31 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "a3caae32-2678-4100-ab5d-ca7a021b4f6b"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "858adf1a-31ad-425a-99c1-1942c77f7067"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11956"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T044132Z:858adf1a-31ad-425a-99c1-1942c77f7067"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:42:02 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "2d55a555-0a74-4730-bfaa-bdad7f427ebe"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "d5112514-bfe0-4f03-84b1-846326ce1a96"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11955"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T044203Z:d5112514-bfe0-4f03-84b1-846326ce1a96"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:42:34 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "753f1cfd-3f58-4b98-8888-f98ba1537ba1"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "e0aa4327-98a3-4e10-90e0-68a130dc3edb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11954"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T044234Z:e0aa4327-98a3-4e10-90e0-68a130dc3edb"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:43:04 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "8b270a3a-cf66-4100-841f-c7f932e8dc44"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "4c74dd80-c9ab-4615-b7d0-f860848321f6"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11953"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T044304Z:4c74dd80-c9ab-4615-b7d0-f860848321f6"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:43:34 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "76a0bf2c-7254-43c2-a7ab-2d5fa460b1bc"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "fae9072b-5e57-44fd-8bf5-a9e58884e5f4"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11952"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T044335Z:fae9072b-5e57-44fd-8bf5-a9e58884e5f4"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:44:04 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "0408ecc9-985e-45bc-a6b4-e640963c8a5d"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "f8d9a729-01cb-45da-89ea-4d10dcc3c76d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11951"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T044405Z:f8d9a729-01cb-45da-89ea-4d10dcc3c76d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:44:35 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "125f0c6c-a8c4-4836-9f3b-24261f8c90d4"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "808ec9ea-8e2b-42e3-a132-6164e5c562cb"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11950"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T044436Z:808ec9ea-8e2b-42e3-a132-6164e5c562cb"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:45:06 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "4a9d57fa-1486-4678-acb9-6f327ec8e6cf"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "ae46f780-4ca5-4209-8e96-8c99df643b17"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11949"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T044507Z:ae46f780-4ca5-4209-8e96-8c99df643b17"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:45:36 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "8e964f9e-4ada-4008-8d7e-4fbb48714bd6"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "d0f014ca-584d-4a6d-a03d-3b1f939ccd60"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11948"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T044537Z:d0f014ca-584d-4a6d-a03d-3b1f939ccd60"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:46:07 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "c004d59f-2f6a-4798-942c-8e667fe90ed3"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "1252415f-07e6-4335-bbad-5a21ef7691a8"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11947"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T044608Z:1252415f-07e6-4335-bbad-5a21ef7691a8"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:46:38 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "f2e7164d-b033-49df-86e4-3efed0b8ffd6"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "cb86e27f-e542-4d6b-900a-e85be78f1e7e"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11946"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T044638Z:cb86e27f-e542-4d6b-900a-e85be78f1e7e"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:47:08 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "8ecbe126-1f1e-4241-b5c4-45c9c37025ce"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "d7f0fa31-1f5a-4bda-b188-529a184c8418"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11945"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T044708Z:d7f0fa31-1f5a-4bda-b188-529a184c8418"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "23"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076/azureasyncoperations/create?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:47:38 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "8de59e20-71ba-4c73-9dfc-3e553d996474"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "6061d52b-fc0f-41ea-b243-b99114573411"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11944"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T044739Z:6061d52b-fc0f-41ea-b243-b99114573411"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "22"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 04:47:39 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "02c6f76e-2265-4369-853b-478478f40a46"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "82148de9-9017-44a1-8e19-55461fa9099d"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11943"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T044740Z:82148de9-9017-44a1-8e19-55461fa9099d"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "3254"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076\",\r\n \"name\": \"hdisdk-outboundpl7076\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"d20e9b17-0e73-44be-890c-c30b33c2d998\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2010090238.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"1d112f136bfd4961aa9a641bc2bb9ada\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser591\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet\",\r\n \"subnet\": \"/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser591\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet\",\r\n \"subnet\": \"/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser591\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet\",\r\n \"subnet\": \"/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-10-16T03:56:41.41\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-outboundpl7076-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-outboundpl7076.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-outboundpl7076-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage2900.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default8303\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076?api-version=2018-06-01-preview",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "39a579de-6863-4c51-b2cc-84648b970480"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26614.01",
+ "OSName/Windows",
+ "OSVersion/Microsoft.Windows.10.0.18363.",
+ "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.5.0.0"
+ ]
+ },
+ "ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Fri, 16 Oct 2020 05:14:45 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "x-ms-request-id": [
+ "bd46e271-dcce-4277-954f-9195bb165b06"
+ ],
+ "x-ms-hdi-served-by": [
+ "southcentralus"
+ ],
+ "x-ms-correlation-request-id": [
+ "b9ec566d-d979-40db-b603-a09132925d70"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11999"
+ ],
+ "x-ms-routing-request-id": [
+ "JAPANEAST:20201016T051445Z:b9ec566d-d979-40db-b603-a09132925d70"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "3254"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/hdicsharprg6375/providers/Microsoft.HDInsight/clusters/hdisdk-outboundpl7076\",\r\n \"name\": \"hdisdk-outboundpl7076\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"d20e9b17-0e73-44be-890c-c30b33c2d998\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2010090238.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"1d112f136bfd4961aa9a641bc2bb9ada\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser591\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet\",\r\n \"subnet\": \"/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser591\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet\",\r\n \"subnet\": \"/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a1_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser591\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet\",\r\n \"subnet\": \"/subscriptions/29a1e0fb-8cd8-400a-9c60-d10c85cc4286/resourceGroups/resourceGroups/rg/providers/Microsoft.Network/virtualNetworks/fakevnet/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-10-16T03:56:41.41\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-outboundpl7076-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-outboundpl7076.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-outboundpl7076-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage2900.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default8303\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"excludedServicesConfigId\": \"default\",\r\n \"excludedServicesList\": \"\"\r\n },\r\n \"networkProperties\": {\r\n \"resourceProviderConnection\": \"Outbound\",\r\n \"privateLink\": \"Enabled\"\r\n },\r\n \"computeIsolationProperties\": {\r\n \"enableComputeIsolation\": false,\r\n \"hostSku\": null\r\n }\r\n }\r\n}",
+ "StatusCode": 200
+ }
+ ],
+ "Names": {
+ ".ctor": [
+ "admin5051",
+ "Password1!833",
+ "sshuser591",
+ "Password1!115",
+ "1f28dfcb-ad16-4783-8203-6d2928678b35",
+ "hdicsharprg6375",
+ "hdicsharpstorage2900",
+ "hdicsharpmsi1356",
+ "hdicsharpvault2030",
+ "hdicsharpadls8107",
+ "default8303",
+ "storageaccountkey7948"
+ ],
+ "TestInitialize": [
+ "29a1e0fb-8cd8-400a-9c60-d10c85cc4286"
+ ],
+ "TestCreateClusterWithOutboundAndPrivateLink": [
+ "hdisdk-outboundpl7076"
+ ]
+ },
+ "Variables": {
+ "SubscriptionId": "29a1e0fb-8cd8-400a-9c60-d10c85cc4286"
+ }
+}
diff --git a/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/tests/SessionRecords/ClusterOperationTests/TestCreateClusterWithPrivateLink.json b/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/tests/SessionRecords/ClusterOperationTests/TestCreateClusterWithPrivateLink.json
deleted file mode 100644
index 923cc7cba0f8..000000000000
--- a/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/tests/SessionRecords/ClusterOperationTests/TestCreateClusterWithPrivateLink.json
+++ /dev/null
@@ -1,2837 +0,0 @@
-{
- "Entries": [
- {
- "RequestUri": "/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.Network/virtualNetworks/hdisdkvnet4280?api-version=2020-05-01",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"properties\": {\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"properties\": {\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Disabled\"\r\n },\r\n \"name\": \"default\"\r\n }\r\n ]\r\n },\r\n \"location\": \"South Central US\"\r\n}",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "09e6f62e-47c4-4d35-ad13-d13371599f62"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.26614.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "420"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Tue, 14 Jul 2020 09:43:41 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Retry-After": [
- "3"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-request-id": [
- "39e9467c-6ca7-4c98-9887-752e4c85d7b1"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/providers/Microsoft.Network/locations/southcentralus/operations/39e9467c-6ca7-4c98-9887-752e4c85d7b1?api-version=2020-05-01"
- ],
- "x-ms-correlation-request-id": [
- "cfe11eff-f87d-4b19-a36d-e399dce1826c"
- ],
- "Azure-AsyncNotification": [
- "Enabled"
- ],
- "x-ms-arm-service-request-id": [
- "c9ad2bb9-f9c7-40ba-b388-e8d5d76bddec"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
- ],
- "x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200714T094341Z:cfe11eff-f87d-4b19-a36d-e399dce1826c"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Content-Length": [
- "1281"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"name\": \"hdisdkvnet4280\",\r\n \"id\": \"/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.Network/virtualNetworks/hdisdkvnet4280\",\r\n \"etag\": \"W/\\\"c93c6bb8-9c09-4fd1-b670-90d1cca515e0\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"resourceGuid\": \"68229609-532f-4c04-96bc-4a62d9f1e3dc\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.Network/virtualNetworks/hdisdkvnet4280/subnets/default\",\r\n \"etag\": \"W/\\\"c93c6bb8-9c09-4fd1-b670-90d1cca515e0\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Updating\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Disabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}",
- "StatusCode": 201
- },
- {
- "RequestUri": "/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/providers/Microsoft.Network/locations/southcentralus/operations/39e9467c-6ca7-4c98-9887-752e4c85d7b1?api-version=2020-05-01",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.26614.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Tue, 14 Jul 2020 09:43:45 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-request-id": [
- "8968fda7-f76f-4576-a0f9-5188ea7b8384"
- ],
- "x-ms-correlation-request-id": [
- "f6757d95-35ff-4023-80f4-6b6ae1ac4c45"
- ],
- "x-ms-arm-service-request-id": [
- "51e0c138-f470-4cd8-a35b-cf68cff26efd"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
- ],
- "x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200714T094345Z:f6757d95-35ff-4023-80f4-6b6ae1ac4c45"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Content-Length": [
- "29"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.Network/virtualNetworks/hdisdkvnet4280?api-version=2020-05-01",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.26614.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.Network.NetworkManagementClient/20.0.2.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Tue, 14 Jul 2020 09:43:45 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "ETag": [
- "W/\"6d820adb-adcf-49a1-9d47-b212a312dcbc\""
- ],
- "Server": [
- "Microsoft-HTTPAPI/2.0",
- "Microsoft-HTTPAPI/2.0"
- ],
- "x-ms-request-id": [
- "b50635ad-2251-43d4-9e66-435779cae4d6"
- ],
- "x-ms-correlation-request-id": [
- "be4e865e-b93d-4e57-9ccb-0018ab6a731c"
- ],
- "x-ms-arm-service-request-id": [
- "3e207e6f-bbf3-4282-99f8-65c36171b27d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
- ],
- "x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200714T094345Z:be4e865e-b93d-4e57-9ccb-0018ab6a731c"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Content-Length": [
- "1283"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"name\": \"hdisdkvnet4280\",\r\n \"id\": \"/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.Network/virtualNetworks/hdisdkvnet4280\",\r\n \"etag\": \"W/\\\"6d820adb-adcf-49a1-9d47-b212a312dcbc\\\"\",\r\n \"type\": \"Microsoft.Network/virtualNetworks\",\r\n \"location\": \"southcentralus\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"resourceGuid\": \"68229609-532f-4c04-96bc-4a62d9f1e3dc\",\r\n \"addressSpace\": {\r\n \"addressPrefixes\": [\r\n \"10.0.0.0/16\"\r\n ]\r\n },\r\n \"subnets\": [\r\n {\r\n \"name\": \"default\",\r\n \"id\": \"/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.Network/virtualNetworks/hdisdkvnet4280/subnets/default\",\r\n \"etag\": \"W/\\\"6d820adb-adcf-49a1-9d47-b212a312dcbc\\\"\",\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\",\r\n \"addressPrefix\": \"10.0.0.0/24\",\r\n \"delegations\": [],\r\n \"privateEndpointNetworkPolicies\": \"Disabled\",\r\n \"privateLinkServiceNetworkPolicies\": \"Disabled\"\r\n },\r\n \"type\": \"Microsoft.Network/virtualNetworks/subnets\"\r\n }\r\n ],\r\n \"virtualNetworkPeerings\": [],\r\n \"enableDdosProtection\": false,\r\n \"enableVmProtection\": false\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.HDInsight/clusters/hdisdk-privatelink8826?api-version=2018-06-01-preview",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"South Central US\",\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6\",\r\n \"osType\": \"Linux\",\r\n \"tier\": \"Standard\",\r\n \"clusterDefinition\": {\r\n \"kind\": \"Hadoop\",\r\n \"configurations\": {\r\n \"gateway\": {\r\n \"restAuthCredential.isEnabled\": \"true\",\r\n \"restAuthCredential.username\": \"admin5227\",\r\n \"restAuthCredential.password\": \"Password1!8151\"\r\n }\r\n }\r\n },\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Large\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser6013\",\r\n \"password\": \"Password1!7094\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.Network/virtualNetworks/hdisdkvnet4280\",\r\n \"subnet\": \"/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.Network/virtualNetworks/hdisdkvnet4280/subnets/default\"\r\n }\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Large\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser6013\",\r\n \"password\": \"Password1!7094\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.Network/virtualNetworks/hdisdkvnet4280\",\r\n \"subnet\": \"/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.Network/virtualNetworks/hdisdkvnet4280/subnets/default\"\r\n }\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"Small\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser6013\",\r\n \"password\": \"Password1!7094\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.Network/virtualNetworks/hdisdkvnet4280\",\r\n \"subnet\": \"/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.Network/virtualNetworks/hdisdkvnet4280/subnets/default\"\r\n }\r\n }\r\n ]\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage3260.blob.core.windows.net\",\r\n \"isDefault\": true,\r\n \"container\": \"default5177\",\r\n \"key\": \"fGPCej/tsS5OhBeMRqV+nUKgdlcY7LvUuwl5OaVwjFcXCd4bhI6H4r1ULMsdse8IWWz+A9OT2xmT5h2MMv5P/A==\"\r\n }\r\n ]\r\n },\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"OutboundOnly\",\r\n \"outboundOnlyPublicNetworkAccessType\": \"PublicLoadBalancer\"\r\n }\r\n }\r\n}",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "dafad03a-b1db-4134-bbdd-84418960513a"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.26614.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.4.0.0"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "3231"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Tue, 14 Jul 2020 09:44:06 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "ETag": [
- "\"03a0188d-81d6-4183-80d7-2624f4c06ca6\""
- ],
- "x-ms-hdi-clusteruri": [
- "https://management.azure.com/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.HDInsight/clusters/hdisdk-privatelink8826?api-version=2018-06-01-preview"
- ],
- "Azure-AsyncOperation": [
- "https://management.azure.com:443/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.HDInsight/clusters/hdisdk-privatelink8826/azureasyncoperations/create?api-version=2018-06-01-preview"
- ],
- "x-ms-request-id": [
- "7e2c8d7c-cd5b-40ed-a926-c4ff0ee46e2d"
- ],
- "x-ms-hdi-served-by": [
- "southcentralus"
- ],
- "x-ms-correlation-request-id": [
- "9c3628cb-0f9c-4c26-86bb-f3dbc6a5aeb7"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1199"
- ],
- "x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200714T094407Z:9c3628cb-0f9c-4c26-86bb-f3dbc6a5aeb7"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Content-Length": [
- "2876"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.HDInsight/clusters/hdisdk-privatelink8826\",\r\n \"name\": \"hdisdk-privatelink8826\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"03a0188d-81d6-4183-80d7-2624f4c06ca6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2007090134.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"f5495d6935fb49628bf8a4707afe9332\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser6013\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.Network/virtualNetworks/hdisdkvnet4280\",\r\n \"subnet\": \"/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.Network/virtualNetworks/hdisdkvnet4280/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser6013\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.Network/virtualNetworks/hdisdkvnet4280\",\r\n \"subnet\": \"/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.Network/virtualNetworks/hdisdkvnet4280/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser6013\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.Network/virtualNetworks/hdisdkvnet4280\",\r\n \"subnet\": \"/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.Network/virtualNetworks/hdisdkvnet4280/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"InProgress\",\r\n \"clusterState\": \"Accepted\",\r\n \"createdDate\": \"2020-07-14T09:44:04.933\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage3260.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default5177\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n },\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"OutboundOnly\",\r\n \"outboundOnlyPublicNetworkAccessType\": \"PublicLoadBalancer\"\r\n }\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.HDInsight/clusters/hdisdk-privatelink8826/azureasyncoperations/create?api-version=2018-06-01-preview",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.26614.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.4.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Tue, 14 Jul 2020 09:44:37 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "1c44417a-affd-4f87-97fc-b54fc1b86642"
- ],
- "x-ms-hdi-served-by": [
- "southcentralus"
- ],
- "x-ms-correlation-request-id": [
- "72ad91fa-8ab6-46ba-a978-6c309b59aadf"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11999"
- ],
- "x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200714T094437Z:72ad91fa-8ab6-46ba-a978-6c309b59aadf"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Content-Length": [
- "23"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.HDInsight/clusters/hdisdk-privatelink8826/azureasyncoperations/create?api-version=2018-06-01-preview",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.26614.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.4.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Tue, 14 Jul 2020 09:45:07 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "4897836e-6417-4dad-96c1-ab2a59a897a1"
- ],
- "x-ms-hdi-served-by": [
- "southcentralus"
- ],
- "x-ms-correlation-request-id": [
- "8395682d-a684-4fb5-867e-d34bcd448687"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11998"
- ],
- "x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200714T094508Z:8395682d-a684-4fb5-867e-d34bcd448687"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Content-Length": [
- "23"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.HDInsight/clusters/hdisdk-privatelink8826/azureasyncoperations/create?api-version=2018-06-01-preview",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.26614.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.4.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Tue, 14 Jul 2020 09:45:38 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "368977d0-1083-4dc0-840b-183b16d25423"
- ],
- "x-ms-hdi-served-by": [
- "southcentralus"
- ],
- "x-ms-correlation-request-id": [
- "8bb69aac-717d-4b17-946c-385ceaad4132"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11997"
- ],
- "x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200714T094538Z:8bb69aac-717d-4b17-946c-385ceaad4132"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Content-Length": [
- "23"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.HDInsight/clusters/hdisdk-privatelink8826/azureasyncoperations/create?api-version=2018-06-01-preview",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.26614.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.4.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Tue, 14 Jul 2020 09:46:10 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "c7babd2f-ec92-4dd4-a79b-ab9a6ab2dc0d"
- ],
- "x-ms-hdi-served-by": [
- "southcentralus"
- ],
- "x-ms-correlation-request-id": [
- "1a1689aa-3bfd-4045-a98b-bf60147553dd"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11996"
- ],
- "x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200714T094610Z:1a1689aa-3bfd-4045-a98b-bf60147553dd"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Content-Length": [
- "23"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.HDInsight/clusters/hdisdk-privatelink8826/azureasyncoperations/create?api-version=2018-06-01-preview",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.26614.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.4.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Tue, 14 Jul 2020 09:46:41 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "7dbfd6c9-ccbf-4ef3-82f7-cc7de77969cb"
- ],
- "x-ms-hdi-served-by": [
- "southcentralus"
- ],
- "x-ms-correlation-request-id": [
- "4d036a6d-8ca8-46dd-911c-89a39ed465b6"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11995"
- ],
- "x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200714T094641Z:4d036a6d-8ca8-46dd-911c-89a39ed465b6"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Content-Length": [
- "23"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.HDInsight/clusters/hdisdk-privatelink8826/azureasyncoperations/create?api-version=2018-06-01-preview",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.26614.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.4.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Tue, 14 Jul 2020 09:47:11 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "9cf6cd67-ba5a-46c4-bd06-102f9dcbed57"
- ],
- "x-ms-hdi-served-by": [
- "southcentralus"
- ],
- "x-ms-correlation-request-id": [
- "2193b665-7d8e-40ab-8ed2-8d26fb937039"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11994"
- ],
- "x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200714T094712Z:2193b665-7d8e-40ab-8ed2-8d26fb937039"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Content-Length": [
- "23"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.HDInsight/clusters/hdisdk-privatelink8826/azureasyncoperations/create?api-version=2018-06-01-preview",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.26614.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.4.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Tue, 14 Jul 2020 09:47:42 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "7db96e4a-1bf3-43fa-946a-3607873e71e8"
- ],
- "x-ms-hdi-served-by": [
- "southcentralus"
- ],
- "x-ms-correlation-request-id": [
- "540a0f3f-7d39-4786-81b4-9d84990c64f9"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11993"
- ],
- "x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200714T094743Z:540a0f3f-7d39-4786-81b4-9d84990c64f9"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Content-Length": [
- "23"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.HDInsight/clusters/hdisdk-privatelink8826/azureasyncoperations/create?api-version=2018-06-01-preview",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.26614.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.4.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Tue, 14 Jul 2020 09:48:13 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "452fe137-9c04-417c-8d4c-c68a531de27a"
- ],
- "x-ms-hdi-served-by": [
- "southcentralus"
- ],
- "x-ms-correlation-request-id": [
- "87f6baae-f39a-47d9-aa30-6826b3f2ad26"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11992"
- ],
- "x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200714T094813Z:87f6baae-f39a-47d9-aa30-6826b3f2ad26"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Content-Length": [
- "23"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.HDInsight/clusters/hdisdk-privatelink8826/azureasyncoperations/create?api-version=2018-06-01-preview",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.26614.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.4.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Tue, 14 Jul 2020 09:48:43 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "495e3622-032e-431e-9af5-40a6ee3e2da7"
- ],
- "x-ms-hdi-served-by": [
- "southcentralus"
- ],
- "x-ms-correlation-request-id": [
- "cf7e17f4-0dad-4ef6-ab63-e51aed06514d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11991"
- ],
- "x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200714T094844Z:cf7e17f4-0dad-4ef6-ab63-e51aed06514d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Content-Length": [
- "23"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.HDInsight/clusters/hdisdk-privatelink8826/azureasyncoperations/create?api-version=2018-06-01-preview",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.26614.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.4.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Tue, 14 Jul 2020 09:49:15 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "4b6cee47-5c99-4c90-95f5-d3397f1c7dba"
- ],
- "x-ms-hdi-served-by": [
- "southcentralus"
- ],
- "x-ms-correlation-request-id": [
- "76a08584-331c-4d93-b636-5c720fe74173"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11990"
- ],
- "x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200714T094915Z:76a08584-331c-4d93-b636-5c720fe74173"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Content-Length": [
- "23"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.HDInsight/clusters/hdisdk-privatelink8826/azureasyncoperations/create?api-version=2018-06-01-preview",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.26614.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.4.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Tue, 14 Jul 2020 09:49:46 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "21f47922-a506-4f77-b7f3-351ae1d2ca32"
- ],
- "x-ms-hdi-served-by": [
- "southcentralus"
- ],
- "x-ms-correlation-request-id": [
- "a062fd52-529c-4878-b52a-a313e54bbcc9"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11989"
- ],
- "x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200714T094946Z:a062fd52-529c-4878-b52a-a313e54bbcc9"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Content-Length": [
- "23"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.HDInsight/clusters/hdisdk-privatelink8826/azureasyncoperations/create?api-version=2018-06-01-preview",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.26614.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.4.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Tue, 14 Jul 2020 09:50:16 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "930bcc76-cdb0-4237-aa99-d64a2652572c"
- ],
- "x-ms-hdi-served-by": [
- "southcentralus"
- ],
- "x-ms-correlation-request-id": [
- "7985e1f1-29ee-4ada-9861-146b366b79bf"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11988"
- ],
- "x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200714T095017Z:7985e1f1-29ee-4ada-9861-146b366b79bf"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Content-Length": [
- "23"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.HDInsight/clusters/hdisdk-privatelink8826/azureasyncoperations/create?api-version=2018-06-01-preview",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.26614.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.4.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Tue, 14 Jul 2020 09:50:47 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "fcf5fc52-ba6b-426b-8557-e88372abf759"
- ],
- "x-ms-hdi-served-by": [
- "southcentralus"
- ],
- "x-ms-correlation-request-id": [
- "bfc6277a-4513-4970-ab41-7ae5bfd5d787"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11987"
- ],
- "x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200714T095047Z:bfc6277a-4513-4970-ab41-7ae5bfd5d787"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Content-Length": [
- "23"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.HDInsight/clusters/hdisdk-privatelink8826/azureasyncoperations/create?api-version=2018-06-01-preview",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.26614.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.4.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Tue, 14 Jul 2020 09:51:17 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "d357b9c2-1265-414b-872e-530f8f62b38d"
- ],
- "x-ms-hdi-served-by": [
- "southcentralus"
- ],
- "x-ms-correlation-request-id": [
- "f3dc3001-008b-4e70-b67e-71a8f608a680"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11986"
- ],
- "x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200714T095118Z:f3dc3001-008b-4e70-b67e-71a8f608a680"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Content-Length": [
- "23"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.HDInsight/clusters/hdisdk-privatelink8826/azureasyncoperations/create?api-version=2018-06-01-preview",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.26614.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.4.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Tue, 14 Jul 2020 09:51:48 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "bd970cb1-cfb9-43d2-8833-3520b5084a4e"
- ],
- "x-ms-hdi-served-by": [
- "southcentralus"
- ],
- "x-ms-correlation-request-id": [
- "882cd05d-8181-4c77-abd4-483cf1883b5d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11985"
- ],
- "x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200714T095148Z:882cd05d-8181-4c77-abd4-483cf1883b5d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Content-Length": [
- "23"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.HDInsight/clusters/hdisdk-privatelink8826/azureasyncoperations/create?api-version=2018-06-01-preview",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.26614.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.4.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Tue, 14 Jul 2020 09:52:18 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "2bd120d2-bfc6-4906-881a-d4e698102d68"
- ],
- "x-ms-hdi-served-by": [
- "southcentralus"
- ],
- "x-ms-correlation-request-id": [
- "71c6983f-b0b8-4523-86e0-d810cb134172"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11984"
- ],
- "x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200714T095219Z:71c6983f-b0b8-4523-86e0-d810cb134172"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Content-Length": [
- "23"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.HDInsight/clusters/hdisdk-privatelink8826/azureasyncoperations/create?api-version=2018-06-01-preview",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.26614.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.4.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Tue, 14 Jul 2020 09:52:49 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "6220c153-97eb-429f-95ef-e74afde1c118"
- ],
- "x-ms-hdi-served-by": [
- "southcentralus"
- ],
- "x-ms-correlation-request-id": [
- "b8b6a3c7-5f1c-4c75-857e-95edee1c08c0"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11983"
- ],
- "x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200714T095249Z:b8b6a3c7-5f1c-4c75-857e-95edee1c08c0"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Content-Length": [
- "23"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.HDInsight/clusters/hdisdk-privatelink8826/azureasyncoperations/create?api-version=2018-06-01-preview",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.26614.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.4.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Tue, 14 Jul 2020 09:53:19 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "67d05e15-164f-43c6-b8ee-2c1f63aac7e0"
- ],
- "x-ms-hdi-served-by": [
- "southcentralus"
- ],
- "x-ms-correlation-request-id": [
- "aefc80aa-84b2-4627-8498-209f03f3172e"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11982"
- ],
- "x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200714T095320Z:aefc80aa-84b2-4627-8498-209f03f3172e"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Content-Length": [
- "23"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.HDInsight/clusters/hdisdk-privatelink8826/azureasyncoperations/create?api-version=2018-06-01-preview",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.26614.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.4.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Tue, 14 Jul 2020 09:53:50 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "2474b4e1-5c3e-43a0-b89d-4cbc6418d3ae"
- ],
- "x-ms-hdi-served-by": [
- "southcentralus"
- ],
- "x-ms-correlation-request-id": [
- "69299d80-9566-40e3-afb6-c12cb53456d9"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11981"
- ],
- "x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200714T095351Z:69299d80-9566-40e3-afb6-c12cb53456d9"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Content-Length": [
- "23"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.HDInsight/clusters/hdisdk-privatelink8826/azureasyncoperations/create?api-version=2018-06-01-preview",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.26614.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.4.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Tue, 14 Jul 2020 09:54:21 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "6e0d8199-2129-434a-a03b-1a39c85f6594"
- ],
- "x-ms-hdi-served-by": [
- "southcentralus"
- ],
- "x-ms-correlation-request-id": [
- "3ef65403-7b65-4967-9779-273e562c4749"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11980"
- ],
- "x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200714T095421Z:3ef65403-7b65-4967-9779-273e562c4749"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Content-Length": [
- "23"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.HDInsight/clusters/hdisdk-privatelink8826/azureasyncoperations/create?api-version=2018-06-01-preview",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.26614.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.4.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Tue, 14 Jul 2020 09:54:52 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "e72e514d-9670-4e9f-8311-297e3bf53212"
- ],
- "x-ms-hdi-served-by": [
- "southcentralus"
- ],
- "x-ms-correlation-request-id": [
- "58050cf5-3017-49c3-96fa-e918913a42b3"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11979"
- ],
- "x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200714T095453Z:58050cf5-3017-49c3-96fa-e918913a42b3"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Content-Length": [
- "23"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.HDInsight/clusters/hdisdk-privatelink8826/azureasyncoperations/create?api-version=2018-06-01-preview",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.26614.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.4.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Tue, 14 Jul 2020 09:55:23 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "1cebc28c-b816-4a67-8420-9976b597f071"
- ],
- "x-ms-hdi-served-by": [
- "southcentralus"
- ],
- "x-ms-correlation-request-id": [
- "347160f5-73ac-44f7-ba22-fcfdfcde51bb"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11978"
- ],
- "x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200714T095523Z:347160f5-73ac-44f7-ba22-fcfdfcde51bb"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Content-Length": [
- "23"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.HDInsight/clusters/hdisdk-privatelink8826/azureasyncoperations/create?api-version=2018-06-01-preview",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.26614.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.4.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Tue, 14 Jul 2020 09:55:54 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "aeab2c89-ddc5-4a94-995a-c7dc96828904"
- ],
- "x-ms-hdi-served-by": [
- "southcentralus"
- ],
- "x-ms-correlation-request-id": [
- "65ad9be2-046a-40b8-8839-90bf4cf375d8"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11977"
- ],
- "x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200714T095554Z:65ad9be2-046a-40b8-8839-90bf4cf375d8"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Content-Length": [
- "23"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.HDInsight/clusters/hdisdk-privatelink8826/azureasyncoperations/create?api-version=2018-06-01-preview",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.26614.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.4.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Tue, 14 Jul 2020 09:56:24 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "1fb066a4-d2cc-45f3-b39e-d8e175797c67"
- ],
- "x-ms-hdi-served-by": [
- "southcentralus"
- ],
- "x-ms-correlation-request-id": [
- "77d382c2-067a-41de-9a94-cfe5ad18281d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11976"
- ],
- "x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200714T095625Z:77d382c2-067a-41de-9a94-cfe5ad18281d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Content-Length": [
- "23"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.HDInsight/clusters/hdisdk-privatelink8826/azureasyncoperations/create?api-version=2018-06-01-preview",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.26614.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.4.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Tue, 14 Jul 2020 09:56:54 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "4b2ec507-3c34-47b4-816e-49b49fe615c6"
- ],
- "x-ms-hdi-served-by": [
- "southcentralus"
- ],
- "x-ms-correlation-request-id": [
- "d26cc682-f62c-49d2-91a6-bdc5abef444c"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11975"
- ],
- "x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200714T095655Z:d26cc682-f62c-49d2-91a6-bdc5abef444c"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Content-Length": [
- "23"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.HDInsight/clusters/hdisdk-privatelink8826/azureasyncoperations/create?api-version=2018-06-01-preview",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.26614.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.4.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Tue, 14 Jul 2020 09:57:26 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "39f416b4-59a3-4fa0-bbb7-f40d9f727f08"
- ],
- "x-ms-hdi-served-by": [
- "southcentralus"
- ],
- "x-ms-correlation-request-id": [
- "9f56c00b-1340-49af-bbe6-e7f848c3df4b"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11974"
- ],
- "x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200714T095726Z:9f56c00b-1340-49af-bbe6-e7f848c3df4b"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Content-Length": [
- "23"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.HDInsight/clusters/hdisdk-privatelink8826/azureasyncoperations/create?api-version=2018-06-01-preview",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.26614.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.4.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Tue, 14 Jul 2020 09:57:57 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "3909ccf3-9e7b-4707-8e49-243b14861707"
- ],
- "x-ms-hdi-served-by": [
- "southcentralus"
- ],
- "x-ms-correlation-request-id": [
- "6b280b40-13d5-45be-a307-9b1b968d4235"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11973"
- ],
- "x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200714T095758Z:6b280b40-13d5-45be-a307-9b1b968d4235"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Content-Length": [
- "23"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.HDInsight/clusters/hdisdk-privatelink8826/azureasyncoperations/create?api-version=2018-06-01-preview",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.26614.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.4.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Tue, 14 Jul 2020 09:58:27 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "90c3bff1-2da6-4896-b2bf-7001c05e3dd2"
- ],
- "x-ms-hdi-served-by": [
- "southcentralus"
- ],
- "x-ms-correlation-request-id": [
- "196454e8-0a4f-4405-b7f7-256e934f3e04"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11972"
- ],
- "x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200714T095828Z:196454e8-0a4f-4405-b7f7-256e934f3e04"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Content-Length": [
- "23"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.HDInsight/clusters/hdisdk-privatelink8826/azureasyncoperations/create?api-version=2018-06-01-preview",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.26614.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.4.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Tue, 14 Jul 2020 09:58:59 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "01ec0336-095e-4640-b4f6-9b4a5f6fc978"
- ],
- "x-ms-hdi-served-by": [
- "southcentralus"
- ],
- "x-ms-correlation-request-id": [
- "ef6c4467-eef0-488f-b6cf-570e67e1863d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11971"
- ],
- "x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200714T095859Z:ef6c4467-eef0-488f-b6cf-570e67e1863d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Content-Length": [
- "23"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.HDInsight/clusters/hdisdk-privatelink8826/azureasyncoperations/create?api-version=2018-06-01-preview",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.26614.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.4.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Tue, 14 Jul 2020 09:59:30 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "8f7313b5-55f2-48bc-9e22-d2bf51a3fe82"
- ],
- "x-ms-hdi-served-by": [
- "southcentralus"
- ],
- "x-ms-correlation-request-id": [
- "77f40ba1-89b4-4867-a42f-5cd770370ec3"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11970"
- ],
- "x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200714T095931Z:77f40ba1-89b4-4867-a42f-5cd770370ec3"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Content-Length": [
- "23"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.HDInsight/clusters/hdisdk-privatelink8826/azureasyncoperations/create?api-version=2018-06-01-preview",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.26614.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.4.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Tue, 14 Jul 2020 10:00:01 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "cc9584d1-90e0-4ea8-85f8-82151f9f72b9"
- ],
- "x-ms-hdi-served-by": [
- "southcentralus"
- ],
- "x-ms-correlation-request-id": [
- "467844ef-5768-417f-b627-49485a0c6e13"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11969"
- ],
- "x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200714T100001Z:467844ef-5768-417f-b627-49485a0c6e13"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Content-Length": [
- "23"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.HDInsight/clusters/hdisdk-privatelink8826/azureasyncoperations/create?api-version=2018-06-01-preview",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.26614.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.4.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Tue, 14 Jul 2020 10:00:33 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "b76f85a6-43cd-47a5-9a83-1bd5cf0c2504"
- ],
- "x-ms-hdi-served-by": [
- "southcentralus"
- ],
- "x-ms-correlation-request-id": [
- "d5c8cbb4-ff43-4834-8ae7-b50fa739eff1"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11968"
- ],
- "x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200714T100034Z:d5c8cbb4-ff43-4834-8ae7-b50fa739eff1"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Content-Length": [
- "23"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.HDInsight/clusters/hdisdk-privatelink8826/azureasyncoperations/create?api-version=2018-06-01-preview",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.26614.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.4.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Tue, 14 Jul 2020 10:01:04 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "6a5f3b72-e928-4a64-b747-925247958d8c"
- ],
- "x-ms-hdi-served-by": [
- "southcentralus"
- ],
- "x-ms-correlation-request-id": [
- "beaaccdd-a4d8-4400-8600-5f3f0e3b6496"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11967"
- ],
- "x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200714T100105Z:beaaccdd-a4d8-4400-8600-5f3f0e3b6496"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Content-Length": [
- "23"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.HDInsight/clusters/hdisdk-privatelink8826/azureasyncoperations/create?api-version=2018-06-01-preview",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.26614.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.4.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Tue, 14 Jul 2020 10:01:35 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "69e6211c-4f7e-4f1f-8ebb-30ae8e92cd6f"
- ],
- "x-ms-hdi-served-by": [
- "southcentralus"
- ],
- "x-ms-correlation-request-id": [
- "83b321bd-5731-480e-b3ab-400b2272d4b1"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11966"
- ],
- "x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200714T100135Z:83b321bd-5731-480e-b3ab-400b2272d4b1"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Content-Length": [
- "23"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.HDInsight/clusters/hdisdk-privatelink8826/azureasyncoperations/create?api-version=2018-06-01-preview",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.26614.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.4.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Tue, 14 Jul 2020 10:02:05 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "d3c06967-a4a4-4840-b0f8-e51f2f571390"
- ],
- "x-ms-hdi-served-by": [
- "southcentralus"
- ],
- "x-ms-correlation-request-id": [
- "dd3b154e-89e6-435a-83eb-e179683b915d"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11965"
- ],
- "x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200714T100206Z:dd3b154e-89e6-435a-83eb-e179683b915d"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Content-Length": [
- "23"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.HDInsight/clusters/hdisdk-privatelink8826/azureasyncoperations/create?api-version=2018-06-01-preview",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.26614.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.4.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Tue, 14 Jul 2020 10:02:36 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "c231f6ab-8017-45b7-8d13-7f0e45266bd9"
- ],
- "x-ms-hdi-served-by": [
- "southcentralus"
- ],
- "x-ms-correlation-request-id": [
- "86918c2f-b498-455d-bc24-e40ae7f45943"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11964"
- ],
- "x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200714T100236Z:86918c2f-b498-455d-bc24-e40ae7f45943"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Content-Length": [
- "23"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.HDInsight/clusters/hdisdk-privatelink8826/azureasyncoperations/create?api-version=2018-06-01-preview",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.26614.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.4.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Tue, 14 Jul 2020 10:03:07 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "3cbedc09-b38b-449f-93cf-a42e59676b16"
- ],
- "x-ms-hdi-served-by": [
- "southcentralus"
- ],
- "x-ms-correlation-request-id": [
- "6b50b9f0-e539-4817-adea-46803f0010d1"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11963"
- ],
- "x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200714T100307Z:6b50b9f0-e539-4817-adea-46803f0010d1"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Content-Length": [
- "23"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.HDInsight/clusters/hdisdk-privatelink8826/azureasyncoperations/create?api-version=2018-06-01-preview",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.26614.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.4.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Tue, 14 Jul 2020 10:03:37 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "c6a1135c-c9e6-4564-abd4-2698e388f906"
- ],
- "x-ms-hdi-served-by": [
- "southcentralus"
- ],
- "x-ms-correlation-request-id": [
- "8b2f36c3-14ae-4308-ad65-8bffaf57d905"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11962"
- ],
- "x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200714T100338Z:8b2f36c3-14ae-4308-ad65-8bffaf57d905"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Content-Length": [
- "23"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.HDInsight/clusters/hdisdk-privatelink8826/azureasyncoperations/create?api-version=2018-06-01-preview",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.26614.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.4.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Tue, 14 Jul 2020 10:04:07 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "dc4eea4e-b5ca-46bf-a83e-51b7a3a22744"
- ],
- "x-ms-hdi-served-by": [
- "southcentralus"
- ],
- "x-ms-correlation-request-id": [
- "c9d831a9-0812-4561-b010-5f23eedfa179"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11961"
- ],
- "x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200714T100408Z:c9d831a9-0812-4561-b010-5f23eedfa179"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Content-Length": [
- "23"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.HDInsight/clusters/hdisdk-privatelink8826/azureasyncoperations/create?api-version=2018-06-01-preview",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.26614.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.4.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Tue, 14 Jul 2020 10:04:39 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "b96c0965-c538-49e8-8c27-b34abf54eb4f"
- ],
- "x-ms-hdi-served-by": [
- "southcentralus"
- ],
- "x-ms-correlation-request-id": [
- "f6f3a7e5-68c5-479e-b628-52b4bdf178a1"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11960"
- ],
- "x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200714T100439Z:f6f3a7e5-68c5-479e-b628-52b4bdf178a1"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Content-Length": [
- "23"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.HDInsight/clusters/hdisdk-privatelink8826/azureasyncoperations/create?api-version=2018-06-01-preview",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.26614.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.4.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Tue, 14 Jul 2020 10:05:10 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "c4057b1b-8e0f-40a9-8f0e-f4f26a095a9a"
- ],
- "x-ms-hdi-served-by": [
- "southcentralus"
- ],
- "x-ms-correlation-request-id": [
- "0855afcf-46d7-4923-a8b2-7241d69e70c1"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11959"
- ],
- "x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200714T100510Z:0855afcf-46d7-4923-a8b2-7241d69e70c1"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Content-Length": [
- "23"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.HDInsight/clusters/hdisdk-privatelink8826/azureasyncoperations/create?api-version=2018-06-01-preview",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.26614.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.4.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Tue, 14 Jul 2020 10:05:40 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "f34a3937-913f-40b9-aa1e-73e9c487c83c"
- ],
- "x-ms-hdi-served-by": [
- "southcentralus"
- ],
- "x-ms-correlation-request-id": [
- "f8f2ba23-58aa-492b-9aa0-4e29ddeadb87"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11958"
- ],
- "x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200714T100541Z:f8f2ba23-58aa-492b-9aa0-4e29ddeadb87"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Content-Length": [
- "23"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"InProgress\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.HDInsight/clusters/hdisdk-privatelink8826/azureasyncoperations/create?api-version=2018-06-01-preview",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.26614.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.4.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Tue, 14 Jul 2020 10:06:13 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "cce92437-d517-470e-8729-4140ba322bb3"
- ],
- "x-ms-hdi-served-by": [
- "southcentralus"
- ],
- "x-ms-correlation-request-id": [
- "9ca1be32-8a5d-42ac-abac-ba97948d22bd"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11957"
- ],
- "x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200714T100613Z:9ca1be32-8a5d-42ac-abac-ba97948d22bd"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Content-Length": [
- "22"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"status\": \"Succeeded\"\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.HDInsight/clusters/hdisdk-privatelink8826?api-version=2018-06-01-preview",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "User-Agent": [
- "FxVersion/4.6.26614.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.4.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Tue, 14 Jul 2020 10:06:13 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "9b781094-3e97-4b2c-91af-c654b4bb2632"
- ],
- "x-ms-hdi-served-by": [
- "southcentralus"
- ],
- "x-ms-correlation-request-id": [
- "b088ef6d-47a6-4d56-b298-c350fe6853d3"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11956"
- ],
- "x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200714T100613Z:b088ef6d-47a6-4d56-b298-c350fe6853d3"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Content-Length": [
- "3226"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.HDInsight/clusters/hdisdk-privatelink8826\",\r\n \"name\": \"hdisdk-privatelink8826\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"03a0188d-81d6-4183-80d7-2624f4c06ca6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3027-5\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2007090134.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"f5495d6935fb49628bf8a4707afe9332\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser6013\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.Network/virtualNetworks/hdisdkvnet4280\",\r\n \"subnet\": \"/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.Network/virtualNetworks/hdisdkvnet4280/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser6013\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.Network/virtualNetworks/hdisdkvnet4280\",\r\n \"subnet\": \"/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.Network/virtualNetworks/hdisdkvnet4280/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser6013\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.Network/virtualNetworks/hdisdkvnet4280\",\r\n \"subnet\": \"/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.Network/virtualNetworks/hdisdkvnet4280/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-07-14T09:44:04.933\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-privatelink8826-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-privatelink8826.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-privatelink8826-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage3260.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default5177\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n },\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"OutboundOnly\",\r\n \"outboundOnlyPublicNetworkAccessType\": \"PublicLoadBalancer\"\r\n }\r\n }\r\n}",
- "StatusCode": 200
- },
- {
- "RequestUri": "/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.HDInsight/clusters/hdisdk-privatelink8826?api-version=2018-06-01-preview",
- "RequestMethod": "GET",
- "RequestBody": "",
- "RequestHeaders": {
- "x-ms-client-request-id": [
- "d65e7cde-f286-41a8-93d6-1a08944ecabc"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.26614.01",
- "OSName/Windows",
- "OSVersion/Microsoft.Windows.10.0.18363.",
- "Microsoft.Azure.Management.HDInsight.HDInsightManagementClient/5.4.0.0"
- ]
- },
- "ResponseHeaders": {
- "Cache-Control": [
- "no-cache"
- ],
- "Date": [
- "Tue, 14 Jul 2020 10:06:14 GMT"
- ],
- "Pragma": [
- "no-cache"
- ],
- "x-ms-request-id": [
- "956873f9-3038-462b-a001-d930dab9e967"
- ],
- "x-ms-hdi-served-by": [
- "southcentralus"
- ],
- "x-ms-correlation-request-id": [
- "47c58db6-a563-487c-ab8c-b0748988da92"
- ],
- "Strict-Transport-Security": [
- "max-age=31536000; includeSubDomains"
- ],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "11955"
- ],
- "x-ms-routing-request-id": [
- "SOUTHEASTASIA:20200714T100614Z:47c58db6-a563-487c-ab8c-b0748988da92"
- ],
- "X-Content-Type-Options": [
- "nosniff"
- ],
- "Content-Length": [
- "3226"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.HDInsight/clusters/hdisdk-privatelink8826\",\r\n \"name\": \"hdisdk-privatelink8826\",\r\n \"type\": \"Microsoft.HDInsight/clusters\",\r\n \"location\": \"South Central US\",\r\n \"etag\": \"03a0188d-81d6-4183-80d7-2624f4c06ca6\",\r\n \"tags\": null,\r\n \"properties\": {\r\n \"clusterVersion\": \"3.6.1000.67\",\r\n \"clusterHdpVersion\": \"2.6.5.3027-5\",\r\n \"osType\": \"Linux\",\r\n \"clusterDefinition\": {\r\n \"blueprint\": \"https://blueprints.azurehdinsight.net/hadoop-3.6.1000.67.2007090134.json\",\r\n \"kind\": \"Hadoop\",\r\n \"componentVersion\": {\r\n \"Hadoop\": \"2.7\"\r\n }\r\n },\r\n \"clusterId\": \"f5495d6935fb49628bf8a4707afe9332\",\r\n \"computeProfile\": {\r\n \"roles\": [\r\n {\r\n \"name\": \"headnode\",\r\n \"targetInstanceCount\": 2,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser6013\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.Network/virtualNetworks/hdisdkvnet4280\",\r\n \"subnet\": \"/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.Network/virtualNetworks/hdisdkvnet4280/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"workernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a4_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser6013\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.Network/virtualNetworks/hdisdkvnet4280\",\r\n \"subnet\": \"/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.Network/virtualNetworks/hdisdkvnet4280/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n },\r\n {\r\n \"name\": \"zookeepernode\",\r\n \"targetInstanceCount\": 3,\r\n \"hardwareProfile\": {\r\n \"vmSize\": \"standard_a2_v2\"\r\n },\r\n \"osProfile\": {\r\n \"linuxOperatingSystemProfile\": {\r\n \"username\": \"sshuser6013\"\r\n }\r\n },\r\n \"virtualNetworkProfile\": {\r\n \"id\": \"/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.Network/virtualNetworks/hdisdkvnet4280\",\r\n \"subnet\": \"/subscriptions/4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82/resourceGroups/hdicsharprg15/providers/Microsoft.Network/virtualNetworks/hdisdkvnet4280/subnets/default\"\r\n },\r\n \"encryptDataDisks\": false\r\n }\r\n ]\r\n },\r\n \"provisioningState\": \"Succeeded\",\r\n \"clusterState\": \"Running\",\r\n \"createdDate\": \"2020-07-14T09:44:04.933\",\r\n \"quotaInfo\": {\r\n \"coresUsed\": 20\r\n },\r\n \"connectivityEndpoints\": [\r\n {\r\n \"name\": \"SSH\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-privatelink8826-ssh.azurehdinsight.net\",\r\n \"port\": 22\r\n },\r\n {\r\n \"name\": \"HTTPS\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-privatelink8826.azurehdinsight.net\",\r\n \"port\": 443\r\n },\r\n {\r\n \"name\": \"HTTPS-INTERNAL\",\r\n \"protocol\": \"TCP\",\r\n \"location\": \"hdisdk-privatelink8826-int.azurehdinsight.net\",\r\n \"port\": 443\r\n }\r\n ],\r\n \"tier\": \"standard\",\r\n \"encryptionInTransitProperties\": {\r\n \"isEncryptionInTransitEnabled\": false\r\n },\r\n \"storageProfile\": {\r\n \"storageaccounts\": [\r\n {\r\n \"name\": \"hdicsharpstorage3260.blob.core.windows.net\",\r\n \"resourceId\": null,\r\n \"msiResourceId\": null,\r\n \"key\": null,\r\n \"fileSystem\": null,\r\n \"container\": \"default5177\",\r\n \"saskey\": null,\r\n \"isDefault\": true,\r\n \"fileshare\": null\r\n }\r\n ]\r\n },\r\n \"minSupportedTlsVersion\": \"1.2\",\r\n \"excludedServicesConfig\": {\r\n \"m_Item1\": \"default\",\r\n \"m_Item2\": \"\"\r\n },\r\n \"networkSettings\": {\r\n \"publicNetworkAccess\": \"OutboundOnly\",\r\n \"outboundOnlyPublicNetworkAccessType\": \"PublicLoadBalancer\"\r\n }\r\n }\r\n}",
- "StatusCode": 200
- }
- ],
- "Names": {
- ".ctor": [
- "admin5227",
- "Password1!8151",
- "sshuser6013",
- "Password1!7094",
- "542d1163-c7e1-4b80-ae6c-39b3e3c90389",
- "hdicsharprg15",
- "hdicsharpstorage3260",
- "hdicsharpmsi94",
- "hdicsharpvault6502",
- "hdicsharpadls6675",
- "default5177",
- "storageaccountkey4902"
- ],
- "TestInitialize": [
- "4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82"
- ],
- "TestCreateClusterWithPrivateLink": [
- "hdisdk-privatelink8826",
- "hdisdkvnet4280"
- ]
- },
- "Variables": {
- "SubscriptionId": "4ee7a131-7304-47fa-a3a2-a3b1d7ea8a82"
- }
-}
diff --git a/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/tests/TestHelpers/HDInsightManagementHelper.cs b/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/tests/TestHelpers/HDInsightManagementHelper.cs
index bd6a6b3996d7..1a52e87ff3ff 100644
--- a/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/tests/TestHelpers/HDInsightManagementHelper.cs
+++ b/sdk/hdinsight/Microsoft.Azure.Management.HDInsight/tests/TestHelpers/HDInsightManagementHelper.cs
@@ -430,7 +430,7 @@ public void AddRoleAssignment(string scope, string roleName, string assignmentNa
authorizationManagementClient.RoleAssignments.Create(scope, assignmentName, newRoleAssignment);
}
- public VirtualNetwork CreateVirtualNetworkWithSubnet(string resourceGroupName, string location, string virtualNetworkName, string subnetName, bool subnetPrivateEndpointNetworkPoliciesFlag =true, bool subnetPrivateLinkServiceNetworkPoliciesFlag = true)
+ public VirtualNetwork CreateVirtualNetworkWithSubnet(string resourceGroupName, string location, string virtualNetworkName, string subnetName, NetworkSecurityGroup networkSecurityGroup=null, bool subnetPrivateEndpointNetworkPoliciesFlag =true, bool subnetPrivateLinkServiceNetworkPoliciesFlag = true)
{
VirtualNetwork vnet = new VirtualNetwork()
{
@@ -448,6 +448,7 @@ public VirtualNetwork CreateVirtualNetworkWithSubnet(string resourceGroupName, s
{
Name = subnetName,
AddressPrefix = "10.0.0.0/24",
+ NetworkSecurityGroup=networkSecurityGroup,
PrivateEndpointNetworkPolicies = subnetPrivateEndpointNetworkPoliciesFlag ? "Enabled" : "Disabled",
PrivateLinkServiceNetworkPolicies =subnetPrivateLinkServiceNetworkPoliciesFlag ? "Enabled" : "Disabled"
}
@@ -456,6 +457,11 @@ public VirtualNetwork CreateVirtualNetworkWithSubnet(string resourceGroupName, s
return networkManagementClient.VirtualNetworks.CreateOrUpdate(resourceGroupName, virtualNetworkName, vnet);
}
+ public NetworkSecurityGroup CreateNetworkSecurityGroup(string resourceGroupName, string networkSecurityGroupName, NetworkSecurityGroup networkSecurityGroupParameter)
+ {
+ return networkManagementClient.NetworkSecurityGroups.CreateOrUpdate(resourceGroupName, networkSecurityGroupName, networkSecurityGroupParameter);
+ }
+
///
/// Throw expception if the given condition is satisfied
///