diff --git a/src/SDKs/SqlManagement/Management.Sql/Generated/Models/DatabaseSecurityAlertPolicy.cs b/src/SDKs/SqlManagement/Management.Sql/Generated/Models/DatabaseSecurityAlertPolicy.cs
index a0361a56fd3e..c95ba9e6d8b9 100644
--- a/src/SDKs/SqlManagement/Management.Sql/Generated/Models/DatabaseSecurityAlertPolicy.cs
+++ b/src/SDKs/SqlManagement/Management.Sql/Generated/Models/DatabaseSecurityAlertPolicy.cs
@@ -46,7 +46,7 @@ public DatabaseSecurityAlertPolicy()
/// Specifies the semicolon-separated list
/// of alerts that are disabled, or empty string to disable no alerts.
/// Possible values: Sql_Injection; Sql_Injection_Vulnerability;
- /// Access_Anomaly; Usage_Anomaly.
+ /// Access_Anomaly; Data_Exfiltration; Unsafe_Action.
/// Specifies the semicolon-separated list
/// of e-mail addresses to which the alert is sent.
/// Specifies that the alert is sent
@@ -109,7 +109,7 @@ public DatabaseSecurityAlertPolicy()
/// Gets or sets specifies the semicolon-separated list of alerts that
/// are disabled, or empty string to disable no alerts. Possible
/// values: Sql_Injection; Sql_Injection_Vulnerability; Access_Anomaly;
- /// Usage_Anomaly.
+ /// Data_Exfiltration; Unsafe_Action.
///
[JsonProperty(PropertyName = "properties.disabledAlerts")]
public string DisabledAlerts { get; set; }
diff --git a/src/SDKs/SqlManagement/Management.Sql/Generated/Models/ManagedInstance.cs b/src/SDKs/SqlManagement/Management.Sql/Generated/Models/ManagedInstance.cs
index f930a236ee4d..44c4a2e7fdcb 100644
--- a/src/SDKs/SqlManagement/Management.Sql/Generated/Models/ManagedInstance.cs
+++ b/src/SDKs/SqlManagement/Management.Sql/Generated/Models/ManagedInstance.cs
@@ -57,7 +57,13 @@ public ManagedInstance()
/// The number of VCores.
/// The maximum storage size in
/// GB.
- public ManagedInstance(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), ResourceIdentity identity = default(ResourceIdentity), Sku sku = default(Sku), string fullyQualifiedDomainName = default(string), string administratorLogin = default(string), string administratorLoginPassword = default(string), string subnetId = default(string), string state = default(string), string licenseType = default(string), int? vCores = default(int?), int? storageSizeInGB = default(int?))
+ /// Collation of the managed instance.
+ /// The Dns Zone that the managed instance is
+ /// in.
+ /// The resource id of another managed
+ /// instance whose DNS zone this managed instance will share after
+ /// creation.
+ public ManagedInstance(string location, string id = default(string), string name = default(string), string type = default(string), IDictionary tags = default(IDictionary), ResourceIdentity identity = default(ResourceIdentity), Sku sku = default(Sku), string fullyQualifiedDomainName = default(string), string administratorLogin = default(string), string administratorLoginPassword = default(string), string subnetId = default(string), string state = default(string), string licenseType = default(string), int? vCores = default(int?), int? storageSizeInGB = default(int?), string collation = default(string), string dnsZone = default(string), string dnsZonePartner = default(string))
: base(location, id, name, type, tags)
{
Identity = identity;
@@ -70,6 +76,9 @@ public ManagedInstance()
LicenseType = licenseType;
VCores = vCores;
StorageSizeInGB = storageSizeInGB;
+ Collation = collation;
+ DnsZone = dnsZone;
+ DnsZonePartner = dnsZonePartner;
CustomInit();
}
@@ -143,6 +152,25 @@ public ManagedInstance()
[JsonProperty(PropertyName = "properties.storageSizeInGB")]
public int? StorageSizeInGB { get; set; }
+ ///
+ /// Gets collation of the managed instance.
+ ///
+ [JsonProperty(PropertyName = "properties.collation")]
+ public string Collation { get; private set; }
+
+ ///
+ /// Gets the Dns Zone that the managed instance is in.
+ ///
+ [JsonProperty(PropertyName = "properties.dnsZone")]
+ public string DnsZone { get; private set; }
+
+ ///
+ /// Gets or sets the resource id of another managed instance whose DNS
+ /// zone this managed instance will share after creation.
+ ///
+ [JsonProperty(PropertyName = "properties.dnsZonePartner")]
+ public string DnsZonePartner { get; set; }
+
///
/// Validate the object.
///
diff --git a/src/SDKs/SqlManagement/Management.Sql/Generated/Models/ManagedInstanceUpdate.cs b/src/SDKs/SqlManagement/Management.Sql/Generated/Models/ManagedInstanceUpdate.cs
index 7e64f6fff2f1..6fcfb1a9c28c 100644
--- a/src/SDKs/SqlManagement/Management.Sql/Generated/Models/ManagedInstanceUpdate.cs
+++ b/src/SDKs/SqlManagement/Management.Sql/Generated/Models/ManagedInstanceUpdate.cs
@@ -50,8 +50,14 @@ public ManagedInstanceUpdate()
/// The number of VCores.
/// The maximum storage size in
/// GB.
+ /// Collation of the managed instance.
+ /// The Dns Zone that the managed instance is
+ /// in.
+ /// The resource id of another managed
+ /// instance whose DNS zone this managed instance will share after
+ /// creation.
/// Resource tags.
- public ManagedInstanceUpdate(Sku sku = default(Sku), string fullyQualifiedDomainName = default(string), string administratorLogin = default(string), string administratorLoginPassword = default(string), string subnetId = default(string), string state = default(string), string licenseType = default(string), int? vCores = default(int?), int? storageSizeInGB = default(int?), IDictionary tags = default(IDictionary))
+ public ManagedInstanceUpdate(Sku sku = default(Sku), string fullyQualifiedDomainName = default(string), string administratorLogin = default(string), string administratorLoginPassword = default(string), string subnetId = default(string), string state = default(string), string licenseType = default(string), int? vCores = default(int?), int? storageSizeInGB = default(int?), string collation = default(string), string dnsZone = default(string), string dnsZonePartner = default(string), IDictionary tags = default(IDictionary))
{
Sku = sku;
FullyQualifiedDomainName = fullyQualifiedDomainName;
@@ -62,6 +68,9 @@ public ManagedInstanceUpdate()
LicenseType = licenseType;
VCores = vCores;
StorageSizeInGB = storageSizeInGB;
+ Collation = collation;
+ DnsZone = dnsZone;
+ DnsZonePartner = dnsZonePartner;
Tags = tags;
CustomInit();
}
@@ -129,6 +138,25 @@ public ManagedInstanceUpdate()
[JsonProperty(PropertyName = "properties.storageSizeInGB")]
public int? StorageSizeInGB { get; set; }
+ ///
+ /// Gets collation of the managed instance.
+ ///
+ [JsonProperty(PropertyName = "properties.collation")]
+ public string Collation { get; private set; }
+
+ ///
+ /// Gets the Dns Zone that the managed instance is in.
+ ///
+ [JsonProperty(PropertyName = "properties.dnsZone")]
+ public string DnsZone { get; private set; }
+
+ ///
+ /// Gets or sets the resource id of another managed instance whose DNS
+ /// zone this managed instance will share after creation.
+ ///
+ [JsonProperty(PropertyName = "properties.dnsZonePartner")]
+ public string DnsZonePartner { get; set; }
+
///
/// Gets or sets resource tags.
///
diff --git a/src/SDKs/SqlManagement/Management.Sql/Generated/Models/ServerSecurityAlertPolicy.cs b/src/SDKs/SqlManagement/Management.Sql/Generated/Models/ServerSecurityAlertPolicy.cs
index 9e49efe922c9..8258cfc6d687 100644
--- a/src/SDKs/SqlManagement/Management.Sql/Generated/Models/ServerSecurityAlertPolicy.cs
+++ b/src/SDKs/SqlManagement/Management.Sql/Generated/Models/ServerSecurityAlertPolicy.cs
@@ -42,7 +42,8 @@ public ServerSecurityAlertPolicy()
/// Resource type.
/// Specifies an array of alerts that are
/// disabled. Allowed values are: Sql_Injection,
- /// Sql_Injection_Vulnerability, Access_Anomaly
+ /// Sql_Injection_Vulnerability, Access_Anomaly, Data_Exfiltration,
+ /// Unsafe_Action
/// Specifies an array of e-mail addresses
/// to which the alert is sent.
/// Specifies that the alert is sent
@@ -83,7 +84,7 @@ public ServerSecurityAlertPolicy()
///
/// Gets or sets specifies an array of alerts that are disabled.
/// Allowed values are: Sql_Injection, Sql_Injection_Vulnerability,
- /// Access_Anomaly
+ /// Access_Anomaly, Data_Exfiltration, Unsafe_Action
///
[JsonProperty(PropertyName = "properties.disabledAlerts")]
public IList DisabledAlerts { get; set; }
diff --git a/src/SDKs/SqlManagement/Management.Sql/Generated/SdkInfo_SqlManagementClient.cs b/src/SDKs/SqlManagement/Management.Sql/Generated/SdkInfo_SqlManagementClient.cs
index f9bfa0664687..773c2fb0f2fc 100644
--- a/src/SDKs/SqlManagement/Management.Sql/Generated/SdkInfo_SqlManagementClient.cs
+++ b/src/SDKs/SqlManagement/Management.Sql/Generated/SdkInfo_SqlManagementClient.cs
@@ -94,10 +94,10 @@ public static IEnumerable> ApiInfo_SqlManagementCl
// BEGIN: Code Generation Metadata Section
public static readonly String AutoRestVersion = "latest";
public static readonly String AutoRestBootStrapperVersion = "autorest@2.0.4283";
- public static readonly String AutoRestCmdExecuted = "cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/sql/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --csharp-sdks-folder=D:\\WS\\Azure\\netSdk\\src\\SDKs";
+ public static readonly String AutoRestCmdExecuted = "cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/sql/resource-manager/readme.md --csharp --version=latest --reflect-api-versions --csharp-sdks-folder=E:\\Github2\\azure-sdk-for-net\\src\\SDKs";
public static readonly String GithubForkName = "Azure";
public static readonly String GithubBranchName = "master";
- public static readonly String GithubCommidId = "65f87146d9513e2eb53ecd29e12e9898c98776ab";
+ public static readonly String GithubCommidId = "1e9294304b3354f11caf980707ddad629e5ab56e";
public static readonly String CodeGenerationErrors = "";
public static readonly String GithubRepoName = "azure-rest-api-specs";
// END: Code Generation Metadata Section
diff --git a/src/SDKs/SqlManagement/Management.Sql/Generated/SqlManagementClient.cs b/src/SDKs/SqlManagement/Management.Sql/Generated/SqlManagementClient.cs
index 1c06960a2fe7..6a788b38b100 100644
--- a/src/SDKs/SqlManagement/Management.Sql/Generated/SqlManagementClient.cs
+++ b/src/SDKs/SqlManagement/Management.Sql/Generated/SqlManagementClient.cs
@@ -402,6 +402,19 @@ public partial class SqlManagementClient : ServiceClient, I
///
public virtual IManagedInstanceEncryptionProtectorsOperations ManagedInstanceEncryptionProtectors { get; private set; }
+ ///
+ /// Initializes a new instance of the SqlManagementClient class.
+ ///
+ ///
+ /// HttpClient to be used
+ ///
+ ///
+ /// True: will dispose the provided httpClient on calling SqlManagementClient.Dispose(). False: will not dispose provided httpClient
+ protected SqlManagementClient(HttpClient httpClient, bool disposeHttpClient) : base(httpClient, disposeHttpClient)
+ {
+ Initialize();
+ }
+
///
/// Initializes a new instance of the SqlManagementClient class.
///
@@ -497,6 +510,33 @@ public SqlManagementClient(ServiceClientCredentials credentials, params Delegati
}
}
+ ///
+ /// Initializes a new instance of the SqlManagementClient class.
+ ///
+ ///
+ /// Required. Credentials needed for the client to connect to Azure.
+ ///
+ ///
+ /// HttpClient to be used
+ ///
+ ///
+ /// True: will dispose the provided httpClient on calling SqlManagementClient.Dispose(). False: will not dispose provided httpClient
+ ///
+ /// Thrown when a required parameter is null
+ ///
+ public SqlManagementClient(ServiceClientCredentials credentials, HttpClient httpClient, bool disposeHttpClient) : this(httpClient, disposeHttpClient)
+ {
+ if (credentials == null)
+ {
+ throw new System.ArgumentNullException("credentials");
+ }
+ Credentials = credentials;
+ if (Credentials != null)
+ {
+ Credentials.InitializeServiceClient(this);
+ }
+ }
+
///
/// Initializes a new instance of the SqlManagementClient class.
///
diff --git a/src/SDKs/SqlManagement/Management.Sql/Microsoft.Azure.Management.Sql.csproj b/src/SDKs/SqlManagement/Management.Sql/Microsoft.Azure.Management.Sql.csproj
index 7dfebf487fea..72aba378a702 100644
--- a/src/SDKs/SqlManagement/Management.Sql/Microsoft.Azure.Management.Sql.csproj
+++ b/src/SDKs/SqlManagement/Management.Sql/Microsoft.Azure.Management.Sql.csproj
@@ -7,13 +7,14 @@
Microsoft.Azure.Management.Sql
Azure SQL Management SDK library
Microsoft.Azure.Management.Sql
- 1.20.0-preview
+ 1.20.1-preview
Microsoft Azure SQL Management;SQL;SQL Management;
diff --git a/src/SDKs/SqlManagement/Management.Sql/Properties/AssemblyInfo.cs b/src/SDKs/SqlManagement/Management.Sql/Properties/AssemblyInfo.cs
index 29eaadea9b76..157a65cb773f 100644
--- a/src/SDKs/SqlManagement/Management.Sql/Properties/AssemblyInfo.cs
+++ b/src/SDKs/SqlManagement/Management.Sql/Properties/AssemblyInfo.cs
@@ -22,5 +22,5 @@
[assembly: AssemblyTitle("Microsoft Azure SQL Management Library")]
[assembly: AssemblyDescription("Provides management functionality for Microsoft Azure SQL.")]
[assembly: AssemblyVersion("1.0.0.0")]
-[assembly: AssemblyFileVersion("1.20.0.0")]
+[assembly: AssemblyFileVersion("1.20.1.0")]
diff --git a/src/SDKs/SqlManagement/Sql.Tests/ManagedInstanceCrudScenarioTests.cs b/src/SDKs/SqlManagement/Sql.Tests/ManagedInstanceCrudScenarioTests.cs
index 47a93bfa4eb4..6a5931fadcd8 100644
--- a/src/SDKs/SqlManagement/Sql.Tests/ManagedInstanceCrudScenarioTests.cs
+++ b/src/SDKs/SqlManagement/Sql.Tests/ManagedInstanceCrudScenarioTests.cs
@@ -21,7 +21,7 @@ public void TestCreateUpdateGetDropManagedInstance()
ResourceGroup resourceGroup = context.CreateResourceGroup();
SqlManagementClient sqlClient = context.GetClient();
- string managedInstanceName = "sqlcl-crudtests-dotnetsdk1";
+ string managedInstanceName = "sqlcl-crudtestswithdnszone-dotnetsdk1";
string login = "dummylogin";
string password = "Un53cuRE!";
Dictionary tags = new Dictionary()
@@ -33,8 +33,8 @@ public void TestCreateUpdateGetDropManagedInstance()
sku.Name = "MIGP8G4";
sku.Tier = "GeneralPurpose";
- string subnetId = "/subscriptions/741fd0f5-9cb8-442c-91c3-3ef4ca231c2a/resourceGroups/cloudlifter/providers/Microsoft.ClassicNetwork/virtualNetworks/cloud-lifter-stage-sea/subnets/default";
- string location = "southeastasia";
+ string subnetId = "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/StdjordjTestResourceGroup/providers/Microsoft.Network/virtualNetworks/ZiwaVirtualNetwork4/subnets/default";
+ string location = "westcentralus";
//Create server
var managedInstance1 = sqlClient.ManagedInstances.CreateOrUpdate(resourceGroup.Name, managedInstanceName, new ManagedInstance()
@@ -49,7 +49,7 @@ public void TestCreateUpdateGetDropManagedInstance()
SqlManagementTestUtilities.ValidateManagedInstance(managedInstance1, managedInstanceName, login, tags, TestEnvironmentUtilities.DefaultLocationId);
// Create second server
- string managedInstanceName2 = "sqlcl-crudtests-dotnetsdk2";
+ string managedInstanceName2 = "sqlcl-crudtestswithdnszone-dotnetsdk2";
var managedInstance2 = sqlClient.ManagedInstances.CreateOrUpdate(resourceGroup.Name, managedInstanceName2, new ManagedInstance()
{
AdministratorLogin = login,
@@ -58,6 +58,7 @@ public void TestCreateUpdateGetDropManagedInstance()
SubnetId = subnetId,
Tags = tags,
Location = location,
+ DnsZonePartner = string.Format("/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/{0}/providers/Microsoft.Sql/managedInstances/sqlcl-crudtestswithdnszone-dotnetsdk1", resourceGroup.Name)
});
SqlManagementTestUtilities.ValidateManagedInstance(managedInstance2, managedInstanceName2, login, tags, TestEnvironmentUtilities.DefaultLocationId);
@@ -69,6 +70,9 @@ public void TestCreateUpdateGetDropManagedInstance()
var getMI2 = sqlClient.ManagedInstances.Get(resourceGroup.Name, managedInstanceName2);
SqlManagementTestUtilities.ValidateManagedInstance(getMI2, managedInstanceName2, login, tags, TestEnvironmentUtilities.DefaultLocationId);
+ // Verify that dns zone value is correctly inherited from dns zone partner
+ Assert.Equal(getMI1.DnsZone, getMI2.DnsZone);
+
var listMI = sqlClient.ManagedInstances.ListByResourceGroup(resourceGroup.Name);
Assert.Equal(2, listMI.Count());
@@ -81,12 +85,12 @@ public void TestCreateUpdateGetDropManagedInstance()
SqlManagementTestUtilities.ValidateManagedInstance(updateMI1, managedInstanceName, login, newTags, TestEnvironmentUtilities.DefaultLocationId);
// Drop server, update count
- sqlClient.ManagedInstances.Delete(resourceGroup.Name, managedInstanceName);
+ sqlClient.ManagedInstances.DeleteAsync(resourceGroup.Name, managedInstanceName);
var listMI2 = sqlClient.ManagedInstances.ListByResourceGroup(resourceGroup.Name);
Assert.Equal(1, listMI2.Count());
- sqlClient.ManagedInstances.Delete(resourceGroup.Name, managedInstanceName2);
+ sqlClient.ManagedInstances.DeleteAsync(resourceGroup.Name, managedInstanceName2);
var listMI3 = sqlClient.ManagedInstances.ListByResourceGroup(resourceGroup.Name);
Assert.Empty(listMI3);
}
diff --git a/src/SDKs/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ManagedInstanceCrudScenarioTests/TestCreateUpdateGetDropManagedInstance.json b/src/SDKs/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ManagedInstanceCrudScenarioTests/TestCreateUpdateGetDropManagedInstance.json
index 73cc35e203d2..4cc1b6535612 100644
--- a/src/SDKs/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ManagedInstanceCrudScenarioTests/TestCreateUpdateGetDropManagedInstance.json
+++ b/src/SDKs/SqlManagement/Sql.Tests/SessionRecords/Sql.Tests.ManagedInstanceCrudScenarioTests/TestCreateUpdateGetDropManagedInstance.json
@@ -1,114 +1,104 @@
{
"Entries": [
{
- "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourcegroups/sqlcrudtest-5675?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTU2NzU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourcegroups/sqlcrudtest-6843?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTY4NDM/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"location\": \"south east asia\",\r\n \"tags\": {\r\n \"sqlcrudtest-5675\": \"2018-04-18 16:39:14Z\"\r\n }\r\n}",
+ "RequestBody": "{\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"sqlcrudtest-6843\": \"2018-09-26 23:34:05Z\"\r\n }\r\n}",
"RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "104"
- ],
"x-ms-client-request-id": [
- "45a491a7-13f4-42e9-a9dd-1ebc0dc5da0a"
+ "6e37eab0-2567-4ec3-b316-f72fa8eac193"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26201.01",
+ "FxVersion/4.6.26212.01",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/sqlcrudtest-5675\",\r\n \"name\": \"sqlcrudtest-5675\",\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"sqlcrudtest-5675\": \"2018-04-18 16:39:14Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "243"
],
"Content-Type": [
"application/json; charset=utf-8"
],
- "Expires": [
- "-1"
- ],
+ "Content-Length": [
+ "102"
+ ]
+ },
+ "ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
"Date": [
- "Wed, 18 Apr 2018 16:39:16 GMT"
+ "Wed, 26 Sep 2018 23:34:05 GMT"
],
"Pragma": [
"no-cache"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1197"
+ "1199"
],
"x-ms-request-id": [
- "6e0239e6-0b52-444a-a02f-185a0c5e825b"
+ "b3941662-927c-4638-b255-d4411ab1ecbe"
],
"x-ms-correlation-request-id": [
- "6e0239e6-0b52-444a-a02f-185a0c5e825b"
+ "b3941662-927c-4638-b255-d4411ab1ecbe"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20180418T163916Z:6e0239e6-0b52-444a-a02f-185a0c5e825b"
+ "WESTUS2:20180926T233406Z:b3941662-927c-4638-b255-d4411ab1ecbe"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
+ ],
+ "Content-Length": [
+ "243"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
]
},
+ "ResponseBody": "{\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-6843\",\r\n \"name\": \"sqlcrudtest-6843\",\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"sqlcrudtest-6843\": \"2018-09-26 23:34:05Z\"\r\n },\r\n \"properties\": {\r\n \"provisioningState\": \"Succeeded\"\r\n }\r\n}",
"StatusCode": 201
},
{
- "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/sqlcrudtest-5675/providers/Microsoft.Sql/managedInstances/sqlcl-crudtests-dotnetsdk1?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2NzUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9zcWxjbC1jcnVkdGVzdHMtZG90bmV0c2RrMT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-6843/providers/Microsoft.Sql/managedInstances/sqlcl-crudtestswithdnszone-dotnetsdk1?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9zcWxjbC1jcnVkdGVzdHN3aXRoZG5zem9uZS1kb3RuZXRzZGsxP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
"RequestMethod": "PUT",
- "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"MIGP8G4\",\r\n \"tier\": \"GeneralPurpose\"\r\n },\r\n \"properties\": {\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"subnetId\": \"/subscriptions/741fd0f5-9cb8-442c-91c3-3ef4ca231c2a/resourceGroups/cloudlifter/providers/Microsoft.ClassicNetwork/virtualNetworks/cloud-lifter-stage-sea/subnets/default\"\r\n },\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"location\": \"southeastasia\"\r\n}",
+ "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"MIGP8G4\",\r\n \"tier\": \"GeneralPurpose\"\r\n },\r\n \"properties\": {\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/StdjordjTestResourceGroup/providers/Microsoft.Network/virtualNetworks/ZiwaVirtualNetwork4/subnets/default\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n }\r\n}",
"RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "456"
- ],
"x-ms-client-request-id": [
- "8ccf2bc1-fa4b-476b-8085-b63e4f90c700"
+ "6fe9599c-4a58-4891-ac41-00e46378de10"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26201.01",
- "Microsoft.Azure.Management.Sql.SqlManagementClient/1.15.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"operation\": \"UpsertManagedServer\",\r\n \"startTime\": \"2018-04-18T16:39:20.433Z\"\r\n}",
- "ResponseHeaders": {
- "Content-Length": [
- "74"
+ "FxVersion/4.6.26212.01",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.20.0.0"
],
"Content-Type": [
"application/json; charset=utf-8"
],
- "Expires": [
- "-1"
- ],
+ "Content-Length": [
+ "460"
+ ]
+ },
+ "ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
"Date": [
- "Wed, 18 Apr 2018 16:39:20 GMT"
+ "Wed, 26 Sep 2018 23:34:06 GMT"
],
"Pragma": [
"no-cache"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedInstanceOperationResults/4b476540-13b6-4032-946a-aab3647c7998?api-version=2015-05-01-preview"
+ "https://management.azure.com/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-6843/providers/Microsoft.Sql/locations/westcentralus/managedInstanceOperationResults/80ce63de-6ef4-4bb0-9a90-a22ad0318c54?api-version=2015-05-01-preview"
],
"Retry-After": [
"60"
@@ -117,437 +107,535 @@
"Microsoft-HTTPAPI/2.0"
],
"Azure-AsyncOperation": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedInstanceAzureAsyncOperation/4b476540-13b6-4032-946a-aab3647c7998?api-version=2015-05-01-preview"
+ "https://management.azure.com/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-6843/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/80ce63de-6ef4-4bb0-9a90-a22ad0318c54?api-version=2015-05-01-preview"
],
"x-ms-request-id": [
- "4b476540-13b6-4032-946a-aab3647c7998"
+ "80ce63de-6ef4-4bb0-9a90-a22ad0318c54"
],
"x-ms-ratelimit-remaining-subscription-writes": [
- "1192"
+ "1198"
],
"x-ms-correlation-request-id": [
- "a5e96239-33e3-4e8b-aef1-8e6db82a5082"
+ "f54df1f0-a2da-4faa-b42d-9e4fd9754582"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20180418T163921Z:a5e96239-33e3-4e8b-aef1-8e6db82a5082"
+ "WESTUS2:20180926T233407Z:f54df1f0-a2da-4faa-b42d-9e4fd9754582"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
+ ],
+ "Content-Length": [
+ "73"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
]
},
+ "ResponseBody": "{\r\n \"operation\": \"UpsertManagedServer\",\r\n \"startTime\": \"2018-09-26T23:34:07.21Z\"\r\n}",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedInstanceAzureAsyncOperation/4b476540-13b6-4032-946a-aab3647c7998?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vNGI0NzY1NDAtMTNiNi00MDMyLTk0NmEtYWFiMzY0N2M3OTk4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-6843/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/80ce63de-6ef4-4bb0-9a90-a22ad0318c54?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvbWFuYWdlZEluc3RhbmNlQXp1cmVBc3luY09wZXJhdGlvbi84MGNlNjNkZS02ZWY0LTRiYjAtOWE5MC1hMjJhZDAzMThjNTQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26201.01",
- "Microsoft.Azure.Management.Sql.SqlManagementClient/1.15.0.0"
+ "FxVersion/4.6.26212.01",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.20.0.0"
]
},
- "ResponseBody": "{\r\n \"name\": \"4b476540-13b6-4032-946a-aab3647c7998\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-04-18T16:39:20.433Z\"\r\n}",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Wed, 18 Apr 2018 16:40:23 GMT"
+ "Wed, 26 Sep 2018 23:35:07 GMT"
],
"Pragma": [
"no-cache"
],
- "Transfer-Encoding": [
- "chunked"
- ],
"Retry-After": [
"60"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
- "Vary": [
- "Accept-Encoding"
- ],
"x-ms-request-id": [
- "d4ac17b8-5932-4b53-ae29-82054088b44e"
+ "4960696b-d47e-4d5e-9b99-cfd59c01cd05"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14921"
+ "11993"
],
"x-ms-correlation-request-id": [
- "b632b9fc-c208-48b7-bc66-471f50da4b86"
+ "04e19d8f-e44a-4616-8300-fec9440ebfd8"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20180418T164023Z:b632b9fc-c208-48b7-bc66-471f50da4b86"
+ "WESTUS2:20180926T233507Z:04e19d8f-e44a-4616-8300-fec9440ebfd8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
+ ],
+ "Content-Length": [
+ "107"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
]
},
+ "ResponseBody": "{\r\n \"name\": \"80ce63de-6ef4-4bb0-9a90-a22ad0318c54\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-09-26T23:34:07.21Z\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedInstanceAzureAsyncOperation/4b476540-13b6-4032-946a-aab3647c7998?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vNGI0NzY1NDAtMTNiNi00MDMyLTk0NmEtYWFiMzY0N2M3OTk4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-6843/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/80ce63de-6ef4-4bb0-9a90-a22ad0318c54?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvbWFuYWdlZEluc3RhbmNlQXp1cmVBc3luY09wZXJhdGlvbi84MGNlNjNkZS02ZWY0LTRiYjAtOWE5MC1hMjJhZDAzMThjNTQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26201.01",
- "Microsoft.Azure.Management.Sql.SqlManagementClient/1.15.0.0"
+ "FxVersion/4.6.26212.01",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.20.0.0"
]
},
- "ResponseBody": "{\r\n \"name\": \"4b476540-13b6-4032-946a-aab3647c7998\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2018-04-18T16:39:20.433Z\"\r\n}",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Wed, 18 Apr 2018 16:41:24 GMT"
+ "Wed, 26 Sep 2018 23:36:07 GMT"
],
"Pragma": [
"no-cache"
],
- "Transfer-Encoding": [
- "chunked"
- ],
"Retry-After": [
"60"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
- "Vary": [
- "Accept-Encoding"
- ],
"x-ms-request-id": [
- "ff7372e0-3537-42c9-b17e-9d3df545236e"
+ "991e6091-1f6d-4b2d-89e5-b63ef9896411"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14969"
+ "11998"
],
"x-ms-correlation-request-id": [
- "b32df07a-3e7e-4144-9b90-97351cac61a9"
+ "7d552065-7e5f-4466-93e9-ecd458a8f589"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20180418T164125Z:b32df07a-3e7e-4144-9b90-97351cac61a9"
+ "WESTUS2:20180926T233607Z:7d552065-7e5f-4466-93e9-ecd458a8f589"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
+ ],
+ "Content-Length": [
+ "107"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
]
},
+ "ResponseBody": "{\r\n \"name\": \"80ce63de-6ef4-4bb0-9a90-a22ad0318c54\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-09-26T23:34:07.21Z\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/sqlcrudtest-5675/providers/Microsoft.Sql/managedInstances/sqlcl-crudtests-dotnetsdk1?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2NzUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9zcWxjbC1jcnVkdGVzdHMtZG90bmV0c2RrMT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-6843/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/80ce63de-6ef4-4bb0-9a90-a22ad0318c54?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvbWFuYWdlZEluc3RhbmNlQXp1cmVBc3luY09wZXJhdGlvbi84MGNlNjNkZS02ZWY0LTRiYjAtOWE5MC1hMjJhZDAzMThjNTQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26201.01",
- "Microsoft.Azure.Management.Sql.SqlManagementClient/1.15.0.0"
+ "FxVersion/4.6.26212.01",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.20.0.0"
]
},
- "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen4\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen4\",\r\n \"capacity\": 16\r\n },\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcl-crudtests-dotnetsdk1.tr10.southeastasia1-a.worker.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"subnetId\": \"/subscriptions/741fd0f5-9cb8-442c-91c3-3ef4ca231c2a/resourceGroups/cloudlifter/providers/Microsoft.ClassicNetwork/virtualNetworks/cloud-lifter-stage-sea/subnets/default\",\r\n \"state\": \"Ready\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 16,\r\n \"storageSizeInGB\": 32\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/sqlcrudtest-5675/providers/Microsoft.Sql/managedInstances/sqlcl-crudtests-dotnetsdk1\",\r\n \"name\": \"sqlcl-crudtests-dotnetsdk1\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Wed, 18 Apr 2018 16:41:25 GMT"
+ "Wed, 26 Sep 2018 23:37:08 GMT"
],
"Pragma": [
"no-cache"
],
- "Transfer-Encoding": [
- "chunked"
+ "Retry-After": [
+ "60"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
- "Vary": [
- "Accept-Encoding"
- ],
"x-ms-request-id": [
- "b324fea8-4ba4-439d-bc05-a2fff90b1f8a"
+ "7a9cbe18-566c-4a90-9037-2d6517ca64c7"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14968"
+ "11999"
],
"x-ms-correlation-request-id": [
- "c23c21a9-319f-425d-a4d9-27504def7464"
+ "501966f5-852e-4176-bcf3-743d7f4a7a0b"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20180418T164126Z:c23c21a9-319f-425d-a4d9-27504def7464"
+ "WESTUS2:20180926T233708Z:501966f5-852e-4176-bcf3-743d7f4a7a0b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
+ ],
+ "Content-Length": [
+ "107"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
]
},
+ "ResponseBody": "{\r\n \"name\": \"80ce63de-6ef4-4bb0-9a90-a22ad0318c54\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-09-26T23:34:07.21Z\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/sqlcrudtest-5675/providers/Microsoft.Sql/managedInstances/sqlcl-crudtests-dotnetsdk1?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2NzUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9zcWxjbC1jcnVkdGVzdHMtZG90bmV0c2RrMT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-6843/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/80ce63de-6ef4-4bb0-9a90-a22ad0318c54?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvbWFuYWdlZEluc3RhbmNlQXp1cmVBc3luY09wZXJhdGlvbi84MGNlNjNkZS02ZWY0LTRiYjAtOWE5MC1hMjJhZDAzMThjNTQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "609c58df-9fdc-4094-b72f-8345dc7b31c9"
- ],
- "accept-language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.26201.01",
- "Microsoft.Azure.Management.Sql.SqlManagementClient/1.15.0.0"
+ "FxVersion/4.6.26212.01",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.20.0.0"
]
},
- "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen4\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen4\",\r\n \"capacity\": 16\r\n },\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcl-crudtests-dotnetsdk1.tr10.southeastasia1-a.worker.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"subnetId\": \"/subscriptions/741fd0f5-9cb8-442c-91c3-3ef4ca231c2a/resourceGroups/cloudlifter/providers/Microsoft.ClassicNetwork/virtualNetworks/cloud-lifter-stage-sea/subnets/default\",\r\n \"state\": \"Ready\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 16,\r\n \"storageSizeInGB\": 32\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/sqlcrudtest-5675/providers/Microsoft.Sql/managedInstances/sqlcl-crudtests-dotnetsdk1\",\r\n \"name\": \"sqlcl-crudtests-dotnetsdk1\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Wed, 18 Apr 2018 16:43:29 GMT"
+ "Wed, 26 Sep 2018 23:38:08 GMT"
],
"Pragma": [
"no-cache"
],
- "Transfer-Encoding": [
- "chunked"
+ "Retry-After": [
+ "60"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
- "Vary": [
- "Accept-Encoding"
- ],
"x-ms-request-id": [
- "d1f48af3-5b26-4988-812d-1537cdee506d"
+ "4c52baa8-619e-4d8d-bb79-c76cd9b48100"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14965"
+ "11998"
],
"x-ms-correlation-request-id": [
- "ea39609c-eaa5-49d2-9b54-3bef3b02cf80"
+ "c46ca395-de04-4d7f-a6b7-de3cab23c869"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20180418T164330Z:ea39609c-eaa5-49d2-9b54-3bef3b02cf80"
+ "WESTUS2:20180926T233808Z:c46ca395-de04-4d7f-a6b7-de3cab23c869"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
+ ],
+ "Content-Length": [
+ "107"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
]
},
+ "ResponseBody": "{\r\n \"name\": \"80ce63de-6ef4-4bb0-9a90-a22ad0318c54\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-09-26T23:34:07.21Z\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/sqlcrudtest-5675/providers/Microsoft.Sql/managedInstances/sqlcl-crudtests-dotnetsdk1?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2NzUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9zcWxjbC1jcnVkdGVzdHMtZG90bmV0c2RrMT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-6843/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/80ce63de-6ef4-4bb0-9a90-a22ad0318c54?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvbWFuYWdlZEluc3RhbmNlQXp1cmVBc3luY09wZXJhdGlvbi84MGNlNjNkZS02ZWY0LTRiYjAtOWE5MC1hMjJhZDAzMThjNTQ/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26201.01",
- "Microsoft.Azure.Management.Sql.SqlManagementClient/1.15.0.0"
+ "FxVersion/4.6.26212.01",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.20.0.0"
]
},
- "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen4\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen4\",\r\n \"capacity\": 16\r\n },\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcl-crudtests-dotnetsdk1.tr10.southeastasia1-a.worker.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"subnetId\": \"/subscriptions/741fd0f5-9cb8-442c-91c3-3ef4ca231c2a/resourceGroups/cloudlifter/providers/Microsoft.ClassicNetwork/virtualNetworks/cloud-lifter-stage-sea/subnets/default\",\r\n \"state\": \"Ready\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 16,\r\n \"storageSizeInGB\": 32\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"asdf\": \"zxcv\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/sqlcrudtest-5675/providers/Microsoft.Sql/managedInstances/sqlcl-crudtests-dotnetsdk1\",\r\n \"name\": \"sqlcl-crudtests-dotnetsdk1\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}",
"ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 26 Sep 2018 23:39:08 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Retry-After": [
+ "60"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-request-id": [
+ "f00f9f12-1133-41f4-a3b1-95dd7616505f"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11995"
+ ],
+ "x-ms-correlation-request-id": [
+ "01e94c0f-58ae-4bb3-9fe0-3c86151c0d47"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20180926T233908Z:01e94c0f-58ae-4bb3-9fe0-3c86151c0d47"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "106"
+ ],
"Content-Type": [
"application/json; charset=utf-8"
],
"Expires": [
"-1"
- ],
+ ]
+ },
+ "ResponseBody": "{\r\n \"name\": \"80ce63de-6ef4-4bb0-9a90-a22ad0318c54\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2018-09-26T23:34:07.21Z\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-6843/providers/Microsoft.Sql/managedInstances/sqlcl-crudtestswithdnszone-dotnetsdk1?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9zcWxjbC1jcnVkdGVzdHN3aXRoZG5zem9uZS1kb3RuZXRzZGsxP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
+ "RequestHeaders": {
+ "User-Agent": [
+ "FxVersion/4.6.26212.01",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.20.0.0"
+ ]
+ },
+ "ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
"Date": [
- "Wed, 18 Apr 2018 16:44:33 GMT"
+ "Wed, 26 Sep 2018 23:39:08 GMT"
],
"Pragma": [
"no-cache"
],
- "Transfer-Encoding": [
- "chunked"
- ],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
- "Vary": [
- "Accept-Encoding"
- ],
"x-ms-request-id": [
- "370b889d-2d15-4d39-b69f-7ba61b1f2702"
+ "2c37d007-1b73-44b6-87b0-c3333ad4988c"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14918"
+ "11994"
],
"x-ms-correlation-request-id": [
- "79334fb3-6e23-4a05-9ab9-a38aa545dd29"
+ "128bea23-43c6-4dd7-883c-1ccda22ae98f"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20180418T164433Z:79334fb3-6e23-4a05-9ab9-a38aa545dd29"
+ "WESTUS2:20180926T233909Z:128bea23-43c6-4dd7-883c-1ccda22ae98f"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
+ ],
+ "Content-Length": [
+ "855"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
]
},
+ "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen4\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen4\",\r\n \"capacity\": 16\r\n },\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcl-crudtestswithdnszone-dotnetsdk1.710c2a823568.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/StdjordjTestResourceGroup/providers/Microsoft.Network/virtualNetworks/ZiwaVirtualNetwork4/subnets/default\",\r\n \"state\": \"Ready\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 16,\r\n \"storageSizeInGB\": 32,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-6843/providers/Microsoft.Sql/managedInstances/sqlcl-crudtestswithdnszone-dotnetsdk1\",\r\n \"name\": \"sqlcl-crudtestswithdnszone-dotnetsdk1\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/sqlcrudtest-5675/providers/Microsoft.Sql/managedInstances/sqlcl-crudtests-dotnetsdk2?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2NzUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9zcWxjbC1jcnVkdGVzdHMtZG90bmV0c2RrMj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=",
- "RequestMethod": "PUT",
- "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"MIGP8G4\",\r\n \"tier\": \"GeneralPurpose\"\r\n },\r\n \"properties\": {\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"subnetId\": \"/subscriptions/741fd0f5-9cb8-442c-91c3-3ef4ca231c2a/resourceGroups/cloudlifter/providers/Microsoft.ClassicNetwork/virtualNetworks/cloud-lifter-stage-sea/subnets/default\"\r\n },\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"location\": \"southeastasia\"\r\n}",
+ "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-6843/providers/Microsoft.Sql/managedInstances/sqlcl-crudtestswithdnszone-dotnetsdk1?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9zcWxjbC1jcnVkdGVzdHN3aXRoZG5zem9uZS1kb3RuZXRzZGsxP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "456"
- ],
"x-ms-client-request-id": [
- "71fd590d-fd00-49c1-b6e3-e16d6caad3cb"
+ "c36facf8-bb8a-42b0-8bf4-cfb4072875e5"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26201.01",
- "Microsoft.Azure.Management.Sql.SqlManagementClient/1.15.0.0"
+ "FxVersion/4.6.26212.01",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.20.0.0"
]
},
- "ResponseBody": "{\r\n \"operation\": \"UpsertManagedServer\",\r\n \"startTime\": \"2018-04-18T16:41:27.02Z\"\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "73"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Wed, 18 Apr 2018 16:41:26 GMT"
+ "Wed, 26 Sep 2018 23:43:10 GMT"
],
"Pragma": [
"no-cache"
],
- "Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedInstanceOperationResults/40c9e140-3ba2-4a3e-a6ea-5c7923638c6c?api-version=2015-05-01-preview"
- ],
- "Retry-After": [
- "60"
- ],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
- "Azure-AsyncOperation": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedInstanceAzureAsyncOperation/40c9e140-3ba2-4a3e-a6ea-5c7923638c6c?api-version=2015-05-01-preview"
- ],
"x-ms-request-id": [
- "40c9e140-3ba2-4a3e-a6ea-5c7923638c6c"
+ "a565430a-cf4d-45c4-80c1-b0b4197b4b27"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1192"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11996"
],
"x-ms-correlation-request-id": [
- "5ff5bc34-9194-4305-a56f-6b6e5b976b29"
+ "f81c8e51-253d-41bb-a1ad-bcafd689ab09"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20180418T164127Z:5ff5bc34-9194-4305-a56f-6b6e5b976b29"
+ "WESTUS2:20180926T234311Z:f81c8e51-253d-41bb-a1ad-bcafd689ab09"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
+ ],
+ "Content-Length": [
+ "855"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
]
},
- "StatusCode": 202
+ "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen4\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen4\",\r\n \"capacity\": 16\r\n },\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcl-crudtestswithdnszone-dotnetsdk1.710c2a823568.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/StdjordjTestResourceGroup/providers/Microsoft.Network/virtualNetworks/ZiwaVirtualNetwork4/subnets/default\",\r\n \"state\": \"Ready\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 16,\r\n \"storageSizeInGB\": 32,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-6843/providers/Microsoft.Sql/managedInstances/sqlcl-crudtestswithdnszone-dotnetsdk1\",\r\n \"name\": \"sqlcl-crudtestswithdnszone-dotnetsdk1\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedInstanceAzureAsyncOperation/40c9e140-3ba2-4a3e-a6ea-5c7923638c6c?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vNDBjOWUxNDAtM2JhMi00YTNlLWE2ZWEtNWM3OTIzNjM4YzZjP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-6843/providers/Microsoft.Sql/managedInstances/sqlcl-crudtestswithdnszone-dotnetsdk1?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9zcWxjbC1jcnVkdGVzdHN3aXRoZG5zem9uZS1kb3RuZXRzZGsxP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26201.01",
- "Microsoft.Azure.Management.Sql.SqlManagementClient/1.15.0.0"
+ "FxVersion/4.6.26212.01",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.20.0.0"
]
},
- "ResponseBody": "{\r\n \"name\": \"40c9e140-3ba2-4a3e-a6ea-5c7923638c6c\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-04-18T16:41:27.02Z\"\r\n}",
"ResponseHeaders": {
+ "Cache-Control": [
+ "no-cache"
+ ],
+ "Date": [
+ "Wed, 26 Sep 2018 23:44:12 GMT"
+ ],
+ "Pragma": [
+ "no-cache"
+ ],
+ "Server": [
+ "Microsoft-HTTPAPI/2.0"
+ ],
+ "x-ms-request-id": [
+ "bc573e7a-25dd-4e5f-a6e1-89f852028d11"
+ ],
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11998"
+ ],
+ "x-ms-correlation-request-id": [
+ "e5261810-a994-4daa-b845-67ca6a05d8be"
+ ],
+ "x-ms-routing-request-id": [
+ "WESTUS2:20180926T234412Z:e5261810-a994-4daa-b845-67ca6a05d8be"
+ ],
+ "Strict-Transport-Security": [
+ "max-age=31536000; includeSubDomains"
+ ],
+ "X-Content-Type-Options": [
+ "nosniff"
+ ],
+ "Content-Length": [
+ "847"
+ ],
"Content-Type": [
"application/json; charset=utf-8"
],
"Expires": [
"-1"
+ ]
+ },
+ "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen4\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen4\",\r\n \"capacity\": 16\r\n },\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcl-crudtestswithdnszone-dotnetsdk1.710c2a823568.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/StdjordjTestResourceGroup/providers/Microsoft.Network/virtualNetworks/ZiwaVirtualNetwork4/subnets/default\",\r\n \"state\": \"Ready\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 16,\r\n \"storageSizeInGB\": 32,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"asdf\": \"zxcv\"\r\n },\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-6843/providers/Microsoft.Sql/managedInstances/sqlcl-crudtestswithdnszone-dotnetsdk1\",\r\n \"name\": \"sqlcl-crudtestswithdnszone-dotnetsdk1\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}",
+ "StatusCode": 200
+ },
+ {
+ "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-6843/providers/Microsoft.Sql/managedInstances/sqlcl-crudtestswithdnszone-dotnetsdk2?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9zcWxjbC1jcnVkdGVzdHN3aXRoZG5zem9uZS1kb3RuZXRzZGsyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
+ "RequestMethod": "PUT",
+ "RequestBody": "{\r\n \"sku\": {\r\n \"name\": \"MIGP8G4\",\r\n \"tier\": \"GeneralPurpose\"\r\n },\r\n \"properties\": {\r\n \"administratorLogin\": \"dummylogin\",\r\n \"administratorLoginPassword\": \"Un53cuRE!\",\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/StdjordjTestResourceGroup/providers/Microsoft.Network/virtualNetworks/ZiwaVirtualNetwork4/subnets/default\",\r\n \"dnsZonePartner\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-6843/providers/Microsoft.Sql/managedInstances/sqlcl-crudtestswithdnszone-dotnetsdk1\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n }\r\n}",
+ "RequestHeaders": {
+ "x-ms-client-request-id": [
+ "c702c816-38a6-4946-84bb-767cb7cf9908"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
+ "User-Agent": [
+ "FxVersion/4.6.26212.01",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.20.0.0"
],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Content-Length": [
+ "649"
+ ]
+ },
+ "ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
"Date": [
- "Wed, 18 Apr 2018 16:42:28 GMT"
+ "Wed, 26 Sep 2018 23:39:09 GMT"
],
"Pragma": [
"no-cache"
],
- "Transfer-Encoding": [
- "chunked"
+ "Location": [
+ "https://management.azure.com/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-6843/providers/Microsoft.Sql/locations/westcentralus/managedInstanceOperationResults/b781fd68-cefe-4ebe-a38d-eefc8a593ab5?api-version=2015-05-01-preview"
],
"Retry-After": [
"60"
@@ -555,764 +643,734 @@
"Server": [
"Microsoft-HTTPAPI/2.0"
],
- "Vary": [
- "Accept-Encoding"
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-6843/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/b781fd68-cefe-4ebe-a38d-eefc8a593ab5?api-version=2015-05-01-preview"
],
"x-ms-request-id": [
- "852e1360-fb69-4c87-b24b-b057eec0c1d5"
+ "b781fd68-cefe-4ebe-a38d-eefc8a593ab5"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14920"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
],
"x-ms-correlation-request-id": [
- "0aa0d5b1-2786-40a3-b643-f7ebaef8d383"
+ "75ccf27b-e4bb-49bd-ac68-627e86a2b5d5"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20180418T164228Z:0aa0d5b1-2786-40a3-b643-f7ebaef8d383"
+ "WESTUS2:20180926T233909Z:75ccf27b-e4bb-49bd-ac68-627e86a2b5d5"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
+ ],
+ "Content-Length": [
+ "74"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
]
},
- "StatusCode": 200
+ "ResponseBody": "{\r\n \"operation\": \"UpsertManagedServer\",\r\n \"startTime\": \"2018-09-26T23:39:09.757Z\"\r\n}",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedInstanceAzureAsyncOperation/40c9e140-3ba2-4a3e-a6ea-5c7923638c6c?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vNDBjOWUxNDAtM2JhMi00YTNlLWE2ZWEtNWM3OTIzNjM4YzZjP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-6843/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/b781fd68-cefe-4ebe-a38d-eefc8a593ab5?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvbWFuYWdlZEluc3RhbmNlQXp1cmVBc3luY09wZXJhdGlvbi9iNzgxZmQ2OC1jZWZlLTRlYmUtYTM4ZC1lZWZjOGE1OTNhYjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26201.01",
- "Microsoft.Azure.Management.Sql.SqlManagementClient/1.15.0.0"
+ "FxVersion/4.6.26212.01",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.20.0.0"
]
},
- "ResponseBody": "{\r\n \"name\": \"40c9e140-3ba2-4a3e-a6ea-5c7923638c6c\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2018-04-18T16:41:27.02Z\"\r\n}",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Wed, 18 Apr 2018 16:43:29 GMT"
+ "Wed, 26 Sep 2018 23:40:10 GMT"
],
"Pragma": [
"no-cache"
],
- "Transfer-Encoding": [
- "chunked"
- ],
"Retry-After": [
"60"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
- "Vary": [
- "Accept-Encoding"
- ],
"x-ms-request-id": [
- "6e2a290a-5f1a-46f9-a402-77d321b38741"
+ "878caaa0-fe84-4802-b6c7-129d515e5f88"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14967"
+ "11996"
],
"x-ms-correlation-request-id": [
- "5e883398-551c-4e35-8c11-c6b21fb9cbdf"
+ "2328c91d-6885-4e52-96c7-1110230f3e73"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20180418T164329Z:5e883398-551c-4e35-8c11-c6b21fb9cbdf"
+ "WESTUS2:20180926T234010Z:2328c91d-6885-4e52-96c7-1110230f3e73"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
+ ],
+ "Content-Length": [
+ "108"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
]
},
+ "ResponseBody": "{\r\n \"name\": \"b781fd68-cefe-4ebe-a38d-eefc8a593ab5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-09-26T23:39:09.757Z\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/sqlcrudtest-5675/providers/Microsoft.Sql/managedInstances/sqlcl-crudtests-dotnetsdk2?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2NzUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9zcWxjbC1jcnVkdGVzdHMtZG90bmV0c2RrMj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-6843/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/b781fd68-cefe-4ebe-a38d-eefc8a593ab5?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvbWFuYWdlZEluc3RhbmNlQXp1cmVBc3luY09wZXJhdGlvbi9iNzgxZmQ2OC1jZWZlLTRlYmUtYTM4ZC1lZWZjOGE1OTNhYjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26201.01",
- "Microsoft.Azure.Management.Sql.SqlManagementClient/1.15.0.0"
+ "FxVersion/4.6.26212.01",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.20.0.0"
]
},
- "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen4\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen4\",\r\n \"capacity\": 16\r\n },\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcl-crudtests-dotnetsdk2.tr10.southeastasia1-a.worker.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"subnetId\": \"/subscriptions/741fd0f5-9cb8-442c-91c3-3ef4ca231c2a/resourceGroups/cloudlifter/providers/Microsoft.ClassicNetwork/virtualNetworks/cloud-lifter-stage-sea/subnets/default\",\r\n \"state\": \"Ready\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 16,\r\n \"storageSizeInGB\": 32\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/sqlcrudtest-5675/providers/Microsoft.Sql/managedInstances/sqlcl-crudtests-dotnetsdk2\",\r\n \"name\": \"sqlcl-crudtests-dotnetsdk2\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Wed, 18 Apr 2018 16:43:29 GMT"
+ "Wed, 26 Sep 2018 23:41:09 GMT"
],
"Pragma": [
"no-cache"
],
- "Transfer-Encoding": [
- "chunked"
+ "Retry-After": [
+ "60"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
- "Vary": [
- "Accept-Encoding"
- ],
"x-ms-request-id": [
- "daa90386-05f2-4240-805c-51846e9e079a"
+ "9a35ad39-7e5b-4269-b38a-24bd0736f910"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14966"
+ "11992"
],
"x-ms-correlation-request-id": [
- "39f09ad6-a133-4ccc-9879-df3828a90506"
+ "df72ac57-c029-4bb8-b8b2-b73e78c403cd"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20180418T164329Z:39f09ad6-a133-4ccc-9879-df3828a90506"
+ "WESTUS2:20180926T234110Z:df72ac57-c029-4bb8-b8b2-b73e78c403cd"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
+ ],
+ "Content-Length": [
+ "108"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
]
},
+ "ResponseBody": "{\r\n \"name\": \"b781fd68-cefe-4ebe-a38d-eefc8a593ab5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-09-26T23:39:09.757Z\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/sqlcrudtest-5675/providers/Microsoft.Sql/managedInstances/sqlcl-crudtests-dotnetsdk2?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2NzUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9zcWxjbC1jcnVkdGVzdHMtZG90bmV0c2RrMj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-6843/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/b781fd68-cefe-4ebe-a38d-eefc8a593ab5?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvbWFuYWdlZEluc3RhbmNlQXp1cmVBc3luY09wZXJhdGlvbi9iNzgxZmQ2OC1jZWZlLTRlYmUtYTM4ZC1lZWZjOGE1OTNhYjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "74ba0ef1-ef76-46f8-912b-7320c7377bbb"
- ],
- "accept-language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.26201.01",
- "Microsoft.Azure.Management.Sql.SqlManagementClient/1.15.0.0"
+ "FxVersion/4.6.26212.01",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.20.0.0"
]
},
- "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen4\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen4\",\r\n \"capacity\": 16\r\n },\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcl-crudtests-dotnetsdk2.tr10.southeastasia1-a.worker.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"subnetId\": \"/subscriptions/741fd0f5-9cb8-442c-91c3-3ef4ca231c2a/resourceGroups/cloudlifter/providers/Microsoft.ClassicNetwork/virtualNetworks/cloud-lifter-stage-sea/subnets/default\",\r\n \"state\": \"Ready\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 16,\r\n \"storageSizeInGB\": 32\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/sqlcrudtest-5675/providers/Microsoft.Sql/managedInstances/sqlcl-crudtests-dotnetsdk2\",\r\n \"name\": \"sqlcl-crudtests-dotnetsdk2\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Wed, 18 Apr 2018 16:43:30 GMT"
+ "Wed, 26 Sep 2018 23:42:09 GMT"
],
"Pragma": [
"no-cache"
],
- "Transfer-Encoding": [
- "chunked"
+ "Retry-After": [
+ "60"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
- "Vary": [
- "Accept-Encoding"
- ],
"x-ms-request-id": [
- "ccfe51ca-0588-4688-8b7e-675a69fee429"
+ "384d44e5-67ca-4647-9d15-f20b36a96cfc"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14964"
+ "11991"
],
"x-ms-correlation-request-id": [
- "da8ed0e1-6d5e-4bce-a7b1-8b14e45a6ee4"
+ "797474a5-1091-49ee-abe3-a317e31335af"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20180418T164330Z:da8ed0e1-6d5e-4bce-a7b1-8b14e45a6ee4"
+ "WESTUS2:20180926T234210Z:797474a5-1091-49ee-abe3-a317e31335af"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
+ ],
+ "Content-Length": [
+ "108"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
]
},
+ "ResponseBody": "{\r\n \"name\": \"b781fd68-cefe-4ebe-a38d-eefc8a593ab5\",\r\n \"status\": \"InProgress\",\r\n \"startTime\": \"2018-09-26T23:39:09.757Z\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/sqlcrudtest-5675/providers/Microsoft.Sql/managedInstances?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2NzUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-6843/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/b781fd68-cefe-4ebe-a38d-eefc8a593ab5?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvbWFuYWdlZEluc3RhbmNlQXp1cmVBc3luY09wZXJhdGlvbi9iNzgxZmQ2OC1jZWZlLTRlYmUtYTM4ZC1lZWZjOGE1OTNhYjU/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "bdd8b564-8ebb-4de8-819d-9c9f3f6bbf92"
- ],
- "accept-language": [
- "en-US"
- ],
"User-Agent": [
- "FxVersion/4.6.26201.01",
- "Microsoft.Azure.Management.Sql.SqlManagementClient/1.15.0.0"
+ "FxVersion/4.6.26212.01",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.20.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"GP_Gen4\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen4\",\r\n \"capacity\": 16\r\n },\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcl-crudtests-dotnetsdk1.tr10.southeastasia1-a.worker.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"subnetId\": \"/subscriptions/741fd0f5-9cb8-442c-91c3-3ef4ca231c2a/resourceGroups/cloudlifter/providers/Microsoft.ClassicNetwork/virtualNetworks/cloud-lifter-stage-sea/subnets/default\",\r\n \"state\": \"Ready\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 16,\r\n \"storageSizeInGB\": 32\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/sqlcrudtest-5675/providers/Microsoft.Sql/managedInstances/sqlcl-crudtests-dotnetsdk1\",\r\n \"name\": \"sqlcl-crudtests-dotnetsdk1\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"GP_Gen4\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen4\",\r\n \"capacity\": 16\r\n },\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcl-crudtests-dotnetsdk2.tr10.southeastasia1-a.worker.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"subnetId\": \"/subscriptions/741fd0f5-9cb8-442c-91c3-3ef4ca231c2a/resourceGroups/cloudlifter/providers/Microsoft.ClassicNetwork/virtualNetworks/cloud-lifter-stage-sea/subnets/default\",\r\n \"state\": \"Ready\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 16,\r\n \"storageSizeInGB\": 32\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/sqlcrudtest-5675/providers/Microsoft.Sql/managedInstances/sqlcl-crudtests-dotnetsdk2\",\r\n \"name\": \"sqlcl-crudtests-dotnetsdk2\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n }\r\n ]\r\n}",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Wed, 18 Apr 2018 16:43:30 GMT"
+ "Wed, 26 Sep 2018 23:43:10 GMT"
],
"Pragma": [
"no-cache"
],
- "Transfer-Encoding": [
- "chunked"
+ "Retry-After": [
+ "60"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
- "Vary": [
- "Accept-Encoding"
- ],
"x-ms-request-id": [
- "06bfdf40-11f5-435b-8992-14beaa077e62"
+ "aabd2ea9-8cb6-4811-87fa-4f7e25e9c451"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14963"
+ "11998"
],
"x-ms-correlation-request-id": [
- "0b7957a6-c4bf-45b4-946b-92ab45775bb1"
+ "1fc239e3-f2b9-4265-9e30-67972dba6945"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20180418T164331Z:0b7957a6-c4bf-45b4-946b-92ab45775bb1"
+ "WESTUS2:20180926T234310Z:1fc239e3-f2b9-4265-9e30-67972dba6945"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
+ ],
+ "Content-Length": [
+ "107"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
]
},
+ "ResponseBody": "{\r\n \"name\": \"b781fd68-cefe-4ebe-a38d-eefc8a593ab5\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2018-09-26T23:39:09.757Z\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/sqlcrudtest-5675/providers/Microsoft.Sql/managedInstances?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2NzUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-6843/providers/Microsoft.Sql/managedInstances/sqlcl-crudtestswithdnszone-dotnetsdk2?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9zcWxjbC1jcnVkdGVzdHN3aXRoZG5zem9uZS1kb3RuZXRzZGsyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
- "x-ms-client-request-id": [
- "a2222d28-158a-4bc6-bdcf-7c59dcf5471b"
- ],
- "accept-language": [
- "en-US"
- ],
- "User-Agent": [
- "FxVersion/4.6.26201.01",
- "Microsoft.Azure.Management.Sql.SqlManagementClient/1.15.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"GP_Gen4\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen4\",\r\n \"capacity\": 16\r\n },\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcl-crudtests-dotnetsdk2.tr10.southeastasia1-a.worker.sqltest-eg1.mscds.com\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"subnetId\": \"/subscriptions/741fd0f5-9cb8-442c-91c3-3ef4ca231c2a/resourceGroups/cloudlifter/providers/Microsoft.ClassicNetwork/virtualNetworks/cloud-lifter-stage-sea/subnets/default\",\r\n \"state\": \"Ready\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 16,\r\n \"storageSizeInGB\": 32\r\n },\r\n \"location\": \"southeastasia\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/sqlcrudtest-5675/providers/Microsoft.Sql/managedInstances/sqlcl-crudtests-dotnetsdk2\",\r\n \"name\": \"sqlcl-crudtests-dotnetsdk2\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n }\r\n ]\r\n}",
- "ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
+ "User-Agent": [
+ "FxVersion/4.6.26212.01",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.20.0.0"
+ ]
+ },
+ "ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
"Date": [
- "Wed, 18 Apr 2018 16:44:51 GMT"
+ "Wed, 26 Sep 2018 23:43:10 GMT"
],
"Pragma": [
"no-cache"
],
- "Transfer-Encoding": [
- "chunked"
- ],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
- "Vary": [
- "Accept-Encoding"
- ],
"x-ms-request-id": [
- "ca27d9c9-917a-4a28-9d9f-38395983a1c4"
+ "6ade74cb-1521-47a8-9544-4431bf689acc"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14915"
+ "11997"
],
"x-ms-correlation-request-id": [
- "d19bc616-eb07-4121-9a47-14403a022919"
+ "61112b74-de64-41be-905a-55d1a34ead8b"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20180418T164451Z:d19bc616-eb07-4121-9a47-14403a022919"
+ "WESTUS2:20180926T234311Z:61112b74-de64-41be-905a-55d1a34ead8b"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
+ ],
+ "Content-Length": [
+ "855"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
]
},
+ "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen4\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen4\",\r\n \"capacity\": 16\r\n },\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcl-crudtestswithdnszone-dotnetsdk2.710c2a823568.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/StdjordjTestResourceGroup/providers/Microsoft.Network/virtualNetworks/ZiwaVirtualNetwork4/subnets/default\",\r\n \"state\": \"Ready\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 16,\r\n \"storageSizeInGB\": 32,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-6843/providers/Microsoft.Sql/managedInstances/sqlcl-crudtestswithdnszone-dotnetsdk2\",\r\n \"name\": \"sqlcl-crudtestswithdnszone-dotnetsdk2\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/sqlcrudtest-5675/providers/Microsoft.Sql/managedInstances?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2NzUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-6843/providers/Microsoft.Sql/managedInstances/sqlcl-crudtestswithdnszone-dotnetsdk2?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9zcWxjbC1jcnVkdGVzdHN3aXRoZG5zem9uZS1kb3RuZXRzZGsyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "ae443d7f-3c1b-41dd-a18d-5144ab82e59d"
+ "9e04cd42-0f24-4f88-8ee9-4a524df7fe92"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26201.01",
- "Microsoft.Azure.Management.Sql.SqlManagementClient/1.15.0.0"
+ "FxVersion/4.6.26212.01",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.20.0.0"
]
},
- "ResponseBody": "{\r\n \"value\": []\r\n}",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Wed, 18 Apr 2018 16:45:08 GMT"
+ "Wed, 26 Sep 2018 23:43:10 GMT"
],
"Pragma": [
"no-cache"
],
- "Transfer-Encoding": [
- "chunked"
- ],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
- "Vary": [
- "Accept-Encoding"
- ],
"x-ms-request-id": [
- "c8155030-405e-4e66-a8a2-98126a6aa360"
+ "b749b401-0211-4738-a88d-89be53cabd44"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14913"
+ "11995"
],
"x-ms-correlation-request-id": [
- "8a90fd99-d01d-48fe-86b1-0684f70faca7"
+ "8b4944e7-29ed-4bbc-b765-97f621c79ee7"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20180418T164508Z:8a90fd99-d01d-48fe-86b1-0684f70faca7"
+ "WESTUS2:20180926T234311Z:8b4944e7-29ed-4bbc-b765-97f621c79ee7"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
+ ],
+ "Content-Length": [
+ "855"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
]
},
+ "ResponseBody": "{\r\n \"sku\": {\r\n \"name\": \"GP_Gen4\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen4\",\r\n \"capacity\": 16\r\n },\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcl-crudtestswithdnszone-dotnetsdk2.710c2a823568.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/StdjordjTestResourceGroup/providers/Microsoft.Network/virtualNetworks/ZiwaVirtualNetwork4/subnets/default\",\r\n \"state\": \"Ready\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 16,\r\n \"storageSizeInGB\": 32,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-6843/providers/Microsoft.Sql/managedInstances/sqlcl-crudtestswithdnszone-dotnetsdk2\",\r\n \"name\": \"sqlcl-crudtestswithdnszone-dotnetsdk2\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/sqlcrudtest-5675/providers/Microsoft.Sql/managedInstances/sqlcl-crudtests-dotnetsdk1?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2NzUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9zcWxjbC1jcnVkdGVzdHMtZG90bmV0c2RrMT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=",
- "RequestMethod": "PATCH",
- "RequestBody": "{\r\n \"tags\": {\r\n \"asdf\": \"zxcv\"\r\n }\r\n}",
+ "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-6843/providers/Microsoft.Sql/managedInstances?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
+ "RequestBody": "",
"RequestHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Content-Length": [
- "42"
- ],
"x-ms-client-request-id": [
- "d8ad429d-ea04-47e2-ac91-24a2782dd404"
+ "ae50cedf-ba8f-422b-8c3b-b75fe71e001d"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26201.01",
- "Microsoft.Azure.Management.Sql.SqlManagementClient/1.15.0.0"
+ "FxVersion/4.6.26212.01",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.20.0.0"
]
},
- "ResponseBody": "{\r\n \"operation\": \"UpsertManagedServer\",\r\n \"startTime\": \"2018-04-18T16:43:31.76Z\"\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "73"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Wed, 18 Apr 2018 16:43:31 GMT"
+ "Wed, 26 Sep 2018 23:43:10 GMT"
],
"Pragma": [
"no-cache"
],
- "Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedInstanceOperationResults/9fa8a764-2780-44da-92ea-c95316468178?api-version=2015-05-01-preview"
- ],
- "Retry-After": [
- "60"
- ],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
- "Azure-AsyncOperation": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedInstanceAzureAsyncOperation/9fa8a764-2780-44da-92ea-c95316468178?api-version=2015-05-01-preview"
- ],
"x-ms-request-id": [
- "9fa8a764-2780-44da-92ea-c95316468178"
+ "2aec54ef-1740-4359-a8a6-27e9cc081b37"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1191"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11994"
],
"x-ms-correlation-request-id": [
- "11c05411-bef7-4f66-abf0-3ab981356721"
+ "3427380b-22de-4dcf-a057-ee59848032e1"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20180418T164332Z:11c05411-bef7-4f66-abf0-3ab981356721"
+ "WESTUS2:20180926T234311Z:3427380b-22de-4dcf-a057-ee59848032e1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
+ ],
+ "Content-Length": [
+ "1723"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
]
},
- "StatusCode": 202
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"GP_Gen4\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen4\",\r\n \"capacity\": 16\r\n },\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcl-crudtestswithdnszone-dotnetsdk2.710c2a823568.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/StdjordjTestResourceGroup/providers/Microsoft.Network/virtualNetworks/ZiwaVirtualNetwork4/subnets/default\",\r\n \"state\": \"Ready\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 16,\r\n \"storageSizeInGB\": 32,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-6843/providers/Microsoft.Sql/managedInstances/sqlcl-crudtestswithdnszone-dotnetsdk2\",\r\n \"name\": \"sqlcl-crudtestswithdnszone-dotnetsdk2\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n },\r\n {\r\n \"sku\": {\r\n \"name\": \"GP_Gen4\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen4\",\r\n \"capacity\": 16\r\n },\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcl-crudtestswithdnszone-dotnetsdk1.710c2a823568.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/StdjordjTestResourceGroup/providers/Microsoft.Network/virtualNetworks/ZiwaVirtualNetwork4/subnets/default\",\r\n \"state\": \"Ready\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 16,\r\n \"storageSizeInGB\": 32,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-6843/providers/Microsoft.Sql/managedInstances/sqlcl-crudtestswithdnszone-dotnetsdk1\",\r\n \"name\": \"sqlcl-crudtestswithdnszone-dotnetsdk1\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n }\r\n ]\r\n}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedInstanceAzureAsyncOperation/9fa8a764-2780-44da-92ea-c95316468178?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vOWZhOGE3NjQtMjc4MC00NGRhLTkyZWEtYzk1MzE2NDY4MTc4P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-6843/providers/Microsoft.Sql/managedInstances?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "f4420e41-88a1-4ebe-a9ef-337645cba27a"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.26201.01",
- "Microsoft.Azure.Management.Sql.SqlManagementClient/1.15.0.0"
+ "FxVersion/4.6.26212.01",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.20.0.0"
]
},
- "ResponseBody": "{\r\n \"name\": \"9fa8a764-2780-44da-92ea-c95316468178\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2018-04-18T16:43:31.76Z\"\r\n}",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Wed, 18 Apr 2018 16:44:32 GMT"
+ "Thu, 27 Sep 2018 00:16:53 GMT"
],
"Pragma": [
"no-cache"
],
- "Transfer-Encoding": [
- "chunked"
- ],
- "Retry-After": [
- "60"
- ],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
- "Vary": [
- "Accept-Encoding"
- ],
"x-ms-request-id": [
- "0910661b-9dbd-4478-b2d1-2baaee007581"
+ "d8303c85-5c21-4c8b-a83e-380eb82b5cf3"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14919"
+ "11999"
],
"x-ms-correlation-request-id": [
- "5238f884-678f-4811-aa3b-b9fae7846101"
+ "b1ddd8d3-cec8-4c8a-822a-c717b1731d32"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20180418T164433Z:5238f884-678f-4811-aa3b-b9fae7846101"
+ "WESTUS2:20180927T001654Z:b1ddd8d3-cec8-4c8a-822a-c717b1731d32"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
+ ],
+ "Content-Length": [
+ "867"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
]
},
+ "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"sku\": {\r\n \"name\": \"GP_Gen4\",\r\n \"tier\": \"GeneralPurpose\",\r\n \"family\": \"Gen4\",\r\n \"capacity\": 16\r\n },\r\n \"properties\": {\r\n \"fullyQualifiedDomainName\": \"sqlcl-crudtestswithdnszone-dotnetsdk2.710c2a823568.database.windows.net\",\r\n \"administratorLogin\": \"dummylogin\",\r\n \"subnetId\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/StdjordjTestResourceGroup/providers/Microsoft.Network/virtualNetworks/ZiwaVirtualNetwork4/subnets/default\",\r\n \"state\": \"Ready\",\r\n \"licenseType\": \"LicenseIncluded\",\r\n \"vCores\": 16,\r\n \"storageSizeInGB\": 32,\r\n \"collation\": \"SQL_Latin1_General_CP1_CI_AS\"\r\n },\r\n \"location\": \"westcentralus\",\r\n \"tags\": {\r\n \"tagKey1\": \"TagValue1\"\r\n },\r\n \"id\": \"/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-6843/providers/Microsoft.Sql/managedInstances/sqlcl-crudtestswithdnszone-dotnetsdk2\",\r\n \"name\": \"sqlcl-crudtestswithdnszone-dotnetsdk2\",\r\n \"type\": \"Microsoft.Sql/managedInstances\"\r\n }\r\n ]\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/sqlcrudtest-5675/providers/Microsoft.Sql/managedInstances/sqlcl-crudtests-dotnetsdk1?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2NzUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9zcWxjbC1jcnVkdGVzdHMtZG90bmV0c2RrMT9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=",
- "RequestMethod": "DELETE",
+ "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-6843/providers/Microsoft.Sql/managedInstances?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcz9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=",
+ "RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "0a8ebdaa-34f4-47d2-b8f9-fcdc7399eb5c"
+ "86044b9d-139e-4f62-972a-467891f7b860"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26201.01",
- "Microsoft.Azure.Management.Sql.SqlManagementClient/1.15.0.0"
+ "FxVersion/4.6.26212.01",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.20.0.0"
]
},
- "ResponseBody": "{\r\n \"operation\": \"DropManagedServer\",\r\n \"startTime\": \"2018-04-18T16:44:34.523Z\"\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "72"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Wed, 18 Apr 2018 16:44:33 GMT"
+ "Thu, 27 Sep 2018 00:17:23 GMT"
],
"Pragma": [
"no-cache"
],
- "Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedInstanceOperationResults/032d19ab-6f77-4951-b3f5-5627b3b59d11?api-version=2015-05-01-preview"
- ],
- "Retry-After": [
- "15"
- ],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
- "Azure-AsyncOperation": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedInstanceAzureAsyncOperation/032d19ab-6f77-4951-b3f5-5627b3b59d11?api-version=2015-05-01-preview"
- ],
"x-ms-request-id": [
- "032d19ab-6f77-4951-b3f5-5627b3b59d11"
+ "cbb17810-0a97-4536-901e-c980a5da50af"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1193"
+ "x-ms-ratelimit-remaining-subscription-reads": [
+ "11997"
],
"x-ms-correlation-request-id": [
- "f13da77d-e332-47ae-8b1b-0387f4046a63"
+ "0054c64f-b1ce-4672-a281-a554e787b84a"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20180418T164434Z:f13da77d-e332-47ae-8b1b-0387f4046a63"
+ "WESTUS2:20180927T001724Z:0054c64f-b1ce-4672-a281-a554e787b84a"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
+ ],
+ "Content-Length": [
+ "12"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
]
},
- "StatusCode": 202
+ "ResponseBody": "{\r\n \"value\": []\r\n}",
+ "StatusCode": 200
},
{
- "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedInstanceAzureAsyncOperation/032d19ab-6f77-4951-b3f5-5627b3b59d11?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vMDMyZDE5YWItNmY3Ny00OTUxLWIzZjUtNTYyN2IzYjU5ZDExP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
- "RequestMethod": "GET",
- "RequestBody": "",
+ "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-6843/providers/Microsoft.Sql/managedInstances/sqlcl-crudtestswithdnszone-dotnetsdk1?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9zcWxjbC1jcnVkdGVzdHN3aXRoZG5zem9uZS1kb3RuZXRzZGsxP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
+ "RequestMethod": "PATCH",
+ "RequestBody": "{\r\n \"tags\": {\r\n \"asdf\": \"zxcv\"\r\n }\r\n}",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "936c719f-0474-4cf1-b98c-d43c8feca48b"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.26201.01",
- "Microsoft.Azure.Management.Sql.SqlManagementClient/1.15.0.0"
- ]
- },
- "ResponseBody": "{\r\n \"name\": \"032d19ab-6f77-4951-b3f5-5627b3b59d11\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2018-04-18T16:44:34.523Z\"\r\n}",
- "ResponseHeaders": {
+ "FxVersion/4.6.26212.01",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.20.0.0"
+ ],
"Content-Type": [
"application/json; charset=utf-8"
],
- "Expires": [
- "-1"
- ],
+ "Content-Length": [
+ "42"
+ ]
+ },
+ "ResponseHeaders": {
"Cache-Control": [
"no-cache"
],
"Date": [
- "Wed, 18 Apr 2018 16:44:50 GMT"
+ "Wed, 26 Sep 2018 23:43:11 GMT"
],
"Pragma": [
"no-cache"
],
- "Transfer-Encoding": [
- "chunked"
+ "Location": [
+ "https://management.azure.com/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-6843/providers/Microsoft.Sql/locations/westcentralus/managedInstanceOperationResults/34af2565-ea5e-4a35-b2c8-ca4081582109?api-version=2015-05-01-preview"
],
"Retry-After": [
- "15"
+ "60"
],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
- "Vary": [
- "Accept-Encoding"
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-6843/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/34af2565-ea5e-4a35-b2c8-ca4081582109?api-version=2015-05-01-preview"
],
"x-ms-request-id": [
- "8ffb605f-18ec-4e43-ae12-0183fbcceaa3"
+ "34af2565-ea5e-4a35-b2c8-ca4081582109"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14917"
+ "x-ms-ratelimit-remaining-subscription-writes": [
+ "1199"
],
"x-ms-correlation-request-id": [
- "e94bdeab-da4f-4971-9b4e-b335659f5011"
+ "85f6d8fa-4a90-4062-ab19-acf0019813b1"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20180418T164450Z:e94bdeab-da4f-4971-9b4e-b335659f5011"
+ "WESTUS2:20180926T234312Z:85f6d8fa-4a90-4062-ab19-acf0019813b1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
+ ],
+ "Content-Length": [
+ "72"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
]
},
- "StatusCode": 200
+ "ResponseBody": "{\r\n \"operation\": \"UpsertManagedServer\",\r\n \"startTime\": \"2018-09-26T23:43:12.2Z\"\r\n}",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedInstanceOperationResults/032d19ab-6f77-4951-b3f5-5627b3b59d11?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWRJbnN0YW5jZU9wZXJhdGlvblJlc3VsdHMvMDMyZDE5YWItNmY3Ny00OTUxLWIzZjUtNTYyN2IzYjU5ZDExP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-6843/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/34af2565-ea5e-4a35-b2c8-ca4081582109?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvbWFuYWdlZEluc3RhbmNlQXp1cmVBc3luY09wZXJhdGlvbi8zNGFmMjU2NS1lYTVlLTRhMzUtYjJjOC1jYTQwODE1ODIxMDk/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26201.01",
- "Microsoft.Azure.Management.Sql.SqlManagementClient/1.15.0.0"
+ "FxVersion/4.6.26212.01",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.20.0.0"
]
},
- "ResponseBody": "",
"ResponseHeaders": {
- "Content-Length": [
- "0"
- ],
- "Expires": [
- "-1"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Wed, 18 Apr 2018 16:44:51 GMT"
+ "Wed, 26 Sep 2018 23:44:12 GMT"
],
"Pragma": [
"no-cache"
],
+ "Retry-After": [
+ "60"
+ ],
"Server": [
"Microsoft-HTTPAPI/2.0"
],
"x-ms-request-id": [
- "c0e0c703-c3b7-4fa7-858e-ba2354d37583"
+ "5605c906-210c-44fc-9310-c6fab00652f2"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14916"
+ "11999"
],
"x-ms-correlation-request-id": [
- "bc1eaf24-56cc-4428-ae21-071792c6ad9e"
+ "204d4dda-420f-4c8c-a371-de0fdda3bafc"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20180418T164451Z:bc1eaf24-56cc-4428-ae21-071792c6ad9e"
+ "WESTUS2:20180926T234412Z:204d4dda-420f-4c8c-a371-de0fdda3bafc"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
+ ],
+ "Content-Length": [
+ "105"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
]
},
+ "ResponseBody": "{\r\n \"name\": \"34af2565-ea5e-4a35-b2c8-ca4081582109\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2018-09-26T23:43:12.2Z\"\r\n}",
"StatusCode": 200
},
{
- "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourceGroups/sqlcrudtest-5675/providers/Microsoft.Sql/managedInstances/sqlcl-crudtests-dotnetsdk2?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTU2NzUvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9zcWxjbC1jcnVkdGVzdHMtZG90bmV0c2RrMj9hcGktdmVyc2lvbj0yMDE1LTA1LTAxLXByZXZpZXc=",
+ "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-6843/providers/Microsoft.Sql/managedInstances/sqlcl-crudtestswithdnszone-dotnetsdk1?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9zcWxjbC1jcnVkdGVzdHN3aXRoZG5zem9uZS1kb3RuZXRzZGsxP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "e02cc350-ed34-4c96-b4a4-9026a699a2b2"
+ "b708fb03-f6d5-411e-ab91-7f21cc16adbd"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26201.01",
- "Microsoft.Azure.Management.Sql.SqlManagementClient/1.15.0.0"
+ "FxVersion/4.6.26212.01",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.20.0.0"
]
},
- "ResponseBody": "{\r\n \"operation\": \"DropManagedServer\",\r\n \"startTime\": \"2018-04-18T16:44:52.04Z\"\r\n}",
"ResponseHeaders": {
- "Content-Length": [
- "71"
- ],
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Wed, 18 Apr 2018 16:44:52 GMT"
+ "Thu, 27 Sep 2018 00:16:26 GMT"
],
"Pragma": [
"no-cache"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedInstanceOperationResults/d2014daf-4cb9-47f9-bae0-5bd2a7caaa35?api-version=2015-05-01-preview"
+ "https://management.azure.com/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-6843/providers/Microsoft.Sql/locations/westcentralus/managedInstanceOperationResults/c449fe95-0b9d-4bb2-911d-9a8c1f5a566c?api-version=2015-05-01-preview"
],
"Retry-After": [
"15"
@@ -1321,59 +1379,68 @@
"Microsoft-HTTPAPI/2.0"
],
"Azure-AsyncOperation": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedInstanceAzureAsyncOperation/d2014daf-4cb9-47f9-bae0-5bd2a7caaa35?api-version=2015-05-01-preview"
+ "https://management.azure.com/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-6843/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/c449fe95-0b9d-4bb2-911d-9a8c1f5a566c?api-version=2015-05-01-preview"
],
"x-ms-request-id": [
- "d2014daf-4cb9-47f9-bae0-5bd2a7caaa35"
+ "c449fe95-0b9d-4bb2-911d-9a8c1f5a566c"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1192"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
],
"x-ms-correlation-request-id": [
- "e49839fe-9c2e-4751-b9b2-79a9b6ece54e"
+ "46daba7a-9efa-43a4-ad11-b25b8c10bed1"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20180418T164452Z:e49839fe-9c2e-4751-b9b2-79a9b6ece54e"
+ "WESTUS2:20180927T001627Z:46daba7a-9efa-43a4-ad11-b25b8c10bed1"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
+ ],
+ "Content-Length": [
+ "72"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
]
},
+ "ResponseBody": "{\r\n \"operation\": \"DropManagedServer\",\r\n \"startTime\": \"2018-09-27T00:16:27.027Z\"\r\n}",
"StatusCode": 202
},
{
- "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedInstanceAzureAsyncOperation/d2014daf-4cb9-47f9-bae0-5bd2a7caaa35?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWRJbnN0YW5jZUF6dXJlQXN5bmNPcGVyYXRpb24vZDIwMTRkYWYtNGNiOS00N2Y5LWJhZTAtNWJkMmE3Y2FhYTM1P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
- "RequestMethod": "GET",
+ "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-6843/providers/Microsoft.Sql/managedInstances/sqlcl-crudtestswithdnszone-dotnetsdk2?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbWFuYWdlZEluc3RhbmNlcy9zcWxjbC1jcnVkdGVzdHN3aXRoZG5zem9uZS1kb3RuZXRzZGsyP2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
+ "RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
+ "x-ms-client-request-id": [
+ "e57ae843-f9b5-46af-a576-479b1466077e"
+ ],
+ "accept-language": [
+ "en-US"
+ ],
"User-Agent": [
- "FxVersion/4.6.26201.01",
- "Microsoft.Azure.Management.Sql.SqlManagementClient/1.15.0.0"
+ "FxVersion/4.6.26212.01",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.20.0.0"
]
},
- "ResponseBody": "{\r\n \"name\": \"d2014daf-4cb9-47f9-bae0-5bd2a7caaa35\",\r\n \"status\": \"Succeeded\",\r\n \"startTime\": \"2018-04-18T16:44:52.04Z\"\r\n}",
"ResponseHeaders": {
- "Content-Type": [
- "application/json; charset=utf-8"
- ],
- "Expires": [
- "-1"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Wed, 18 Apr 2018 16:45:07 GMT"
+ "Thu, 27 Sep 2018 00:16:59 GMT"
],
"Pragma": [
"no-cache"
],
- "Transfer-Encoding": [
- "chunked"
+ "Location": [
+ "https://management.azure.com/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-6843/providers/Microsoft.Sql/locations/westcentralus/managedInstanceOperationResults/82b3d670-5869-4856-87d9-63890a742e15?api-version=2015-05-01-preview"
],
"Retry-After": [
"15"
@@ -1381,54 +1448,57 @@
"Server": [
"Microsoft-HTTPAPI/2.0"
],
- "Vary": [
- "Accept-Encoding"
+ "Azure-AsyncOperation": [
+ "https://management.azure.com/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-6843/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/82b3d670-5869-4856-87d9-63890a742e15?api-version=2015-05-01-preview"
],
"x-ms-request-id": [
- "eeca78da-2443-4059-b597-a28f10fa81b7"
+ "82b3d670-5869-4856-87d9-63890a742e15"
],
- "x-ms-ratelimit-remaining-subscription-reads": [
- "14915"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14998"
],
"x-ms-correlation-request-id": [
- "87ceeff6-5e35-488d-a3f7-1ecc2da4d381"
+ "9b1b2bb5-c09a-46b0-801b-53c59c455ad3"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20180418T164507Z:87ceeff6-5e35-488d-a3f7-1ecc2da4d381"
+ "WESTUS2:20180927T001700Z:9b1b2bb5-c09a-46b0-801b-53c59c455ad3"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
+ ],
+ "Content-Length": [
+ "72"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
]
},
- "StatusCode": 200
+ "ResponseBody": "{\r\n \"operation\": \"DropManagedServer\",\r\n \"startTime\": \"2018-09-27T00:16:59.983Z\"\r\n}",
+ "StatusCode": 202
},
{
- "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/providers/Microsoft.Sql/locations/southeastasia/managedInstanceOperationResults/d2014daf-4cb9-47f9-bae0-5bd2a7caaa35?api-version=2015-05-01-preview",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Byb3ZpZGVycy9NaWNyb3NvZnQuU3FsL2xvY2F0aW9ucy9zb3V0aGVhc3Rhc2lhL21hbmFnZWRJbnN0YW5jZU9wZXJhdGlvblJlc3VsdHMvZDIwMTRkYWYtNGNiOS00N2Y5LWJhZTAtNWJkMmE3Y2FhYTM1P2FwaS12ZXJzaW9uPTIwMTUtMDUtMDEtcHJldmlldw==",
+ "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourceGroups/sqlcrudtest-6843/providers/Microsoft.Sql/locations/westcentralus/managedInstanceAzureAsyncOperation/c449fe95-0b9d-4bb2-911d-9a8c1f5a566c?api-version=2015-05-01-preview",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlR3JvdXBzL3NxbGNydWR0ZXN0LTY4NDMvcHJvdmlkZXJzL01pY3Jvc29mdC5TcWwvbG9jYXRpb25zL3dlc3RjZW50cmFsdXMvbWFuYWdlZEluc3RhbmNlQXp1cmVBc3luY09wZXJhdGlvbi9jNDQ5ZmU5NS0wYjlkLTRiYjItOTExZC05YThjMWY1YTU2NmM/YXBpLXZlcnNpb249MjAxNS0wNS0wMS1wcmV2aWV3",
"RequestMethod": "GET",
"RequestBody": "",
"RequestHeaders": {
"User-Agent": [
- "FxVersion/4.6.26201.01",
- "Microsoft.Azure.Management.Sql.SqlManagementClient/1.15.0.0"
+ "FxVersion/4.6.26212.01",
+ "Microsoft.Azure.Management.Sql.SqlManagementClient/1.20.0.0"
]
},
- "ResponseBody": "",
"ResponseHeaders": {
- "Content-Length": [
- "0"
- ],
- "Expires": [
- "-1"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Wed, 18 Apr 2018 16:45:07 GMT"
+ "Thu, 27 Sep 2018 00:17:23 GMT"
],
"Pragma": [
"no-cache"
@@ -1437,96 +1507,106 @@
"Microsoft-HTTPAPI/2.0"
],
"x-ms-request-id": [
- "460830ad-9d97-4d81-9498-d795eef8bb69"
+ "db538e1a-b476-49a0-bf2d-52608e8c405c"
],
"x-ms-ratelimit-remaining-subscription-reads": [
- "14914"
+ "11998"
],
"x-ms-correlation-request-id": [
- "298d26b5-2ba6-4670-802d-7b168217cf52"
+ "04804d48-e8cd-4df9-9d37-5258058ac1e8"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20180418T164507Z:298d26b5-2ba6-4670-802d-7b168217cf52"
+ "WESTUS2:20180927T001724Z:04804d48-e8cd-4df9-9d37-5258058ac1e8"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
+ ],
+ "Content-Length": [
+ "130"
+ ],
+ "Content-Type": [
+ "application/json; charset=utf-8"
+ ],
+ "Expires": [
+ "-1"
]
},
- "StatusCode": 200
+ "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"OperationIdNotFound\",\r\n \"message\": \"The operation with Id: 'c449fe95-0b9d-4bb2-911d-9a8c1f5a566c' does not exist.\"\r\n }\r\n}",
+ "StatusCode": 404
},
{
- "RequestUri": "/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/resourcegroups/sqlcrudtest-5675?api-version=2017-05-10",
- "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvOGNmYjhiNjItYmNkNi00NzEzLTg5YWQtMTgwOTdmNzVjYzViL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTU2NzU/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
+ "RequestUri": "/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/resourcegroups/sqlcrudtest-6843?api-version=2017-05-10",
+ "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvYThjOWE5MjQtMDZjMC00YmRlLTk3ODgtZTdiMTM3MDk2OWUxL3Jlc291cmNlZ3JvdXBzL3NxbGNydWR0ZXN0LTY4NDM/YXBpLXZlcnNpb249MjAxNy0wNS0xMA==",
"RequestMethod": "DELETE",
"RequestBody": "",
"RequestHeaders": {
"x-ms-client-request-id": [
- "16c6439f-48a9-412f-83a2-99220d4e106c"
+ "9c1cbe75-4bd9-47d9-ab95-2aacae4f000e"
],
"accept-language": [
"en-US"
],
"User-Agent": [
- "FxVersion/4.6.26201.01",
+ "FxVersion/4.6.26212.01",
"Microsoft.Azure.Management.ResourceManager.ResourceManagementClient/1.6.0.0"
]
},
- "ResponseBody": "",
"ResponseHeaders": {
- "Content-Length": [
- "0"
- ],
- "Expires": [
- "-1"
- ],
"Cache-Control": [
"no-cache"
],
"Date": [
- "Wed, 18 Apr 2018 16:45:08 GMT"
+ "Thu, 27 Sep 2018 00:17:30 GMT"
],
"Pragma": [
"no-cache"
],
"Location": [
- "https://api-dogfood.resources.windows-int.net/subscriptions/8cfb8b62-bcd6-4713-89ad-18097f75cc5b/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDU2NzUtU09VVEhFQVNUQVNJQSIsImpvYkxvY2F0aW9uIjoic291dGhlYXN0YXNpYSJ9?api-version=2017-05-10"
+ "https://management.azure.com/subscriptions/a8c9a924-06c0-4bde-9788-e7b1370969e1/operationresults/eyJqb2JJZCI6IlJFU09VUkNFR1JPVVBERUxFVElPTkpPQi1TUUxDUlVEVEVTVDoyRDY4NDMtV0VTVENFTlRSQUxVUyIsImpvYkxvY2F0aW9uIjoid2VzdGNlbnRyYWx1cyJ9?api-version=2017-05-10"
],
"Retry-After": [
"15"
],
- "x-ms-ratelimit-remaining-subscription-writes": [
- "1191"
+ "x-ms-ratelimit-remaining-subscription-deletes": [
+ "14999"
],
"x-ms-request-id": [
- "6847de99-2230-4de3-8e09-8ccfb49b2cbc"
+ "18976646-4cc7-4c38-8c5a-7488d075de70"
],
"x-ms-correlation-request-id": [
- "6847de99-2230-4de3-8e09-8ccfb49b2cbc"
+ "18976646-4cc7-4c38-8c5a-7488d075de70"
],
"x-ms-routing-request-id": [
- "WESTEUROPE:20180418T164509Z:6847de99-2230-4de3-8e09-8ccfb49b2cbc"
+ "WESTUS2:20180927T001730Z:18976646-4cc7-4c38-8c5a-7488d075de70"
],
"Strict-Transport-Security": [
"max-age=31536000; includeSubDomains"
],
"X-Content-Type-Options": [
"nosniff"
+ ],
+ "Content-Length": [
+ "0"
+ ],
+ "Expires": [
+ "-1"
]
},
+ "ResponseBody": "",
"StatusCode": 202
}
],
"Names": {
"CreateResourceGroup": [
- "sqlcrudtest-5675"
+ "sqlcrudtest-6843"
]
},
"Variables": {
- "SubscriptionId": "8cfb8b62-bcd6-4713-89ad-18097f75cc5b",
- "DefaultLocation": "south east asia",
- "DefaultLocationId": "southeastasia"
+ "SubscriptionId": "a8c9a924-06c0-4bde-9788-e7b1370969e1",
+ "DefaultLocation": "westcentralus",
+ "DefaultLocationId": "westcentralus"
}
}
\ No newline at end of file