diff --git a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountAgreementInMemoryTests.cs b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountAgreementInMemoryTests.cs index a92f49b0221a..4634d066e6d3 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountAgreementInMemoryTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountAgreementInMemoryTests.cs @@ -44,8 +44,8 @@ public void IntegrationAccountAgreement_ListByResourceGroup_Exception() }; Assert.Throws( - () => client.IntegrationAccountAgreements.List(null, "IntegrationAccount")); - Assert.Throws(() => client.IntegrationAccountAgreements.List(ResourceGroupName, "IntegrationAccount")); + () => client.Agreements.ListByIntegrationAccounts(null, "IntegrationAccount")); + Assert.Throws(() => client.Agreements.ListByIntegrationAccounts(ResourceGroupName, "IntegrationAccount")); } [Fact] @@ -60,7 +60,7 @@ public void IntegrationAccountAgreement_ListByResourceGroup_Success() Content = this.AgreementList }; - var result = client.IntegrationAccountAgreements.List(ResourceGroupName, "IntegrationAccount"); + var result = client.Agreements.ListByIntegrationAccounts(ResourceGroupName, "IntegrationAccount"); // Validates request. handler.Request.ValidateAuthorizationHeader(); @@ -82,8 +82,8 @@ public void IntegrationAccountAgreement_ListByResourceGroupNext_Exception() Content = new StringContent(string.Empty) }; - Assert.Throws(() => client.IntegrationAccountAgreements.ListNext(null)); - Assert.Throws(() => client.IntegrationAccountAgreements.ListNext(Constants.NextPageLink)); + Assert.Throws(() => client.Agreements.ListByIntegrationAccountsNext(null)); + Assert.Throws(() => client.Agreements.ListByIntegrationAccountsNext(Constants.NextPageLink)); } [Fact] @@ -98,7 +98,7 @@ public void IntegrationAccountAgreement_ListByResourceGroupNext_Success() Content = this.AgreementList }; - var result = client.IntegrationAccountAgreements.ListNext(Constants.NextPageLink); + var result = client.Agreements.ListByIntegrationAccountsNext(Constants.NextPageLink); // Validates request. handler.Request.ValidateAuthorizationHeader(); @@ -120,11 +120,12 @@ public void IntegrationAccountAgreement_CreateOrUpdate_Exception() Content = new StringContent(string.Empty) }; - Assert.Throws(() => client.IntegrationAccountAgreements.CreateOrUpdate(null, "IntegrationAccountName", "AgreementName", new IntegrationAccountAgreement())); - Assert.Throws(() => client.IntegrationAccountAgreements.CreateOrUpdate(ResourceGroupName, null, "AgreementName", new IntegrationAccountAgreement())); - Assert.Throws(() => client.IntegrationAccountAgreements.CreateOrUpdate(ResourceGroupName, "IntegrationAccountName", null, new IntegrationAccountAgreement())); - Assert.Throws(() => client.IntegrationAccountAgreements.CreateOrUpdate(ResourceGroupName, "IntegrationAccountName", "AgreementName", null)); - Assert.Throws(() => client.IntegrationAccountAgreements.CreateOrUpdate(ResourceGroupName, "IntegrationAccountName", "AgreementName", new IntegrationAccountAgreement())); + var agreeement = new IntegrationAccountAgreement(AgreementType.Edifact, "hostPartner", "guestPartner", new BusinessIdentity("a", "b"), new BusinessIdentity("a", "b"), new AgreementContent()); + Assert.Throws(() => client.Agreements.CreateOrUpdate(null, "IntegrationAccountName", "AgreementName", new IntegrationAccountAgreement())); + Assert.Throws(() => client.Agreements.CreateOrUpdate(ResourceGroupName, null, "AgreementName", new IntegrationAccountAgreement())); + Assert.Throws(() => client.Agreements.CreateOrUpdate(ResourceGroupName, "IntegrationAccountName", null, new IntegrationAccountAgreement())); + Assert.Throws(() => client.Agreements.CreateOrUpdate(ResourceGroupName, "IntegrationAccountName", "AgreementName", null)); + Assert.Throws(() => client.Agreements.CreateOrUpdate(ResourceGroupName, "IntegrationAccountName", "AgreementName", agreeement)); } [Fact] @@ -139,7 +140,7 @@ public void IntegrationAccountAgreement_CreateOrUpdate_OK() Content = this.Agreement }; - var result = client.IntegrationAccountAgreements.CreateOrUpdate(ResourceGroupName, "IntegrationAccountName", "AgreementName", new IntegrationAccountAgreement()); + var result = client.Agreements.CreateOrUpdate(ResourceGroupName, "IntegrationAccountName", "AgreementName", new IntegrationAccountAgreement(AgreementType.Edifact, "hostPartner", "guestPartner", new BusinessIdentity("a", "b"), new BusinessIdentity("a", "b"), new AgreementContent())); // Validates request. handler.Request.ValidateAuthorizationHeader(); @@ -161,7 +162,7 @@ public void IntegrationAccountAgreement_CreateOrUpdate_Created() Content = this.Agreement }; - var result = client.IntegrationAccountAgreements.CreateOrUpdate(ResourceGroupName, "IntegrationAccountName", "AgreementName", new IntegrationAccountAgreement()); + var result = client.Agreements.CreateOrUpdate(ResourceGroupName, "IntegrationAccountName", "AgreementName", new IntegrationAccountAgreement(AgreementType.Edifact,"hostPartner", "guestPartner", new BusinessIdentity("a","b"),new BusinessIdentity("a","b"),new AgreementContent())); // Validates request. handler.Request.ValidateAuthorizationHeader(); @@ -182,10 +183,10 @@ public void IntegrationAccountAgreement_Delete_Exception() StatusCode = HttpStatusCode.NotFound }; - Assert.Throws(() => client.IntegrationAccountAgreements.Delete(null, "IntegrationAccountName", "AgreementName")); - Assert.Throws(() => client.IntegrationAccountAgreements.Delete(ResourceGroupName, null, "AgreementName")); - Assert.Throws(() => client.IntegrationAccountAgreements.Delete(ResourceGroupName, "IntegrationAccountName", null)); - Assert.Throws(() => client.IntegrationAccountAgreements.Delete(ResourceGroupName, "IntegrationAccountName", "AgreementName")); + Assert.Throws(() => client.Agreements.Delete(null, "IntegrationAccountName", "AgreementName")); + Assert.Throws(() => client.Agreements.Delete(ResourceGroupName, null, "AgreementName")); + Assert.Throws(() => client.Agreements.Delete(ResourceGroupName, "IntegrationAccountName", null)); + Assert.Throws(() => client.Agreements.Delete(ResourceGroupName, "IntegrationAccountName", "AgreementName")); } [Fact] @@ -199,7 +200,7 @@ public void IntegrationAccountAgreement_Delete_OK() StatusCode = HttpStatusCode.OK }; - client.IntegrationAccountAgreements.Delete(ResourceGroupName, "IntegrationAccountName", "AgreementName"); + client.Agreements.Delete(ResourceGroupName, "IntegrationAccountName", "AgreementName"); // Validates request. handler.Request.ValidateAuthorizationHeader(); @@ -217,7 +218,7 @@ public void IntegrationAccountAgreement_Delete_NoContent() StatusCode = HttpStatusCode.NoContent }; - client.IntegrationAccountAgreements.Delete(ResourceGroupName, "IntegrationAccountName", "AgreementName"); + client.Agreements.Delete(ResourceGroupName, "IntegrationAccountName", "AgreementName"); // Validates request. handler.Request.ValidateAuthorizationHeader(); @@ -236,10 +237,10 @@ public void IntegrationAccountAgreement_Get_Exception() Content = new StringContent(string.Empty) }; - Assert.Throws(() => client.IntegrationAccountAgreements.Get(null, "IntegrationAccountName", "AgreementName")); - Assert.Throws(() => client.IntegrationAccountAgreements.Get(ResourceGroupName, null, "AgreementName")); - Assert.Throws(() => client.IntegrationAccountAgreements.Get(ResourceGroupName, "IntegrationAccountName", null)); - Assert.Throws(() => client.IntegrationAccountAgreements.Get(ResourceGroupName, "IntegrationAccountName", "AgreementName")); + Assert.Throws(() => client.Agreements.Get(null, "IntegrationAccountName", "AgreementName")); + Assert.Throws(() => client.Agreements.Get(ResourceGroupName, null, "AgreementName")); + Assert.Throws(() => client.Agreements.Get(ResourceGroupName, "IntegrationAccountName", null)); + Assert.Throws(() => client.Agreements.Get(ResourceGroupName, "IntegrationAccountName", "AgreementName")); } [Fact] @@ -254,7 +255,7 @@ public void IntegrationAccountAgreement_Get_OK() Content = this.Agreement }; - var result = client.IntegrationAccountAgreements.Get(ResourceGroupName, "IntegrationAccountName", "AgreementName"); + var result = client.Agreements.Get(ResourceGroupName, "IntegrationAccountName", "AgreementName"); // Validates request. handler.Request.ValidateAuthorizationHeader(); diff --git a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountCertificateInMemoryTests.cs b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountCertificateInMemoryTests.cs index 26b8e4b70d3f..69f090f9c17e 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountCertificateInMemoryTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountCertificateInMemoryTests.cs @@ -43,8 +43,8 @@ public void IntegrationAccountCertificate_ListByResourceGroup_Exception() }; Assert.Throws( - () => client.IntegrationAccountCertificates.List(null, "IntegrationAccount",null)); - Assert.Throws(() => client.IntegrationAccountCertificates.List(ResourceGroupName, "IntegrationAccount")); + () => client.Certificates.ListByIntegrationAccounts(null, "IntegrationAccount",null)); + Assert.Throws(() => client.Certificates.ListByIntegrationAccounts(ResourceGroupName, "IntegrationAccount")); } [Fact] @@ -59,7 +59,7 @@ public void IntegrationAccountCertificate_ListByResourceGroup_Success() Content = this.CertificateList }; - var result = client.IntegrationAccountCertificates.List(ResourceGroupName, "IntegrationAccount"); + var result = client.Certificates.ListByIntegrationAccounts(ResourceGroupName, "IntegrationAccount"); // Validates request. handler.Request.ValidateAuthorizationHeader(); @@ -81,8 +81,8 @@ public void IntegrationAccountCertificate_ListByResourceGroupNext_Exception() Content = new StringContent(string.Empty) }; - Assert.Throws(() => client.IntegrationAccountCertificates.ListNext(null)); - Assert.Throws(() => client.IntegrationAccountCertificates.ListNext(Constants.NextPageLink)); + Assert.Throws(() => client.Certificates.ListByIntegrationAccountsNext(null)); + Assert.Throws(() => client.Certificates.ListByIntegrationAccountsNext(Constants.NextPageLink)); } [Fact] @@ -97,7 +97,7 @@ public void IntegrationAccountCertificate_ListByResourceGroupNext_Success() Content = this.CertificateList }; - var result = client.IntegrationAccountCertificates.ListNext(Constants.NextPageLink); + var result = client.Certificates.ListByIntegrationAccountsNext(Constants.NextPageLink); // Validates request. handler.Request.ValidateAuthorizationHeader(); @@ -119,11 +119,11 @@ public void IntegrationAccountCertificate_CreateOrUpdate_Exception() Content = new StringContent(string.Empty) }; - Assert.Throws(() => client.IntegrationAccountCertificates.CreateOrUpdate(null, "IntegrationAccountName", "IntegrationAccountCertificate", new IntegrationAccountCertificate())); - Assert.Throws(() => client.IntegrationAccountCertificates.CreateOrUpdate(ResourceGroupName, null, "IntegrationAccountCertificate", new IntegrationAccountCertificate())); - Assert.Throws(() => client.IntegrationAccountCertificates.CreateOrUpdate(ResourceGroupName, "IntegrationAccountName", null, new IntegrationAccountCertificate())); - Assert.Throws(() => client.IntegrationAccountCertificates.CreateOrUpdate(ResourceGroupName, "IntegrationAccountName", "IntegrationAccountCertificate", null)); - Assert.Throws(() => client.IntegrationAccountCertificates.CreateOrUpdate(ResourceGroupName, "IntegrationAccountName", "IntegrationAccountCertificate", new IntegrationAccountCertificate())); + Assert.Throws(() => client.Certificates.CreateOrUpdate(null, "IntegrationAccountName", "IntegrationAccountCertificate", new IntegrationAccountCertificate())); + Assert.Throws(() => client.Certificates.CreateOrUpdate(ResourceGroupName, null, "IntegrationAccountCertificate", new IntegrationAccountCertificate())); + Assert.Throws(() => client.Certificates.CreateOrUpdate(ResourceGroupName, "IntegrationAccountName", null, new IntegrationAccountCertificate())); + Assert.Throws(() => client.Certificates.CreateOrUpdate(ResourceGroupName, "IntegrationAccountName", "IntegrationAccountCertificate", null)); + Assert.Throws(() => client.Certificates.CreateOrUpdate(ResourceGroupName, "IntegrationAccountName", "IntegrationAccountCertificate", new IntegrationAccountCertificate())); } [Fact] @@ -138,7 +138,7 @@ public void IntegrationAccountCertificate_CreateOrUpdate_OK() Content = this.Certificate }; - var result = client.IntegrationAccountCertificates.CreateOrUpdate(ResourceGroupName, "IntegrationAccountName", "IntegrationAccountCertificate", new IntegrationAccountCertificate()); + var result = client.Certificates.CreateOrUpdate(ResourceGroupName, "IntegrationAccountName", "IntegrationAccountCertificate", new IntegrationAccountCertificate()); // Validates request. handler.Request.ValidateAuthorizationHeader(); @@ -160,7 +160,7 @@ public void IntegrationAccountCertificate_CreateOrUpdate_Created() Content = this.Certificate }; - var result = client.IntegrationAccountCertificates.CreateOrUpdate(ResourceGroupName, "IntegrationAccountName", "IntegrationAccountCertificate", new IntegrationAccountCertificate()); + var result = client.Certificates.CreateOrUpdate(ResourceGroupName, "IntegrationAccountName", "IntegrationAccountCertificate", new IntegrationAccountCertificate()); // Validates request. handler.Request.ValidateAuthorizationHeader(); @@ -181,10 +181,10 @@ public void IntegrationAccountCertificate_Delete_Exception() StatusCode = HttpStatusCode.NotFound }; - Assert.Throws(() => client.IntegrationAccountCertificates.Delete(null, "IntegrationAccountName", "IntegrationAccountCertificate")); - Assert.Throws(() => client.IntegrationAccountCertificates.Delete(ResourceGroupName, null, "IntegrationAccountCertificate")); - Assert.Throws(() => client.IntegrationAccountCertificates.Delete(ResourceGroupName, "IntegrationAccountName", null)); - Assert.Throws(() => client.IntegrationAccountCertificates.Delete(ResourceGroupName, "IntegrationAccountName", "IntegrationAccountCertificate")); + Assert.Throws(() => client.Certificates.Delete(null, "IntegrationAccountName", "IntegrationAccountCertificate")); + Assert.Throws(() => client.Certificates.Delete(ResourceGroupName, null, "IntegrationAccountCertificate")); + Assert.Throws(() => client.Certificates.Delete(ResourceGroupName, "IntegrationAccountName", null)); + Assert.Throws(() => client.Certificates.Delete(ResourceGroupName, "IntegrationAccountName", "IntegrationAccountCertificate")); } [Fact] @@ -198,7 +198,7 @@ public void IntegrationAccountCertificate_Delete_OK() StatusCode = HttpStatusCode.OK }; - client.IntegrationAccountCertificates.Delete(ResourceGroupName, "IntegrationAccountName", "IntegrationAccountCertificate"); + client.Certificates.Delete(ResourceGroupName, "IntegrationAccountName", "IntegrationAccountCertificate"); // Validates request. handler.Request.ValidateAuthorizationHeader(); @@ -216,7 +216,7 @@ public void IntegrationAccountCertificate_Delete_NoContent() StatusCode = HttpStatusCode.NoContent }; - client.IntegrationAccountCertificates.Delete(ResourceGroupName, "IntegrationAccountName", "IntegrationAccountCertificate"); + client.Certificates.Delete(ResourceGroupName, "IntegrationAccountName", "IntegrationAccountCertificate"); // Validates request. handler.Request.ValidateAuthorizationHeader(); @@ -235,10 +235,10 @@ public void IntegrationAccountCertificate_Get_Exception() Content = new StringContent(string.Empty) }; - Assert.Throws(() => client.IntegrationAccountCertificates.Get(null, "IntegrationAccountName", "IntegrationAccountCertificate")); - Assert.Throws(() => client.IntegrationAccountCertificates.Get(ResourceGroupName, null, "IntegrationAccountCertificate")); - Assert.Throws(() => client.IntegrationAccountCertificates.Get(ResourceGroupName, "IntegrationAccountName", null)); - Assert.Throws(() => client.IntegrationAccountCertificates.Get(ResourceGroupName, "IntegrationAccountName", "IntegrationAccountCertificate")); + Assert.Throws(() => client.Certificates.Get(null, "IntegrationAccountName", "IntegrationAccountCertificate")); + Assert.Throws(() => client.Certificates.Get(ResourceGroupName, null, "IntegrationAccountCertificate")); + Assert.Throws(() => client.Certificates.Get(ResourceGroupName, "IntegrationAccountName", null)); + Assert.Throws(() => client.Certificates.Get(ResourceGroupName, "IntegrationAccountName", "IntegrationAccountCertificate")); } [Fact] @@ -253,7 +253,7 @@ public void IntegrationAccountCertificate_Get_OK() Content = this.Certificate }; - var result = client.IntegrationAccountCertificates.Get(ResourceGroupName, "IntegrationAccountName", "IntegrationAccountCertificate"); + var result = client.Certificates.Get(ResourceGroupName, "IntegrationAccountName", "IntegrationAccountCertificate"); // Validates request. handler.Request.ValidateAuthorizationHeader(); diff --git a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountInMemoryTests.cs b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountInMemoryTests.cs index eab5b485ce2a..126748a470ba 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountInMemoryTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountInMemoryTests.cs @@ -400,9 +400,9 @@ public void IntegrationAccounts_ListCallbackUrl_Exception() Content = new StringContent(string.Empty) }; - Assert.Throws(() => client.IntegrationAccounts.ListCallbackUrl(null, "IntegrationAccountName")); - Assert.Throws(() => client.IntegrationAccounts.ListCallbackUrl(ResourceGroupName, null)); - Assert.Throws(() => client.IntegrationAccounts.ListCallbackUrl(ResourceGroupName, "IntegrationAccountName")); + Assert.Throws(() => client.IntegrationAccounts.GetCallbackUrl(null, "IntegrationAccountName", new GetCallbackUrlParameters())); + Assert.Throws(() => client.IntegrationAccounts.GetCallbackUrl(ResourceGroupName, null, new GetCallbackUrlParameters())); + Assert.Throws(() => client.IntegrationAccounts.GetCallbackUrl(ResourceGroupName, "IntegrationAccountName", new GetCallbackUrlParameters())); } [Fact] @@ -417,7 +417,7 @@ public void IntegrationAccounts_ListCallbackUrl_OK() Content = this.IntegrationAccountCallbackUrl }; - var result = client.IntegrationAccounts.ListCallbackUrl(ResourceGroupName, "IntegrationAccountName" ); + var result = client.IntegrationAccounts.GetCallbackUrl(ResourceGroupName, "IntegrationAccountName", new GetCallbackUrlParameters()); // Validates request. handler.Request.ValidateAuthorizationHeader(); diff --git a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountMapInMemoryTests.cs b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountMapInMemoryTests.cs index 96d6b168eb5b..50c9535edf50 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountMapInMemoryTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountMapInMemoryTests.cs @@ -44,8 +44,8 @@ public void IntegrationAccountMap_ListByResourceGroup_Exception() }; Assert.Throws( - () => client.IntegrationAccountMaps.List(null, "IntegrationAccount",null)); - Assert.Throws(() => client.IntegrationAccountMaps.List(ResourceGroupName, "IntegrationAccount")); + () => client.Maps.ListByIntegrationAccounts(null, "IntegrationAccount",null)); + Assert.Throws(() => client.Maps.ListByIntegrationAccounts(ResourceGroupName, "IntegrationAccount")); } [Fact] @@ -60,7 +60,7 @@ public void IntegrationAccountMap_ListByResourceGroup_Success() Content = this.MapList }; - var result = client.IntegrationAccountMaps.List(ResourceGroupName, "IntegrationAccount"); + var result = client.Maps.ListByIntegrationAccounts(ResourceGroupName, "IntegrationAccount"); // Validates request. handler.Request.ValidateAuthorizationHeader(); @@ -82,8 +82,8 @@ public void IntegrationAccountMap_ListByResourceGroupNext_Exception() Content = new StringContent(string.Empty) }; - Assert.Throws(() => client.IntegrationAccountMaps.ListNext(null)); - Assert.Throws(() => client.IntegrationAccountMaps.ListNext(Constants.NextPageLink)); + Assert.Throws(() => client.Maps.ListByIntegrationAccountsNext(null)); + Assert.Throws(() => client.Maps.ListByIntegrationAccountsNext(Constants.NextPageLink)); } [Fact] @@ -98,7 +98,7 @@ public void IntegrationAccountMap_ListByResourceGroupNext_Success() Content = this.MapList }; - var result = client.IntegrationAccountMaps.ListNext(Constants.NextPageLink); + var result = client.Maps.ListByIntegrationAccountsNext(Constants.NextPageLink); // Validates request. handler.Request.ValidateAuthorizationHeader(); @@ -120,11 +120,11 @@ public void IntegrationAccountMap_CreateOrUpdate_Exception() Content = new StringContent(string.Empty) }; - Assert.Throws(() => client.IntegrationAccountMaps.CreateOrUpdate(null, "IntegrationAccountName", "MapName", new IntegrationAccountMap())); - Assert.Throws(() => client.IntegrationAccountMaps.CreateOrUpdate(ResourceGroupName, null, "MapName", new IntegrationAccountMap())); - Assert.Throws(() => client.IntegrationAccountMaps.CreateOrUpdate(ResourceGroupName, "IntegrationAccountName", null, new IntegrationAccountMap())); - Assert.Throws(() => client.IntegrationAccountMaps.CreateOrUpdate(ResourceGroupName, "IntegrationAccountName", "MapName", null)); - Assert.Throws(() => client.IntegrationAccountMaps.CreateOrUpdate(ResourceGroupName, "IntegrationAccountName", "MapName", new IntegrationAccountMap())); + Assert.Throws(() => client.Maps.CreateOrUpdate(null, "IntegrationAccountName", "MapName", new IntegrationAccountMap())); + Assert.Throws(() => client.Maps.CreateOrUpdate(ResourceGroupName, null, "MapName", new IntegrationAccountMap())); + Assert.Throws(() => client.Maps.CreateOrUpdate(ResourceGroupName, "IntegrationAccountName", null, new IntegrationAccountMap())); + Assert.Throws(() => client.Maps.CreateOrUpdate(ResourceGroupName, "IntegrationAccountName", "MapName", null)); + Assert.Throws(() => client.Maps.CreateOrUpdate(ResourceGroupName, "IntegrationAccountName", "MapName", new IntegrationAccountMap())); } [Fact] @@ -139,7 +139,7 @@ public void IntegrationAccountMap_CreateOrUpdate_OK() Content = this.Map }; - var map = client.IntegrationAccountMaps.CreateOrUpdate(ResourceGroupName, "IntegrationAccountName", "MapName", new IntegrationAccountMap()); + var map = client.Maps.CreateOrUpdate(ResourceGroupName, "IntegrationAccountName", "MapName", new IntegrationAccountMap()); // Validates request. handler.Request.ValidateAuthorizationHeader(); @@ -161,7 +161,7 @@ public void IntegrationAccountMap_CreateOrUpdate_Created() Content = this.Map }; - var map = client.IntegrationAccountMaps.CreateOrUpdate(ResourceGroupName, "IntegrationAccountName", "MapName", new IntegrationAccountMap()); + var map = client.Maps.CreateOrUpdate(ResourceGroupName, "IntegrationAccountName", "MapName", new IntegrationAccountMap()); // Validates request. handler.Request.ValidateAuthorizationHeader(); @@ -182,10 +182,10 @@ public void IntegrationAccountMap_Delete_Exception() StatusCode = HttpStatusCode.NotFound }; - Assert.Throws(() => client.IntegrationAccountMaps.Delete(null, "IntegrationAccountName","MapName")); - Assert.Throws(() => client.IntegrationAccountMaps.Delete(ResourceGroupName, null, "MapName")); - Assert.Throws(() => client.IntegrationAccountMaps.Delete(ResourceGroupName, "IntegrationAccountName", null)); - Assert.Throws(() => client.IntegrationAccountMaps.Delete(ResourceGroupName, "IntegrationAccountName", "MapName")); + Assert.Throws(() => client.Maps.Delete(null, "IntegrationAccountName","MapName")); + Assert.Throws(() => client.Maps.Delete(ResourceGroupName, null, "MapName")); + Assert.Throws(() => client.Maps.Delete(ResourceGroupName, "IntegrationAccountName", null)); + Assert.Throws(() => client.Maps.Delete(ResourceGroupName, "IntegrationAccountName", "MapName")); } [Fact] @@ -199,7 +199,7 @@ public void IntegrationAccountMap_Delete_OK() StatusCode = HttpStatusCode.OK }; - client.IntegrationAccountMaps.Delete(ResourceGroupName, "IntegrationAccountName", "MapName"); + client.Maps.Delete(ResourceGroupName, "IntegrationAccountName", "MapName"); // Validates request. handler.Request.ValidateAuthorizationHeader(); @@ -217,7 +217,7 @@ public void IntegrationAccountMap_Delete_NoContent() StatusCode = HttpStatusCode.NoContent }; - client.IntegrationAccountMaps.Delete(ResourceGroupName, "IntegrationAccountName","MapName"); + client.Maps.Delete(ResourceGroupName, "IntegrationAccountName","MapName"); // Validates request. handler.Request.ValidateAuthorizationHeader(); @@ -236,10 +236,10 @@ public void IntegrationAccountMap_Get_Exception() Content = new StringContent(string.Empty) }; - Assert.Throws(() => client.IntegrationAccountMaps.Get(null, "IntegrationAccountName", "MapName")); - Assert.Throws(() => client.IntegrationAccountMaps.Get(ResourceGroupName, null, "MapName")); - Assert.Throws(() => client.IntegrationAccountMaps.Get(ResourceGroupName, "IntegrationAccountName", null)); - Assert.Throws(() => client.IntegrationAccountMaps.Get(ResourceGroupName, "IntegrationAccountName", "MapName")); + Assert.Throws(() => client.Maps.Get(null, "IntegrationAccountName", "MapName")); + Assert.Throws(() => client.Maps.Get(ResourceGroupName, null, "MapName")); + Assert.Throws(() => client.Maps.Get(ResourceGroupName, "IntegrationAccountName", null)); + Assert.Throws(() => client.Maps.Get(ResourceGroupName, "IntegrationAccountName", "MapName")); } [Fact] @@ -254,7 +254,7 @@ public void IntegrationAccountMap_Get_OK() Content = this.Map }; - var result = client.IntegrationAccountMaps.Get(ResourceGroupName, "IntegrationAccountName", "MapName"); + var result = client.Maps.Get(ResourceGroupName, "IntegrationAccountName", "MapName"); // Validates request. handler.Request.ValidateAuthorizationHeader(); diff --git a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountPartnerInMemoryTests.cs b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountPartnerInMemoryTests.cs index 528e1b520a2c..7f6eb82326df 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountPartnerInMemoryTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountPartnerInMemoryTests.cs @@ -44,8 +44,8 @@ public void IntegrationAccountPartner_ListByResourceGroup_Exception() }; Assert.Throws( - () => client.IntegrationAccountPartners.List(null, "IntegrationAccount")); - Assert.Throws(() => client.IntegrationAccountMaps.List(ResourceGroupName, "IntegrationAccount")); + () => client.Partners.ListByIntegrationAccounts(null, "IntegrationAccount")); + Assert.Throws(() => client.Maps.ListByIntegrationAccounts(ResourceGroupName, "IntegrationAccount")); } [Fact] @@ -60,7 +60,7 @@ public void IntegrationAccountPartner_ListByResourceGroup_Success() Content = this.PartnerList }; - var result = client.IntegrationAccountPartners.List(ResourceGroupName, "IntegrationAccount"); + var result = client.Partners.ListByIntegrationAccounts(ResourceGroupName, "IntegrationAccount"); // Validates request. handler.Request.ValidateAuthorizationHeader(); @@ -82,8 +82,8 @@ public void IntegrationAccountPartner_ListByResourceGroupNext_Exception() Content = new StringContent(string.Empty) }; - Assert.Throws(() => client.IntegrationAccountPartners.ListNext(null)); - Assert.Throws(() => client.IntegrationAccountPartners.ListNext(Constants.NextPageLink)); + Assert.Throws(() => client.Partners.ListByIntegrationAccountsNext(null)); + Assert.Throws(() => client.Partners.ListByIntegrationAccountsNext(Constants.NextPageLink)); } [Fact] @@ -98,7 +98,7 @@ public void IntegrationAccountPartner_ListByResourceGroupNext_Success() Content = this.PartnerList }; - var result = client.IntegrationAccountPartners.ListNext(Constants.NextPageLink); + var result = client.Partners.ListByIntegrationAccountsNext(Constants.NextPageLink); // Validates request. handler.Request.ValidateAuthorizationHeader(); @@ -117,14 +117,14 @@ public void IntegrationAccountPartner_CreateOrUpdate_Exception() handler.Response = new HttpResponseMessage { StatusCode = HttpStatusCode.InternalServerError, - Content = new StringContent(string.Empty) + Content = new StringContent("Test") }; - Assert.Throws(() => client.IntegrationAccountPartners.CreateOrUpdate(null, "IntegrationAccountName", "PartnerName", new IntegrationAccountPartner())); - Assert.Throws(() => client.IntegrationAccountPartners.CreateOrUpdate(ResourceGroupName, null, "PartnerName", new IntegrationAccountPartner())); - Assert.Throws(() => client.IntegrationAccountPartners.CreateOrUpdate(ResourceGroupName, "IntegrationAccountName", null, new IntegrationAccountPartner())); - Assert.Throws(() => client.IntegrationAccountPartners.CreateOrUpdate(ResourceGroupName, "IntegrationAccountName", "PartnerName", null)); - Assert.Throws(() => client.IntegrationAccountPartners.CreateOrUpdate(ResourceGroupName, "IntegrationAccountName", "PartnerName", new IntegrationAccountPartner())); + Assert.Throws(() => client.Partners.CreateOrUpdate(null, "IntegrationAccountName", "PartnerName", new IntegrationAccountPartner())); + Assert.Throws(() => client.Partners.CreateOrUpdate(ResourceGroupName, null, "PartnerName", new IntegrationAccountPartner())); + Assert.Throws(() => client.Partners.CreateOrUpdate(ResourceGroupName, "IntegrationAccountName", null, new IntegrationAccountPartner())); + Assert.Throws(() => client.Partners.CreateOrUpdate(ResourceGroupName, "IntegrationAccountName", "PartnerName", null)); + Assert.Throws(() => client.Partners.CreateOrUpdate(ResourceGroupName, "IntegrationAccountName", "PartnerName", new IntegrationAccountPartner(PartnerType.B2B, new PartnerContent()))); } [Fact] @@ -139,7 +139,7 @@ public void IntegrationAccountPartner_CreateOrUpdate_OK() Content = this.Partner }; - var result = client.IntegrationAccountPartners.CreateOrUpdate(ResourceGroupName, "IntegrationAccountName", "PartnerName", new IntegrationAccountPartner()); + var result = client.Partners.CreateOrUpdate(ResourceGroupName, "IntegrationAccountName", "PartnerName", new IntegrationAccountPartner(PartnerType.B2B, new PartnerContent())); // Validates request. handler.Request.ValidateAuthorizationHeader(); @@ -161,7 +161,7 @@ public void IntegrationAccountPartner_CreateOrUpdate_Created() Content = this.Partner }; - var result = client.IntegrationAccountPartners.CreateOrUpdate(ResourceGroupName, "IntegrationAccountName", "PartnerName", new IntegrationAccountPartner()); + var result = client.Partners.CreateOrUpdate(ResourceGroupName, "IntegrationAccountName", "PartnerName", new IntegrationAccountPartner(PartnerType.B2B, new PartnerContent())); // Validates request. handler.Request.ValidateAuthorizationHeader(); @@ -182,10 +182,10 @@ public void IntegrationAccountPartner_Delete_Exception() StatusCode = HttpStatusCode.NotFound }; - Assert.Throws(() => client.IntegrationAccountPartners.Delete(null, "IntegrationAccountName", "PartnerName")); - Assert.Throws(() => client.IntegrationAccountPartners.Delete(ResourceGroupName, null, "PartnerName")); - Assert.Throws(() => client.IntegrationAccountPartners.Delete(ResourceGroupName, "IntegrationAccountName", null)); - Assert.Throws(() => client.IntegrationAccountPartners.Delete(ResourceGroupName, "IntegrationAccountName", "PartnerName")); + Assert.Throws(() => client.Partners.Delete(null, "IntegrationAccountName", "PartnerName")); + Assert.Throws(() => client.Partners.Delete(ResourceGroupName, null, "PartnerName")); + Assert.Throws(() => client.Partners.Delete(ResourceGroupName, "IntegrationAccountName", null)); + Assert.Throws(() => client.Partners.Delete(ResourceGroupName, "IntegrationAccountName", "PartnerName")); } [Fact] @@ -199,7 +199,7 @@ public void IntegrationAccountPartner_Delete_OK() StatusCode = HttpStatusCode.OK }; - client.IntegrationAccountPartners.Delete(ResourceGroupName, "IntegrationAccountName", "PartnerName"); + client.Partners.Delete(ResourceGroupName, "IntegrationAccountName", "PartnerName"); // Validates request. handler.Request.ValidateAuthorizationHeader(); @@ -217,7 +217,7 @@ public void IntegrationAccountPartner_Delete_NoContent() StatusCode = HttpStatusCode.NoContent }; - client.IntegrationAccountPartners.Delete(ResourceGroupName, "IntegrationAccountName", "PartnerName"); + client.Partners.Delete(ResourceGroupName, "IntegrationAccountName", "PartnerName"); // Validates request. handler.Request.ValidateAuthorizationHeader(); @@ -236,10 +236,10 @@ public void IntegrationAccountPartner_Get_Exception() Content = new StringContent(string.Empty) }; - Assert.Throws(() => client.IntegrationAccountPartners.Get(null, "IntegrationAccountName", "PartnerName")); - Assert.Throws(() => client.IntegrationAccountPartners.Get(ResourceGroupName, null, "PartnerName")); - Assert.Throws(() => client.IntegrationAccountPartners.Get(ResourceGroupName, "IntegrationAccountName", null)); - Assert.Throws(() => client.IntegrationAccountPartners.Get(ResourceGroupName, "IntegrationAccountName", "PartnerName")); + Assert.Throws(() => client.Partners.Get(null, "IntegrationAccountName", "PartnerName")); + Assert.Throws(() => client.Partners.Get(ResourceGroupName, null, "PartnerName")); + Assert.Throws(() => client.Partners.Get(ResourceGroupName, "IntegrationAccountName", null)); + Assert.Throws(() => client.Partners.Get(ResourceGroupName, "IntegrationAccountName", "PartnerName")); } [Fact] @@ -254,7 +254,7 @@ public void IntegrationAccountPartner_Get_OK() Content = this.Partner }; - var result = client.IntegrationAccountPartners.Get(ResourceGroupName, "IntegrationAccountName", "PartnerName"); + var result = client.Partners.Get(ResourceGroupName, "IntegrationAccountName", "PartnerName"); // Validates request. handler.Request.ValidateAuthorizationHeader(); diff --git a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountSchemaInMemoryTests.cs b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountSchemaInMemoryTests.cs index 9bcc1a850146..d5b6838a732e 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountSchemaInMemoryTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/IntegrationAccountSchemaInMemoryTests.cs @@ -44,8 +44,8 @@ public void IntegrationAccountSchema_ListByResourceGroup_Exception() }; Assert.Throws( - () => client.IntegrationAccountSchemas.List(null, "IntegrationAccount")); - Assert.Throws(() => client.IntegrationAccountSchemas.List(ResourceGroupName,"IntegrationAccount")); + () => client.Schemas.ListByIntegrationAccounts(null, "IntegrationAccount")); + Assert.Throws(() => client.Schemas.ListByIntegrationAccounts(ResourceGroupName,"IntegrationAccount")); } [Fact] @@ -60,7 +60,7 @@ public void IntegrationAccountSchema_ListByResourceGroup_Success() Content = this.SchemaList }; - var result = client.IntegrationAccountSchemas.List(ResourceGroupName, "IntegrationAccount"); + var result = client.Schemas.ListByIntegrationAccounts(ResourceGroupName, "IntegrationAccount"); // Validates request. handler.Request.ValidateAuthorizationHeader(); @@ -82,8 +82,8 @@ public void IntegrationAccountSchema_ListByResourceGroupNext_Exception() Content = new StringContent(string.Empty) }; - Assert.Throws(() => client.IntegrationAccountSchemas.ListNext(null)); - Assert.Throws(() => client.IntegrationAccountSchemas.ListNext(Constants.NextPageLink)); + Assert.Throws(() => client.Schemas.ListByIntegrationAccountsNext(null)); + Assert.Throws(() => client.Schemas.ListByIntegrationAccountsNext(Constants.NextPageLink)); } [Fact] @@ -98,7 +98,7 @@ public void IntegrationAccountSchema_ListByResourceGroupNext_Success() Content = this.SchemaList }; - var result = client.IntegrationAccountSchemas.ListNext(Constants.NextPageLink); + var result = client.Schemas.ListByIntegrationAccountsNext(Constants.NextPageLink); // Validates request. handler.Request.ValidateAuthorizationHeader(); @@ -120,11 +120,11 @@ public void IntegrationAccountSchema_CreateOrUpdate_Exception() Content = new StringContent(string.Empty) }; - Assert.Throws(() => client.IntegrationAccountSchemas.CreateOrUpdate(null, "IntegrationAccountName", "SchemaName", new IntegrationAccountSchema())); - Assert.Throws(() => client.IntegrationAccountSchemas.CreateOrUpdate(ResourceGroupName, null, "SchemaName", new IntegrationAccountSchema())); - Assert.Throws(() => client.IntegrationAccountSchemas.CreateOrUpdate(ResourceGroupName, "IntegrationAccountName", null, new IntegrationAccountSchema())); - Assert.Throws(() => client.IntegrationAccountSchemas.CreateOrUpdate(ResourceGroupName, "IntegrationAccountName", "SchemaName", null)); - Assert.Throws(() => client.IntegrationAccountSchemas.CreateOrUpdate(ResourceGroupName, "IntegrationAccountName", "SchemaName", new IntegrationAccountSchema())); + Assert.Throws(() => client.Schemas.CreateOrUpdate(null, "IntegrationAccountName", "SchemaName", new IntegrationAccountSchema())); + Assert.Throws(() => client.Schemas.CreateOrUpdate(ResourceGroupName, null, "SchemaName", new IntegrationAccountSchema())); + Assert.Throws(() => client.Schemas.CreateOrUpdate(ResourceGroupName, "IntegrationAccountName", null, new IntegrationAccountSchema())); + Assert.Throws(() => client.Schemas.CreateOrUpdate(ResourceGroupName, "IntegrationAccountName", "SchemaName", null)); + Assert.Throws(() => client.Schemas.CreateOrUpdate(ResourceGroupName, "IntegrationAccountName", "SchemaName", new IntegrationAccountSchema())); } [Fact] @@ -139,7 +139,7 @@ public void IntegrationAccountSchema_CreateOrUpdate_OK() Content = this.Schema }; - var schema = client.IntegrationAccountSchemas.CreateOrUpdate(ResourceGroupName, "IntegrationAccountName", "SchemaName", new IntegrationAccountSchema()); + var schema = client.Schemas.CreateOrUpdate(ResourceGroupName, "IntegrationAccountName", "SchemaName", new IntegrationAccountSchema()); // Validates request. handler.Request.ValidateAuthorizationHeader(); @@ -161,7 +161,7 @@ public void IntegrationAccountSchema_CreateOrUpdate_Created() Content = this.Schema }; - var schema = client.IntegrationAccountSchemas.CreateOrUpdate(ResourceGroupName, "IntegrationAccountName", "SchemaName", new IntegrationAccountSchema()); + var schema = client.Schemas.CreateOrUpdate(ResourceGroupName, "IntegrationAccountName", "SchemaName", new IntegrationAccountSchema()); // Validates request. handler.Request.ValidateAuthorizationHeader(); @@ -182,10 +182,10 @@ public void IntegrationAccountSchema_Delete_Exception() StatusCode = HttpStatusCode.NotFound }; - Assert.Throws(() => client.IntegrationAccountSchemas.Delete(null, "IntegrationAccountName","SchemaName")); - Assert.Throws(() => client.IntegrationAccountSchemas.Delete(ResourceGroupName, null, "SchemaName")); - Assert.Throws(() => client.IntegrationAccountSchemas.Delete(ResourceGroupName, "IntegrationAccountName", null)); - Assert.Throws(() => client.IntegrationAccountSchemas.Delete(ResourceGroupName, "IntegrationAccountName","SchemaName")); + Assert.Throws(() => client.Schemas.Delete(null, "IntegrationAccountName","SchemaName")); + Assert.Throws(() => client.Schemas.Delete(ResourceGroupName, null, "SchemaName")); + Assert.Throws(() => client.Schemas.Delete(ResourceGroupName, "IntegrationAccountName", null)); + Assert.Throws(() => client.Schemas.Delete(ResourceGroupName, "IntegrationAccountName","SchemaName")); } [Fact] @@ -199,7 +199,7 @@ public void IntegrationAccountSchema_Delete_OK() StatusCode = HttpStatusCode.OK }; - client.IntegrationAccountSchemas.Delete(ResourceGroupName, "IntegrationAccountName", "SchemaName"); + client.Schemas.Delete(ResourceGroupName, "IntegrationAccountName", "SchemaName"); // Validates request. handler.Request.ValidateAuthorizationHeader(); @@ -217,7 +217,7 @@ public void IntegrationAccountSchema_Delete_NoContent() StatusCode = HttpStatusCode.NoContent }; - client.IntegrationAccountSchemas.Delete(ResourceGroupName, "IntegrationAccountName","SchemaName"); + client.Schemas.Delete(ResourceGroupName, "IntegrationAccountName","SchemaName"); // Validates request. handler.Request.ValidateAuthorizationHeader(); @@ -236,10 +236,10 @@ public void IntegrationAccountSchema_Get_Exception() Content = new StringContent(string.Empty) }; - Assert.Throws(() => client.IntegrationAccountSchemas.Get(null, "IntegrationAccountName", "SchemaName")); - Assert.Throws(() => client.IntegrationAccountSchemas.Get(ResourceGroupName, null, "SchemaName")); - Assert.Throws(() => client.IntegrationAccountSchemas.Get(ResourceGroupName, "IntegrationAccountName", null)); - Assert.Throws(() => client.IntegrationAccountSchemas.Get(ResourceGroupName, "IntegrationAccountName", "SchemaName")); + Assert.Throws(() => client.Schemas.Get(null, "IntegrationAccountName", "SchemaName")); + Assert.Throws(() => client.Schemas.Get(ResourceGroupName, null, "SchemaName")); + Assert.Throws(() => client.Schemas.Get(ResourceGroupName, "IntegrationAccountName", null)); + Assert.Throws(() => client.Schemas.Get(ResourceGroupName, "IntegrationAccountName", "SchemaName")); } [Fact] @@ -254,7 +254,7 @@ public void IntegrationAccountSchema_Get_OK() Content = this.Schema }; - var schema = client.IntegrationAccountSchemas.Get(ResourceGroupName, "IntegrationAccountName", "SchemaName"); + var schema = client.Schemas.Get(ResourceGroupName, "IntegrationAccountName", "SchemaName"); // Validates request. handler.Request.ValidateAuthorizationHeader(); diff --git a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/Workflows.InMemoryTests.cs b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/Workflows.InMemoryTests.cs index 84fcc3f6ff15..5b405b44c36a 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/Workflows.InMemoryTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/InMemoryTests/Workflows.InMemoryTests.cs @@ -642,11 +642,11 @@ public void Workflows_GenerateUpgradedDefinition_Exception() Content = new StringContent(string.Empty) }; - Assert.Throws(() => client.Workflows.GenerateUpgradedDefinition(null, "wfName", "2016-04-01-preview")); - Assert.Throws(() => client.Workflows.GenerateUpgradedDefinition("rgName", null, "2016-04-01-preview")); + Assert.Throws(() => client.Workflows.GenerateUpgradedDefinition(null, "wfName", new GenerateUpgradedDefinitionParameters("2016-04-01-preview"))); + Assert.Throws(() => client.Workflows.GenerateUpgradedDefinition("rgName", null, new GenerateUpgradedDefinitionParameters("2016-04-01-preview"))); // The Assert is disabled due to the following bug: https://github.com/Azure/autorest/issues/1288. // Assert.Throws(() => client.Workflows.GenerateUpgradedDefinition("rgName", "wfName", null)); - Assert.Throws(() => client.Workflows.GenerateUpgradedDefinition("rgName", "wfName", "2016-04-01-preview")); + Assert.Throws(() => client.Workflows.GenerateUpgradedDefinition("rgName", "wfName", new GenerateUpgradedDefinitionParameters("2016-04-01-preview"))); } [Fact] @@ -661,7 +661,7 @@ public void Workflows_GenerateUpgradedDefinition_OK() Content = this.Workflow }; - client.Workflows.GenerateUpgradedDefinition("rgName", "wfName", "2016-04-01-preview"); + client.Workflows.GenerateUpgradedDefinition("rgName", "wfName", new GenerateUpgradedDefinitionParameters("2016-04-01-preview")); // Validates requests. handler.Request.ValidateAuthorizationHeader(); diff --git a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/Base.ScenarioTests.cs b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/Base.ScenarioTests.cs index 7a9b11045676..3b175dc6f2a6 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/Base.ScenarioTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/Base.ScenarioTests.cs @@ -36,10 +36,7 @@ protected string ServicePlanResourceId protected Sku Sku => new Sku { Name = SkuName.Standard, - Plan = new ResourceReference - { - Id = ServicePlanResourceId - } + Plan = new ResourceReference(id: ServicePlanResourceId) }; protected LogicManagementClient GetIntegrationAccountClient(MockContext context) @@ -51,7 +48,7 @@ protected LogicManagementClient GetIntegrationAccountClient(MockContext context) /// /// Creates an Integartion account. /// - /// Integration AccountName + /// Integration AccountName /// IntegrationAccount instance protected IntegrationAccount CreateIntegrationAccountInstance(string integrationAccountName) { @@ -59,10 +56,9 @@ protected IntegrationAccount CreateIntegrationAccountInstance(string integration { Sku = new IntegrationAccountSku() { - Name = SkuName.Standard + Name = IntegrationAccountSkuName.Standard }, Properties = new JObject(), - Name = integrationAccountName, Location = Constants.DefaultLocation }; return createdAccount; diff --git a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccount.ScenarioTests.cs b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccount.ScenarioTests.cs index 2515d10554d5..14b801ef4277 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccount.ScenarioTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccount.ScenarioTests.cs @@ -80,10 +80,9 @@ public void CreateAndUpdateIntegrationAccount() Location = Constants.DefaultLocation, Sku = new IntegrationAccountSku() { - Name = SkuName.Free + Name = IntegrationAccountSkuName.Standard }, - Properties = new JObject(), - Name = integrationAccountName + Properties = new JObject() }); Assert.NotNull(updatedAccount); @@ -235,16 +234,31 @@ public void ListIntegrationAccountCallbackUrl() CreateIntegrationAccountInstance(integrationAccountName)); // Get the IntegrationAccount and verify the content - var callbackUrl1 = client.IntegrationAccounts.ListCallbackUrl(Constants.DefaultResourceGroup, - integrationAccountName); + var callbackUrl1 = client.IntegrationAccounts.GetCallbackUrl(Constants.DefaultResourceGroup, + integrationAccountName, new GetCallbackUrlParameters()); Assert.NotNull(callbackUrl1); - var callbackUrl2 = client.IntegrationAccounts.ListCallbackUrl(Constants.DefaultResourceGroup, - integrationAccountName); + var callbackUrl2 = client.IntegrationAccounts.GetCallbackUrl(Constants.DefaultResourceGroup, + integrationAccountName, new GetCallbackUrlParameters()); Assert.NotNull(callbackUrl2); + var callbackUrl3 = client.IntegrationAccounts.GetCallbackUrl(Constants.DefaultResourceGroup, + integrationAccountName, new GetCallbackUrlParameters(DateTime.Today.AddDays(10),KeyType.Primary)); + + Assert.NotNull(callbackUrl3); + + var callbackUrl4= client.IntegrationAccounts.GetCallbackUrl(Constants.DefaultResourceGroup, + integrationAccountName, new GetCallbackUrlParameters(keyType: KeyType.Primary)); + + Assert.NotNull(callbackUrl4); + + var callbackUrl5 = client.IntegrationAccounts.GetCallbackUrl(Constants.DefaultResourceGroup, + integrationAccountName, new GetCallbackUrlParameters(notAfter: DateTime.Today.AddDays(10))); + + Assert.NotNull(callbackUrl5); + // Delete the IntegrationAccount client.IntegrationAccounts.Delete(Constants.DefaultResourceGroup, integrationAccountName); diff --git a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountAgreements.ScenarioTests.cs b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountAgreements.ScenarioTests.cs index 542d08fd3261..f3fdda27d286 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountAgreements.ScenarioTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountAgreements.ScenarioTests.cs @@ -27,6 +27,7 @@ public class IntegrationAccountAgreementScenarioTests : BaseScenarioTests /// /// Tests the create and delete operations of the integration account agreement. + /// https://msazure.visualstudio.com/One/_workitems/edit/587947 /// [Fact] public void CreateAndDeleteIntegrationAccountAgreement() @@ -42,13 +43,22 @@ public void CreateAndDeleteIntegrationAccountAgreement() integrationAccountName, CreateIntegrationAccountInstance(integrationAccountName)); - var agreement = client.IntegrationAccountAgreements.CreateOrUpdate(Constants.DefaultResourceGroup, - integrationAccountName, integrationAccountAgreementName, - CreateIntegrationAccountAgreementInstance(integrationAccountAgreementName, integrationAccountName)); + var instance = CreateIntegrationAccountAgreementInstance(integrationAccountAgreementName, integrationAccountName,AgreementType.AS2); + instance.Content.AS2.SendAgreement.ProtocolSettings.MdnSettings.MicHashingAlgorithm = HashingAlgorithm.MD5; + instance.Content.AS2.ReceiveAgreement.ProtocolSettings.MdnSettings.MicHashingAlgorithm = HashingAlgorithm.MD5; - Assert.Equal(agreement.Name, integrationAccountAgreementName); + var agreement = client.Agreements.CreateOrUpdate(Constants.DefaultResourceGroup, + integrationAccountName, integrationAccountAgreementName, instance); + + var getAgreement = client.Agreements.Get(Constants.DefaultResourceGroup, + integrationAccountName, + integrationAccountAgreementName); + + Assert.Equal(getAgreement.Name, integrationAccountAgreementName); + Assert.Equal(getAgreement.Content.AS2.ReceiveAgreement.ProtocolSettings.MdnSettings.MicHashingAlgorithm, HashingAlgorithm.MD5); + Assert.Equal(getAgreement.Content.AS2.SendAgreement.ProtocolSettings.MdnSettings.MicHashingAlgorithm, HashingAlgorithm.MD5); - client.IntegrationAccountAgreements.Delete(Constants.DefaultResourceGroup, integrationAccountName, + client.Agreements.Delete(Constants.DefaultResourceGroup, integrationAccountName, integrationAccountAgreementName); client.IntegrationAccounts.Delete(Constants.DefaultResourceGroup, integrationAccountName); } @@ -73,7 +83,7 @@ public void CreateAndUpdateIntegrationAccountAgreement() integrationAccountName, CreateIntegrationAccountInstance(integrationAccountName)); - var agreement = client.IntegrationAccountAgreements.CreateOrUpdate(Constants.DefaultResourceGroup, + var agreement = client.Agreements.CreateOrUpdate(Constants.DefaultResourceGroup, integrationAccountName, integrationAccountAgreementName, CreateIntegrationAccountAgreementInstance(integrationAccountAgreementName, integrationAccountName, AgreementType.AS2)); @@ -81,7 +91,7 @@ public void CreateAndUpdateIntegrationAccountAgreement() var updateAgreement = CreateIntegrationAccountAgreementInstance(integrationAccountAgreementName, integrationAccountName); - var updatedAgreement = client.IntegrationAccountAgreements.CreateOrUpdate( + var updatedAgreement = client.Agreements.CreateOrUpdate( Constants.DefaultResourceGroup, integrationAccountName, integrationAccountAgreementName, updateAgreement); @@ -94,6 +104,7 @@ public void CreateAndUpdateIntegrationAccountAgreement() /// /// Tests the create and get operations of the integration account agreement. + /// https://msazure.visualstudio.com/One/_workitems/edit/587947 /// [Fact] public void CreateAndGetIntegrationAccountAgreement() @@ -109,18 +120,73 @@ public void CreateAndGetIntegrationAccountAgreement() var createdAccount = client.IntegrationAccounts.CreateOrUpdate(Constants.DefaultResourceGroup, integrationAccountName, CreateIntegrationAccountInstance(integrationAccountName)); - var partner = client.IntegrationAccountAgreements.CreateOrUpdate(Constants.DefaultResourceGroup, - integrationAccountName, integrationAccountAgreementName, - CreateIntegrationAccountAgreementInstance(integrationAccountAgreementName, integrationAccountName, - AgreementType.Edifact)); + var instance = CreateIntegrationAccountAgreementInstance(integrationAccountAgreementName, integrationAccountName, + AgreementType.AS2); - Assert.Equal(partner.Name, integrationAccountAgreementName); + instance.Content.AS2.ReceiveAgreement.ProtocolSettings.MdnSettings.MicHashingAlgorithm = HashingAlgorithm.SHA1; + instance.Content.AS2.SendAgreement.ProtocolSettings.MdnSettings.MicHashingAlgorithm = HashingAlgorithm.SHA1; - var getPartner = client.IntegrationAccountAgreements.Get(Constants.DefaultResourceGroup, + var agreement = client.Agreements.CreateOrUpdate(Constants.DefaultResourceGroup, + integrationAccountName, integrationAccountAgreementName, instance); + + Assert.Equal(agreement.Name, integrationAccountAgreementName); + + var getAgreement = client.Agreements.Get(Constants.DefaultResourceGroup, integrationAccountName, integrationAccountAgreementName); - Assert.Equal(partner.Name, getPartner.Name); + Assert.Equal(agreement.Name, getAgreement.Name); + Assert.Equal(agreement.Content.AS2.ReceiveAgreement.ProtocolSettings.MdnSettings.MicHashingAlgorithm, HashingAlgorithm.SHA1); + Assert.Equal(agreement.Content.AS2.SendAgreement.ProtocolSettings.MdnSettings.MicHashingAlgorithm, HashingAlgorithm.SHA1); + + + client.IntegrationAccounts.Delete(Constants.DefaultResourceGroup, integrationAccountName); + } + } + + /// + /// Tests the create operations of the integration account agreement with envelope override settings for X12. + /// https://msazure.visualstudio.com/One/_workitems/edit/700874 + /// + [Fact] + public void CreateIntegrationAccountAgreementWithEnvelopeOverride() + { + using ( + MockContext context = MockContext.Start(TestClass)) + { + var integrationAccountName = TestUtilities.GenerateName(Constants.IntegrationAccountPrefix); + + var integrationX12AccountAgreementName = + TestUtilities.GenerateName(Constants.IntegrationAccountAgreementPrefix); + + var client = context.GetServiceClient(); + + var createdAccount = client.IntegrationAccounts.CreateOrUpdate(Constants.DefaultResourceGroup, + integrationAccountName, CreateIntegrationAccountInstance(integrationAccountName)); + + var instance = CreateIntegrationAccountAgreementInstanceFromFile(integrationX12AccountAgreementName, + integrationAccountName, AgreementType.X12); + instance.Content.X12.ReceiveAgreement.ProtocolSettings.EnvelopeOverrides = new List(); + X12EnvelopeOverride overrideSetting = new X12EnvelopeOverride(); + overrideSetting.HeaderVersion = "1"; + overrideSetting.MessageId = "100"; + overrideSetting.ProtocolVersion = "1"; + overrideSetting.ReceiverApplicationId = "93494"; + overrideSetting.ResponsibleAgencyCode = "X"; + overrideSetting.SenderApplicationId = "89459"; + overrideSetting.TargetNamespace = "test"; + overrideSetting.FunctionalIdentifierCode = "x"; + overrideSetting.DateFormat = X12DateFormat.CCYYMMDD; + overrideSetting.TimeFormat = X12TimeFormat.HHMM; + instance.Content.X12.ReceiveAgreement.ProtocolSettings.EnvelopeOverrides.Add(overrideSetting); + + var x12Agreement = client.Agreements.CreateOrUpdate(Constants.DefaultResourceGroup, + integrationAccountName, integrationX12AccountAgreementName, instance ); + + var fetchedAgreement = client.Agreements.Get(Constants.DefaultResourceGroup, + integrationAccountName, integrationX12AccountAgreementName); + + Assert.Equal(fetchedAgreement.Content.X12.ReceiveAgreement.ProtocolSettings.EnvelopeOverrides[0].ResponsibleAgencyCode,"X"); client.IntegrationAccounts.Delete(Constants.DefaultResourceGroup, integrationAccountName); } @@ -150,24 +216,24 @@ public void ListIntegrationAccountAgreements() integrationAccountName, CreateIntegrationAccountInstance(integrationAccountName)); - client.IntegrationAccountAgreements.CreateOrUpdate( + client.Agreements.CreateOrUpdate( Constants.DefaultResourceGroup, integrationAccountName, integrationAccountAgreementName1, CreateIntegrationAccountAgreementInstance(integrationAccountAgreementName1, integrationAccountName, AgreementType.AS2)); - client.IntegrationAccountAgreements.CreateOrUpdate( + client.Agreements.CreateOrUpdate( Constants.DefaultResourceGroup, integrationAccountName, integrationAccountAgreementName2, CreateIntegrationAccountAgreementInstance(integrationAccountAgreementName2, integrationAccountName, AgreementType.Edifact)); - client.IntegrationAccountAgreements.CreateOrUpdate( + client.Agreements.CreateOrUpdate( Constants.DefaultResourceGroup, integrationAccountName, integrationAccountAgreementName3, CreateIntegrationAccountAgreementInstance(integrationAccountAgreementName3, integrationAccountName)); - var agreements = client.IntegrationAccountAgreements.List(Constants.DefaultResourceGroup, + var agreements = client.Agreements.ListByIntegrationAccounts(Constants.DefaultResourceGroup, integrationAccountName); Assert.True(agreements.Count() == 3); @@ -194,7 +260,7 @@ public void DeleteIntegrationAccountAgreementOnAccountDeletion() var createdAccount = client.IntegrationAccounts.CreateOrUpdate(Constants.DefaultResourceGroup, integrationAccountName, CreateIntegrationAccountInstance(integrationAccountName)); - var agreement = client.IntegrationAccountAgreements.CreateOrUpdate(Constants.DefaultResourceGroup, + var agreement = client.Agreements.CreateOrUpdate(Constants.DefaultResourceGroup, integrationAccountName, integrationAccountAgreementName, CreateIntegrationAccountAgreementInstance(integrationAccountAgreementName, integrationAccountName)); @@ -203,7 +269,7 @@ public void DeleteIntegrationAccountAgreementOnAccountDeletion() client.IntegrationAccounts.Delete(Constants.DefaultResourceGroup, integrationAccountName); Assert.Throws( () => - client.IntegrationAccountAgreements.Get(Constants.DefaultResourceGroup, integrationAccountName, + client.Agreements.Get(Constants.DefaultResourceGroup, integrationAccountName, integrationAccountAgreementName)); } } @@ -231,18 +297,18 @@ public void CreateIntegrationAccountAgreementUsingFile() var createdAccount = client.IntegrationAccounts.CreateOrUpdate(Constants.DefaultResourceGroup, integrationAccountName, CreateIntegrationAccountInstance(integrationAccountName)); - var as2Agreement = client.IntegrationAccountAgreements.CreateOrUpdate(Constants.DefaultResourceGroup, + var as2Agreement = client.Agreements.CreateOrUpdate(Constants.DefaultResourceGroup, integrationAccountName, integrationAs2AccountAgreementName, CreateIntegrationAccountAgreementInstanceFromFile(integrationAs2AccountAgreementName, integrationAccountName, AgreementType.AS2)); - var edifactAgreement = client.IntegrationAccountAgreements.CreateOrUpdate( + var edifactAgreement = client.Agreements.CreateOrUpdate( Constants.DefaultResourceGroup, integrationAccountName, integrationEdifactAccountAgreementName, CreateIntegrationAccountAgreementInstanceFromFile(integrationEdifactAccountAgreementName, integrationAccountName, AgreementType.Edifact)); - var x12Agreement = client.IntegrationAccountAgreements.CreateOrUpdate(Constants.DefaultResourceGroup, + var x12Agreement = client.Agreements.CreateOrUpdate(Constants.DefaultResourceGroup, integrationAccountName, integrationX12AccountAgreementName, CreateIntegrationAccountAgreementInstanceFromFile(integrationX12AccountAgreementName, integrationAccountName, AgreementType.X12)); @@ -255,13 +321,13 @@ public void CreateIntegrationAccountAgreementUsingFile() } } - #region Private + #region Private /// /// Creates an Integration account agreement /// /// Name of the integration account agreement - /// Name of the integration account + /// Name of the integration account /// Agreement instance private IntegrationAccountAgreement CreateIntegrationAccountAgreementInstance( string integrationAccountAgreementName, @@ -288,7 +354,6 @@ private IntegrationAccountAgreement CreateIntegrationAccountAgreementInstance( var agreement = new IntegrationAccountAgreement { Location = Constants.DefaultLocation, - Name = integrationAccountAgreementName, Tags = tags, Metadata = integrationAccountAgreementName, AgreementType = agreementType, @@ -339,7 +404,6 @@ private IntegrationAccountAgreement CreateIntegrationAccountAgreementInstanceFro var agreement = new IntegrationAccountAgreement { Location = Constants.DefaultLocation, - Name = integrationAccountAgreementName, Tags = tags, Metadata = integrationAccountAgreementName, AgreementType = agreementType, @@ -649,12 +713,10 @@ private AgreementContent EDIFACTAgreementContent ProcessingPriorityCode = "0", ReceiverInternalIdentification = "0", ReceiverInternalSubIdentification = "0", - ReceiverReverseRoutingAddress = "0", RecipientReferencePasswordQualifier = "ZZ", RecipientReferencePasswordValue = "AA", SenderInternalIdentification = "AA", - SenderInternalSubIdentification = "AA", - SenderReverseRoutingAddress = "ZZ" + SenderInternalSubIdentification = "AA" }, MessageFilter = new EdifactMessageFilter { @@ -662,17 +724,16 @@ private AgreementContent EDIFACTAgreementContent }, FramingSettings = new EdifactFramingSettings { - ComponentSeparator = 0, - DataElementSeparator = 0, - SegmentTerminator = 0, - SegmentTerminatorSuffix = SegmentTerminatorSuffix.CR, - CharacterSet = EdifactCharacterSet.KECA, - CharacterEncoding = "0", + DataElementSeparator = 53, + ComponentSeparator = 58, + SegmentTerminator = 39, + CharacterSet = EdifactCharacterSet.UNOC, + SegmentTerminatorSuffix = SegmentTerminatorSuffix.None, + ProtocolVersion = 4, DecimalPointIndicator = EdifactDecimalIndicator.Comma, - ProtocolVersion = 0, - ReleaseIndicator = 0, - RepetitionSeparator = 0, - ServiceCodeListDirectoryVersion = "0" + ReleaseIndicator = 63, + CharacterEncoding = "UTF", + RepetitionSeparator = 42 }, ProcessingSettings = new EdifactProcessingSettings { @@ -765,12 +826,10 @@ private AgreementContent EDIFACTAgreementContent ProcessingPriorityCode = "0", ReceiverInternalIdentification = "0", ReceiverInternalSubIdentification = "0", - ReceiverReverseRoutingAddress = "0", RecipientReferencePasswordQualifier = "ZZ", RecipientReferencePasswordValue = "AA", SenderInternalIdentification = "AA", - SenderInternalSubIdentification = "AA", - SenderReverseRoutingAddress = "XX" + SenderInternalSubIdentification = "AA" }, MessageFilter = new EdifactMessageFilter { @@ -778,17 +837,16 @@ private AgreementContent EDIFACTAgreementContent }, FramingSettings = new EdifactFramingSettings { - ComponentSeparator = 0, - DataElementSeparator = 0, - SegmentTerminator = 0, - SegmentTerminatorSuffix = SegmentTerminatorSuffix.CR, - CharacterSet = EdifactCharacterSet.KECA, - CharacterEncoding = "0", + DataElementSeparator = 53, + ComponentSeparator = 58, + SegmentTerminator = 39, + CharacterSet = EdifactCharacterSet.UNOC, + SegmentTerminatorSuffix = SegmentTerminatorSuffix.None, + ProtocolVersion = 4, DecimalPointIndicator = EdifactDecimalIndicator.Comma, - ProtocolVersion = 0, - ReleaseIndicator = 0, - RepetitionSeparator = 0, - ServiceCodeListDirectoryVersion = "0" + ReleaseIndicator = 63, + CharacterEncoding = "UTF", + RepetitionSeparator = 42 }, ProcessingSettings = new EdifactProcessingSettings { diff --git a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountCertificates.ScenarioTests.cs b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountCertificates.ScenarioTests.cs index 3044ed8f81fb..434c7ef78478 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountCertificates.ScenarioTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountCertificates.ScenarioTests.cs @@ -48,7 +48,7 @@ public void CreateAndDeleteIntegrationAccountCertificate() integrationAccountName, CreateIntegrationAccountInstance(integrationAccountName)); - var certificate = client.IntegrationAccountCertificates.CreateOrUpdate(Constants.DefaultResourceGroup, + var certificate = client.Certificates.CreateOrUpdate(Constants.DefaultResourceGroup, integrationAccountName, integrationAccountCertificateName, CreateIntegrationAccountCertificateInstance(integrationAccountCertificateName, @@ -57,7 +57,7 @@ public void CreateAndDeleteIntegrationAccountCertificate() Assert.Equal(certificate.Name, integrationAccountCertificateName); - client.IntegrationAccountCertificates.Delete(Constants.DefaultResourceGroup, integrationAccountName, + client.Certificates.Delete(Constants.DefaultResourceGroup, integrationAccountName, integrationAccountCertificateName); client.IntegrationAccounts.Delete(Constants.DefaultResourceGroup, integrationAccountName); } @@ -82,8 +82,7 @@ public void CreateIntegrationAccountCertificateWithPublicKey() var certificateInstance = new IntegrationAccountCertificate { - Name = integrationAccountCertificateName, - Location = "brazilsouth", + Location = "brazilsouth", PublicCertificate = Convert.ToBase64String(cert.RawData) }; @@ -91,7 +90,7 @@ public void CreateIntegrationAccountCertificateWithPublicKey() integrationAccountName, CreateIntegrationAccountInstance(integrationAccountName)); - var certificate = client.IntegrationAccountCertificates.CreateOrUpdate(Constants.DefaultResourceGroup, + var certificate = client.Certificates.CreateOrUpdate(Constants.DefaultResourceGroup, integrationAccountName, integrationAccountCertificateName, certificateInstance @@ -99,7 +98,7 @@ public void CreateIntegrationAccountCertificateWithPublicKey() Assert.Equal(certificate.Name, integrationAccountCertificateName); - client.IntegrationAccountCertificates.Delete(Constants.DefaultResourceGroup, integrationAccountName, + client.Certificates.Delete(Constants.DefaultResourceGroup, integrationAccountName, integrationAccountCertificateName); client.IntegrationAccounts.Delete(Constants.DefaultResourceGroup, integrationAccountName); } @@ -127,7 +126,7 @@ public void CreateIntegrationAccountCertificateWithPrivateKey() integrationAccountName); certInstance.PublicCertificate = null; - var certificate = client.IntegrationAccountCertificates.CreateOrUpdate(Constants.DefaultResourceGroup, + var certificate = client.Certificates.CreateOrUpdate(Constants.DefaultResourceGroup, integrationAccountName, integrationAccountCertificateName, certInstance @@ -135,7 +134,7 @@ public void CreateIntegrationAccountCertificateWithPrivateKey() Assert.Equal(certificate.Name, integrationAccountCertificateName); - client.IntegrationAccountCertificates.Delete(Constants.DefaultResourceGroup, integrationAccountName, + client.Certificates.Delete(Constants.DefaultResourceGroup, integrationAccountName, integrationAccountCertificateName); client.IntegrationAccounts.Delete(Constants.DefaultResourceGroup, integrationAccountName); } @@ -158,7 +157,7 @@ public void DeleteIntegrationAccountCertificateOnAccountDeletion() client.IntegrationAccounts.CreateOrUpdate(Constants.DefaultResourceGroup, integrationAccountName, CreateIntegrationAccountInstance(integrationAccountName)); - var certificate = client.IntegrationAccountCertificates.CreateOrUpdate(Constants.DefaultResourceGroup, + var certificate = client.Certificates.CreateOrUpdate(Constants.DefaultResourceGroup, integrationAccountName, integrationAccountCertificateName, CreateIntegrationAccountCertificateInstance(integrationAccountCertificateName, @@ -169,7 +168,7 @@ public void DeleteIntegrationAccountCertificateOnAccountDeletion() client.IntegrationAccounts.Delete(Constants.DefaultResourceGroup, integrationAccountName); Assert.Throws( () => - client.IntegrationAccountCertificates.Get(Constants.DefaultResourceGroup, integrationAccountName, + client.Certificates.Get(Constants.DefaultResourceGroup, integrationAccountName, integrationAccountCertificateName)); } } @@ -190,24 +189,24 @@ public void CreateAndUpdateIntegrationAccountCertificate() var client = this.GetIntegrationAccountClient(context); client.IntegrationAccounts.CreateOrUpdate(Constants.DefaultResourceGroup, integrationAccountName, CreateIntegrationAccountInstance(integrationAccountName)); - client.IntegrationAccountCertificates.CreateOrUpdate(Constants.DefaultResourceGroup, + client.Certificates.CreateOrUpdate(Constants.DefaultResourceGroup, integrationAccountName, integrationAccountCertificateName, CreateIntegrationAccountCertificateInstance(integrationAccountCertificateName, integrationAccountName)); var certificate2 = CreateIntegrationAccountCertificateInstance(integrationAccountCertificateName, - integrationAccountName); + integrationAccountName); - client.IntegrationAccountCertificates.CreateOrUpdate(Constants.DefaultResourceGroup, + client.Certificates.CreateOrUpdate(Constants.DefaultResourceGroup, integrationAccountName, integrationAccountCertificateName, certificate2); - var updatedCertificate = client.IntegrationAccountCertificates.Get(Constants.DefaultResourceGroup, + var updatedCertificate = client.Certificates.Get(Constants.DefaultResourceGroup, integrationAccountName, integrationAccountCertificateName); - Assert.Equal(updatedCertificate.Name, integrationAccountCertificateName); + Assert.Equal(updatedCertificate.Name, integrationAccountCertificateName); client.IntegrationAccounts.Delete(Constants.DefaultResourceGroup, integrationAccountName); } @@ -229,7 +228,7 @@ public void CreateAndGetIntegrationAccountCertificate() var client = this.GetIntegrationAccountClient(context); client.IntegrationAccounts.CreateOrUpdate(Constants.DefaultResourceGroup, integrationAccountName, CreateIntegrationAccountInstance(integrationAccountName)); - var certificate = client.IntegrationAccountCertificates.CreateOrUpdate(Constants.DefaultResourceGroup, + var certificate = client.Certificates.CreateOrUpdate(Constants.DefaultResourceGroup, integrationAccountName, integrationAccountCertificateName, CreateIntegrationAccountCertificateInstance(integrationAccountCertificateName, @@ -237,7 +236,7 @@ public void CreateAndGetIntegrationAccountCertificate() Assert.Equal(certificate.Name, integrationAccountCertificateName); - var getCertificate = client.IntegrationAccountCertificates.Get(Constants.DefaultResourceGroup, + var getCertificate = client.Certificates.Get(Constants.DefaultResourceGroup, integrationAccountName, integrationAccountCertificateName); @@ -264,13 +263,13 @@ public void ListIntegrationAccountCertificates() client.IntegrationAccounts.CreateOrUpdate(Constants.DefaultResourceGroup, integrationAccountName, CreateIntegrationAccountInstance(integrationAccountName)); - client.IntegrationAccountCertificates.CreateOrUpdate(Constants.DefaultResourceGroup, + client.Certificates.CreateOrUpdate(Constants.DefaultResourceGroup, integrationAccountName, integrationAccountCertificateName, CreateIntegrationAccountCertificateInstance(integrationAccountCertificateName, integrationAccountName)); - var certificates = client.IntegrationAccountCertificates.List(Constants.DefaultResourceGroup, + var certificates = client.Certificates.ListByIntegrationAccounts(Constants.DefaultResourceGroup, integrationAccountName); Assert.True(certificates.Any()); @@ -296,7 +295,6 @@ private IntegrationAccountCertificate CreateIntegrationAccountCertificateInstanc var certificate = new IntegrationAccountCertificate { - Name = integrationAccountCertificateName, Location = "brazilsouth", Key = new KeyVaultKeyReference { @@ -305,10 +303,10 @@ private IntegrationAccountCertificate CreateIntegrationAccountCertificateInstanc { Id = string.Format(CultureInfo.InvariantCulture, - "/subscriptions/{0}/resourcegroups/{1}/providers/microsoft.keyvault/vaults/IntegrationAccountVault", + "/subscriptions/{0}/resourcegroups/{1}/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault", Constants.DefaultSubscription, Constants.DefaultResourceGroup) }, - KeyVersion = "a71cf67368fc473f8d2a40cd8804ac85" + KeyVersion = "87d9764197604449b9b8eb7bd8710868" }, PublicCertificate = Convert.ToBase64String(cert.RawData) }; diff --git a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountMaps.ScenarioTests.cs b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountMaps.ScenarioTests.cs index 6a495eecf4a4..256065137119 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountMaps.ScenarioTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountMaps.ScenarioTests.cs @@ -55,7 +55,7 @@ public void CreateAndDeleteIntegrationAccountMap() integrationAccountName, CreateIntegrationAccountInstance(integrationAccountName)); - var map = client.IntegrationAccountMaps.CreateOrUpdate(Constants.DefaultResourceGroup, + var map = client.Maps.CreateOrUpdate(Constants.DefaultResourceGroup, integrationAccountName, integrationAccountMapName, CreateIntegrationAccountMapInstance(integrationAccountMapName, integrationAccountName)); @@ -63,7 +63,7 @@ public void CreateAndDeleteIntegrationAccountMap() Assert.Equal(map.Name, integrationAccountMapName); Assert.NotNull(map.ContentLink.Uri); - client.IntegrationAccountMaps.Delete(Constants.DefaultResourceGroup, integrationAccountName, + client.Maps.Delete(Constants.DefaultResourceGroup, integrationAccountName, integrationAccountMapName); client.IntegrationAccounts.Delete(Constants.DefaultResourceGroup, integrationAccountName); } @@ -85,7 +85,7 @@ public void DeleteIntegrationAccountMapOnAccountDeletion() client.IntegrationAccounts.CreateOrUpdate(Constants.DefaultResourceGroup, integrationAccountName, CreateIntegrationAccountInstance(integrationAccountName)); - var map = client.IntegrationAccountMaps.CreateOrUpdate(Constants.DefaultResourceGroup, + var map = client.Maps.CreateOrUpdate(Constants.DefaultResourceGroup, integrationAccountName, integrationAccountMapName, CreateIntegrationAccountMapInstance(integrationAccountMapName, integrationAccountName)); @@ -96,7 +96,7 @@ public void DeleteIntegrationAccountMapOnAccountDeletion() client.IntegrationAccounts.Delete(Constants.DefaultResourceGroup, integrationAccountName); Assert.Throws( () => - client.IntegrationAccountMaps.Get(Constants.DefaultResourceGroup, integrationAccountName, + client.Maps.Get(Constants.DefaultResourceGroup, integrationAccountName, integrationAccountMapName)); } } @@ -116,22 +116,21 @@ public void CreateAndUpdateIntegrationAccountMap() var client = this.GetIntegrationAccountClient(context); client.IntegrationAccounts.CreateOrUpdate(Constants.DefaultResourceGroup, integrationAccountName, CreateIntegrationAccountInstance(integrationAccountName)); - client.IntegrationAccountMaps.CreateOrUpdate(Constants.DefaultResourceGroup, integrationAccountName, + client.Maps.CreateOrUpdate(Constants.DefaultResourceGroup, integrationAccountName, integrationAccountMapName, CreateIntegrationAccountMapInstance(integrationAccountMapName, integrationAccountName)); - client.IntegrationAccountMaps.CreateOrUpdate(Constants.DefaultResourceGroup, integrationAccountName, + client.Maps.CreateOrUpdate(Constants.DefaultResourceGroup, integrationAccountName, integrationAccountMapName, new IntegrationAccountMap { ContentType = "application/xml", Location = Constants.DefaultLocation, - Name = integrationAccountMapName, MapType = MapType.Xslt, Content = this.MapContent, Metadata = "meta-data" }); - var updatedMap = client.IntegrationAccountMaps.Get(Constants.DefaultResourceGroup, + var updatedMap = client.Maps.Get(Constants.DefaultResourceGroup, integrationAccountName, integrationAccountMapName); @@ -158,14 +157,14 @@ public void CreateAndGetIntegrationAccountMap() var client = this.GetIntegrationAccountClient(context); client.IntegrationAccounts.CreateOrUpdate(Constants.DefaultResourceGroup, integrationAccountName, CreateIntegrationAccountInstance(integrationAccountName)); - var map = client.IntegrationAccountMaps.CreateOrUpdate(Constants.DefaultResourceGroup, + var map = client.Maps.CreateOrUpdate(Constants.DefaultResourceGroup, integrationAccountName, integrationAccountMapName, CreateIntegrationAccountMapInstance(integrationAccountMapName, integrationAccountName)); Assert.Equal(map.Name, integrationAccountMapName); - var getMap = client.IntegrationAccountMaps.Get(Constants.DefaultResourceGroup, integrationAccountName, + var getMap = client.Maps.Get(Constants.DefaultResourceGroup, integrationAccountName, integrationAccountMapName); Assert.Equal(map.Name, getMap.Name); @@ -190,11 +189,11 @@ public void ListIntegrationAccountMaps() client.IntegrationAccounts.CreateOrUpdate(Constants.DefaultResourceGroup, integrationAccountName, CreateIntegrationAccountInstance(integrationAccountName)); - client.IntegrationAccountMaps.CreateOrUpdate(Constants.DefaultResourceGroup, integrationAccountName, + client.Maps.CreateOrUpdate(Constants.DefaultResourceGroup, integrationAccountName, integrationAccountMapName, CreateIntegrationAccountMapInstance(integrationAccountMapName, integrationAccountName)); - var maps = client.IntegrationAccountMaps.List(Constants.DefaultResourceGroup, integrationAccountName); + var maps = client.Maps.ListByIntegrationAccounts(Constants.DefaultResourceGroup, integrationAccountName); Assert.True(maps.Any()); @@ -219,7 +218,6 @@ string integrationAccountName { ContentType = "application/xml", Location = Constants.DefaultLocation, - Name = integrationAccountMapName, Tags = new Dictionary() { {"integrationAccountMapName", integrationAccountMapName} diff --git a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountPartners.ScenarioTests.cs b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountPartners.ScenarioTests.cs index 69ad2e6aabcb..3dff217ad0d8 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountPartners.ScenarioTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountPartners.ScenarioTests.cs @@ -39,13 +39,13 @@ public void CreateAndDeleteIntegrationAccountPartner() var createdAccount = client.IntegrationAccounts.CreateOrUpdate(Constants.DefaultResourceGroup, integrationAccountName, CreateIntegrationAccountInstance(integrationAccountName)); - var partner = client.IntegrationAccountPartners.CreateOrUpdate(Constants.DefaultResourceGroup, + var partner = client.Partners.CreateOrUpdate(Constants.DefaultResourceGroup, integrationAccountName, integrationAccountPartnerName, CreateIntegrationAccountPartnerInstance(integrationAccountPartnerName, integrationAccountName)); Assert.Equal(partner.Name, integrationAccountPartnerName); - client.IntegrationAccountPartners.Delete(Constants.DefaultResourceGroup, integrationAccountName, + client.Partners.Delete(Constants.DefaultResourceGroup, integrationAccountName, integrationAccountPartnerName); client.IntegrationAccounts.Delete(Constants.DefaultResourceGroup, integrationAccountName); } @@ -67,7 +67,7 @@ public void DeleteIntegrationAccountPartnerOnAccountDeletion() var createdAccount = client.IntegrationAccounts.CreateOrUpdate(Constants.DefaultResourceGroup, integrationAccountName, CreateIntegrationAccountInstance(integrationAccountName)); - var partner = client.IntegrationAccountPartners.CreateOrUpdate(Constants.DefaultResourceGroup, + var partner = client.Partners.CreateOrUpdate(Constants.DefaultResourceGroup, integrationAccountName, integrationAccountPartnerName, CreateIntegrationAccountPartnerInstance(integrationAccountPartnerName, integrationAccountName)); @@ -76,7 +76,7 @@ public void DeleteIntegrationAccountPartnerOnAccountDeletion() client.IntegrationAccounts.Delete(Constants.DefaultResourceGroup, integrationAccountName); Assert.Throws( () => - client.IntegrationAccountPartners.Get(Constants.DefaultResourceGroup, integrationAccountName, + client.Partners.Get(Constants.DefaultResourceGroup, integrationAccountName, integrationAccountPartnerName)); } } @@ -98,7 +98,7 @@ public void CreateAndUpdateIntegrationAccountPartner() client.IntegrationAccounts.CreateOrUpdate(Constants.DefaultResourceGroup, integrationAccountName, CreateIntegrationAccountInstance(integrationAccountName)); - client.IntegrationAccountPartners.CreateOrUpdate(Constants.DefaultResourceGroup, + client.Partners.CreateOrUpdate(Constants.DefaultResourceGroup, integrationAccountName, integrationAccountPartnerName, CreateIntegrationAccountPartnerInstance(integrationAccountPartnerName, integrationAccountName)); @@ -108,12 +108,11 @@ public void CreateAndUpdateIntegrationAccountPartner() new BusinessIdentity() {Qualifier = "XX", Value = "DD"} }; - var updatedPartner = client.IntegrationAccountPartners.CreateOrUpdate(Constants.DefaultResourceGroup, + var updatedPartner = client.Partners.CreateOrUpdate(Constants.DefaultResourceGroup, integrationAccountName, integrationAccountPartnerName, new IntegrationAccountPartner { Location = Constants.DefaultLocation, - Name = integrationAccountPartnerName, Metadata = "updated", PartnerType = PartnerType.B2B, Content = new PartnerContent @@ -147,7 +146,7 @@ public void CreateAndGetIntegrationAccountPartner() var createdAccount = client.IntegrationAccounts.CreateOrUpdate(Constants.DefaultResourceGroup, integrationAccountName, CreateIntegrationAccountInstance(integrationAccountName)); - var partner = client.IntegrationAccountPartners.CreateOrUpdate(Constants.DefaultResourceGroup, + var partner = client.Partners.CreateOrUpdate(Constants.DefaultResourceGroup, integrationAccountName, integrationAccountPartnerName, CreateIntegrationAccountPartnerInstance(integrationAccountPartnerName, integrationAccountName)); @@ -155,7 +154,7 @@ public void CreateAndGetIntegrationAccountPartner() Assert.NotNull(partner); Assert.Equal(partner.Name, integrationAccountPartnerName); - var getPartner = client.IntegrationAccountPartners.Get(Constants.DefaultResourceGroup, + var getPartner = client.Partners.Get(Constants.DefaultResourceGroup, integrationAccountName, integrationAccountPartnerName); @@ -182,11 +181,11 @@ public void ListIntegrationAccountPartners() integrationAccountName, CreateIntegrationAccountInstance(integrationAccountName)); - var createdSchema = client.IntegrationAccountPartners.CreateOrUpdate(Constants.DefaultResourceGroup, + var createdSchema = client.Partners.CreateOrUpdate(Constants.DefaultResourceGroup, integrationAccountName, integrationAccountPartnerName, CreateIntegrationAccountPartnerInstance(integrationAccountPartnerName, integrationAccountName)); - var partners = client.IntegrationAccountPartners.List(Constants.DefaultResourceGroup, + var partners = client.Partners.ListByIntegrationAccounts(Constants.DefaultResourceGroup, integrationAccountName); Assert.True(partners.Any()); @@ -218,7 +217,6 @@ private IntegrationAccountPartner CreateIntegrationAccountPartnerInstance(string var partner = new IntegrationAccountPartner { Location = Constants.DefaultLocation, - Name = integrationAccountPartnerName, Tags = tags, PartnerType = PartnerType.B2B, Metadata = integrationAccountPartnerName, diff --git a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountSchemas.ScenarioTests.cs b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountSchemas.ScenarioTests.cs index c14e706434d4..7e944faec7f6 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountSchemas.ScenarioTests.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/IntegrationAccountSchemas.ScenarioTests.cs @@ -60,7 +60,7 @@ public void CreateAndDeleteIntegrationAccountSchema() var createdAccount = client.IntegrationAccounts.CreateOrUpdate(Constants.DefaultResourceGroup, integrationAccountName, CreateIntegrationAccountInstance(integrationAccountName)); - var schema = client.IntegrationAccountSchemas.CreateOrUpdate(Constants.DefaultResourceGroup, + var schema = client.Schemas.CreateOrUpdate(Constants.DefaultResourceGroup, integrationAccountName, integrationAccountSchemaName, CreateIntegrationAccountSchemaInstance(integrationAccountSchemaName, integrationAccountName)); @@ -68,11 +68,11 @@ public void CreateAndDeleteIntegrationAccountSchema() //Assert.Equal(schema.TargetNamespace, this.SchemaTargetNamespace); Assert.NotNull(schema.ContentLink.Uri); - client.IntegrationAccountSchemas.Delete(Constants.DefaultResourceGroup, integrationAccountName, + client.Schemas.Delete(Constants.DefaultResourceGroup, integrationAccountName, integrationAccountSchemaName); Assert.Throws( () => - client.IntegrationAccountSchemas.Get(Constants.DefaultResourceGroup, integrationAccountName, + client.Schemas.Get(Constants.DefaultResourceGroup, integrationAccountName, integrationAccountSchemaName)); client.IntegrationAccounts.Delete(Constants.DefaultResourceGroup, integrationAccountName); } @@ -94,7 +94,7 @@ public void DeleteIntegrationAccountSchemaOnAccountDeletion() var createdAccount = client.IntegrationAccounts.CreateOrUpdate(Constants.DefaultResourceGroup, integrationAccountName, CreateIntegrationAccountInstance(integrationAccountName)); - var schema = client.IntegrationAccountSchemas.CreateOrUpdate(Constants.DefaultResourceGroup, + var schema = client.Schemas.CreateOrUpdate(Constants.DefaultResourceGroup, integrationAccountName, integrationAccountSchemaName, CreateIntegrationAccountSchemaInstance(integrationAccountSchemaName, integrationAccountName)); @@ -105,7 +105,7 @@ public void DeleteIntegrationAccountSchemaOnAccountDeletion() client.IntegrationAccounts.Delete(Constants.DefaultResourceGroup, integrationAccountName); Assert.Throws( () => - client.IntegrationAccountSchemas.Get(Constants.DefaultResourceGroup, integrationAccountName, + client.Schemas.Get(Constants.DefaultResourceGroup, integrationAccountName, integrationAccountSchemaName)); } } @@ -125,17 +125,16 @@ public void CreateAndUpdateIntegrationAccountSchema() var createdAccount = client.IntegrationAccounts.CreateOrUpdate(Constants.DefaultResourceGroup, integrationAccountName, CreateIntegrationAccountInstance(integrationAccountName)); - var schema = client.IntegrationAccountSchemas.CreateOrUpdate(Constants.DefaultResourceGroup, + var schema = client.Schemas.CreateOrUpdate(Constants.DefaultResourceGroup, integrationAccountName, integrationAccountSchemaName, CreateIntegrationAccountSchemaInstance(integrationAccountSchemaName, integrationAccountName)); - var updatedSchema = client.IntegrationAccountSchemas.CreateOrUpdate(Constants.DefaultResourceGroup, + var updatedSchema = client.Schemas.CreateOrUpdate(Constants.DefaultResourceGroup, integrationAccountName, integrationAccountSchemaName, new IntegrationAccountSchema { ContentType = "application/xml", Location = Constants.DefaultLocation, - Name = integrationAccountSchemaName, SchemaType = SchemaType.Xml, Content = this.SchemaContent }); @@ -163,18 +162,18 @@ public void CreateAndGetIntegrationAccountSchema() var createdAccount = client.IntegrationAccounts.CreateOrUpdate(Constants.DefaultResourceGroup, integrationAccountName, CreateIntegrationAccountInstance(integrationAccountName)); - var schema = client.IntegrationAccountSchemas.CreateOrUpdate(Constants.DefaultResourceGroup, + var schema = client.Schemas.CreateOrUpdate(Constants.DefaultResourceGroup, integrationAccountName, integrationAccountSchemaName, CreateIntegrationAccountSchemaInstance(integrationAccountSchemaName, integrationAccountName)); Assert.Equal(schema.Name, integrationAccountSchemaName); //Assert.Equal(schema.TargetNamespace, this.SchemaTargetNamespace); - var getSchema = client.IntegrationAccountSchemas.Get(Constants.DefaultResourceGroup, + var getSchema = client.Schemas.Get(Constants.DefaultResourceGroup, integrationAccountName, integrationAccountSchemaName); - Assert.Equal(schema.Name, getSchema.Name); + Assert.Equal(schema.Name, getSchema.Name); client.IntegrationAccounts.Delete(Constants.DefaultResourceGroup, integrationAccountName); } @@ -197,11 +196,11 @@ public void ListIntegrationAccountSchemas() integrationAccountName, CreateIntegrationAccountInstance(integrationAccountName)); - var createdSchema = client.IntegrationAccountSchemas.CreateOrUpdate(Constants.DefaultResourceGroup, + var createdSchema = client.Schemas.CreateOrUpdate(Constants.DefaultResourceGroup, integrationAccountName, integrationAccountSchemaName, CreateIntegrationAccountSchemaInstance(integrationAccountSchemaName, integrationAccountName)); - var schemas = client.IntegrationAccountSchemas.List(Constants.DefaultResourceGroup, + var schemas = client.Schemas.ListByIntegrationAccounts(Constants.DefaultResourceGroup, integrationAccountName); Assert.True(schemas.Any()); @@ -227,9 +226,8 @@ private IntegrationAccountSchema CreateIntegrationAccountSchemaInstance(string i { ContentType = "application/xml", Location = Constants.DefaultLocation, - Name = integrationAccountSchemaName, Tags = tags, - SchemaType = SchemaType.Xml, + SchemaType = SchemaType.Xml, Content = this.SchemaContent, Metadata = integrationAccountSchemaName }; diff --git a/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/ProviderOperationsTests.cs b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/ProviderOperationsTests.cs new file mode 100644 index 000000000000..3808a87afae2 --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/ScenarioTests/ProviderOperationsTests.cs @@ -0,0 +1,44 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. + +using Newtonsoft.Json.Converters; +using Newtonsoft.Json.Linq; + +namespace Test.Azure.Management.Logic +{ + using System.Collections.Generic; + using System.Linq; + using Microsoft.Rest.ClientRuntime.Azure.TestFramework; + using Xunit; + using Microsoft.Azure.Management.Logic; + using Microsoft.Azure.Management.Logic.Models; + using System; + + /// + /// Scenario tests for the provider operations. + /// + [Collection("ProviderOperationsTests")] + public class ProviderOperationsTests : BaseScenarioTests + { + /// + /// Name of the test class. + /// + private const string TestClass = "Test.Azure.Management.Logic.ProviderOperationsTests"; + + /// + /// Tests the get operation of provider. + /// + [Fact] + public void GetProviderOperations() + { + using ( + MockContext context = MockContext.Start(TestClass)) + { + var client = context.GetServiceClient(); + var operationList = client.ListOperations(); + Assert.True(operationList.Count() > 0); + } + } + } +} \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateAndDeleteIntegrationAccountAgreement.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateAndDeleteIntegrationAccountAgreement.json index 3b1e8b2f91c8..b676861bf84e 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateAndDeleteIntegrationAccountAgreement.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateAndDeleteIntegrationAccountAgreement.json @@ -1,28 +1,29 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7449?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzQ0OT9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8646?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODY0Nj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"name\": \"IntegrationAccount7449\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "128" + "91" ], "x-ms-client-request-id": [ - "0e46f244-a327-408d-9833-76a91b1cb043" + "f5bd57a4-48cc-4fe9-b5f4-e7fdba5bf6ab" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7449\",\r\n \"name\": \"IntegrationAccount7449\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8646\",\r\n \"name\": \"IntegrationAccount8646\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -33,59 +34,60 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:59:24 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:78c8818e-15d3-4cf2-9459-671aa59f652b" + "westus:2c794371-e4f2-4d5d-8f3d-3cd4c0189437" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1199" ], "x-ms-correlation-request-id": [ - "77435e2b-3df8-4184-b399-36bc1fb6cc12" + "a7b88f44-7a6c-445a-b046-0efc62be9923" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172133Z:77435e2b-3df8-4184-b399-36bc1fb6cc12" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:21:33 GMT" + "CENTRALUS:20170211T015925Z:a7b88f44-7a6c-445a-b046-0efc62be9923" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7449/agreements/IntegrationAccountAgreement1210?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzQ0OS9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDEyMTA/YXBpLXZlcnNpb249MjAxNS0wOC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8646/agreements/IntegrationAccountAgreement8274?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODY0Ni9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDgyNzQ/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement1210\",\r\n \"agreementType\": \"X12\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"Qualifier\": \"ZZ\",\r\n \"Value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"Qualifier\": \"AA\",\r\n \"Value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"X12\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"Qualifier\": \"AA\",\r\n \"Value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"Qualifier\": \"ZZ\",\r\n \"Value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"Qualifier\": \"ZZ\",\r\n \"Value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"Qualifier\": \"AA\",\r\n \"Value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"name\": \"IntegrationAccountAgreement1210\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement1210\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement8274\",\r\n \"agreementType\": \"AS2\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"AS2\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"MD5\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"MD5\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement8274\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "8231" + "5860" ], "x-ms-client-request-id": [ - "a39aa623-27df-4f30-ab1f-1688657a0b1a" + "eed47123-4d9c-4bf7-836c-78e0d129fa37" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"X12\",\r\n \"content\": {\r\n \"x12\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2016-07-20T17:21:33.6498448Z\",\r\n \"changedTime\": \"2016-07-20T17:21:33.6501988Z\",\r\n \"metadata\": \"IntegrationAccountAgreement1210\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7449/agreements/IntegrationAccountAgreement1210\",\r\n \"name\": \"IntegrationAccountAgreement1210\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"MD5\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"MD5\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T01:59:25.6809346Z\",\r\n \"changedTime\": \"2017-02-11T01:59:25.6816604Z\",\r\n \"metadata\": \"IntegrationAccountAgreement8274\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8646/agreements/IntegrationAccountAgreement8274\",\r\n \"name\": \"IntegrationAccountAgreement8274\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "5549" + "3917" ], "Content-Type": [ "application/json; charset=utf-8" @@ -93,47 +95,107 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:59:24 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:38f8950d-db1c-4572-9367-83d368e64c6e" + "westus:c1e0cfb6-174f-498e-b49b-a3cc02c9df32" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1198" ], "x-ms-correlation-request-id": [ - "91899050-0a59-4c14-98e2-ff818a579d65" + "d6363852-098c-44b7-be1e-31091cff653f" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172133Z:91899050-0a59-4c14-98e2-ff818a579d65" + "CENTRALUS:20170211T015925Z:d6363852-098c-44b7-be1e-31091cff653f" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8646/agreements/IntegrationAccountAgreement8274?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODY0Ni9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDgyNzQ/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "69e436d6-a682-4e46-9b15-823215577440" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"MD5\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"MD5\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T01:59:25.6809346Z\",\r\n \"changedTime\": \"2017-02-11T01:59:25.6816604Z\",\r\n \"metadata\": \"IntegrationAccountAgreement8274\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8646/agreements/IntegrationAccountAgreement8274\",\r\n \"name\": \"IntegrationAccountAgreement8274\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 20 Jul 2016 17:21:33 GMT" + "Sat, 11 Feb 2017 01:59:24 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:f551c382-f74d-47ce-a4f5-d996d43e1e14" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14799" + ], + "x-ms-correlation-request-id": [ + "33898fb6-7afa-4a30-87b1-e2be46b56fce" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170211T015925Z:33898fb6-7afa-4a30-87b1-e2be46b56fce" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7449/agreements/IntegrationAccountAgreement1210?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzQ0OS9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDEyMTA/YXBpLXZlcnNpb249MjAxNS0wOC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8646/agreements/IntegrationAccountAgreement8274?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODY0Ni9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDgyNzQ/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9befe165-e9a2-4a29-83f8-9759fa362635" + "dc5f4d98-7611-4b80-bfa9-0e2768ee3fad" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, "ResponseBody": "", @@ -144,47 +206,48 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:59:25 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:e89ebb03-6108-4074-8bd5-05d47c32c24e" + "westus:9adfada2-1863-4800-a397-e3b7cc739283" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" + "1197" ], "x-ms-correlation-request-id": [ - "96aaaf65-1dce-43e1-9e7f-110111cf295a" + "caf6a236-e846-4d21-9ff9-9b61628594f1" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172133Z:96aaaf65-1dce-43e1-9e7f-110111cf295a" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:21:33 GMT" + "CENTRALUS:20170211T015926Z:caf6a236-e846-4d21-9ff9-9b61628594f1" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7449?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzQ0OT9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8646?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODY0Nj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4a1faae4-809b-4e0c-8c39-e64f0f844984" + "4eb43cbe-2d64-4e29-936d-221c44a0f8c5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, "ResponseBody": "", @@ -195,29 +258,29 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:59:25 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:64aded43-df88-405a-8874-801d6f9705ae" + "westus:bd1bb180-85cf-4360-b2e9-7bec891bcf86" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1184" + "1196" ], "x-ms-correlation-request-id": [ - "31423017-a58f-4978-8c40-4bf18bfee5d2" + "472199cb-66b0-4ba1-a006-14734c163359" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172134Z:31423017-a58f-4978-8c40-4bf18bfee5d2" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:21:34 GMT" + "CENTRALUS:20170211T015926Z:472199cb-66b0-4ba1-a006-14734c163359" ] }, "StatusCode": 200 @@ -225,11 +288,11 @@ ], "Names": { "CreateAndDeleteIntegrationAccountAgreement": [ - "IntegrationAccount7449", - "IntegrationAccountAgreement1210" + "IntegrationAccount8646", + "IntegrationAccountAgreement8274" ] }, "Variables": { - "SubscriptionId": "5250dd92-b580-46be-b327-e6596c8de196" + "SubscriptionId": "f34b22a3-2202-4fb1-b040-1332bd928c84" } } \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateAndGetIntegrationAccountAgreement.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateAndGetIntegrationAccountAgreement.json index f2c0920357ba..fc8f56a73731 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateAndGetIntegrationAccountAgreement.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateAndGetIntegrationAccountAgreement.json @@ -1,28 +1,29 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2646?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjY0Nj9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5562?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTU2Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"name\": \"IntegrationAccount2646\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "128" + "91" ], "x-ms-client-request-id": [ - "b646ed2c-95f5-44c9-a67d-607feba0a641" + "354f6a71-07d8-46d4-a577-b44b1f118836" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2646\",\r\n \"name\": \"IntegrationAccount2646\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5562\",\r\n \"name\": \"IntegrationAccount5562\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -33,59 +34,60 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:59:13 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:5992ea4c-38e3-4da0-9679-c01dd0ed973f" + "westus:c21c5bd9-ab9c-421c-872b-589e541ac326" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "86677827-cd65-4a26-86e0-f90c004ab850" + "179e723c-36ea-4a70-b08c-baeca3ffeb2c" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172127Z:86677827-cd65-4a26-86e0-f90c004ab850" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:21:26 GMT" + "CENTRALUS:20170211T015913Z:179e723c-36ea-4a70-b08c-baeca3ffeb2c" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2646/agreements/IntegrationAccountAgreement1933?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjY0Ni9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDE5MzM/YXBpLXZlcnNpb249MjAxNS0wOC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5562/agreements/IntegrationAccountAgreement7901?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTU2Mi9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDc5MDE/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement1933\",\r\n \"agreementType\": \"Edifact\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"Qualifier\": \"ZZ\",\r\n \"Value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"Qualifier\": \"AA\",\r\n \"Value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"Edifact\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"Qualifier\": \"AA\",\r\n \"Value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"Qualifier\": \"ZZ\",\r\n \"Value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Optional\"\r\n },\r\n \"framingSettings\": {\r\n \"serviceCodeListDirectoryVersion\": \"0\",\r\n \"characterEncoding\": \"0\",\r\n \"protocolVersion\": 0,\r\n \"dataElementSeparator\": 0,\r\n \"componentSeparator\": 0,\r\n \"segmentTerminator\": 0,\r\n \"releaseIndicator\": 0,\r\n \"repetitionSeparator\": 0,\r\n \"characterSet\": \"KECA\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"CR\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 99999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"senderReverseRoutingAddress\": \"ZZ\",\r\n \"receiverReverseRoutingAddress\": \"0\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 99999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 99999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AA\",\r\n \"senderInternalSubIdentification\": \"AA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"\",\r\n \"acknowledgementControlNumberSuffix\": \"\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 99999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"Qualifier\": \"AA\",\r\n \"Value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"Qualifier\": \"ZZ\",\r\n \"Value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Optional\"\r\n },\r\n \"framingSettings\": {\r\n \"serviceCodeListDirectoryVersion\": \"0\",\r\n \"characterEncoding\": \"0\",\r\n \"protocolVersion\": 0,\r\n \"dataElementSeparator\": 0,\r\n \"componentSeparator\": 0,\r\n \"segmentTerminator\": 0,\r\n \"releaseIndicator\": 0,\r\n \"repetitionSeparator\": 0,\r\n \"characterSet\": \"KECA\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"CR\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"senderReverseRoutingAddress\": \"XX\",\r\n \"receiverReverseRoutingAddress\": \"0\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"\",\r\n \"groupControlNumberSuffix\": \"\",\r\n \"groupApplicationReceiverQualifier\": \"ZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZ\",\r\n \"groupApplicationSenderId\": \"AA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AA\",\r\n \"senderInternalSubIdentification\": \"AA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"CN\",\r\n \"acknowledgementControlNumberSuffix\": \"NUM\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"name\": \"IntegrationAccountAgreement1933\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement1933\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement7901\",\r\n \"agreementType\": \"AS2\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"AS2\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"SHA1\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"SHA1\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement7901\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "10105" + "5862" ], "x-ms-client-request-id": [ - "517a3b0c-e10d-4e30-8d5c-0441dfe95f37" + "4af82c5e-028a-4bd8-b2d7-66f203354049" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"EDIFACT\",\r\n \"content\": {\r\n \"edifact\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Optional\"\r\n },\r\n \"framingSettings\": {\r\n \"serviceCodeListDirectoryVersion\": \"0\",\r\n \"characterEncoding\": \"0\",\r\n \"protocolVersion\": 0,\r\n \"dataElementSeparator\": 0,\r\n \"componentSeparator\": 0,\r\n \"segmentTerminator\": 0,\r\n \"releaseIndicator\": 0,\r\n \"repetitionSeparator\": 0,\r\n \"characterSet\": \"KECA\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"CR\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 99999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"senderReverseRoutingAddress\": \"ZZ\",\r\n \"receiverReverseRoutingAddress\": \"0\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 99999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 99999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AA\",\r\n \"senderInternalSubIdentification\": \"AA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"\",\r\n \"acknowledgementControlNumberSuffix\": \"\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 99999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Optional\"\r\n },\r\n \"framingSettings\": {\r\n \"serviceCodeListDirectoryVersion\": \"0\",\r\n \"characterEncoding\": \"0\",\r\n \"protocolVersion\": 0,\r\n \"dataElementSeparator\": 0,\r\n \"componentSeparator\": 0,\r\n \"segmentTerminator\": 0,\r\n \"releaseIndicator\": 0,\r\n \"repetitionSeparator\": 0,\r\n \"characterSet\": \"KECA\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"CR\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"senderReverseRoutingAddress\": \"XX\",\r\n \"receiverReverseRoutingAddress\": \"0\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"\",\r\n \"groupControlNumberSuffix\": \"\",\r\n \"groupApplicationReceiverQualifier\": \"ZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZ\",\r\n \"groupApplicationSenderId\": \"AA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AA\",\r\n \"senderInternalSubIdentification\": \"AA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"CN\",\r\n \"acknowledgementControlNumberSuffix\": \"NUM\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2016-07-20T17:21:28.3663018Z\",\r\n \"changedTime\": \"2016-07-20T17:21:28.3669654Z\",\r\n \"metadata\": \"IntegrationAccountAgreement1933\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2646/agreements/IntegrationAccountAgreement1933\",\r\n \"name\": \"IntegrationAccountAgreement1933\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"SHA1\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"SHA1\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T01:59:14.5613147Z\",\r\n \"changedTime\": \"2017-02-11T01:59:14.5615579Z\",\r\n \"metadata\": \"IntegrationAccountAgreement7901\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5562/agreements/IntegrationAccountAgreement7901\",\r\n \"name\": \"IntegrationAccountAgreement7901\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "6818" + "3919" ], "Content-Type": [ "application/json; charset=utf-8" @@ -93,104 +95,107 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:59:13 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:8d9fa37a-c964-4e5a-943b-d5f68e40e6d3" + "westus:c3fc04bb-ce9c-4fe6-a56a-aac94b7be15c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-correlation-request-id": [ - "b1dae33e-dea2-45e3-a9a1-1fac68480631" + "fec1ad2f-5cd2-4015-9c6c-f1016fa270a6" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172128Z:b1dae33e-dea2-45e3-a9a1-1fac68480631" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:21:27 GMT" + "CENTRALUS:20170211T015914Z:fec1ad2f-5cd2-4015-9c6c-f1016fa270a6" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2646/agreements/IntegrationAccountAgreement1933?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjY0Ni9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDE5MzM/YXBpLXZlcnNpb249MjAxNS0wOC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5562/agreements/IntegrationAccountAgreement7901?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTU2Mi9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDc5MDE/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f524a230-5be9-4b30-9bd4-887387a90077" + "b78d613f-3a9e-4d25-b861-a3537c61a646" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"EDIFACT\",\r\n \"content\": {\r\n \"edifact\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Optional\"\r\n },\r\n \"framingSettings\": {\r\n \"serviceCodeListDirectoryVersion\": \"0\",\r\n \"characterEncoding\": \"0\",\r\n \"protocolVersion\": 0,\r\n \"dataElementSeparator\": 0,\r\n \"componentSeparator\": 0,\r\n \"segmentTerminator\": 0,\r\n \"releaseIndicator\": 0,\r\n \"repetitionSeparator\": 0,\r\n \"characterSet\": \"KECA\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"CR\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 99999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"senderReverseRoutingAddress\": \"ZZ\",\r\n \"receiverReverseRoutingAddress\": \"0\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 99999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 99999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AA\",\r\n \"senderInternalSubIdentification\": \"AA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"\",\r\n \"acknowledgementControlNumberSuffix\": \"\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 99999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Optional\"\r\n },\r\n \"framingSettings\": {\r\n \"serviceCodeListDirectoryVersion\": \"0\",\r\n \"characterEncoding\": \"0\",\r\n \"protocolVersion\": 0,\r\n \"dataElementSeparator\": 0,\r\n \"componentSeparator\": 0,\r\n \"segmentTerminator\": 0,\r\n \"releaseIndicator\": 0,\r\n \"repetitionSeparator\": 0,\r\n \"characterSet\": \"KECA\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"CR\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"senderReverseRoutingAddress\": \"XX\",\r\n \"receiverReverseRoutingAddress\": \"0\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"\",\r\n \"groupControlNumberSuffix\": \"\",\r\n \"groupApplicationReceiverQualifier\": \"ZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZ\",\r\n \"groupApplicationSenderId\": \"AA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AA\",\r\n \"senderInternalSubIdentification\": \"AA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"CN\",\r\n \"acknowledgementControlNumberSuffix\": \"NUM\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2016-07-20T17:21:28.3663018Z\",\r\n \"changedTime\": \"2016-07-20T17:21:28.3669654Z\",\r\n \"metadata\": \"IntegrationAccountAgreement1933\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2646/agreements/IntegrationAccountAgreement1933\",\r\n \"name\": \"IntegrationAccountAgreement1933\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"SHA1\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"SHA1\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T01:59:14.5613147Z\",\r\n \"changedTime\": \"2017-02-11T01:59:14.5615579Z\",\r\n \"metadata\": \"IntegrationAccountAgreement7901\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5562/agreements/IntegrationAccountAgreement7901\",\r\n \"name\": \"IntegrationAccountAgreement7901\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "6818" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:59:13 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ + "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "westus:5c39955c-5b32-484c-9619-0ad9334b7b59" + "westus:3f05c66e-4621-4805-9fa6-3022f31be816" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14920" + "14843" ], "x-ms-correlation-request-id": [ - "de803850-7767-4e21-8701-6b773d9f5425" + "8bd42181-1db9-4a0b-bd7d-32ba5a8498d9" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172128Z:de803850-7767-4e21-8701-6b773d9f5425" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:21:27 GMT" + "CENTRALUS:20170211T015914Z:8bd42181-1db9-4a0b-bd7d-32ba5a8498d9" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2646?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjY0Nj9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5562?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTU2Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "44d31bbb-5654-407e-b9f0-9e4e35ee83e9" + "65a68a47-03bb-492e-830a-9dab87fbef2f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, "ResponseBody": "", @@ -201,29 +206,29 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:59:14 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:e937a7f5-8dd1-4992-bf47-b3286645a8c0" + "westus:00aa5889-437e-4dbb-bb79-acfc2221ce9e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1197" ], "x-ms-correlation-request-id": [ - "4df6452e-5741-43a9-9d27-b4062c6252ea" + "9665fbd0-7057-44b0-a0c0-aa061de2666a" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172128Z:4df6452e-5741-43a9-9d27-b4062c6252ea" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:21:28 GMT" + "CENTRALUS:20170211T015915Z:9665fbd0-7057-44b0-a0c0-aa061de2666a" ] }, "StatusCode": 200 @@ -231,11 +236,11 @@ ], "Names": { "CreateAndGetIntegrationAccountAgreement": [ - "IntegrationAccount2646", - "IntegrationAccountAgreement1933" + "IntegrationAccount5562", + "IntegrationAccountAgreement7901" ] }, "Variables": { - "SubscriptionId": "5250dd92-b580-46be-b327-e6596c8de196" + "SubscriptionId": "f34b22a3-2202-4fb1-b040-1332bd928c84" } } \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateAndUpdateIntegrationAccountAgreement.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateAndUpdateIntegrationAccountAgreement.json index b4c2b6d9fa50..ed8e0a092081 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateAndUpdateIntegrationAccountAgreement.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateAndUpdateIntegrationAccountAgreement.json @@ -1,28 +1,29 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5349?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTM0OT9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6368?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjM2OD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"name\": \"IntegrationAccount5349\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "128" + "91" ], "x-ms-client-request-id": [ - "de1fddc2-b2f2-42e7-bfe7-2999cd564d51" + "d9302c27-0928-4c54-92f9-856680cc7ca4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5349\",\r\n \"name\": \"IntegrationAccount5349\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6368\",\r\n \"name\": \"IntegrationAccount6368\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -33,56 +34,57 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:58:57 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:0a5a5b39-16c8-49b1-b6af-ca6d7393b360" + "westus:59b4fd1e-95ce-40d7-b8a0-60d514a5e57b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1199" ], "x-ms-correlation-request-id": [ - "7f17512d-16e1-4829-84f5-f9f4b678d41e" + "17d32a5c-6335-4834-b075-f20393873f10" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172116Z:7f17512d-16e1-4829-84f5-f9f4b678d41e" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:21:16 GMT" + "CENTRALUS:20170211T015857Z:17d32a5c-6335-4834-b075-f20393873f10" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5349/agreements/IntegrationAccountAgreement9397?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTM0OS9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDkzOTc/YXBpLXZlcnNpb249MjAxNS0wOC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6368/agreements/IntegrationAccountAgreement5189?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjM2OC9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDUxODk/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement9397\",\r\n \"agreementType\": \"AS2\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"Qualifier\": \"ZZ\",\r\n \"Value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"Qualifier\": \"AA\",\r\n \"Value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"AS2\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"Qualifier\": \"AA\",\r\n \"Value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"Qualifier\": \"ZZ\",\r\n \"Value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"SuspendMessageOnFileNameGenerationError\": true,\r\n \"AutogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"SuspendDuplicateMessage\": true,\r\n \"ResendIfMdnNotReceived\": true\r\n }\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"Qualifier\": \"ZZ\",\r\n \"Value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"Qualifier\": \"AA\",\r\n \"Value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"SuspendMessageOnFileNameGenerationError\": true,\r\n \"AutogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"SuspendDuplicateMessage\": true,\r\n \"ResendIfMdnNotReceived\": true\r\n }\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"name\": \"IntegrationAccountAgreement9397\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement9397\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement5189\",\r\n \"agreementType\": \"AS2\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"AS2\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement5189\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "5908" + "5862" ], "x-ms-client-request-id": [ - "3e82c408-c1df-475f-a826-30f9b6e45c3e" + "8ea00d81-a940-4dc5-b121-6acf7d03b05c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2016-07-20T17:21:16.9165898Z\",\r\n \"changedTime\": \"2016-07-20T17:21:16.9168325Z\",\r\n \"metadata\": \"IntegrationAccountAgreement9397\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5349/agreements/IntegrationAccountAgreement9397\",\r\n \"name\": \"IntegrationAccountAgreement9397\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T01:58:58.7541619Z\",\r\n \"changedTime\": \"2017-02-11T01:58:58.7549414Z\",\r\n \"metadata\": \"IntegrationAccountAgreement5189\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6368/agreements/IntegrationAccountAgreement5189\",\r\n \"name\": \"IntegrationAccountAgreement5189\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", "ResponseHeaders": { "Content-Length": [ "3919" @@ -93,110 +95,113 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:58:58 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:297cb4cf-c8e4-4646-a00b-b4ddeb767573" + "westus:2fda763b-7954-40f8-b44f-54d1613dc8d9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1198" ], "x-ms-correlation-request-id": [ - "a7583a9c-0035-4f06-8064-f363a00259e3" + "a5acb589-1506-40f1-8d9c-9b2d7a17ac50" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172116Z:a7583a9c-0035-4f06-8064-f363a00259e3" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:21:16 GMT" + "CENTRALUS:20170211T015858Z:a5acb589-1506-40f1-8d9c-9b2d7a17ac50" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5349/agreements/IntegrationAccountAgreement9397?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTM0OS9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDkzOTc/YXBpLXZlcnNpb249MjAxNS0wOC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6368/agreements/IntegrationAccountAgreement5189?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjM2OC9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDUxODk/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement9397\",\r\n \"agreementType\": \"X12\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"Qualifier\": \"ZZ\",\r\n \"Value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"Qualifier\": \"AA\",\r\n \"Value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"X12\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"Qualifier\": \"AA\",\r\n \"Value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"Qualifier\": \"ZZ\",\r\n \"Value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"Qualifier\": \"ZZ\",\r\n \"Value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"Qualifier\": \"AA\",\r\n \"Value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"name\": \"IntegrationAccountAgreement9397\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement9397\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement5189\",\r\n \"agreementType\": \"X12\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"X12\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement5189\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "8231" + "8185" ], "x-ms-client-request-id": [ - "c36d0c24-878e-4a3c-868e-00276203110b" + "870fa9c7-870d-43d8-84b9-66555249ce9d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"X12\",\r\n \"content\": {\r\n \"x12\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2016-07-20T17:21:16.9165898Z\",\r\n \"changedTime\": \"2016-07-20T17:21:17.1516675Z\",\r\n \"metadata\": \"IntegrationAccountAgreement9397\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5349/agreements/IntegrationAccountAgreement9397\",\r\n \"name\": \"IntegrationAccountAgreement9397\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"X12\",\r\n \"content\": {\r\n \"x12\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T01:58:58.7541619Z\",\r\n \"changedTime\": \"2017-02-11T01:58:59.106802Z\",\r\n \"metadata\": \"IntegrationAccountAgreement5189\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6368/agreements/IntegrationAccountAgreement5189\",\r\n \"name\": \"IntegrationAccountAgreement5189\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "5549" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:58:58 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ + "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "westus:733c168c-1ad9-4a40-bad8-d3fc8a1ee9b3" + "westus:86c94291-4c8d-4d42-8ddf-1efcafb8c143" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1197" ], "x-ms-correlation-request-id": [ - "bafe79ba-a9d3-4a09-a5e0-f17362ff47fe" + "0c15242f-58d1-4d2f-9a0e-db0b7e6599f0" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172117Z:bafe79ba-a9d3-4a09-a5e0-f17362ff47fe" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:21:17 GMT" + "CENTRALUS:20170211T015858Z:0c15242f-58d1-4d2f-9a0e-db0b7e6599f0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5349?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTM0OT9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6368?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjM2OD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "211719e6-2791-4e39-9480-3d9938488557" + "e2592df7-39de-4ece-827c-8e74e297055b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, "ResponseBody": "", @@ -207,29 +212,29 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:58:59 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:fbdd8db9-c8cf-4573-9e59-2f5da97aff5d" + "westus:2c9ebf7c-8cd9-403d-bb01-e3351464d800" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1196" ], "x-ms-correlation-request-id": [ - "56ebc00c-7826-4a9f-8295-c3aa9098e06f" + "cb58892d-8828-487c-9df9-e32ce72eedd1" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172117Z:56ebc00c-7826-4a9f-8295-c3aa9098e06f" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:21:17 GMT" + "CENTRALUS:20170211T015859Z:cb58892d-8828-487c-9df9-e32ce72eedd1" ] }, "StatusCode": 200 @@ -237,11 +242,11 @@ ], "Names": { "CreateAndUpdateIntegrationAccountAgreement": [ - "IntegrationAccount5349", - "IntegrationAccountAgreement9397" + "IntegrationAccount6368", + "IntegrationAccountAgreement5189" ] }, "Variables": { - "SubscriptionId": "5250dd92-b580-46be-b327-e6596c8de196" + "SubscriptionId": "f34b22a3-2202-4fb1-b040-1332bd928c84" } } \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateIntegrationAccountAgreementUsingFile.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateIntegrationAccountAgreementUsingFile.json index 55f0b34e99c0..f1e290c0aa1c 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateIntegrationAccountAgreementUsingFile.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateIntegrationAccountAgreementUsingFile.json @@ -1,31 +1,32 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2268?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjI2OD9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount814?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODE0P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"name\": \"IntegrationAccount2268\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "128" + "91" ], "x-ms-client-request-id": [ - "68c5f823-3392-4a95-bfe1-84d7cc8624e4" + "05714721-6c1a-46aa-a5bd-ea51ce1d02bc" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2268\",\r\n \"name\": \"IntegrationAccount2268\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount814\",\r\n \"name\": \"IntegrationAccount814\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "290" + "288" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,59 +34,60 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:59:02 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:5d190e50-c350-407f-8092-f41ebb9e2196" + "westus:1e459d17-52ed-48dd-b033-aef53d7ff9d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-correlation-request-id": [ - "c745a963-9129-4467-9914-713da1663292" + "a0dc562b-851d-4363-9e2c-fad8b8d6ba5e" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172121Z:c745a963-9129-4467-9914-713da1663292" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:21:21 GMT" + "CENTRALUS:20170211T015903Z:a0dc562b-851d-4363-9e2c-fad8b8d6ba5e" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2268/agreements/IntegrationAccountAgreement534?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjI2OC9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDUzND9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount814/agreements/IntegrationAccountAgreement4411?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODE0L2FncmVlbWVudHMvSW50ZWdyYXRpb25BY2NvdW50QWdyZWVtZW50NDQxMT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement534\",\r\n \"agreementType\": \"AS2\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"Qualifier\": \"ZZ\",\r\n \"Value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"Qualifier\": \"AA\",\r\n \"Value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"AS2\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"Qualifier\": \"AA\",\r\n \"Value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"Qualifier\": \"ZZ\",\r\n \"Value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": false,\r\n \"signMdn\": false,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"SuspendMessageOnFileNameGenerationError\": true,\r\n \"AutogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"SuspendDuplicateMessage\": true,\r\n \"ResendIfMdnNotReceived\": true\r\n }\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"Qualifier\": \"ZZ\",\r\n \"Value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"Qualifier\": \"AA\",\r\n \"Value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": false,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"SuspendMessageOnFileNameGenerationError\": true,\r\n \"AutogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"SuspendDuplicateMessage\": true,\r\n \"ResendIfMdnNotReceived\": true\r\n }\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"name\": \"IntegrationAccountAgreement534\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement534\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement4411\",\r\n \"agreementType\": \"AS2\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"AS2\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": false,\r\n \"signMdn\": false,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": false,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement4411\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "5908" + "5865" ], "x-ms-client-request-id": [ - "872f9de5-1ab9-465f-a42b-17f58f3f046d" + "b9f753bb-19a0-4d44-918d-8529fab9d387" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": false,\r\n \"signMDN\": false,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": false,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2016-07-20T17:21:22.2601254Z\",\r\n \"changedTime\": \"2016-07-20T17:21:22.2607166Z\",\r\n \"metadata\": \"IntegrationAccountAgreement534\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2268/agreements/IntegrationAccountAgreement534\",\r\n \"name\": \"IntegrationAccountAgreement534\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": false,\r\n \"signMDN\": false,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": false,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T01:59:04.0981927Z\",\r\n \"changedTime\": \"2017-02-11T01:59:04.0991714Z\",\r\n \"metadata\": \"IntegrationAccountAgreement4411\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount814/agreements/IntegrationAccountAgreement4411\",\r\n \"name\": \"IntegrationAccountAgreement4411\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "3919" + "3921" ], "Content-Type": [ "application/json; charset=utf-8" @@ -93,59 +95,60 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:59:03 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:05229324-da6b-447b-82d5-53c9b355e9cd" + "westus:e3f6a193-0295-4fa6-9a67-08df17180ab7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1198" ], "x-ms-correlation-request-id": [ - "ea3e2f4e-1eb3-497a-b483-a60382b2e2f2" + "82080ea6-3f04-4728-b3cd-177cc9d83b67" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172122Z:ea3e2f4e-1eb3-497a-b483-a60382b2e2f2" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:21:21 GMT" + "CENTRALUS:20170211T015904Z:82080ea6-3f04-4728-b3cd-177cc9d83b67" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2268/agreements/IntegrationAccountAgreement4652?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjI2OC9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDQ2NTI/YXBpLXZlcnNpb249MjAxNS0wOC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount814/agreements/IntegrationAccountAgreement2871?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODE0L2FncmVlbWVudHMvSW50ZWdyYXRpb25BY2NvdW50QWdyZWVtZW50Mjg3MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement4652\",\r\n \"agreementType\": \"Edifact\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"Qualifier\": \"ZZ\",\r\n \"Value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"Qualifier\": \"AA\",\r\n \"Value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"Edifact\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"Qualifier\": \"AAA\",\r\n \"Value\": \"AAA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"Qualifier\": \"ZZZ\",\r\n \"Value\": \"ZZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 100,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Mandatory\"\r\n },\r\n \"framingSettings\": {\r\n \"serviceCodeListDirectoryVersion\": \"0\",\r\n \"characterEncoding\": \"0\",\r\n \"protocolVersion\": 0,\r\n \"dataElementSeparator\": 0,\r\n \"componentSeparator\": 0,\r\n \"segmentTerminator\": 0,\r\n \"releaseIndicator\": 0,\r\n \"repetitionSeparator\": 0,\r\n \"characterSet\": \"KECA\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"CR\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AAA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 0,\r\n \"interchangeControlNumberUpperBound\": 2147483647,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"senderReverseRoutingAddress\": \"XXX\",\r\n \"receiverReverseRoutingAddress\": \"0\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 0,\r\n \"groupControlNumberUpperBound\": 2147483647,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"CN\",\r\n \"transactionSetControlNumberSuffix\": \"NUM\",\r\n \"transactionSetControlNumberLowerBound\": 0,\r\n \"transactionSetControlNumberUpperBound\": 2147483647,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AAA\",\r\n \"senderInternalSubIdentification\": \"AAA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"CN\",\r\n \"acknowledgementControlNumberSuffix\": \"NUM\",\r\n \"acknowledgementControlNumberLowerBound\": 0,\r\n \"acknowledgementControlNumberUpperBound\": 2147483647,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"Qualifier\": \"AAA\",\r\n \"Value\": \"AAA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"Qualifier\": \"ZZZ\",\r\n \"Value\": \"ZZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 100,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Mandatory\"\r\n },\r\n \"framingSettings\": {\r\n \"serviceCodeListDirectoryVersion\": \"0\",\r\n \"characterEncoding\": \"0\",\r\n \"protocolVersion\": 0,\r\n \"dataElementSeparator\": 0,\r\n \"componentSeparator\": 0,\r\n \"segmentTerminator\": 0,\r\n \"releaseIndicator\": 0,\r\n \"repetitionSeparator\": 0,\r\n \"characterSet\": \"KECA\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"CR\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AAA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 0,\r\n \"interchangeControlNumberUpperBound\": 2147483647,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"senderReverseRoutingAddress\": \"XXX\",\r\n \"receiverReverseRoutingAddress\": \"0\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 0,\r\n \"groupControlNumberUpperBound\": 2147483647,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"CN\",\r\n \"transactionSetControlNumberSuffix\": \"NUM\",\r\n \"transactionSetControlNumberLowerBound\": 0,\r\n \"transactionSetControlNumberUpperBound\": 2147483647,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AAA\",\r\n \"senderInternalSubIdentification\": \"AAA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"CN\",\r\n \"acknowledgementControlNumberSuffix\": \"NUM\",\r\n \"acknowledgementControlNumberLowerBound\": 0,\r\n \"acknowledgementControlNumberUpperBound\": 2147483647,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"name\": \"IntegrationAccountAgreement4652\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement4652\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement2871\",\r\n \"agreementType\": \"Edifact\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"Edifact\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AAA\",\r\n \"value\": \"AAA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZZ\",\r\n \"value\": \"ZZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 100,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Mandatory\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AAA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 2147483647,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 2147483647,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"A\",\r\n \"transactionSetControlNumberSuffix\": \"B\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 2147483647,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AAA\",\r\n \"senderInternalSubIdentification\": \"AAA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"A\",\r\n \"acknowledgementControlNumberSuffix\": \"B\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 2147483647,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AAA\",\r\n \"value\": \"AAA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZZ\",\r\n \"value\": \"ZZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 100,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Mandatory\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AAA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 2147483647,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 2147483647,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"A\",\r\n \"transactionSetControlNumberSuffix\": \"B\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 2147483647,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AAA\",\r\n \"senderInternalSubIdentification\": \"AAA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"A\",\r\n \"acknowledgementControlNumberSuffix\": \"B\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 2147483647,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement2871\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "10160" + "9796" ], "x-ms-client-request-id": [ - "bea63fcf-8192-437a-9e12-43aeb6918ae6" + "d4a0e8d6-0d21-41a3-a186-92e15bb8b5ae" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"EDIFACT\",\r\n \"content\": {\r\n \"edifact\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 100,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Mandatory\"\r\n },\r\n \"framingSettings\": {\r\n \"serviceCodeListDirectoryVersion\": \"0\",\r\n \"characterEncoding\": \"0\",\r\n \"protocolVersion\": 0,\r\n \"dataElementSeparator\": 0,\r\n \"componentSeparator\": 0,\r\n \"segmentTerminator\": 0,\r\n \"releaseIndicator\": 0,\r\n \"repetitionSeparator\": 0,\r\n \"characterSet\": \"KECA\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"CR\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AAA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 0,\r\n \"interchangeControlNumberUpperBound\": 2147483647,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"senderReverseRoutingAddress\": \"XXX\",\r\n \"receiverReverseRoutingAddress\": \"0\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 0,\r\n \"groupControlNumberUpperBound\": 2147483647,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"CN\",\r\n \"transactionSetControlNumberSuffix\": \"NUM\",\r\n \"transactionSetControlNumberLowerBound\": 0,\r\n \"transactionSetControlNumberUpperBound\": 2147483647,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AAA\",\r\n \"senderInternalSubIdentification\": \"AAA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"CN\",\r\n \"acknowledgementControlNumberSuffix\": \"NUM\",\r\n \"acknowledgementControlNumberLowerBound\": 0,\r\n \"acknowledgementControlNumberUpperBound\": 2147483647,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AAA\",\r\n \"value\": \"AAA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZZ\",\r\n \"value\": \"ZZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 100,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Mandatory\"\r\n },\r\n \"framingSettings\": {\r\n \"serviceCodeListDirectoryVersion\": \"0\",\r\n \"characterEncoding\": \"0\",\r\n \"protocolVersion\": 0,\r\n \"dataElementSeparator\": 0,\r\n \"componentSeparator\": 0,\r\n \"segmentTerminator\": 0,\r\n \"releaseIndicator\": 0,\r\n \"repetitionSeparator\": 0,\r\n \"characterSet\": \"KECA\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"CR\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AAA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 0,\r\n \"interchangeControlNumberUpperBound\": 2147483647,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"senderReverseRoutingAddress\": \"XXX\",\r\n \"receiverReverseRoutingAddress\": \"0\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 0,\r\n \"groupControlNumberUpperBound\": 2147483647,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"CN\",\r\n \"transactionSetControlNumberSuffix\": \"NUM\",\r\n \"transactionSetControlNumberLowerBound\": 0,\r\n \"transactionSetControlNumberUpperBound\": 2147483647,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AAA\",\r\n \"senderInternalSubIdentification\": \"AAA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"CN\",\r\n \"acknowledgementControlNumberSuffix\": \"NUM\",\r\n \"acknowledgementControlNumberLowerBound\": 0,\r\n \"acknowledgementControlNumberUpperBound\": 2147483647,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AAA\",\r\n \"value\": \"AAA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZZ\",\r\n \"value\": \"ZZZ\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2016-07-20T17:21:22.5722045Z\",\r\n \"changedTime\": \"2016-07-20T17:21:22.5728625Z\",\r\n \"metadata\": \"IntegrationAccountAgreement4652\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2268/agreements/IntegrationAccountAgreement4652\",\r\n \"name\": \"IntegrationAccountAgreement4652\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"EDIFACT\",\r\n \"content\": {\r\n \"edifact\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 100,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Mandatory\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AAA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 2147483647,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 2147483647,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"A\",\r\n \"transactionSetControlNumberSuffix\": \"B\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 2147483647,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AAA\",\r\n \"senderInternalSubIdentification\": \"AAA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"A\",\r\n \"acknowledgementControlNumberSuffix\": \"B\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 2147483647,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AAA\",\r\n \"value\": \"AAA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZZ\",\r\n \"value\": \"ZZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 100,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Mandatory\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AAA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 2147483647,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 2147483647,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"A\",\r\n \"transactionSetControlNumberSuffix\": \"B\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 2147483647,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AAA\",\r\n \"senderInternalSubIdentification\": \"AAA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"A\",\r\n \"acknowledgementControlNumberSuffix\": \"B\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 2147483647,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AAA\",\r\n \"value\": \"AAA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZZ\",\r\n \"value\": \"ZZZ\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T01:59:04.5058675Z\",\r\n \"changedTime\": \"2017-02-11T01:59:04.5063725Z\",\r\n \"metadata\": \"IntegrationAccountAgreement2871\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount814/agreements/IntegrationAccountAgreement2871\",\r\n \"name\": \"IntegrationAccountAgreement2871\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "6873" + "6656" ], "Content-Type": [ "application/json; charset=utf-8" @@ -153,59 +156,60 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:59:03 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:d2b5956d-629f-4db2-a048-038e2785c298" + "westus:37768955-4125-438d-9577-7341a0133e55" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1197" ], "x-ms-correlation-request-id": [ - "17a6fbc5-4394-410f-b2db-4fd0aa3b53e9" + "7b3cbb46-cce9-48c0-a9bd-70a151fbf3a1" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172122Z:17a6fbc5-4394-410f-b2db-4fd0aa3b53e9" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:21:22 GMT" + "CENTRALUS:20170211T015904Z:7b3cbb46-cce9-48c0-a9bd-70a151fbf3a1" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2268/agreements/IntegrationAccountAgreement3189?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjI2OC9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDMxODk/YXBpLXZlcnNpb249MjAxNS0wOC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount814/agreements/IntegrationAccountAgreement9517?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODE0L2FncmVlbWVudHMvSW50ZWdyYXRpb25BY2NvdW50QWdyZWVtZW50OTUxNz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement3189\",\r\n \"agreementType\": \"X12\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"Qualifier\": \"ZZ\",\r\n \"Value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"Qualifier\": \"AA\",\r\n \"Value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"X12\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"Qualifier\": \"AA\",\r\n \"Value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"Qualifier\": \"ZZ\",\r\n \"Value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"Qualifier\": \"ZZ\",\r\n \"Value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"Qualifier\": \"AA\",\r\n \"Value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"name\": \"IntegrationAccountAgreement3189\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement3189\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement9517\",\r\n \"agreementType\": \"X12\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"X12\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement9517\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "8231" + "8185" ], "x-ms-client-request-id": [ - "8a16a32d-1df4-4931-b447-18888151feeb" + "d360cd5a-796b-40e2-9ff0-acf0f3aa2d14" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"X12\",\r\n \"content\": {\r\n \"x12\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2016-07-20T17:21:22.8861065Z\",\r\n \"changedTime\": \"2016-07-20T17:21:22.8865281Z\",\r\n \"metadata\": \"IntegrationAccountAgreement3189\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2268/agreements/IntegrationAccountAgreement3189\",\r\n \"name\": \"IntegrationAccountAgreement3189\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"X12\",\r\n \"content\": {\r\n \"x12\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T01:59:04.8997701Z\",\r\n \"changedTime\": \"2017-02-11T01:59:04.9006718Z\",\r\n \"metadata\": \"IntegrationAccountAgreement9517\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount814/agreements/IntegrationAccountAgreement9517\",\r\n \"name\": \"IntegrationAccountAgreement9517\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "5549" + "5548" ], "Content-Type": [ "application/json; charset=utf-8" @@ -213,47 +217,48 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:59:04 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:a8817ece-4248-4de6-a621-4789134bb02b" + "westus:f7ba1a01-7d34-460e-96e7-bffaed5cbc28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1196" ], "x-ms-correlation-request-id": [ - "03da57a7-35d8-446f-810f-350065f7f463" + "b1de8ae4-03cc-4487-85db-4a4ce35054ea" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172122Z:03da57a7-35d8-446f-810f-350065f7f463" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:21:22 GMT" + "CENTRALUS:20170211T015904Z:b1de8ae4-03cc-4487-85db-4a4ce35054ea" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2268?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjI2OD9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount814?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODE0P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b49fe3c5-0333-42c6-b314-9362a6cb467c" + "0d070800-f0d0-4b63-bfe4-28adb37623be" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, "ResponseBody": "", @@ -264,29 +269,29 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:59:05 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:67d9ae0f-7d80-446e-a6fd-736f59c8cfa8" + "westus:3e00eb10-c143-4ae9-9c03-7408c78bc472" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1195" ], "x-ms-correlation-request-id": [ - "fa67efc3-118b-4602-8691-57b2fc4a747b" + "dc2401ef-5420-41f9-bc72-5db5b9f5c0fd" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172123Z:fa67efc3-118b-4602-8691-57b2fc4a747b" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:21:23 GMT" + "CENTRALUS:20170211T015905Z:dc2401ef-5420-41f9-bc72-5db5b9f5c0fd" ] }, "StatusCode": 200 @@ -294,13 +299,13 @@ ], "Names": { "CreateIntegrationAccountAgreementUsingFile": [ - "IntegrationAccount2268", - "IntegrationAccountAgreement534", - "IntegrationAccountAgreement3189", - "IntegrationAccountAgreement4652" + "IntegrationAccount814", + "IntegrationAccountAgreement4411", + "IntegrationAccountAgreement9517", + "IntegrationAccountAgreement2871" ] }, "Variables": { - "SubscriptionId": "5250dd92-b580-46be-b327-e6596c8de196" + "SubscriptionId": "f34b22a3-2202-4fb1-b040-1332bd928c84" } } \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateIntegrationAccountAgreementWithEnvelopeOverride.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateIntegrationAccountAgreementWithEnvelopeOverride.json new file mode 100644 index 000000000000..fe945af99e19 --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/CreateIntegrationAccountAgreementWithEnvelopeOverride.json @@ -0,0 +1,246 @@ +{ + "Entries": [ + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6958?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Njk1OD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "91" + ], + "x-ms-client-request-id": [ + "7dea44b6-6303-4788-abfd-dee1a7d1ebee" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6958\",\r\n \"name\": \"IntegrationAccount6958\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "290" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:59:08 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:6f8a7c3a-435e-4f1c-af03-52f1a74fa5ea" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1199" + ], + "x-ms-correlation-request-id": [ + "acd31022-ae8a-4040-b81d-3bca31714a52" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170211T015909Z:acd31022-ae8a-4040-b81d-3bca31714a52" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6958/agreements/IntegrationAccountAgreement6183?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Njk1OC9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDYxODM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestMethod": "PUT", + "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement6183\",\r\n \"agreementType\": \"X12\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"X12\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"envelopeOverrides\": [\r\n {\r\n \"targetNamespace\": \"test\",\r\n \"protocolVersion\": \"1\",\r\n \"messageId\": \"100\",\r\n \"responsibleAgencyCode\": \"X\",\r\n \"headerVersion\": \"1\",\r\n \"senderApplicationId\": \"89459\",\r\n \"receiverApplicationId\": \"93494\",\r\n \"functionalIdentifierCode\": \"x\",\r\n \"dateFormat\": \"CCYYMMDD\",\r\n \"timeFormat\": \"HHMM\"\r\n }\r\n ],\r\n \"schemaReferences\": []\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement6183\"\r\n }\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "8710" + ], + "x-ms-client-request-id": [ + "779178e7-0fe6-4e2e-8d6f-50581bdbc627" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"X12\",\r\n \"content\": {\r\n \"x12\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"envelopeOverrides\": [\r\n {\r\n \"targetNamespace\": \"test\",\r\n \"protocolVersion\": \"1\",\r\n \"messageId\": \"100\",\r\n \"responsibleAgencyCode\": \"X\",\r\n \"headerVersion\": \"1\",\r\n \"senderApplicationId\": \"89459\",\r\n \"receiverApplicationId\": \"93494\",\r\n \"functionalIdentifierCode\": \"x\",\r\n \"dateFormat\": \"CCYYMMDD\",\r\n \"timeFormat\": \"HHMM\"\r\n }\r\n ],\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T01:59:10.108078Z\",\r\n \"changedTime\": \"2017-02-11T01:59:10.1082912Z\",\r\n \"metadata\": \"IntegrationAccountAgreement6183\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6958/agreements/IntegrationAccountAgreement6183\",\r\n \"name\": \"IntegrationAccountAgreement6183\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseHeaders": { + "Content-Length": [ + "5822" + ], + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:59:09 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:98c3055e-5966-412c-a186-179decc77ff7" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1198" + ], + "x-ms-correlation-request-id": [ + "f890fbd2-509f-4509-bda9-15ea6d0dc11d" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170211T015909Z:f890fbd2-509f-4509-bda9-15ea6d0dc11d" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6958/agreements/IntegrationAccountAgreement6183?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Njk1OC9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDYxODM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9014bbfe-17e3-4c73-afaa-b482c41b7de4" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"X12\",\r\n \"content\": {\r\n \"x12\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"envelopeOverrides\": [\r\n {\r\n \"targetNamespace\": \"test\",\r\n \"protocolVersion\": \"1\",\r\n \"messageId\": \"100\",\r\n \"responsibleAgencyCode\": \"X\",\r\n \"headerVersion\": \"1\",\r\n \"senderApplicationId\": \"89459\",\r\n \"receiverApplicationId\": \"93494\",\r\n \"functionalIdentifierCode\": \"x\",\r\n \"dateFormat\": \"CCYYMMDD\",\r\n \"timeFormat\": \"HHMM\"\r\n }\r\n ],\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T01:59:10.108078Z\",\r\n \"changedTime\": \"2017-02-11T01:59:10.1082912Z\",\r\n \"metadata\": \"IntegrationAccountAgreement6183\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6958/agreements/IntegrationAccountAgreement6183\",\r\n \"name\": \"IntegrationAccountAgreement6183\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:59:09 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:2a14135b-5604-476f-ad39-fc6de2c27286" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-reads": [ + "14878" + ], + "x-ms-correlation-request-id": [ + "bfd2acf2-0eb7-4f1a-a7cc-80b1605ea5c6" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170211T015910Z:bfd2acf2-0eb7-4f1a-a7cc-80b1605ea5c6" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6958?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Njk1OD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "DELETE", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "9b842503-2406-436a-a386-232101fa5aa2" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "", + "ResponseHeaders": { + "Content-Length": [ + "0" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:59:10 GMT" + ], + "Pragma": [ + "no-cache" + ], + "x-ms-request-id": [ + "westus:4ace1ed8-0b5f-4d63-85e7-3dc3dd1dfd5a" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1197" + ], + "x-ms-correlation-request-id": [ + "3b05d614-0ee4-4df5-852a-0d1faf735b0b" + ], + "x-ms-routing-request-id": [ + "CENTRALUS:20170211T015910Z:3b05d614-0ee4-4df5-852a-0d1faf735b0b" + ] + }, + "StatusCode": 200 + } + ], + "Names": { + "CreateIntegrationAccountAgreementWithEnvelopeOverride": [ + "IntegrationAccount6958", + "IntegrationAccountAgreement6183" + ] + }, + "Variables": { + "SubscriptionId": "f34b22a3-2202-4fb1-b040-1332bd928c84" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/DeleteIntegrationAccountAgreementOnAccountDeletion.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/DeleteIntegrationAccountAgreementOnAccountDeletion.json index 43ec712cb393..6dadded7e02a 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/DeleteIntegrationAccountAgreementOnAccountDeletion.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/DeleteIntegrationAccountAgreementOnAccountDeletion.json @@ -1,28 +1,29 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1922?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTkyMj9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7514?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzUxND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"name\": \"IntegrationAccount1922\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "128" + "91" ], "x-ms-client-request-id": [ - "ef7f7e0d-7ff7-44b8-9a5a-7904fcbc5c73" + "aff06627-5a67-46e2-aad1-cdbd1d95b4b7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1922\",\r\n \"name\": \"IntegrationAccount1922\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7514\",\r\n \"name\": \"IntegrationAccount7514\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -33,59 +34,60 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:59:19 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:72942e28-6156-42bb-8397-2684ac85d24f" + "westus:a327f8e0-ac17-4de8-99e7-409814516ae4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1196" ], "x-ms-correlation-request-id": [ - "8c77f27d-9420-4af3-91f0-bc52f6b68e01" + "713e2bec-b57e-4880-948e-e510a6831bb9" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172139Z:8c77f27d-9420-4af3-91f0-bc52f6b68e01" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:21:39 GMT" + "CENTRALUS:20170211T015919Z:713e2bec-b57e-4880-948e-e510a6831bb9" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1922/agreements/IntegrationAccountAgreement3107?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTkyMi9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDMxMDc/YXBpLXZlcnNpb249MjAxNS0wOC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7514/agreements/IntegrationAccountAgreement7949?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzUxNC9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDc5NDk/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement3107\",\r\n \"agreementType\": \"X12\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"Qualifier\": \"ZZ\",\r\n \"Value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"Qualifier\": \"AA\",\r\n \"Value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"X12\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"Qualifier\": \"AA\",\r\n \"Value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"Qualifier\": \"ZZ\",\r\n \"Value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"Qualifier\": \"ZZ\",\r\n \"Value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"Qualifier\": \"AA\",\r\n \"Value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"name\": \"IntegrationAccountAgreement3107\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement3107\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement7949\",\r\n \"agreementType\": \"X12\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"X12\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement7949\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "8231" + "8185" ], "x-ms-client-request-id": [ - "9c955e53-b05b-4b44-bb8b-91ad9c39b95e" + "aa17d212-d86f-4961-8258-7850978ebf4c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"X12\",\r\n \"content\": {\r\n \"x12\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2016-07-20T17:21:39.859701Z\",\r\n \"changedTime\": \"2016-07-20T17:21:39.860608Z\",\r\n \"metadata\": \"IntegrationAccountAgreement3107\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1922/agreements/IntegrationAccountAgreement3107\",\r\n \"name\": \"IntegrationAccountAgreement3107\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"X12\",\r\n \"content\": {\r\n \"x12\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T01:59:21.4222791Z\",\r\n \"changedTime\": \"2017-02-11T01:59:21.422616Z\",\r\n \"metadata\": \"IntegrationAccountAgreement7949\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7514/agreements/IntegrationAccountAgreement7949\",\r\n \"name\": \"IntegrationAccountAgreement7949\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "5547" + "5548" ], "Content-Type": [ "application/json; charset=utf-8" @@ -93,47 +95,48 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:59:20 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:777b3908-41b3-4e4f-b2c2-ea6983983911" + "westus:d57496bf-0622-4fe5-8b44-d892a4850f54" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1195" ], "x-ms-correlation-request-id": [ - "03109da5-f138-4e27-b91f-aaa36c457340" + "e692c7b4-f3be-45a1-b430-9dd20dc65e33" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172139Z:03109da5-f138-4e27-b91f-aaa36c457340" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:21:39 GMT" + "CENTRALUS:20170211T015921Z:e692c7b4-f3be-45a1-b430-9dd20dc65e33" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1922?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTkyMj9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7514?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzUxND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "63b9a07a-9dd6-4010-8735-2b15a6fda0d3" + "b19ccd7e-daba-4de6-a8a1-ae8fec4e83b8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, "ResponseBody": "", @@ -144,50 +147,51 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:59:21 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:18098c44-f722-42fc-b438-93e2982661a0" + "westus:937f0fca-ea30-4ca3-8928-b2498478cd5b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1194" ], "x-ms-correlation-request-id": [ - "2ba58a76-e02e-4e3b-85b0-f2e54fc0113c" + "97306266-f0c7-4113-bb8f-488b7aa3d9ee" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172140Z:2ba58a76-e02e-4e3b-85b0-f2e54fc0113c" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:21:40 GMT" + "CENTRALUS:20170211T015922Z:97306266-f0c7-4113-bb8f-488b7aa3d9ee" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1922/agreements/IntegrationAccountAgreement3107?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTkyMi9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDMxMDc/YXBpLXZlcnNpb249MjAxNS0wOC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7514/agreements/IntegrationAccountAgreement7949?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzUxNC9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDc5NDk/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "8084dd92-5fec-4f48-bb82-e4f72edeff83" + "41d19cad-6f7e-4975-b19f-2f1bdda0db93" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/integrationAccounts/IntegrationAccount1922' under resource group 'flowrg' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/integrationAccounts/IntegrationAccount7514' under resource group 'flowrg' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "168" @@ -198,6 +202,12 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:59:21 GMT" + ], "Pragma": [ "no-cache" ], @@ -205,22 +215,16 @@ "gateway" ], "x-ms-request-id": [ - "e1519f1e-ac3c-4886-8488-c770f00317e0" + "ef005721-6756-4ae5-9acb-8fcb6e1f328e" ], "x-ms-correlation-request-id": [ - "e1519f1e-ac3c-4886-8488-c770f00317e0" + "ef005721-6756-4ae5-9acb-8fcb6e1f328e" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172140Z:e1519f1e-ac3c-4886-8488-c770f00317e0" + "CENTRALUS:20170211T015922Z:ef005721-6756-4ae5-9acb-8fcb6e1f328e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:21:40 GMT" ] }, "StatusCode": 404 @@ -228,11 +232,11 @@ ], "Names": { "DeleteIntegrationAccountAgreementOnAccountDeletion": [ - "IntegrationAccount1922", - "IntegrationAccountAgreement3107" + "IntegrationAccount7514", + "IntegrationAccountAgreement7949" ] }, "Variables": { - "SubscriptionId": "5250dd92-b580-46be-b327-e6596c8de196" + "SubscriptionId": "f34b22a3-2202-4fb1-b040-1332bd928c84" } } \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/ListIntegrationAccountAgreements.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/ListIntegrationAccountAgreements.json index 326de72f2327..235b0400b744 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/ListIntegrationAccountAgreements.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountAgreementScenarioTests/ListIntegrationAccountAgreements.json @@ -1,31 +1,32 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount90?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTA/YXBpLXZlcnNpb249MjAxNS0wOC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5227?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTIyNz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"name\": \"IntegrationAccount90\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "126" + "91" ], "x-ms-client-request-id": [ - "b5eda042-1e20-4e16-a89f-92e62463a025" + "8cbf2023-cb98-4ec1-84c2-d87d75a3a6ab" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount90\",\r\n \"name\": \"IntegrationAccount90\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5227\",\r\n \"name\": \"IntegrationAccount5227\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "286" + "290" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,59 +34,60 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:59:29 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:a95f32ab-064b-48ae-923f-37c8608c12f9" + "westus:4d59a773-2d59-4951-be98-20cf42e151a4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1199" ], "x-ms-correlation-request-id": [ - "d03e6155-2be0-4b86-a4c6-e6e90a48ee49" + "3b07354b-b645-4b6f-8879-aeaeee04cd90" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172145Z:d03e6155-2be0-4b86-a4c6-e6e90a48ee49" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:21:44 GMT" + "WESTUS2:20170211T015929Z:3b07354b-b645-4b6f-8879-aeaeee04cd90" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount90/agreements/IntegrationAccountAgreement4649?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTAvYWdyZWVtZW50cy9JbnRlZ3JhdGlvbkFjY291bnRBZ3JlZW1lbnQ0NjQ5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5227/agreements/IntegrationAccountAgreement6482?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTIyNy9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDY0ODI/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement4649\",\r\n \"agreementType\": \"AS2\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"Qualifier\": \"ZZ\",\r\n \"Value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"Qualifier\": \"AA\",\r\n \"Value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"AS2\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"Qualifier\": \"AA\",\r\n \"Value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"Qualifier\": \"ZZ\",\r\n \"Value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"SuspendMessageOnFileNameGenerationError\": true,\r\n \"AutogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"SuspendDuplicateMessage\": true,\r\n \"ResendIfMdnNotReceived\": true\r\n }\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"Qualifier\": \"ZZ\",\r\n \"Value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"Qualifier\": \"AA\",\r\n \"Value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"SuspendMessageOnFileNameGenerationError\": true,\r\n \"AutogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"SuspendDuplicateMessage\": true,\r\n \"ResendIfMdnNotReceived\": true\r\n }\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"name\": \"IntegrationAccountAgreement4649\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement4649\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement6482\",\r\n \"agreementType\": \"AS2\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"AS2\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMdn\": true,\r\n \"signMdn\": true,\r\n \"sendMdnAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMdnIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMdnToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNrrForInboundEncodedMessages\": true,\r\n \"enableNrrForInboundDecodedMessages\": true,\r\n \"enableNrrForOutboundMdn\": true,\r\n \"enableNrrForOutboundEncodedMessages\": true,\r\n \"enableNrrForOutboundDecodedMessages\": true,\r\n \"enableNrrForInboundMdn\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMdnNotReceived\": true\r\n }\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement6482\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "5908" + "5862" ], "x-ms-client-request-id": [ - "52e4edb4-88a0-4129-b215-110664399d5f" + "1da07a49-db60-442d-a2ba-86830969d2a8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2016-07-20T17:21:46.099079Z\",\r\n \"changedTime\": \"2016-07-20T17:21:46.0998316Z\",\r\n \"metadata\": \"IntegrationAccountAgreement4649\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount90/agreements/IntegrationAccountAgreement4649\",\r\n \"name\": \"IntegrationAccountAgreement4649\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T01:59:29.7652416Z\",\r\n \"changedTime\": \"2017-02-11T01:59:29.7660158Z\",\r\n \"metadata\": \"IntegrationAccountAgreement6482\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5227/agreements/IntegrationAccountAgreement6482\",\r\n \"name\": \"IntegrationAccountAgreement6482\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "3916" + "3919" ], "Content-Type": [ "application/json; charset=utf-8" @@ -93,59 +95,60 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:59:29 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:5cefc3cf-3451-4536-bfdd-ca52285bfb22" + "westus:ab320817-0a54-46b1-b1c2-ed671c8fab1a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1198" ], "x-ms-correlation-request-id": [ - "04305bdb-d64d-4569-844f-3c44a00d88df" + "03e2b75c-e7b9-45d3-a4d8-45a9a698c0eb" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172146Z:04305bdb-d64d-4569-844f-3c44a00d88df" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:21:45 GMT" + "WESTUS2:20170211T015929Z:03e2b75c-e7b9-45d3-a4d8-45a9a698c0eb" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount90/agreements/IntegrationAccountAgreement7689?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTAvYWdyZWVtZW50cy9JbnRlZ3JhdGlvbkFjY291bnRBZ3JlZW1lbnQ3Njg5P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5227/agreements/IntegrationAccountAgreement8917?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTIyNy9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDg5MTc/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement7689\",\r\n \"agreementType\": \"Edifact\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"Qualifier\": \"ZZ\",\r\n \"Value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"Qualifier\": \"AA\",\r\n \"Value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"Edifact\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"Qualifier\": \"AA\",\r\n \"Value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"Qualifier\": \"ZZ\",\r\n \"Value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Optional\"\r\n },\r\n \"framingSettings\": {\r\n \"serviceCodeListDirectoryVersion\": \"0\",\r\n \"characterEncoding\": \"0\",\r\n \"protocolVersion\": 0,\r\n \"dataElementSeparator\": 0,\r\n \"componentSeparator\": 0,\r\n \"segmentTerminator\": 0,\r\n \"releaseIndicator\": 0,\r\n \"repetitionSeparator\": 0,\r\n \"characterSet\": \"KECA\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"CR\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 99999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"senderReverseRoutingAddress\": \"ZZ\",\r\n \"receiverReverseRoutingAddress\": \"0\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 99999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 99999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AA\",\r\n \"senderInternalSubIdentification\": \"AA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"\",\r\n \"acknowledgementControlNumberSuffix\": \"\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 99999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"Qualifier\": \"AA\",\r\n \"Value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"Qualifier\": \"ZZ\",\r\n \"Value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Optional\"\r\n },\r\n \"framingSettings\": {\r\n \"serviceCodeListDirectoryVersion\": \"0\",\r\n \"characterEncoding\": \"0\",\r\n \"protocolVersion\": 0,\r\n \"dataElementSeparator\": 0,\r\n \"componentSeparator\": 0,\r\n \"segmentTerminator\": 0,\r\n \"releaseIndicator\": 0,\r\n \"repetitionSeparator\": 0,\r\n \"characterSet\": \"KECA\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"CR\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"senderReverseRoutingAddress\": \"XX\",\r\n \"receiverReverseRoutingAddress\": \"0\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"\",\r\n \"groupControlNumberSuffix\": \"\",\r\n \"groupApplicationReceiverQualifier\": \"ZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZ\",\r\n \"groupApplicationSenderId\": \"AA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AA\",\r\n \"senderInternalSubIdentification\": \"AA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"CN\",\r\n \"acknowledgementControlNumberSuffix\": \"NUM\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"name\": \"IntegrationAccountAgreement7689\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement7689\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement8917\",\r\n \"agreementType\": \"Edifact\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"Edifact\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Optional\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 99999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 99999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 99999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AA\",\r\n \"senderInternalSubIdentification\": \"AA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"\",\r\n \"acknowledgementControlNumberSuffix\": \"\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 99999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Optional\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"\",\r\n \"groupControlNumberSuffix\": \"\",\r\n \"groupApplicationReceiverQualifier\": \"ZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZ\",\r\n \"groupApplicationSenderId\": \"AA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AA\",\r\n \"senderInternalSubIdentification\": \"AA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"CN\",\r\n \"acknowledgementControlNumberSuffix\": \"NUM\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement8917\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "10105" + "9757" ], "x-ms-client-request-id": [ - "b10bdae0-d647-4083-b470-a2b78e9ee62b" + "318eb1a0-a1e9-41c7-89f9-bc865c431340" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"EDIFACT\",\r\n \"content\": {\r\n \"edifact\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Optional\"\r\n },\r\n \"framingSettings\": {\r\n \"serviceCodeListDirectoryVersion\": \"0\",\r\n \"characterEncoding\": \"0\",\r\n \"protocolVersion\": 0,\r\n \"dataElementSeparator\": 0,\r\n \"componentSeparator\": 0,\r\n \"segmentTerminator\": 0,\r\n \"releaseIndicator\": 0,\r\n \"repetitionSeparator\": 0,\r\n \"characterSet\": \"KECA\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"CR\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 99999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"senderReverseRoutingAddress\": \"ZZ\",\r\n \"receiverReverseRoutingAddress\": \"0\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 99999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 99999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AA\",\r\n \"senderInternalSubIdentification\": \"AA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"\",\r\n \"acknowledgementControlNumberSuffix\": \"\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 99999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Optional\"\r\n },\r\n \"framingSettings\": {\r\n \"serviceCodeListDirectoryVersion\": \"0\",\r\n \"characterEncoding\": \"0\",\r\n \"protocolVersion\": 0,\r\n \"dataElementSeparator\": 0,\r\n \"componentSeparator\": 0,\r\n \"segmentTerminator\": 0,\r\n \"releaseIndicator\": 0,\r\n \"repetitionSeparator\": 0,\r\n \"characterSet\": \"KECA\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"CR\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"senderReverseRoutingAddress\": \"XX\",\r\n \"receiverReverseRoutingAddress\": \"0\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"\",\r\n \"groupControlNumberSuffix\": \"\",\r\n \"groupApplicationReceiverQualifier\": \"ZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZ\",\r\n \"groupApplicationSenderId\": \"AA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AA\",\r\n \"senderInternalSubIdentification\": \"AA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"CN\",\r\n \"acknowledgementControlNumberSuffix\": \"NUM\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2016-07-20T17:21:46.3367554Z\",\r\n \"changedTime\": \"2016-07-20T17:21:46.3377172Z\",\r\n \"metadata\": \"IntegrationAccountAgreement7689\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount90/agreements/IntegrationAccountAgreement7689\",\r\n \"name\": \"IntegrationAccountAgreement7689\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"EDIFACT\",\r\n \"content\": {\r\n \"edifact\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Optional\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 99999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 99999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 99999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AA\",\r\n \"senderInternalSubIdentification\": \"AA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"\",\r\n \"acknowledgementControlNumberSuffix\": \"\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 99999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Optional\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"\",\r\n \"groupControlNumberSuffix\": \"\",\r\n \"groupApplicationReceiverQualifier\": \"ZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZ\",\r\n \"groupApplicationSenderId\": \"AA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AA\",\r\n \"senderInternalSubIdentification\": \"AA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"CN\",\r\n \"acknowledgementControlNumberSuffix\": \"NUM\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T01:59:30.0291842Z\",\r\n \"changedTime\": \"2017-02-11T01:59:30.0293876Z\",\r\n \"metadata\": \"IntegrationAccountAgreement8917\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5227/agreements/IntegrationAccountAgreement8917\",\r\n \"name\": \"IntegrationAccountAgreement8917\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "6816" + "6618" ], "Content-Type": [ "application/json; charset=utf-8" @@ -153,59 +156,60 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:59:29 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:39a7b8cc-6a4e-4c9b-8b8c-de7f3d959b77" + "westus:83ec20f6-64eb-445f-a664-354381712150" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1197" ], "x-ms-correlation-request-id": [ - "26ef5736-1ded-4832-84f8-031d8eae7760" + "45fe6fc6-571e-46d0-be43-ad5fd790e089" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172146Z:26ef5736-1ded-4832-84f8-031d8eae7760" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:21:45 GMT" + "WESTUS2:20170211T015930Z:45fe6fc6-571e-46d0-be43-ad5fd790e089" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount90/agreements/IntegrationAccountAgreement7935?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTAvYWdyZWVtZW50cy9JbnRlZ3JhdGlvbkFjY291bnRBZ3JlZW1lbnQ3OTM1P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5227/agreements/IntegrationAccountAgreement8482?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTIyNy9hZ3JlZW1lbnRzL0ludGVncmF0aW9uQWNjb3VudEFncmVlbWVudDg0ODI/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement7935\",\r\n \"agreementType\": \"X12\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"Qualifier\": \"ZZ\",\r\n \"Value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"Qualifier\": \"AA\",\r\n \"Value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"X12\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"Qualifier\": \"AA\",\r\n \"Value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"Qualifier\": \"ZZ\",\r\n \"Value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"Qualifier\": \"ZZ\",\r\n \"Value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"Qualifier\": \"AA\",\r\n \"Value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"name\": \"IntegrationAccountAgreement7935\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement7935\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"metadata\": \"IntegrationAccountAgreement8482\",\r\n \"agreementType\": \"X12\",\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"content\": {\r\n \"X12\": {\r\n \"receiveAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n }\r\n }\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccountAgreement\": \"IntegrationAccountAgreement8482\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "8231" + "8185" ], "x-ms-client-request-id": [ - "8562a23c-9ab6-46b6-a187-8037afa4944f" + "b98653ff-4b5f-41b9-bc05-e86d8e332ae3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"X12\",\r\n \"content\": {\r\n \"x12\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2016-07-20T17:21:46.6171961Z\",\r\n \"changedTime\": \"2016-07-20T17:21:46.6177103Z\",\r\n \"metadata\": \"IntegrationAccountAgreement7935\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount90/agreements/IntegrationAccountAgreement7935\",\r\n \"name\": \"IntegrationAccountAgreement7935\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"X12\",\r\n \"content\": {\r\n \"x12\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T01:59:30.2848925Z\",\r\n \"changedTime\": \"2017-02-11T01:59:30.2857039Z\",\r\n \"metadata\": \"IntegrationAccountAgreement8482\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5227/agreements/IntegrationAccountAgreement8482\",\r\n \"name\": \"IntegrationAccountAgreement8482\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "5547" + "5549" ], "Content-Type": [ "application/json; charset=utf-8" @@ -213,104 +217,107 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:59:30 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:716bff87-16c7-498c-8dcf-5acf779f26ac" + "westus:11a346c5-e3c7-4704-94c1-b4639a3fb0c4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1196" ], "x-ms-correlation-request-id": [ - "3a91a20c-1df3-45cb-ba67-deb66a428174" + "29b6394e-c497-4da2-8b09-a391e9e49a96" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172146Z:3a91a20c-1df3-45cb-ba67-deb66a428174" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:21:45 GMT" + "WESTUS2:20170211T015930Z:29b6394e-c497-4da2-8b09-a391e9e49a96" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount90/agreements?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTAvYWdyZWVtZW50cz9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5227/agreements?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTIyNy9hZ3JlZW1lbnRzP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9ad4540c-ad1a-4058-b845-13ffe6be9ff3" + "c853667d-c840-4408-84a9-89c9e52b30ae" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2016-07-20T17:21:46.099079Z\",\r\n \"changedTime\": \"2016-07-20T17:21:46.0998316Z\",\r\n \"metadata\": \"IntegrationAccountAgreement4649\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount90/agreements/IntegrationAccountAgreement4649\",\r\n \"name\": \"IntegrationAccountAgreement4649\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"EDIFACT\",\r\n \"content\": {\r\n \"edifact\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Optional\"\r\n },\r\n \"framingSettings\": {\r\n \"serviceCodeListDirectoryVersion\": \"0\",\r\n \"characterEncoding\": \"0\",\r\n \"protocolVersion\": 0,\r\n \"dataElementSeparator\": 0,\r\n \"componentSeparator\": 0,\r\n \"segmentTerminator\": 0,\r\n \"releaseIndicator\": 0,\r\n \"repetitionSeparator\": 0,\r\n \"characterSet\": \"KECA\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"CR\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 99999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"senderReverseRoutingAddress\": \"ZZ\",\r\n \"receiverReverseRoutingAddress\": \"0\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 99999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 99999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AA\",\r\n \"senderInternalSubIdentification\": \"AA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"\",\r\n \"acknowledgementControlNumberSuffix\": \"\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 99999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Optional\"\r\n },\r\n \"framingSettings\": {\r\n \"serviceCodeListDirectoryVersion\": \"0\",\r\n \"characterEncoding\": \"0\",\r\n \"protocolVersion\": 0,\r\n \"dataElementSeparator\": 0,\r\n \"componentSeparator\": 0,\r\n \"segmentTerminator\": 0,\r\n \"releaseIndicator\": 0,\r\n \"repetitionSeparator\": 0,\r\n \"characterSet\": \"KECA\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"CR\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"senderReverseRoutingAddress\": \"XX\",\r\n \"receiverReverseRoutingAddress\": \"0\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"\",\r\n \"groupControlNumberSuffix\": \"\",\r\n \"groupApplicationReceiverQualifier\": \"ZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZ\",\r\n \"groupApplicationSenderId\": \"AA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AA\",\r\n \"senderInternalSubIdentification\": \"AA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"CN\",\r\n \"acknowledgementControlNumberSuffix\": \"NUM\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2016-07-20T17:21:46.3367554Z\",\r\n \"changedTime\": \"2016-07-20T17:21:46.3377172Z\",\r\n \"metadata\": \"IntegrationAccountAgreement7689\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount90/agreements/IntegrationAccountAgreement7689\",\r\n \"name\": \"IntegrationAccountAgreement7689\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"X12\",\r\n \"content\": {\r\n \"x12\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2016-07-20T17:21:46.6171961Z\",\r\n \"changedTime\": \"2016-07-20T17:21:46.6177103Z\",\r\n \"metadata\": \"IntegrationAccountAgreement7935\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount90/agreements/IntegrationAccountAgreement7935\",\r\n \"name\": \"IntegrationAccountAgreement7935\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"AS2\",\r\n \"content\": {\r\n \"aS2\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"messageConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"acknowledgementConnectionSettings\": {\r\n \"ignoreCertificateNameMismatch\": true,\r\n \"supportHttpStatusCodeContinue\": true,\r\n \"keepHttpConnectionAlive\": true,\r\n \"unfoldHttpHeaders\": true\r\n },\r\n \"mdnSettings\": {\r\n \"needMDN\": true,\r\n \"signMDN\": true,\r\n \"sendMDNAsynchronously\": true,\r\n \"receiptDeliveryUrl\": \"http://tempuri.org\",\r\n \"dispositionNotificationTo\": \"http://tempuri.org\",\r\n \"signOutboundMDNIfOptional\": true,\r\n \"mdnText\": \"Sample\",\r\n \"sendInboundMDNToMessageBox\": true,\r\n \"micHashingAlgorithm\": \"None\"\r\n },\r\n \"securitySettings\": {\r\n \"overrideGroupSigningCertificate\": false,\r\n \"enableNRRForInboundEncodedMessages\": true,\r\n \"enableNRRForInboundDecodedMessages\": true,\r\n \"enableNRRForOutboundMDN\": true,\r\n \"enableNRRForOutboundEncodedMessages\": true,\r\n \"enableNRRForOutboundDecodedMessages\": true,\r\n \"enableNRRForInboundMDN\": true\r\n },\r\n \"validationSettings\": {\r\n \"overrideMessageProperties\": true,\r\n \"encryptMessage\": false,\r\n \"signMessage\": false,\r\n \"compressMessage\": true,\r\n \"checkDuplicateMessage\": true,\r\n \"interchangeDuplicatesValidityDays\": 100,\r\n \"checkCertificateRevocationListOnSend\": true,\r\n \"checkCertificateRevocationListOnReceive\": true,\r\n \"encryptionAlgorithm\": \"AES128\"\r\n },\r\n \"envelopeSettings\": {\r\n \"messageContentType\": \"text/plain\",\r\n \"transmitFileNameInMimeHeader\": true,\r\n \"fileNameTemplate\": \"Test\",\r\n \"suspendMessageOnFileNameGenerationError\": true,\r\n \"autogenerateFileName\": true\r\n },\r\n \"errorSettings\": {\r\n \"suspendDuplicateMessage\": true,\r\n \"resendIfMDNNotReceived\": true\r\n }\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T01:59:29.7652416Z\",\r\n \"changedTime\": \"2017-02-11T01:59:29.7660158Z\",\r\n \"metadata\": \"IntegrationAccountAgreement6482\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5227/agreements/IntegrationAccountAgreement6482\",\r\n \"name\": \"IntegrationAccountAgreement6482\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"X12\",\r\n \"content\": {\r\n \"x12\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 85,\r\n \"useControlStandardsIdAsRepetitionCharacter\": false,\r\n \"senderApplicationId\": \"BTS-SENDER\",\r\n \"receiverApplicationId\": \"RECEIVE-APP\",\r\n \"controlVersionNumber\": \"00401\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"00401\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Test\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": false,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": false,\r\n \"checkDuplicateTransactionSetControlNumber\": false,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": false,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": false,\r\n \"trailingSeparatorPolicy\": \"NotAllowed\"\r\n },\r\n \"framingSettings\": {\r\n \"dataElementSeparator\": 42,\r\n \"componentSeparator\": 58,\r\n \"replaceSeparatorsInPayload\": false,\r\n \"replaceCharacter\": 36,\r\n \"segmentTerminator\": 126,\r\n \"characterSet\": \"UTF8\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"controlStandardsId\": 100,\r\n \"useControlStandardsIdAsRepetitionCharacter\": true,\r\n \"senderApplicationId\": \"100\",\r\n \"receiverApplicationId\": \"100\",\r\n \"controlVersionNumber\": \"0.0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"functionalGroupId\": \"1\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupHeaderAgencyCode\": \"T\",\r\n \"groupHeaderVersion\": \"0.0\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"groupHeaderDateFormat\": \"CCYYMMDD\",\r\n \"groupHeaderTimeFormat\": \"HHMM\",\r\n \"usageIndicator\": \"Information\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": false,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needImplementationAcknowledgement\": false,\r\n \"batchImplementationAcknowledgements\": false,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"securitySettings\": {\r\n \"authorizationQualifier\": \"00\",\r\n \"securityQualifier\": \"00\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"convertImpliedDecimal\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T01:59:30.2848925Z\",\r\n \"changedTime\": \"2017-02-11T01:59:30.2857039Z\",\r\n \"metadata\": \"IntegrationAccountAgreement8482\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5227/agreements/IntegrationAccountAgreement8482\",\r\n \"name\": \"IntegrationAccountAgreement8482\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n },\r\n {\r\n \"properties\": {\r\n \"hostPartner\": \"HostPartner\",\r\n \"guestPartner\": \"GuestPartner\",\r\n \"hostIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n },\r\n \"guestIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"agreementType\": \"EDIFACT\",\r\n \"content\": {\r\n \"edifact\": {\r\n \"receiveAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Optional\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 99999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 99999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"CU\",\r\n \"groupControlNumberSuffix\": \"NUM\",\r\n \"groupApplicationReceiverQualifier\": \"ZZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZZ\",\r\n \"groupApplicationSenderId\": \"AAA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 99999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AA\",\r\n \"senderInternalSubIdentification\": \"AA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": false,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": false,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"\",\r\n \"acknowledgementControlNumberSuffix\": \"\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 99999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n },\r\n \"sendAgreement\": {\r\n \"protocolSettings\": {\r\n \"validationSettings\": {\r\n \"validateCharacterSet\": true,\r\n \"checkDuplicateInterchangeControlNumber\": true,\r\n \"interchangeControlNumberValidityDays\": 30,\r\n \"checkDuplicateGroupControlNumber\": true,\r\n \"checkDuplicateTransactionSetControlNumber\": true,\r\n \"validateEDITypes\": true,\r\n \"validateXSDTypes\": true,\r\n \"trimLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"allowLeadingAndTrailingSpacesAndZeroes\": true,\r\n \"trailingSeparatorPolicy\": \"Optional\"\r\n },\r\n \"framingSettings\": {\r\n \"characterEncoding\": \"UTF\",\r\n \"protocolVersion\": 4,\r\n \"dataElementSeparator\": 53,\r\n \"componentSeparator\": 58,\r\n \"segmentTerminator\": 39,\r\n \"releaseIndicator\": 63,\r\n \"repetitionSeparator\": 42,\r\n \"characterSet\": \"UNOC\",\r\n \"decimalPointIndicator\": \"Comma\",\r\n \"segmentTerminatorSuffix\": \"None\"\r\n },\r\n \"envelopeSettings\": {\r\n \"groupAssociationAssignedCode\": \"0\",\r\n \"communicationAgreementId\": \"0\",\r\n \"applyDelimiterStringAdvice\": true,\r\n \"createGroupingSegments\": true,\r\n \"enableDefaultGroupHeaders\": true,\r\n \"recipientReferencePasswordValue\": \"AA\",\r\n \"recipientReferencePasswordQualifier\": \"ZZ\",\r\n \"applicationReferenceId\": \"0\",\r\n \"processingPriorityCode\": \"0\",\r\n \"interchangeControlNumberLowerBound\": 1,\r\n \"interchangeControlNumberUpperBound\": 999999999,\r\n \"rolloverInterchangeControlNumber\": true,\r\n \"interchangeControlNumberPrefix\": \"CU\",\r\n \"interchangeControlNumberSuffix\": \"NUM\",\r\n \"functionalGroupId\": \"0\",\r\n \"groupControllingAgencyCode\": \"0\",\r\n \"groupMessageVersion\": \"0.0\",\r\n \"groupMessageRelease\": \"0.0\",\r\n \"groupControlNumberLowerBound\": 1,\r\n \"groupControlNumberUpperBound\": 999999999,\r\n \"rolloverGroupControlNumber\": true,\r\n \"groupControlNumberPrefix\": \"\",\r\n \"groupControlNumberSuffix\": \"\",\r\n \"groupApplicationReceiverQualifier\": \"ZZ\",\r\n \"groupApplicationReceiverId\": \"0\",\r\n \"groupApplicationSenderQualifier\": \"ZZ\",\r\n \"groupApplicationSenderId\": \"AA\",\r\n \"groupApplicationPassword\": \"0\",\r\n \"overwriteExistingTransactionSetControlNumber\": true,\r\n \"transactionSetControlNumberPrefix\": \"\",\r\n \"transactionSetControlNumberSuffix\": \"\",\r\n \"transactionSetControlNumberLowerBound\": 1,\r\n \"transactionSetControlNumberUpperBound\": 999999999,\r\n \"rolloverTransactionSetControlNumber\": true,\r\n \"isTestInterchange\": true,\r\n \"senderInternalIdentification\": \"AA\",\r\n \"senderInternalSubIdentification\": \"AA\",\r\n \"receiverInternalIdentification\": \"0\",\r\n \"receiverInternalSubIdentification\": \"0\"\r\n },\r\n \"acknowledgementSettings\": {\r\n \"needTechnicalAcknowledgement\": true,\r\n \"batchTechnicalAcknowledgements\": true,\r\n \"needFunctionalAcknowledgement\": true,\r\n \"batchFunctionalAcknowledgements\": true,\r\n \"needLoopForValidMessages\": true,\r\n \"sendSynchronousAcknowledgement\": true,\r\n \"acknowledgementControlNumberPrefix\": \"CN\",\r\n \"acknowledgementControlNumberSuffix\": \"NUM\",\r\n \"acknowledgementControlNumberLowerBound\": 1,\r\n \"acknowledgementControlNumberUpperBound\": 999999999,\r\n \"rolloverAcknowledgementControlNumber\": true\r\n },\r\n \"messageFilter\": {\r\n \"messageFilterType\": \"Exclude\"\r\n },\r\n \"processingSettings\": {\r\n \"maskSecurityInfo\": true,\r\n \"preserveInterchange\": true,\r\n \"suspendInterchangeOnError\": true,\r\n \"createEmptyXmlTagsForTrailingSeparators\": true,\r\n \"useDotAsDecimalSeparator\": true\r\n },\r\n \"schemaReferences\": []\r\n },\r\n \"senderBusinessIdentity\": {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"AA\"\r\n },\r\n \"receiverBusinessIdentity\": {\r\n \"qualifier\": \"ZZ\",\r\n \"value\": \"ZZ\"\r\n }\r\n }\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T01:59:30.0291842Z\",\r\n \"changedTime\": \"2017-02-11T01:59:30.0293876Z\",\r\n \"metadata\": \"IntegrationAccountAgreement8917\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5227/agreements/IntegrationAccountAgreement8917\",\r\n \"name\": \"IntegrationAccountAgreement8917\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/agreements\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "16293" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:59:30 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ + "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "westus:b9aaac2a-0062-4fa1-9d71-afff1687bcf5" + "westus:bed88533-c1dd-4e0f-b5db-c2944666ddcb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14993" + "14641" ], "x-ms-correlation-request-id": [ - "058e8439-6c08-45b8-a382-6b67d798b958" + "0c499edb-0895-4b2c-87bb-ed897b182bd0" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172146Z:058e8439-6c08-45b8-a382-6b67d798b958" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:21:45 GMT" + "WESTUS2:20170211T015930Z:0c499edb-0895-4b2c-87bb-ed897b182bd0" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount90?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTA/YXBpLXZlcnNpb249MjAxNS0wOC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5227?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTIyNz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "d890dded-d992-471f-a26c-c33d32d6070f" + "2db76193-4f3e-42b8-be76-27f62c29ae17" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, "ResponseBody": "", @@ -321,29 +328,29 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:59:30 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:89f52ab5-0be6-41f7-a8c3-2e5722eeb734" + "westus:5030ceba-f707-45b6-959d-6313998a45a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1195" ], "x-ms-correlation-request-id": [ - "74377a94-43c3-4706-b520-5ff709f862e7" + "347b3c60-a9a2-436e-96c2-eed56e52bd05" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172147Z:74377a94-43c3-4706-b520-5ff709f862e7" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:21:46 GMT" + "WESTUS2:20170211T015930Z:347b3c60-a9a2-436e-96c2-eed56e52bd05" ] }, "StatusCode": 200 @@ -351,13 +358,13 @@ ], "Names": { "ListIntegrationAccountAgreements": [ - "IntegrationAccount90", - "IntegrationAccountAgreement4649", - "IntegrationAccountAgreement7689", - "IntegrationAccountAgreement7935" + "IntegrationAccount5227", + "IntegrationAccountAgreement6482", + "IntegrationAccountAgreement8917", + "IntegrationAccountAgreement8482" ] }, "Variables": { - "SubscriptionId": "5250dd92-b580-46be-b327-e6596c8de196" + "SubscriptionId": "f34b22a3-2202-4fb1-b040-1332bd928c84" } } \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndDeleteIntegrationAccountCertificate.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndDeleteIntegrationAccountCertificate.json index 9d409b43eed2..a7d698ca9158 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndDeleteIntegrationAccountCertificate.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndDeleteIntegrationAccountCertificate.json @@ -1,31 +1,32 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1460?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTQ2MD9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount358?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzU4P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"name\": \"IntegrationAccount1460\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "128" + "91" ], "x-ms-client-request-id": [ - "0f99aea8-6a36-4e2d-ac32-015fd54281d4" + "616c914f-9139-4a99-afd0-f44f91d5cd36" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1460\",\r\n \"name\": \"IntegrationAccount1460\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount358\",\r\n \"name\": \"IntegrationAccount358\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "290" + "288" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,61 +34,62 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:58:47 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:6445cce0-3171-46b5-823a-92d35842b753" + "westus:6bd42d17-beef-4236-91c0-e1955bed6563" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1199" ], "x-ms-correlation-request-id": [ - "722ea874-64fe-4db3-b2e9-eaa3d45eabff" + "1f1db14e-24bf-4348-a077-13ee9b41b09d" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172059Z:722ea874-64fe-4db3-b2e9-eaa3d45eabff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:20:59 GMT" + "WESTUS2:20170211T015848Z:1f1db14e-24bf-4348-a077-13ee9b41b09d" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1460/certificates/IntegrationAccountCertificate8997?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTQ2MC9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU4OTk3P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount358/certificates/IntegrationAccountCertificate7237?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzU4L2NlcnRpZmljYXRlcy9JbnRlZ3JhdGlvbkFjY291bnRDZXJ0aWZpY2F0ZTcyMzc/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] - "RequestBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/IntegrationAccountVault\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"a71cf67368fc473f8d2a40cd8804ac85\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\"\r\n },\r\n \"name\": \"IntegrationAccountCertificate8997\",\r\n \"location\": \"brazilsouth\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\"\r\n },\r\n \"location\": \"brazilsouth\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1139" + "1088" ], "x-ms-client-request-id": [ - "3c47d344-0e4e-405b-b755-4382aa326316" + "34ec5144-137f-4304-b9de-3d16f523ddd5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] - "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"IntegrationAccountVault\",\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/IntegrationAccountVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"a71cf67368fc473f8d2a40cd8804ac85\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2016-07-20T17:20:59.8670636Z\",\r\n \"changedTime\": \"2016-07-20T17:20:59.8677386Z\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1460/certificates/IntegrationAccountCertificate8997\",\r\n \"name\": \"IntegrationAccountCertificate8997\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-02-11T01:58:49.0995224Z\",\r\n \"changedTime\": \"2017-02-11T01:58:49.0999398Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount358/certificates/IntegrationAccountCertificate7237\",\r\n \"name\": \"IntegrationAccountCertificate7237\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1440" + "1433" ], "Content-Type": [ "application/json; charset=utf-8" @@ -95,47 +97,48 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:58:48 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:63f2b050-ed2a-409d-a0cb-9af6ab92a21a" + "westus:05af6a88-1d00-4c98-8029-d99cebb04a00" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1198" ], "x-ms-correlation-request-id": [ - "e60f251c-821b-4cc7-80ae-b2baa5f3126b" + "39f1439a-f4e6-46d4-baa6-9ec2c17014af" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172059Z:e60f251c-821b-4cc7-80ae-b2baa5f3126b" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:20:59 GMT" + "WESTUS2:20170211T015849Z:39f1439a-f4e6-46d4-baa6-9ec2c17014af" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1460/certificates/IntegrationAccountCertificate8997?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTQ2MC9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU4OTk3P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount358/certificates/IntegrationAccountCertificate7237?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzU4L2NlcnRpZmljYXRlcy9JbnRlZ3JhdGlvbkFjY291bnRDZXJ0aWZpY2F0ZTcyMzc/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2c21e9c9-aeb5-43d5-a79b-0bd4a3df5533" + "75f3b256-21a1-4950-9014-bb7eaf62b374" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, "ResponseBody": "", @@ -146,47 +149,48 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:58:48 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:75429978-4a37-45e7-b9b5-ae0f0578d046" + "westus:27618a0d-6523-4c44-a3f1-43d30cb923c8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1197" ], "x-ms-correlation-request-id": [ - "e38069e4-7b4e-4c5c-89ce-d4ac39ec2836" + "74ab98c7-cd28-4cc1-b1b3-9c91b9fd3221" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172100Z:e38069e4-7b4e-4c5c-89ce-d4ac39ec2836" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:20:59 GMT" + "WESTUS2:20170211T015849Z:74ab98c7-cd28-4cc1-b1b3-9c91b9fd3221" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1460?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTQ2MD9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount358?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzU4P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf74d93e-6070-46e8-b114-27da43d19578" + "1765ea28-42f9-4d36-bc00-ff06c1422866" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, "ResponseBody": "", @@ -197,29 +201,29 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:58:49 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:431bbf40-acf4-4fa2-b071-1cb8c68e5664" + "westus:46e422bf-7a83-440a-b0f5-74b15ed10ac8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1196" ], "x-ms-correlation-request-id": [ - "33502f47-e92b-4d7d-98da-a9a11aa276a1" + "c0df6687-d750-4c2d-9f75-798402b73463" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172100Z:33502f47-e92b-4d7d-98da-a9a11aa276a1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:20:59 GMT" + "WESTUS2:20170211T015849Z:c0df6687-d750-4c2d-9f75-798402b73463" ] }, "StatusCode": 200 @@ -227,11 +231,11 @@ ], "Names": { "CreateAndDeleteIntegrationAccountCertificate": [ - "IntegrationAccount1460", - "IntegrationAccountCertificate8997" + "IntegrationAccount358", + "IntegrationAccountCertificate7237" ] }, "Variables": { - "SubscriptionId": "5250dd92-b580-46be-b327-e6596c8de196" + "SubscriptionId": "f34b22a3-2202-4fb1-b040-1332bd928c84" } } \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndGetIntegrationAccountCertificate.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndGetIntegrationAccountCertificate.json index 1920c546b68e..1caf1a46a2e0 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndGetIntegrationAccountCertificate.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndGetIntegrationAccountCertificate.json @@ -1,28 +1,29 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1556?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTU1Nj9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8255?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODI1NT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"name\": \"IntegrationAccount1556\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "128" + "91" ], "x-ms-client-request-id": [ - "62b2dc5b-1fcf-4e71-a310-fa6b8313a918" + "81137594-eb53-4d4b-ae02-580db1b8ee0b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1556\",\r\n \"name\": \"IntegrationAccount1556\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8255\",\r\n \"name\": \"IntegrationAccount8255\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -33,61 +34,62 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:58:34 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:b23804d6-5d95-406b-8846-6051b243ff1b" + "westus:90683b3d-d540-42bc-b43d-d56edc9c6f73" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "e86fa4eb-b2c6-4d0e-b552-f98c42b2841a" + "0b8d721a-dc80-4ecf-bb7b-584d672a67a9" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172043Z:e86fa4eb-b2c6-4d0e-b552-f98c42b2841a" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:20:42 GMT" + "CENTRALUS:20170211T015835Z:0b8d721a-dc80-4ecf-bb7b-584d672a67a9" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1556/certificates/IntegrationAccountCertificate494?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTU1Ni9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU0OTQ/YXBpLXZlcnNpb249MjAxNS0wOC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8255/certificates/IntegrationAccountCertificate2896?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODI1NS9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGUyODk2P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] - "RequestBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/IntegrationAccountVault\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"a71cf67368fc473f8d2a40cd8804ac85\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\"\r\n },\r\n \"name\": \"IntegrationAccountCertificate494\",\r\n \"location\": \"brazilsouth\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\"\r\n },\r\n \"location\": \"brazilsouth\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1138" + "1088" ], "x-ms-client-request-id": [ - "68e2a9fe-9ceb-4b88-a330-1c025fc3fa75" + "c1f883ab-413b-4633-bb03-3bc9af5fcc57" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] - "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"IntegrationAccountVault\",\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/IntegrationAccountVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"a71cf67368fc473f8d2a40cd8804ac85\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2016-07-20T17:20:43.9117224Z\",\r\n \"changedTime\": \"2016-07-20T17:20:43.9119733Z\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1556/certificates/IntegrationAccountCertificate494\",\r\n \"name\": \"IntegrationAccountCertificate494\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-02-11T01:58:36.3797842Z\",\r\n \"changedTime\": \"2017-02-11T01:58:36.3802113Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8255/certificates/IntegrationAccountCertificate2896\",\r\n \"name\": \"IntegrationAccountCertificate2896\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1438" + "1434" ], "Content-Type": [ "application/json; charset=utf-8" @@ -95,105 +97,108 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:58:35 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:176a1fa3-6850-489c-afcb-71ce21aa8451" + "westus:5e845b91-8f72-473b-8b23-3c5f18426f98" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-correlation-request-id": [ - "e6560430-b81f-4a53-a41e-e109af5e70f2" + "92297495-a440-42f2-b9ae-902954852fcf" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172043Z:e6560430-b81f-4a53-a41e-e109af5e70f2" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:20:43 GMT" + "CENTRALUS:20170211T015836Z:92297495-a440-42f2-b9ae-902954852fcf" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1556/certificates/IntegrationAccountCertificate494?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTU1Ni9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU0OTQ/YXBpLXZlcnNpb249MjAxNS0wOC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8255/certificates/IntegrationAccountCertificate2896?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODI1NS9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGUyODk2P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bcc1d33a-ef7c-461a-909b-d31446be245f" + "04a52283-03dc-40c2-8753-a7c1836d63d3" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] - "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"IntegrationAccountVault\",\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/IntegrationAccountVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"a71cf67368fc473f8d2a40cd8804ac85\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2016-07-20T17:20:43.9117224Z\",\r\n \"changedTime\": \"2016-07-20T17:20:43.9119733Z\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1556/certificates/IntegrationAccountCertificate494\",\r\n \"name\": \"IntegrationAccountCertificate494\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-02-11T01:58:36.3797842Z\",\r\n \"changedTime\": \"2017-02-11T01:58:36.3802113Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8255/certificates/IntegrationAccountCertificate2896\",\r\n \"name\": \"IntegrationAccountCertificate2896\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1438" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:58:35 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ + "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "westus:9158a7ee-751f-4686-a1c3-32e075ed65a4" + "westus:73c0ca79-77fc-44e5-a7e9-7daca1468fdb" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14974" + "14871" ], "x-ms-correlation-request-id": [ - "b9110c5d-139f-480f-9459-30032dcc733a" + "aa1227e0-6d4e-4e11-bd89-8858ae81c8ed" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172044Z:b9110c5d-139f-480f-9459-30032dcc733a" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:20:43 GMT" + "CENTRALUS:20170211T015836Z:aa1227e0-6d4e-4e11-bd89-8858ae81c8ed" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1556?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTU1Nj9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8255?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODI1NT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5f2a3de1-69b1-4206-8010-f9c19ede7be1" + "80dce1a0-a846-49d3-b7e5-b1f272ba91b9" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, "ResponseBody": "", @@ -204,29 +209,29 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:58:36 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:39dbe534-ebb2-436c-a2d8-e8ebcbd4dfbd" + "westus:cb2e0c5b-bdcc-4319-88d6-daeaa22a1026" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1197" ], "x-ms-correlation-request-id": [ - "df51a258-dc54-4e4e-96a9-69fa211f8765" + "4e19b9b4-75ff-4885-ba1e-9abf3105f6be" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172044Z:df51a258-dc54-4e4e-96a9-69fa211f8765" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:20:43 GMT" + "CENTRALUS:20170211T015837Z:4e19b9b4-75ff-4885-ba1e-9abf3105f6be" ] }, "StatusCode": 200 @@ -234,11 +239,11 @@ ], "Names": { "CreateAndGetIntegrationAccountCertificate": [ - "IntegrationAccount1556", - "IntegrationAccountCertificate494" + "IntegrationAccount8255", + "IntegrationAccountCertificate2896" ] }, "Variables": { - "SubscriptionId": "5250dd92-b580-46be-b327-e6596c8de196" + "SubscriptionId": "f34b22a3-2202-4fb1-b040-1332bd928c84" } } \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndUpdateIntegrationAccountCertificate.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndUpdateIntegrationAccountCertificate.json index 4ff06838bb19..21246ab07d70 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndUpdateIntegrationAccountCertificate.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateAndUpdateIntegrationAccountCertificate.json @@ -1,31 +1,32 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9036?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTAzNj9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount181?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTgxP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"name\": \"IntegrationAccount9036\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "128" + "91" ], "x-ms-client-request-id": [ - "77ca955e-79c1-4ad1-ae61-e9eb38e871c7" + "2e6e7094-bf83-47bf-8f12-1634e75a9ac2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9036\",\r\n \"name\": \"IntegrationAccount9036\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount181\",\r\n \"name\": \"IntegrationAccount181\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "290" + "288" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,11 +34,17 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:58:41 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:e9d0531e-5944-4a48-ae65-731099e8ae23" + "westus:a8a4134a-105d-4485-b424-8daa8b221a3b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,48 +53,43 @@ "1199" ], "x-ms-correlation-request-id": [ - "34615d0a-d4b6-4557-8474-d69763224090" + "d4b51b90-4e84-4cd2-8c9c-92f6d411a39d" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172104Z:34615d0a-d4b6-4557-8474-d69763224090" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:21:04 GMT" + "WESTUS2:20170211T015842Z:d4b51b90-4e84-4cd2-8c9c-92f6d411a39d" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9036/certificates/IntegrationAccountCertificate340?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTAzNi9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGUzNDA/YXBpLXZlcnNpb249MjAxNS0wOC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount181/certificates/IntegrationAccountCertificate5014?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTgxL2NlcnRpZmljYXRlcy9JbnRlZ3JhdGlvbkFjY291bnRDZXJ0aWZpY2F0ZTUwMTQ/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] - "RequestBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/IntegrationAccountVault\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"a71cf67368fc473f8d2a40cd8804ac85\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\"\r\n },\r\n \"name\": \"IntegrationAccountCertificate340\",\r\n \"location\": \"brazilsouth\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\"\r\n },\r\n \"location\": \"brazilsouth\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1138" + "1088" ], "x-ms-client-request-id": [ - "b19e8356-54f6-4723-b4aa-2e988943180a" + "73f311de-d065-47e8-915a-15437beace41" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] - "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"IntegrationAccountVault\",\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/IntegrationAccountVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"a71cf67368fc473f8d2a40cd8804ac85\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2016-07-20T17:21:05.4492429Z\",\r\n \"changedTime\": \"2016-07-20T17:21:05.4494922Z\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9036/certificates/IntegrationAccountCertificate340\",\r\n \"name\": \"IntegrationAccountCertificate340\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-02-11T01:58:42.6899436Z\",\r\n \"changedTime\": \"2017-02-11T01:58:42.690472Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount181/certificates/IntegrationAccountCertificate5014\",\r\n \"name\": \"IntegrationAccountCertificate5014\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1438" + "1432" ], "Content-Type": [ "application/json; charset=utf-8" @@ -95,11 +97,17 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:58:41 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:c05d0117-758b-4b53-bb54-eb95667e3939" + "westus:48c5b9a1-3264-4a3f-aa0f-8025715f40b6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -108,63 +116,65 @@ "1198" ], "x-ms-correlation-request-id": [ - "27fadca2-8cc4-40c8-8307-3d1ee389adc0" + "30f9150e-f36c-44da-9c49-a5351ebbef1c" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172105Z:27fadca2-8cc4-40c8-8307-3d1ee389adc0" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:21:05 GMT" + "WESTUS2:20170211T015842Z:30f9150e-f36c-44da-9c49-a5351ebbef1c" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9036/certificates/IntegrationAccountCertificate340?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTAzNi9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGUzNDA/YXBpLXZlcnNpb249MjAxNS0wOC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount181/certificates/IntegrationAccountCertificate5014?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTgxL2NlcnRpZmljYXRlcy9JbnRlZ3JhdGlvbkFjY291bnRDZXJ0aWZpY2F0ZTUwMTQ/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] - "RequestBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/IntegrationAccountVault\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"a71cf67368fc473f8d2a40cd8804ac85\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\"\r\n },\r\n \"name\": \"IntegrationAccountCertificate340\",\r\n \"location\": \"brazilsouth\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\"\r\n },\r\n \"location\": \"brazilsouth\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1138" + "1088" ], "x-ms-client-request-id": [ - "2aca77b2-d516-4430-9afd-32dc983f44a4" + "12070b01-0502-4300-b303-de0ea9939b1b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] - "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"IntegrationAccountVault\",\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/IntegrationAccountVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"a71cf67368fc473f8d2a40cd8804ac85\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2016-07-20T17:21:05.4492429Z\",\r\n \"changedTime\": \"2016-07-20T17:21:05.5995367Z\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9036/certificates/IntegrationAccountCertificate340\",\r\n \"name\": \"IntegrationAccountCertificate340\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-02-11T01:58:42.6899436Z\",\r\n \"changedTime\": \"2017-02-11T01:58:42.869983Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount181/certificates/IntegrationAccountCertificate5014\",\r\n \"name\": \"IntegrationAccountCertificate5014\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1438" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:58:41 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ + "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "westus:44b80828-90b0-40ef-8185-747143a4109f" + "westus:61e69af0-c291-4000-ae87-8450546415d5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -173,92 +183,89 @@ "1197" ], "x-ms-correlation-request-id": [ - "6d4e4e47-2f8d-4de8-b691-042f5c4d89a1" + "7853f468-f9eb-4bac-8ac6-f5d90edfe6ee" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172105Z:6d4e4e47-2f8d-4de8-b691-042f5c4d89a1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:21:05 GMT" + "WESTUS2:20170211T015842Z:7853f468-f9eb-4bac-8ac6-f5d90edfe6ee" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9036/certificates/IntegrationAccountCertificate340?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTAzNi9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGUzNDA/YXBpLXZlcnNpb249MjAxNS0wOC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount181/certificates/IntegrationAccountCertificate5014?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTgxL2NlcnRpZmljYXRlcy9JbnRlZ3JhdGlvbkFjY291bnRDZXJ0aWZpY2F0ZTUwMTQ/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "524f8290-60e1-4e98-9a7e-62752c7d5d88" + "e94875bf-04d2-479f-bc8b-9e375e72c4e0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] - "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"IntegrationAccountVault\",\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/IntegrationAccountVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"a71cf67368fc473f8d2a40cd8804ac85\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2016-07-20T17:21:05.4492429Z\",\r\n \"changedTime\": \"2016-07-20T17:21:05.5995367Z\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9036/certificates/IntegrationAccountCertificate340\",\r\n \"name\": \"IntegrationAccountCertificate340\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-02-11T01:58:42.6899436Z\",\r\n \"changedTime\": \"2017-02-11T01:58:42.869983Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount181/certificates/IntegrationAccountCertificate5014\",\r\n \"name\": \"IntegrationAccountCertificate5014\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1438" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:58:41 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ + "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "westus:fe0fb421-cc15-48ef-aa53-cb14a65e8780" + "westus:5599b1e6-213f-426b-ad83-5d385fff001c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14962" + "14820" ], "x-ms-correlation-request-id": [ - "caa4435d-9fef-45a1-942c-e8e9314394bb" + "bcc54c26-4f6b-4740-bf63-62f62b1a689e" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172105Z:caa4435d-9fef-45a1-942c-e8e9314394bb" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:21:05 GMT" + "WESTUS2:20170211T015842Z:bcc54c26-4f6b-4740-bf63-62f62b1a689e" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9036?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTAzNj9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount181?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTgxP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "30228ee7-a533-408a-b20e-cd811c7d553f" + "2064ee36-d574-4029-87e0-5219ba92fc34" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, "ResponseBody": "", @@ -269,11 +276,17 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:58:42 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:2fab97ec-a8e9-452f-9ff2-901da6b69da3" + "westus:bf894847-5750-46ad-9e87-140aaad9ad14" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -282,16 +295,10 @@ "1196" ], "x-ms-correlation-request-id": [ - "86e26b9c-26d8-4812-8820-779a2d5cf51f" + "22c73f17-d2d6-4868-b2f3-ade49a55d37d" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172106Z:86e26b9c-26d8-4812-8820-779a2d5cf51f" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:21:06 GMT" + "WESTUS2:20170211T015843Z:22c73f17-d2d6-4868-b2f3-ade49a55d37d" ] }, "StatusCode": 200 @@ -299,11 +306,11 @@ ], "Names": { "CreateAndUpdateIntegrationAccountCertificate": [ - "IntegrationAccount9036", - "IntegrationAccountCertificate340" + "IntegrationAccount181", + "IntegrationAccountCertificate5014" ] }, "Variables": { - "SubscriptionId": "5250dd92-b580-46be-b327-e6596c8de196" + "SubscriptionId": "f34b22a3-2202-4fb1-b040-1332bd928c84" } } \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateIntegrationAccountCertificateWithPrivateKey.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateIntegrationAccountCertificateWithPrivateKey.json index 2fa2f7ca41ee..750cd7e41a03 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateIntegrationAccountCertificateWithPrivateKey.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateIntegrationAccountCertificateWithPrivateKey.json @@ -1,28 +1,29 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6160?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjE2MD9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9176?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTE3Nj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"name\": \"IntegrationAccount6160\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "128" + "91" ], "x-ms-client-request-id": [ - "4ed61c5d-3993-4dbf-a32c-5d45fe437130" + "e74b5bd7-fe68-4e0d-a33d-f61ddb46732d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6160\",\r\n \"name\": \"IntegrationAccount6160\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9176\",\r\n \"name\": \"IntegrationAccount9176\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -33,59 +34,60 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:58:52 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:05a6e7d1-c41d-4573-b1a2-3a2f44e04ce7" + "westus:8f59e0ea-2f9d-4281-aa14-b28f11089259" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1199" ], "x-ms-correlation-request-id": [ - "0e824d43-d7d7-45b7-bb08-fdee858fc0e2" + "994a0c0d-e9bf-4831-bea9-189cbf2205bd" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172110Z:0e824d43-d7d7-45b7-bb08-fdee858fc0e2" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:21:09 GMT" + "CENTRALUS:20170211T015853Z:994a0c0d-e9bf-4831-bea9-189cbf2205bd" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6160/certificates/IntegrationAccountCertificate1568?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjE2MC9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGUxNTY4P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9176/certificates/IntegrationAccountCertificate5827?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTE3Ni9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU1ODI3P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/IntegrationAccountVault\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"a71cf67368fc473f8d2a40cd8804ac85\"\r\n }\r\n },\r\n \"name\": \"IntegrationAccountCertificate1568\",\r\n \"location\": \"brazilsouth\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n }\r\n },\r\n \"location\": \"brazilsouth\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "397" + "346" ], "x-ms-client-request-id": [ - "9c093d4f-776d-42f6-a598-5520bcb6d2cb" + "3f9550e6-2363-46eb-b304-63217237faa0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"IntegrationAccountVault\",\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/IntegrationAccountVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"a71cf67368fc473f8d2a40cd8804ac85\"\r\n },\r\n \"createdTime\": \"2016-07-20T17:21:10.9725323Z\",\r\n \"changedTime\": \"2016-07-20T17:21:10.9733575Z\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6160/certificates/IntegrationAccountCertificate1568\",\r\n \"name\": \"IntegrationAccountCertificate1568\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"createdTime\": \"2017-02-11T01:58:53.8111949Z\",\r\n \"changedTime\": \"2017-02-11T01:58:53.8115832Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9176/certificates/IntegrationAccountCertificate5827\",\r\n \"name\": \"IntegrationAccountCertificate5827\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "705" + "699" ], "Content-Type": [ "application/json; charset=utf-8" @@ -93,47 +95,48 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:58:53 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:03e6d26e-c18d-4ccf-a6b4-a94e97b28017" + "westus:454006a8-812f-47b2-bca2-d9a4037ba6cd" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1198" ], "x-ms-correlation-request-id": [ - "7724896c-a070-45b9-b225-b1ed767823b1" + "dacc48db-ce97-4675-afd8-8df8012a1e60" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172111Z:7724896c-a070-45b9-b225-b1ed767823b1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:21:10 GMT" + "CENTRALUS:20170211T015853Z:dacc48db-ce97-4675-afd8-8df8012a1e60" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6160/certificates/IntegrationAccountCertificate1568?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjE2MC9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGUxNTY4P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9176/certificates/IntegrationAccountCertificate5827?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTE3Ni9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU1ODI3P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5d91c58b-10b1-4943-b828-8b4f7e0b5d04" + "85275ab4-ca63-4f03-8830-78303c139d43" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, "ResponseBody": "", @@ -144,47 +147,48 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:58:53 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:787009a1-260f-4fe9-9d1a-6ebf88df4bc2" + "westus:833c24c0-971c-4648-9aae-9f897c3d461f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1197" ], "x-ms-correlation-request-id": [ - "4faa1167-1ad2-44cf-92dc-32785bc03cc2" + "de615f83-5498-41b9-ac31-28d46500b4fa" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172111Z:4faa1167-1ad2-44cf-92dc-32785bc03cc2" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:21:10 GMT" + "CENTRALUS:20170211T015853Z:de615f83-5498-41b9-ac31-28d46500b4fa" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6160?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjE2MD9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9176?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTE3Nj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "2165f501-88a4-4b80-ad75-dad985aa1458" + "631525c0-3a44-4709-a40b-ec83cec0529d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, "ResponseBody": "", @@ -195,29 +199,29 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:58:54 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:bca10781-6248-44bd-98be-41bad5f0a8f9" + "westus:b44e8133-ca29-4f4e-b8ed-df7c268608f2" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1196" ], "x-ms-correlation-request-id": [ - "bb620f04-7c6c-48c2-b9f5-3af9797d9e76" + "6e9d6b9f-ecdd-494d-8945-c7f1e2681685" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172111Z:bb620f04-7c6c-48c2-b9f5-3af9797d9e76" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:21:10 GMT" + "CENTRALUS:20170211T015854Z:6e9d6b9f-ecdd-494d-8945-c7f1e2681685" ] }, "StatusCode": 200 @@ -225,11 +229,11 @@ ], "Names": { "CreateIntegrationAccountCertificateWithPrivateKey": [ - "IntegrationAccount6160", - "IntegrationAccountCertificate1568" + "IntegrationAccount9176", + "IntegrationAccountCertificate5827" ] }, "Variables": { - "SubscriptionId": "5250dd92-b580-46be-b327-e6596c8de196" + "SubscriptionId": "f34b22a3-2202-4fb1-b040-1332bd928c84" } } \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateIntegrationAccountCertificateWithPublicKey.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateIntegrationAccountCertificateWithPublicKey.json index 5bd6907cf672..5f3c174c25bc 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateIntegrationAccountCertificateWithPublicKey.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/CreateIntegrationAccountCertificateWithPublicKey.json @@ -1,28 +1,29 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3453?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzQ1Mz9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4912?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDkxMj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"name\": \"IntegrationAccount3453\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "128" + "91" ], "x-ms-client-request-id": [ - "db19a560-f80c-425b-ace6-99f797bb1030" + "d58fd43e-d6ea-4eec-875d-b5a035741835" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3453\",\r\n \"name\": \"IntegrationAccount3453\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4912\",\r\n \"name\": \"IntegrationAccount4912\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -33,58 +34,59 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:58:28 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:5ea6586d-18fb-4689-9ba4-79bb28ebb885" + "westus:976d66fa-79aa-4583-bc48-3df916c5e0e7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1199" ], "x-ms-correlation-request-id": [ - "eb318845-6bdb-4ca9-a347-8d5d8d3662f6" + "675f7b87-ec72-4da6-90e0-d2445588f4fa" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172054Z:eb318845-6bdb-4ca9-a347-8d5d8d3662f6" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:20:54 GMT" + "CENTRALUS:20170211T015828Z:675f7b87-ec72-4da6-90e0-d2445588f4fa" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3453/certificates/IntegrationAccountCertificate6148?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzQ1My9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU2MTQ4P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4912/certificates/IntegrationAccountCertificate6266?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDkxMi9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU2MjY2P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] - "RequestBody": "{\r\n \"properties\": {\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\"\r\n },\r\n \"name\": \"IntegrationAccountCertificate6148\",\r\n \"location\": \"brazilsouth\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\"\r\n },\r\n \"location\": \"brazilsouth\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "847" + "799" ], "x-ms-client-request-id": [ - "98ce60a9-8438-4f74-9f7d-a1322043332b" + "413fa246-34aa-448b-a26f-9c0807fbcf8a" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] - "ResponseBody": "{\r\n \"properties\": {\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2016-07-20T17:20:54.6623065Z\",\r\n \"changedTime\": \"2016-07-20T17:20:54.6627966Z\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3453/certificates/IntegrationAccountCertificate6148\",\r\n \"name\": \"IntegrationAccountCertificate6148\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-02-11T01:58:28.9067983Z\",\r\n \"changedTime\": \"2017-02-11T01:58:28.9070119Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4912/certificates/IntegrationAccountCertificate6266\",\r\n \"name\": \"IntegrationAccountCertificate6266\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", "ResponseHeaders": { "Content-Length": [ "1139" @@ -95,47 +97,48 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:58:28 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:bd74f9e7-e584-4891-8797-d3f234a83906" + "westus:7a4ac144-b7a9-4446-b266-fc1f0ea9dca9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1198" ], "x-ms-correlation-request-id": [ - "2157cfe2-aacf-4d80-984a-ed3acd73aa4a" + "143cc32c-4f89-4451-9eec-f7ee0eeae433" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172054Z:2157cfe2-aacf-4d80-984a-ed3acd73aa4a" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:20:54 GMT" + "CENTRALUS:20170211T015828Z:143cc32c-4f89-4451-9eec-f7ee0eeae433" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3453/certificates/IntegrationAccountCertificate6148?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzQ1My9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU2MTQ4P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4912/certificates/IntegrationAccountCertificate6266?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDkxMi9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU2MjY2P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3126ad9d-04f6-41f3-9daa-d63c4ee2b8d0" + "00e819a7-1867-4f4b-9ea5-c342902e27a0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, "ResponseBody": "", @@ -146,47 +149,48 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:58:28 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:80e83a7b-cc7f-427f-8b95-5cfe8f8e05ff" + "westus:8257aaff-0952-4e5a-b5a7-d2436544331e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1197" ], "x-ms-correlation-request-id": [ - "f1677763-2e73-41ce-930c-f0ef3473c473" + "14c1f01c-31c6-486a-8a8f-055b53672f04" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172054Z:f1677763-2e73-41ce-930c-f0ef3473c473" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:20:54 GMT" + "CENTRALUS:20170211T015829Z:14c1f01c-31c6-486a-8a8f-055b53672f04" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3453?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzQ1Mz9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4912?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDkxMj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "216e2f73-4770-457f-b54e-8486e836f556" + "ce90a626-6fa2-45ae-bf4c-c2be0a3db725" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, "ResponseBody": "", @@ -197,29 +201,29 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:58:29 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:a70d9d56-cb59-4061-b46c-a9d569f84f01" + "westus:b5736988-d0fb-4706-b364-c4320634a752" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1196" ], "x-ms-correlation-request-id": [ - "7eb26335-deae-41d6-880c-8d21176ea703" + "3d7bf059-0838-4d77-bbfc-c188f495a2fd" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172055Z:7eb26335-deae-41d6-880c-8d21176ea703" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:20:55 GMT" + "CENTRALUS:20170211T015829Z:3d7bf059-0838-4d77-bbfc-c188f495a2fd" ] }, "StatusCode": 200 @@ -227,11 +231,11 @@ ], "Names": { "CreateIntegrationAccountCertificateWithPublicKey": [ - "IntegrationAccount3453", - "IntegrationAccountCertificate6148" + "IntegrationAccount4912", + "IntegrationAccountCertificate6266" ] }, "Variables": { - "SubscriptionId": "5250dd92-b580-46be-b327-e6596c8de196" + "SubscriptionId": "f34b22a3-2202-4fb1-b040-1332bd928c84" } } \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/DeleteIntegrationAccountCertificateOnAccountDeletion.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/DeleteIntegrationAccountCertificateOnAccountDeletion.json index aedfdbcffa45..7439381eeebc 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/DeleteIntegrationAccountCertificateOnAccountDeletion.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/DeleteIntegrationAccountCertificateOnAccountDeletion.json @@ -1,28 +1,29 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2103?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjEwMz9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3517?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzUxNz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"name\": \"IntegrationAccount2103\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "128" + "91" ], "x-ms-client-request-id": [ - "0364f421-b84f-41aa-8752-2d57ef830971" + "f10eb2b2-4ea8-4ab9-9b40-18c2020f7655" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2103\",\r\n \"name\": \"IntegrationAccount2103\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3517\",\r\n \"name\": \"IntegrationAccount3517\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -33,61 +34,62 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:58:38 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:0a982507-8257-4450-9c20-0a8bf593f02c" + "westus:dcc42192-8c37-43c7-9bb4-5f71dcb81fba" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1199" ], "x-ms-correlation-request-id": [ - "835ed641-c49a-4569-893f-252e2c85b4f4" + "66d7c3b7-58af-4cd3-8ffa-035c52124036" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172048Z:835ed641-c49a-4569-893f-252e2c85b4f4" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:20:48 GMT" + "WESTUS2:20170211T015839Z:66d7c3b7-58af-4cd3-8ffa-035c52124036" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2103/certificates/IntegrationAccountCertificate7263?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjEwMy9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU3MjYzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3517/certificates/IntegrationAccountCertificate1584?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzUxNy9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGUxNTg0P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] - "RequestBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/IntegrationAccountVault\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"a71cf67368fc473f8d2a40cd8804ac85\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\"\r\n },\r\n \"name\": \"IntegrationAccountCertificate7263\",\r\n \"location\": \"brazilsouth\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\"\r\n },\r\n \"location\": \"brazilsouth\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1139" + "1088" ], "x-ms-client-request-id": [ - "d08e8147-9cf5-4bc5-9378-c34e8934aa99" + "7aa420da-be9a-431f-93ce-934106c0ef91" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] - "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"IntegrationAccountVault\",\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/IntegrationAccountVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"a71cf67368fc473f8d2a40cd8804ac85\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2016-07-20T17:20:49.4283084Z\",\r\n \"changedTime\": \"2016-07-20T17:20:49.4289337Z\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2103/certificates/IntegrationAccountCertificate7263\",\r\n \"name\": \"IntegrationAccountCertificate7263\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-02-11T01:58:40.0797755Z\",\r\n \"changedTime\": \"2017-02-11T01:58:40.0802245Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3517/certificates/IntegrationAccountCertificate1584\",\r\n \"name\": \"IntegrationAccountCertificate1584\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1440" + "1434" ], "Content-Type": [ "application/json; charset=utf-8" @@ -95,47 +97,48 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:58:39 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:9a4099a4-34da-49e1-ac13-8f8ecead86bd" + "westus:7eab3502-c0d3-48a3-981f-7988e6b8736b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1198" ], "x-ms-correlation-request-id": [ - "0f3b3b80-629d-430f-bd5f-b31aa8e08cf6" + "cd8ec81a-faad-46cc-9625-8030f414c169" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172049Z:0f3b3b80-629d-430f-bd5f-b31aa8e08cf6" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:20:48 GMT" + "WESTUS2:20170211T015839Z:cd8ec81a-faad-46cc-9625-8030f414c169" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2103?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjEwMz9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3517?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzUxNz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bc3c8043-0dd8-4743-ad20-9c1f94a98f74" + "8a409708-63bf-434b-a20d-e5f42242c957" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, "ResponseBody": "", @@ -146,50 +149,51 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:58:39 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:b1ed118a-06a3-4aa4-9df0-9259833c14ed" + "westus:3e9fefd3-52e9-407e-96d3-7d3e867ef442" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1197" ], "x-ms-correlation-request-id": [ - "b41dc59a-5039-471f-bf55-5b03cfde6056" + "78a26e27-35dd-4fe0-b277-1a828d821203" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172049Z:b41dc59a-5039-471f-bf55-5b03cfde6056" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:20:49 GMT" + "WESTUS2:20170211T015840Z:78a26e27-35dd-4fe0-b277-1a828d821203" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2103/certificates/IntegrationAccountCertificate7263?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjEwMy9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU3MjYzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3517/certificates/IntegrationAccountCertificate1584?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzUxNy9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGUxNTg0P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "9f11fbf0-a6af-4bcc-b6da-ba89ad5c0bcd" + "cde55883-7299-4aa0-b1d3-5dbd9446e5ba" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/integrationAccounts/IntegrationAccount2103' under resource group 'flowrg' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/integrationAccounts/IntegrationAccount3517' under resource group 'flowrg' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "168" @@ -200,6 +204,12 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:58:39 GMT" + ], "Pragma": [ "no-cache" ], @@ -207,22 +217,16 @@ "gateway" ], "x-ms-request-id": [ - "e75605c1-9abd-4cf1-9a3c-ece2bcfc6b4f" + "71fd2949-5b77-4071-bedb-b02f1a5ecc98" ], "x-ms-correlation-request-id": [ - "e75605c1-9abd-4cf1-9a3c-ece2bcfc6b4f" + "71fd2949-5b77-4071-bedb-b02f1a5ecc98" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172049Z:e75605c1-9abd-4cf1-9a3c-ece2bcfc6b4f" + "WESTUS2:20170211T015840Z:71fd2949-5b77-4071-bedb-b02f1a5ecc98" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:20:49 GMT" ] }, "StatusCode": 404 @@ -230,11 +234,11 @@ ], "Names": { "DeleteIntegrationAccountCertificateOnAccountDeletion": [ - "IntegrationAccount2103", - "IntegrationAccountCertificate7263" + "IntegrationAccount3517", + "IntegrationAccountCertificate1584" ] }, "Variables": { - "SubscriptionId": "5250dd92-b580-46be-b327-e6596c8de196" + "SubscriptionId": "f34b22a3-2202-4fb1-b040-1332bd928c84" } } \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/ListIntegrationAccountCertificates.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/ListIntegrationAccountCertificates.json index c3a2e4afd983..8ccb6e602bd4 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/ListIntegrationAccountCertificates.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountCertificateScenarioTests/ListIntegrationAccountCertificates.json @@ -1,28 +1,29 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9747?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTc0Nz9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5141?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTE0MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"name\": \"IntegrationAccount9747\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "128" + "91" ], "x-ms-client-request-id": [ - "29795c23-56ca-4f10-8b85-894c2e76c47a" + "e04872bf-7bc1-4085-affb-239243a21bbf" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9747\",\r\n \"name\": \"IntegrationAccount9747\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5141\",\r\n \"name\": \"IntegrationAccount5141\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -33,61 +34,62 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:58:44 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:24b7a77c-7dc2-4fbc-b269-90569667c618" + "westus:24b85797-0e5b-4686-b9a6-b88fc7480071" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1195" ], "x-ms-correlation-request-id": [ - "6c8944ec-e520-489e-8551-531f5fcc2fa3" + "d8712efe-6535-4dc6-b708-02ad078adeb7" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172038Z:6c8944ec-e520-489e-8551-531f5fcc2fa3" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:20:37 GMT" + "WESTUS2:20170211T015844Z:d8712efe-6535-4dc6-b708-02ad078adeb7" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9747/certificates/IntegrationAccountCertificate291?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTc0Ny9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGUyOTE/YXBpLXZlcnNpb249MjAxNS0wOC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5141/certificates/IntegrationAccountCertificate5236?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTE0MS9jZXJ0aWZpY2F0ZXMvSW50ZWdyYXRpb25BY2NvdW50Q2VydGlmaWNhdGU1MjM2P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] - "RequestBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/IntegrationAccountVault\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"a71cf67368fc473f8d2a40cd8804ac85\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\"\r\n },\r\n \"name\": \"IntegrationAccountCertificate291\",\r\n \"location\": \"brazilsouth\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\"\r\n },\r\n \"location\": \"brazilsouth\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "1138" + "1088" ], "x-ms-client-request-id": [ - "d5a9699f-5589-46fb-880e-7d9644f7e93a" + "17734579-c5e2-47e5-82b4-a80f79a780fd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] - "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"IntegrationAccountVault\",\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/IntegrationAccountVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"a71cf67368fc473f8d2a40cd8804ac85\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2016-07-20T17:20:39.0278489Z\",\r\n \"changedTime\": \"2016-07-20T17:20:39.0288034Z\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9747/certificates/IntegrationAccountCertificate291\",\r\n \"name\": \"IntegrationAccountCertificate291\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-02-11T01:58:45.3508638Z\",\r\n \"changedTime\": \"2017-02-11T01:58:45.3511096Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5141/certificates/IntegrationAccountCertificate5236\",\r\n \"name\": \"IntegrationAccountCertificate5236\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "1438" + "1434" ], "Content-Type": [ "application/json; charset=utf-8" @@ -95,105 +97,108 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:58:44 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:279e06b1-92f6-4b7a-8eb7-8411464baeb0" + "westus:15766c6e-0019-4101-ada1-8bd51f2bdda7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1194" ], "x-ms-correlation-request-id": [ - "dd55a6fe-e37c-48b9-94f9-a51c95036897" + "d36f6638-4d01-4066-bfa4-4bca5ed822b7" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172038Z:dd55a6fe-e37c-48b9-94f9-a51c95036897" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:20:38 GMT" + "WESTUS2:20170211T015845Z:d36f6638-4d01-4066-bfa4-4bca5ed822b7" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9747/certificates?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTc0Ny9jZXJ0aWZpY2F0ZXM/YXBpLXZlcnNpb249MjAxNS0wOC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5141/certificates?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTE0MS9jZXJ0aWZpY2F0ZXM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "51d2cdca-702d-40a0-b8c3-027dfc5df403" + "7316b29a-d67e-4ed6-a994-c395d9d002bd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, //[SuppressMessage("Microsoft.Security", "CS002:SecretInNextLine")] - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"IntegrationAccountVault\",\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/IntegrationAccountVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"a71cf67368fc473f8d2a40cd8804ac85\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2016-07-20T17:20:39.0278489Z\",\r\n \"changedTime\": \"2016-07-20T17:20:39.0288034Z\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9747/certificates/IntegrationAccountCertificate291\",\r\n \"name\": \"IntegrationAccountCertificate291\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"key\": {\r\n \"keyVault\": {\r\n \"name\": \"AzureSdkTestKeyVault\",\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourcegroups/flowrg/providers/microsoft.keyvault/vaults/AzureSdkTestKeyVault\",\r\n \"type\": \"Microsoft.KeyVault/vaults\"\r\n },\r\n \"keyName\": \"PRIVATEKEY\",\r\n \"keyVersion\": \"87d9764197604449b9b8eb7bd8710868\"\r\n },\r\n \"publicCertificate\": \"MIICETCCAXqgAwIBAgIQdUqkudmAXbJILn+rDmyOlzANBgkqhkiG9w0BAQQFADAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwHhcNMTYwMzMwMjExMTQ5WhcNMzkxMjMxMjM1OTU5WjAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnQwgZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBAMY+zUpOLPysqXEVW+EVaf6RNHTPh/Vb6/YK68AgDyowtDzoY2HO1VzDZrZau//FR8VcZkyc5xAkD3shqQK6mFOoQs0DMjAWBGGRze44kSU1eRba+Uk2Gbaa9HUY4RJ3ocKan4NekrN/O7qbBfobyBw91aKvGfwHUzCs0kVZNek3AgMBAAGjUjBQME4GA1UdAQRHMEWAEG34ZgwE5HRjrifRifoSvC2hHzAdMRswGQYDVQQDExJJbnRlZ3JhdGlvbkFjY291bnSCEHVKpLnZgF2ySC5/qw5sjpcwDQYJKoZIhvcNAQEEBQADgYEAUvVqnoCP2aHmI+9lJhaG2LDYdKEUs+POpFawQZABT4kkykKpxmfxzG3aEcA0eZ67MZ7gaJTuVo8wlGjv37cVODsRxeeo4XvcdcepYxnFUEgIkRaCDF0KKzu5jdSYaMshp16i4XlR4dl2mRhW/6H19FyjhCa6dEoIUxcDCrfrl80=\",\r\n \"createdTime\": \"2017-02-11T01:58:45.3508638Z\",\r\n \"changedTime\": \"2017-02-11T01:58:45.3511096Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5141/certificates/IntegrationAccountCertificate5236\",\r\n \"name\": \"IntegrationAccountCertificate5236\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/certificates\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "1450" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:58:44 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ + "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "westus:c86093b6-5af8-420d-b171-6ea8f255e350" + "westus:c8333530-df27-4ebc-a039-869a85a58c5b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14935" + "14819" ], "x-ms-correlation-request-id": [ - "cab5f0e2-3df1-4a06-8c31-1f844a2f9d66" + "7364e02e-3591-4b42-a066-f04b97112670" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172039Z:cab5f0e2-3df1-4a06-8c31-1f844a2f9d66" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:20:38 GMT" + "WESTUS2:20170211T015845Z:7364e02e-3591-4b42-a066-f04b97112670" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9747?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTc0Nz9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5141?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTE0MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "98830133-33f5-4618-805f-5cf406beec01" + "e98b4a8e-23ad-4526-8618-017a90fa2e9b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, "ResponseBody": "", @@ -204,29 +209,29 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:58:44 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:a5888169-d4ed-4ec4-8733-69d716368bd8" + "westus:f5e9df22-7a92-4304-891f-4103db16983f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1193" ], "x-ms-correlation-request-id": [ - "30b12cff-160d-49f6-994f-4388c8965b68" + "2ff448df-0442-4477-bd8b-d2789d8f3683" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172039Z:30b12cff-160d-49f6-994f-4388c8965b68" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:20:38 GMT" + "WESTUS2:20170211T015845Z:2ff448df-0442-4477-bd8b-d2789d8f3683" ] }, "StatusCode": 200 @@ -234,11 +239,11 @@ ], "Names": { "ListIntegrationAccountCertificates": [ - "IntegrationAccount9747", - "IntegrationAccountCertificate291" + "IntegrationAccount5141", + "IntegrationAccountCertificate5236" ] }, "Variables": { - "SubscriptionId": "5250dd92-b580-46be-b327-e6596c8de196" + "SubscriptionId": "f34b22a3-2202-4fb1-b040-1332bd928c84" } } \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/CreateAndDeleteIntegrationAccountMap.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/CreateAndDeleteIntegrationAccountMap.json index 050b9dc93e84..7277dee11ec4 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/CreateAndDeleteIntegrationAccountMap.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/CreateAndDeleteIntegrationAccountMap.json @@ -1,31 +1,32 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2801?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjgwMT9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount704?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzA0P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"name\": \"IntegrationAccount2801\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "128" + "91" ], "x-ms-client-request-id": [ - "0e2e846c-749c-4d30-97da-32bc0e878cbe" + "f14ad00e-b872-49f5-90a7-887c61466c79" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2801\",\r\n \"name\": \"IntegrationAccount2801\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount704\",\r\n \"name\": \"IntegrationAccount704\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "290" + "288" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,59 +34,60 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:24 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:4f557bbe-35da-4373-9d11-ffdf1618b5e0" + "westus:87eb36f0-dd5c-4232-b595-0583d04e8f3d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1196" ], "x-ms-correlation-request-id": [ - "85e6a300-e565-4adc-aecb-26e5d8afec5f" + "9c19525a-282c-4173-bba5-1dd7fe4c53e4" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172257Z:85e6a300-e565-4adc-aecb-26e5d8afec5f" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:22:56 GMT" + "WESTUS2:20170211T020024Z:9c19525a-282c-4173-bba5-1dd7fe4c53e4" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2801/maps/IntegrationAccountMap6053?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjgwMS9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDYwNTM/YXBpLXZlcnNpb249MjAxNS0wOC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount704/maps/IntegrationAccountMap353?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzA0L21hcHMvSW50ZWdyYXRpb25BY2NvdW50TWFwMzUzP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\",\r\n \"metadata\": \"IntegrationAccountMap6053\"\r\n },\r\n \"name\": \"IntegrationAccountMap6053\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountMapName\": \"IntegrationAccountMap6053\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\",\r\n \"metadata\": \"IntegrationAccountMap353\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountMapName\": \"IntegrationAccountMap353\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "3554" + "3512" ], "x-ms-client-request-id": [ - "20de3cf7-b8e9-45e7-9803-0de7a73e5956" + "87649791-fc06-4b86-9cac-07edc1cf0630" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu11by01.blob.core.windows.net/integrationaccounts4f5b41e56a1947a0a96f7e0f517d1396/99D1E_XSLT_INTEGRATIONACCOUNTMAP6053-FF5157388F9D4D479955356486CF410B?sv=2014-02-14&sr=b&sig=sKD2umyBJYSZWRwpmqyHZNAhGyhXzwEnozMy3KBJpOs%3D&se=2016-07-20T21%3A22%3A57Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D3B0C27D84AC77\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2016-07-20T17:22:57.4718091Z\",\r\n \"changedTime\": \"2016-07-20T17:22:57.4720351Z\",\r\n \"metadata\": \"IntegrationAccountMap6053\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2801/maps/IntegrationAccountMap6053\",\r\n \"name\": \"IntegrationAccountMap6053\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu25by01.blob.core.windows.net/integrationaccounts5699480620c94359a93f89e588649568/99D1E_XSLT_INTEGRATIONACCOUNTMAP353-FD0554497C364E2782E712ABFF5660D0?sv=2014-02-14&sr=b&sig=NyrykwkAmPiwOhxpzRrNHCs1cBarEHxYf9XpJwf2MZk%3D&se=2017-02-11T06%3A00%3A25Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45221BEEBB567\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T02:00:25.52449Z\",\r\n \"changedTime\": \"2017-02-11T02:00:25.5248267Z\",\r\n \"metadata\": \"IntegrationAccountMap353\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount704/maps/IntegrationAccountMap353\",\r\n \"name\": \"IntegrationAccountMap353\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "853" + "846" ], "Content-Type": [ "application/json; charset=utf-8" @@ -93,47 +95,48 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:25 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:48215158-5310-4647-96f0-8acdc34b6290" + "westus:4694456f-a21d-42b2-bcac-b89656e8f2f9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1195" ], "x-ms-correlation-request-id": [ - "de0842b6-cbd6-48c2-858d-b151d6c49228" + "6d551f37-61ec-48c1-bfdc-1edd0f99a23d" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172257Z:de0842b6-cbd6-48c2-858d-b151d6c49228" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:22:57 GMT" + "WESTUS2:20170211T020025Z:6d551f37-61ec-48c1-bfdc-1edd0f99a23d" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2801/maps/IntegrationAccountMap6053?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjgwMS9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDYwNTM/YXBpLXZlcnNpb249MjAxNS0wOC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount704/maps/IntegrationAccountMap353?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzA0L21hcHMvSW50ZWdyYXRpb25BY2NvdW50TWFwMzUzP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b2092e7a-95e2-4ae1-96a5-9aa79d78cd7a" + "cb17556a-4496-48d3-b70b-cbcb870b9951" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, "ResponseBody": "", @@ -144,47 +147,48 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:25 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:8dc16001-a78b-405c-ab28-87c22e4afae3" + "westus:c1b9ae05-ed6f-4871-9108-c6770f8976b7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1194" ], "x-ms-correlation-request-id": [ - "6415c0d1-b38c-4967-81b9-490bc6495074" + "69d4864b-9d85-4456-8a51-1f451ccbdc08" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172257Z:6415c0d1-b38c-4967-81b9-490bc6495074" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:22:57 GMT" + "WESTUS2:20170211T020025Z:69d4864b-9d85-4456-8a51-1f451ccbdc08" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2801?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjgwMT9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount704?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzA0P2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c6ea72e8-7504-46b7-9b45-8dab1eb7e6c1" + "33e95217-63ee-4d83-8975-d708a4f0c8df" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, "ResponseBody": "", @@ -195,29 +199,29 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:25 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:af3e462b-d043-4cad-9582-d0bdc1c6f808" + "westus:65822238-ce9f-4474-be83-5d92771130da" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1193" ], "x-ms-correlation-request-id": [ - "3e42f06a-e0f6-4023-a742-6a5f31f196e1" + "c63f1d34-34a1-4f76-8172-89e54554e87e" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172258Z:3e42f06a-e0f6-4023-a742-6a5f31f196e1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:22:58 GMT" + "WESTUS2:20170211T020026Z:c63f1d34-34a1-4f76-8172-89e54554e87e" ] }, "StatusCode": 200 @@ -225,11 +229,11 @@ ], "Names": { "CreateAndDeleteIntegrationAccountMap": [ - "IntegrationAccount2801", - "IntegrationAccountMap6053" + "IntegrationAccount704", + "IntegrationAccountMap353" ] }, "Variables": { - "SubscriptionId": "5250dd92-b580-46be-b327-e6596c8de196" + "SubscriptionId": "f34b22a3-2202-4fb1-b040-1332bd928c84" } } \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/CreateAndGetIntegrationAccountMap.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/CreateAndGetIntegrationAccountMap.json index f3d12920b2d1..07db23dfc0d7 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/CreateAndGetIntegrationAccountMap.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/CreateAndGetIntegrationAccountMap.json @@ -1,28 +1,29 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5084?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTA4ND9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2937?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjkzNz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"name\": \"IntegrationAccount5084\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "128" + "91" ], "x-ms-client-request-id": [ - "cf9bc945-8f8d-457e-a11b-7cc0ce8a34e2" + "28ee7ce4-5b05-4a26-9de6-ad86d314753d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5084\",\r\n \"name\": \"IntegrationAccount5084\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2937\",\r\n \"name\": \"IntegrationAccount2937\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -33,59 +34,60 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:30 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:7ac8e3a6-3f92-4ed1-b341-6e84db85464e" + "westus:46e4f8a0-c85d-45c6-826c-ab2036c1a2ef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1199" ], "x-ms-correlation-request-id": [ - "b18f65a4-c317-43ac-b951-d4dc88209dd6" + "8b990676-bab8-4c3b-adce-a36bb9d1e95c" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172239Z:b18f65a4-c317-43ac-b951-d4dc88209dd6" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:22:39 GMT" + "WESTUS2:20170211T020030Z:8b990676-bab8-4c3b-adce-a36bb9d1e95c" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5084/maps/IntegrationAccountMap3853?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTA4NC9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDM4NTM/YXBpLXZlcnNpb249MjAxNS0wOC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2937/maps/IntegrationAccountMap1906?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjkzNy9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDE5MDY/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\",\r\n \"metadata\": \"IntegrationAccountMap3853\"\r\n },\r\n \"name\": \"IntegrationAccountMap3853\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountMapName\": \"IntegrationAccountMap3853\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\",\r\n \"metadata\": \"IntegrationAccountMap1906\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountMapName\": \"IntegrationAccountMap1906\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "3554" + "3514" ], "x-ms-client-request-id": [ - "98c6415d-68c0-42fa-9140-1307d65816e9" + "6331b902-5300-4a6c-bdde-59b6df108236" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu09by01.blob.core.windows.net/integrationaccountsd34d38dc6d0f4d8da1c8f8554701f5e1/99D1E_XSLT_INTEGRATIONACCOUNTMAP3853-5868BC0103194FCAB12A010F838BAEEC?sv=2014-02-14&sr=b&sig=zJC%2FDDdKtCmIADikZqNT32Q8FXFuEd9dL0smUyjEtS0%3D&se=2016-07-20T21%3A22%3A39Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D3B0C272EDA59A\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2016-07-20T17:22:39.7655332Z\",\r\n \"changedTime\": \"2016-07-20T17:22:39.7662919Z\",\r\n \"metadata\": \"IntegrationAccountMap3853\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5084/maps/IntegrationAccountMap3853\",\r\n \"name\": \"IntegrationAccountMap3853\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu18by01.blob.core.windows.net/integrationaccounts26eb1646b43d4f62885c8850c5b9bb19/99D1E_XSLT_INTEGRATIONACCOUNTMAP1906-BFD4B28C49094D938DC33B1497E80D09?sv=2014-02-14&sr=b&sig=tDyp9csDuzMtSkKvIQ0NW0l8vg%2F8%2F4p87gDRBHXCQa4%3D&se=2017-02-11T06%3A00%3A31Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45221C1DEC46B\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T02:00:31.0823507Z\",\r\n \"changedTime\": \"2017-02-11T02:00:31.0832489Z\",\r\n \"metadata\": \"IntegrationAccountMap1906\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2937/maps/IntegrationAccountMap1906\",\r\n \"name\": \"IntegrationAccountMap1906\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "855" + "857" ], "Content-Type": [ "application/json; charset=utf-8" @@ -93,104 +95,107 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:30 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:4fe41237-cd99-4d08-85a4-09644f9f973d" + "westus:411e9781-cb08-4fe4-bcfc-d58fdc14f22d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1198" ], "x-ms-correlation-request-id": [ - "c45038fe-857e-4c4e-8095-97ff468e6fc8" + "afce76e0-20c1-474f-8a77-46d340355cf4" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172239Z:c45038fe-857e-4c4e-8095-97ff468e6fc8" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:22:39 GMT" + "WESTUS2:20170211T020030Z:afce76e0-20c1-474f-8a77-46d340355cf4" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5084/maps/IntegrationAccountMap3853?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTA4NC9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDM4NTM/YXBpLXZlcnNpb249MjAxNS0wOC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2937/maps/IntegrationAccountMap1906?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjkzNy9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDE5MDY/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "98cf6ccc-fe40-4c51-9809-ce0567d359ab" + "51d8d459-1c74-4018-8829-e78a62ac4976" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu09by01.blob.core.windows.net/integrationaccountsd34d38dc6d0f4d8da1c8f8554701f5e1/99D1E_XSLT_INTEGRATIONACCOUNTMAP3853-5868BC0103194FCAB12A010F838BAEEC?sv=2014-02-14&sr=b&sig=zJC%2FDDdKtCmIADikZqNT32Q8FXFuEd9dL0smUyjEtS0%3D&se=2016-07-20T21%3A22%3A39Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D3B0C272EDA59A\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2016-07-20T17:22:39.7655332Z\",\r\n \"changedTime\": \"2016-07-20T17:22:39.7662919Z\",\r\n \"metadata\": \"IntegrationAccountMap3853\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5084/maps/IntegrationAccountMap3853\",\r\n \"name\": \"IntegrationAccountMap3853\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu18by01.blob.core.windows.net/integrationaccounts26eb1646b43d4f62885c8850c5b9bb19/99D1E_XSLT_INTEGRATIONACCOUNTMAP1906-BFD4B28C49094D938DC33B1497E80D09?sv=2014-02-14&sr=b&sig=tDyp9csDuzMtSkKvIQ0NW0l8vg%2F8%2F4p87gDRBHXCQa4%3D&se=2017-02-11T06%3A00%3A31Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45221C1DEC46B\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T02:00:31.0823507Z\",\r\n \"changedTime\": \"2017-02-11T02:00:31.0832489Z\",\r\n \"metadata\": \"IntegrationAccountMap1906\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2937/maps/IntegrationAccountMap1906\",\r\n \"name\": \"IntegrationAccountMap1906\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "855" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:30 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ + "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "westus:0444e302-26d9-44d3-95a7-ea6293b5d93d" + "westus:7f738dd2-2e18-4dbf-a559-cab923cc9a52" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14953" + "14769" ], "x-ms-correlation-request-id": [ - "8345e74c-efe3-4d61-83c8-8c0c1f0e6cd2" + "e1932cff-2f05-4ace-8fee-c8ec4dc53b28" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172239Z:8345e74c-efe3-4d61-83c8-8c0c1f0e6cd2" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:22:39 GMT" + "WESTUS2:20170211T020031Z:e1932cff-2f05-4ace-8fee-c8ec4dc53b28" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5084?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTA4ND9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2937?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjkzNz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f81f5d31-c102-4043-8fc4-365328d6e586" + "0999d185-0195-4a10-b876-2f7c17c310c1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, "ResponseBody": "", @@ -201,29 +206,29 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:31 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:1df3430d-9fa1-4e74-a7dc-a1180199216c" + "westus:0c29d302-d9ea-40a5-8c24-623948840779" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1197" ], "x-ms-correlation-request-id": [ - "2f3be901-a129-48b9-9d34-8a7764997f7f" + "b1318f35-dd65-4f3c-9513-71c4b522647f" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172240Z:2f3be901-a129-48b9-9d34-8a7764997f7f" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:22:40 GMT" + "WESTUS2:20170211T020031Z:b1318f35-dd65-4f3c-9513-71c4b522647f" ] }, "StatusCode": 200 @@ -231,11 +236,11 @@ ], "Names": { "CreateAndGetIntegrationAccountMap": [ - "IntegrationAccount5084", - "IntegrationAccountMap3853" + "IntegrationAccount2937", + "IntegrationAccountMap1906" ] }, "Variables": { - "SubscriptionId": "5250dd92-b580-46be-b327-e6596c8de196" + "SubscriptionId": "f34b22a3-2202-4fb1-b040-1332bd928c84" } } \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/CreateAndUpdateIntegrationAccountMap.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/CreateAndUpdateIntegrationAccountMap.json index 08c131f43af3..2615a0cb7e89 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/CreateAndUpdateIntegrationAccountMap.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/CreateAndUpdateIntegrationAccountMap.json @@ -1,28 +1,29 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5532?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTUzMj9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8901?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODkwMT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"name\": \"IntegrationAccount5532\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "128" + "91" ], "x-ms-client-request-id": [ - "468b4108-7561-42e9-a2cc-590918041015" + "6e9d9c3c-4374-4e1c-b363-514ea433f57f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5532\",\r\n \"name\": \"IntegrationAccount5532\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8901\",\r\n \"name\": \"IntegrationAccount8901\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -33,59 +34,60 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:16 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:17926a0d-4973-4938-8dc2-a4c5cdb4246b" + "westus:b3a9504d-9f50-446d-ba78-5796f500458e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1197" ], "x-ms-correlation-request-id": [ - "5fb8e7f1-01ec-40b7-971d-8d91ab705c36" + "72985ccf-1015-45f5-94fb-621048e94f0c" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172251Z:5fb8e7f1-01ec-40b7-971d-8d91ab705c36" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:22:50 GMT" + "CENTRALUS:20170211T020017Z:72985ccf-1015-45f5-94fb-621048e94f0c" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5532/maps/IntegrationAccountMap9136?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTUzMi9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDkxMzY/YXBpLXZlcnNpb249MjAxNS0wOC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8901/maps/IntegrationAccountMap7396?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODkwMS9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDczOTY/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\",\r\n \"metadata\": \"IntegrationAccountMap9136\"\r\n },\r\n \"name\": \"IntegrationAccountMap9136\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountMapName\": \"IntegrationAccountMap9136\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\",\r\n \"metadata\": \"IntegrationAccountMap7396\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountMapName\": \"IntegrationAccountMap7396\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "3554" + "3514" ], "x-ms-client-request-id": [ - "7fff507c-90fe-4e84-a941-00db2220d580" + "0e7d66a5-80e2-4b67-a309-26d387e28220" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu01by01.blob.core.windows.net/integrationaccounts3796725e81c9491db014212ca90fa54f/99D1E_XSLT_INTEGRATIONACCOUNTMAP9136-0D3A24A17C8C4B8CABDB2EA831AF25B9?sv=2014-02-14&sr=b&sig=zexY0pS%2BgqyLXJ7bucliqqu4MNrGXTzcO6hYEdMDz9o%3D&se=2016-07-20T21%3A22%3A52Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D3B0C279FA8E31\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2016-07-20T17:22:52.2778956Z\",\r\n \"changedTime\": \"2016-07-20T17:22:52.2782035Z\",\r\n \"metadata\": \"IntegrationAccountMap9136\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5532/maps/IntegrationAccountMap9136\",\r\n \"name\": \"IntegrationAccountMap9136\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu20by01.blob.core.windows.net/integrationaccounts703cdb2fa6af4d93b8c350a085817049/99D1E_XSLT_INTEGRATIONACCOUNTMAP7396-9D0B304251064BEFB7E714A0F4531189?sv=2014-02-14&sr=b&sig=CpACeNLgTh%2B%2FwYqblpepgyxsJAkXk8xTP%2FovqZwk1l0%3D&se=2017-02-11T06%3A00%3A17Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45221BA12554D\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T02:00:17.7372446Z\",\r\n \"changedTime\": \"2017-02-11T02:00:17.7378536Z\",\r\n \"metadata\": \"IntegrationAccountMap7396\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8901/maps/IntegrationAccountMap7396\",\r\n \"name\": \"IntegrationAccountMap7396\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "855" + "859" ], "Content-Type": [ "application/json; charset=utf-8" @@ -93,167 +95,172 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:16 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:ebbd205f-c7ce-405c-b469-7608a478baef" + "westus:3b45dc97-a228-4422-8373-9c54dc802b0d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1196" ], "x-ms-correlation-request-id": [ - "466ebd21-94f9-44d2-9392-15eee3368ff6" + "6c5dc60e-6ace-4819-87dc-380cf84f4244" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172252Z:466ebd21-94f9-44d2-9392-15eee3368ff6" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:22:51 GMT" + "CENTRALUS:20170211T020017Z:6c5dc60e-6ace-4819-87dc-380cf84f4244" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5532/maps/IntegrationAccountMap9136?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTUzMi9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDkxMzY/YXBpLXZlcnNpb249MjAxNS0wOC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8901/maps/IntegrationAccountMap7396?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODkwMS9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDczOTY/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\",\r\n \"metadata\": \"meta-data\"\r\n },\r\n \"name\": \"IntegrationAccountMap9136\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\",\r\n \"metadata\": \"meta-data\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "3457" + "3417" ], "x-ms-client-request-id": [ - "effba22c-aee8-414f-b872-399c4ce0b568" + "3edf3717-b5fd-4aa2-b8cf-945d50f36bc0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu01by01.blob.core.windows.net/integrationaccounts3796725e81c9491db014212ca90fa54f/99D1E_XSLT_INTEGRATIONACCOUNTMAP9136-7610D8C04D76441C92E95A2EF2A2C0B0?sv=2014-02-14&sr=b&sig=DzDsmVHO729VsF0ViwzSxgfPe8m7mQ1wMgh0Pjpw21A%3D&se=2016-07-20T21%3A22%3A52Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D3B0C27A33864D\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2016-07-20T17:22:52.2778956Z\",\r\n \"changedTime\": \"2016-07-20T17:22:52.4530663Z\",\r\n \"metadata\": \"meta-data\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5532/maps/IntegrationAccountMap9136\",\r\n \"name\": \"IntegrationAccountMap9136\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu20by01.blob.core.windows.net/integrationaccounts703cdb2fa6af4d93b8c350a085817049/99D1E_XSLT_INTEGRATIONACCOUNTMAP7396-F0475F4E9DE145F3AC383E643BFD6826?sv=2014-02-14&sr=b&sig=GsT7VKKGn3iPPKsdvIcvLjTrff6S6%2FTdbH%2FT8JhHEHc%3D&se=2017-02-11T06%3A00%3A18Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45221BA4669FA\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T02:00:17.7372446Z\",\r\n \"changedTime\": \"2017-02-11T02:00:18.0416125Z\",\r\n \"metadata\": \"meta-data\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8901/maps/IntegrationAccountMap7396\",\r\n \"name\": \"IntegrationAccountMap7396\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "837" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:17 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ + "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "westus:8c308b23-21d6-47ab-8945-6bd90a7a8d4f" + "westus:37680159-8718-4d5c-b4e8-f3f73dab272e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1195" ], "x-ms-correlation-request-id": [ - "ac562268-1169-4002-a3a3-4259dd5c40d5" + "2fb5e22b-a488-49da-8067-85721d1ac86f" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172252Z:ac562268-1169-4002-a3a3-4259dd5c40d5" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:22:52 GMT" + "CENTRALUS:20170211T020017Z:2fb5e22b-a488-49da-8067-85721d1ac86f" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5532/maps/IntegrationAccountMap9136?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTUzMi9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDkxMzY/YXBpLXZlcnNpb249MjAxNS0wOC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8901/maps/IntegrationAccountMap7396?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODkwMS9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDczOTY/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ac41e50b-e79d-4f49-932a-1a61e57e0d9a" + "dba145f7-7eb3-414d-aa1d-07e7df386ea7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu01by01.blob.core.windows.net/integrationaccounts3796725e81c9491db014212ca90fa54f/99D1E_XSLT_INTEGRATIONACCOUNTMAP9136-7610D8C04D76441C92E95A2EF2A2C0B0?sv=2014-02-14&sr=b&sig=DzDsmVHO729VsF0ViwzSxgfPe8m7mQ1wMgh0Pjpw21A%3D&se=2016-07-20T21%3A22%3A52Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D3B0C27A33864D\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2016-07-20T17:22:52.2778956Z\",\r\n \"changedTime\": \"2016-07-20T17:22:52.4530663Z\",\r\n \"metadata\": \"meta-data\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5532/maps/IntegrationAccountMap9136\",\r\n \"name\": \"IntegrationAccountMap9136\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu20by01.blob.core.windows.net/integrationaccounts703cdb2fa6af4d93b8c350a085817049/99D1E_XSLT_INTEGRATIONACCOUNTMAP7396-F0475F4E9DE145F3AC383E643BFD6826?sv=2014-02-14&sr=b&sig=GsT7VKKGn3iPPKsdvIcvLjTrff6S6%2FTdbH%2FT8JhHEHc%3D&se=2017-02-11T06%3A00%3A18Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45221BA4669FA\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T02:00:17.7372446Z\",\r\n \"changedTime\": \"2017-02-11T02:00:18.0416125Z\",\r\n \"metadata\": \"meta-data\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8901/maps/IntegrationAccountMap7396\",\r\n \"name\": \"IntegrationAccountMap7396\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "837" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:17 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ + "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "westus:cd3184a3-eae8-41c7-bc1b-f91d12c35333" + "westus:65784b7f-6d77-443c-b49f-feb040b8a850" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14942" + "14858" ], "x-ms-correlation-request-id": [ - "7691517c-d06b-489e-90e8-c1a0e151b993" + "f9db2452-7f10-45f8-9d3e-25074a77b989" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172252Z:7691517c-d06b-489e-90e8-c1a0e151b993" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:22:52 GMT" + "CENTRALUS:20170211T020018Z:f9db2452-7f10-45f8-9d3e-25074a77b989" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5532?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTUzMj9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8901?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODkwMT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "4007ffa1-9136-424b-a068-1534a4a525c0" + "d62ae101-35b6-4903-8f80-547d9d91e809" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, "ResponseBody": "", @@ -264,29 +271,29 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:18 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:f78ef023-60e6-4cf7-870b-38300cf5ba5e" + "westus:a1f63b04-ec6e-4f19-af54-2377e4c6505c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1194" ], "x-ms-correlation-request-id": [ - "fb279a09-5bd9-49d4-b27d-c75498a3d237" + "79320ef6-9750-4374-81fd-012142003cc1" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172253Z:fb279a09-5bd9-49d4-b27d-c75498a3d237" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:22:52 GMT" + "CENTRALUS:20170211T020018Z:79320ef6-9750-4374-81fd-012142003cc1" ] }, "StatusCode": 200 @@ -294,11 +301,11 @@ ], "Names": { "CreateAndUpdateIntegrationAccountMap": [ - "IntegrationAccount5532", - "IntegrationAccountMap9136" + "IntegrationAccount8901", + "IntegrationAccountMap7396" ] }, "Variables": { - "SubscriptionId": "5250dd92-b580-46be-b327-e6596c8de196" + "SubscriptionId": "f34b22a3-2202-4fb1-b040-1332bd928c84" } } \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/DeleteIntegrationAccountMapOnAccountDeletion.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/DeleteIntegrationAccountMapOnAccountDeletion.json index 23f8ff8e5ff6..2958e4ea6b9f 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/DeleteIntegrationAccountMapOnAccountDeletion.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/DeleteIntegrationAccountMapOnAccountDeletion.json @@ -1,28 +1,29 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6796?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Njc5Nj9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5381?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTM4MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"name\": \"IntegrationAccount6796\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "128" + "91" ], "x-ms-client-request-id": [ - "c6fbca42-24e0-4dd7-a639-c5939c3f7ccb" + "655d3581-6f99-4c57-88b3-5f60fad5fd23" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6796\",\r\n \"name\": \"IntegrationAccount6796\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5381\",\r\n \"name\": \"IntegrationAccount5381\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -33,59 +34,60 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:27 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:192c5d5f-9819-4daf-81e6-e4c6f9fddd53" + "westus:e15a36a3-5871-4555-8cbd-2167492d657c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1195" ], "x-ms-correlation-request-id": [ - "0ea69523-735f-4696-b922-a318f39b46a4" + "5fd10f76-57ef-4e3a-8700-f820d13014f8" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172245Z:0ea69523-735f-4696-b922-a318f39b46a4" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:22:45 GMT" + "WESTUS2:20170211T020027Z:5fd10f76-57ef-4e3a-8700-f820d13014f8" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6796/maps/IntegrationAccountMap6216?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Njc5Ni9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDYyMTY/YXBpLXZlcnNpb249MjAxNS0wOC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5381/maps/IntegrationAccountMap5567?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTM4MS9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDU1Njc/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\",\r\n \"metadata\": \"IntegrationAccountMap6216\"\r\n },\r\n \"name\": \"IntegrationAccountMap6216\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountMapName\": \"IntegrationAccountMap6216\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\",\r\n \"metadata\": \"IntegrationAccountMap5567\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountMapName\": \"IntegrationAccountMap5567\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "3554" + "3514" ], "x-ms-client-request-id": [ - "524b8b1b-7d74-4bbf-91e1-671c5346ed62" + "e5f60431-9314-4ce6-a1a5-66365bb96615" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu09by01.blob.core.windows.net/integrationaccounts62bb648f4fdc46eb83595ec6972109f7/99D1E_XSLT_INTEGRATIONACCOUNTMAP6216-3E7C451F1007413E83A427F20C527F48?sv=2014-02-14&sr=b&sig=RtG2es1wGUZ4vwFpsZLj6ohKqO6dGMiQxxHiX5hvMR8%3D&se=2016-07-20T21%3A22%3A45Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D3B0C27660AFF5\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2016-07-20T17:22:45.5531972Z\",\r\n \"changedTime\": \"2016-07-20T17:22:45.5538666Z\",\r\n \"metadata\": \"IntegrationAccountMap6216\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6796/maps/IntegrationAccountMap6216\",\r\n \"name\": \"IntegrationAccountMap6216\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu29by01.blob.core.windows.net/integrationaccounts7fab4349d0c5417fbecf39abf9b12acc/99D1E_XSLT_INTEGRATIONACCOUNTMAP5567-057669CA633046C98AC94E5024BB8B58?sv=2014-02-14&sr=b&sig=coOJwAm7VbTg8obDr8Vqig09euxUjOvfNaLv3MuOv5U%3D&se=2017-02-11T06%3A00%3A28Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45221C02FDE51\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T02:00:28.2577686Z\",\r\n \"changedTime\": \"2017-02-11T02:00:28.25807Z\",\r\n \"metadata\": \"IntegrationAccountMap5567\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5381/maps/IntegrationAccountMap5567\",\r\n \"name\": \"IntegrationAccountMap5567\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "853" + "851" ], "Content-Type": [ "application/json; charset=utf-8" @@ -93,47 +95,48 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:27 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:067a1ee8-06c3-4839-b838-a40715589ff7" + "westus:67003904-72ea-4f0c-a13f-c18477a24100" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1194" ], "x-ms-correlation-request-id": [ - "01eeac19-287e-4448-9cbe-c00e26388518" + "271b983f-767d-4dc7-8620-e40a43795c87" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172245Z:01eeac19-287e-4448-9cbe-c00e26388518" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:22:45 GMT" + "WESTUS2:20170211T020028Z:271b983f-767d-4dc7-8620-e40a43795c87" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6796?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Njc5Nj9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5381?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTM4MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "bf2d5047-9d23-4c56-bd05-0a79cbc85991" + "abcec13d-b43a-42d5-8bb6-0d099c0c8f1d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, "ResponseBody": "", @@ -144,50 +147,51 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:28 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:71e33144-123b-4b76-a611-95f71a4be2d8" + "westus:c55b3d90-165e-44f1-ab38-4ad2674fb571" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1193" ], "x-ms-correlation-request-id": [ - "258be12d-e617-4e4f-934a-e32338aa64c0" + "843d6269-db38-4907-b00f-505f9e92bbfc" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172245Z:258be12d-e617-4e4f-934a-e32338aa64c0" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:22:45 GMT" + "WESTUS2:20170211T020028Z:843d6269-db38-4907-b00f-505f9e92bbfc" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6796/maps/IntegrationAccountMap6216?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Njc5Ni9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDYyMTY/YXBpLXZlcnNpb249MjAxNS0wOC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5381/maps/IntegrationAccountMap5567?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTM4MS9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDU1Njc/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "db313835-eb53-413c-b556-518f5666f82e" + "2ba64737-ff35-467c-9c85-a4d387208b53" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/integrationAccounts/IntegrationAccount6796' under resource group 'flowrg' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/integrationAccounts/IntegrationAccount5381' under resource group 'flowrg' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "168" @@ -198,6 +202,12 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:28 GMT" + ], "Pragma": [ "no-cache" ], @@ -205,22 +215,16 @@ "gateway" ], "x-ms-request-id": [ - "fe64ad7a-06be-4f31-9213-b824015e477c" + "90dff9bb-302e-43e2-8ce2-7446bd5f57e9" ], "x-ms-correlation-request-id": [ - "fe64ad7a-06be-4f31-9213-b824015e477c" + "90dff9bb-302e-43e2-8ce2-7446bd5f57e9" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172245Z:fe64ad7a-06be-4f31-9213-b824015e477c" + "WESTUS2:20170211T020028Z:90dff9bb-302e-43e2-8ce2-7446bd5f57e9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:22:45 GMT" ] }, "StatusCode": 404 @@ -228,11 +232,11 @@ ], "Names": { "DeleteIntegrationAccountMapOnAccountDeletion": [ - "IntegrationAccount6796", - "IntegrationAccountMap6216" + "IntegrationAccount5381", + "IntegrationAccountMap5567" ] }, "Variables": { - "SubscriptionId": "5250dd92-b580-46be-b327-e6596c8de196" + "SubscriptionId": "f34b22a3-2202-4fb1-b040-1332bd928c84" } } \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/ListIntegrationAccountMaps.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/ListIntegrationAccountMaps.json index a1a0f7b4b697..7421a6c9e1c1 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/ListIntegrationAccountMaps.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountMapScenarioTests/ListIntegrationAccountMaps.json @@ -1,28 +1,29 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2026?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjAyNj9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1139?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTEzOT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"name\": \"IntegrationAccount2026\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "128" + "91" ], "x-ms-client-request-id": [ - "7f3e1751-b97d-4954-b44f-102c93ef0f78" + "d059c63e-3e89-488f-a967-a22483032566" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2026\",\r\n \"name\": \"IntegrationAccount2026\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1139\",\r\n \"name\": \"IntegrationAccount1139\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -33,59 +34,60 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:20 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:9820b261-a062-4a28-bf76-a3e9cb3c25b5" + "westus:d6294fe0-0f26-42f8-a294-ca397e719e99" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1184" + "1191" ], "x-ms-correlation-request-id": [ - "95b9bd9b-956e-47d9-92bd-1b8739187f09" + "6d6bd5b0-bbcb-4307-a943-2d968ebdf047" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172232Z:95b9bd9b-956e-47d9-92bd-1b8739187f09" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:22:32 GMT" + "CENTRALUS:20170211T020020Z:6d6bd5b0-bbcb-4307-a943-2d968ebdf047" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2026/maps/IntegrationAccountMap729?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjAyNi9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDcyOT9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1139/maps/IntegrationAccountMap8728?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTEzOS9tYXBzL0ludGVncmF0aW9uQWNjb3VudE1hcDg3Mjg/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\",\r\n \"metadata\": \"IntegrationAccountMap729\"\r\n },\r\n \"name\": \"IntegrationAccountMap729\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountMapName\": \"IntegrationAccountMap729\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\",\r\n \"metadata\": \"IntegrationAccountMap8728\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountMapName\": \"IntegrationAccountMap8728\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "3551" + "3514" ], "x-ms-client-request-id": [ - "3842e7c3-5882-45bf-9c49-4a9231f33e0d" + "4028e33f-ae3b-4c64-9ea4-1a711cfb6da2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu10by01.blob.core.windows.net/integrationaccounts596fb7c6d06942388eaf9b0d86198076/99D1E_XSLT_INTEGRATIONACCOUNTMAP729-73E00AD18F504A27B96B1D8D88DDB4E5?sv=2014-02-14&sr=b&sig=rLyOc0fSC4SZPwujVx%2FeGXHO8UBi%2BtnVIBlPyPUsqgo%3D&se=2016-07-20T21%3A22%3A32Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D3B0C26E652D85\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2016-07-20T17:22:32.5450253Z\",\r\n \"changedTime\": \"2016-07-20T17:22:32.5457248Z\",\r\n \"metadata\": \"IntegrationAccountMap729\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2026/maps/IntegrationAccountMap729\",\r\n \"name\": \"IntegrationAccountMap729\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu30by01.blob.core.windows.net/integrationaccountsc5db551a8ca940cbaef1c68a9450bb90/99D1E_XSLT_INTEGRATIONACCOUNTMAP8728-B47C79E4289C48888E6F7499878177D2?sv=2014-02-14&sr=b&sig=1tgFsPG%2Bavg5Hvi2hz5wEz%2Bzl1dPmX63WfknnbzugEo%3D&se=2017-02-11T06%3A00%3A21Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45221BC2D4E02\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T02:00:21.5959472Z\",\r\n \"changedTime\": \"2017-02-11T02:00:21.5964804Z\",\r\n \"metadata\": \"IntegrationAccountMap8728\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1139/maps/IntegrationAccountMap8728\",\r\n \"name\": \"IntegrationAccountMap8728\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "853" + "857" ], "Content-Type": [ "application/json; charset=utf-8" @@ -93,104 +95,107 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:20 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:93d584fb-96c4-4f61-b374-1b0f467b73a5" + "westus:23118103-c30d-403b-aac7-893b59830868" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1183" + "1190" ], "x-ms-correlation-request-id": [ - "e719c274-d6a9-4679-ae98-75b36f3a2d24" + "c1c32565-f716-4c18-9e88-134b79c2a468" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172232Z:e719c274-d6a9-4679-ae98-75b36f3a2d24" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:22:32 GMT" + "CENTRALUS:20170211T020021Z:c1c32565-f716-4c18-9e88-134b79c2a468" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2026/maps?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjAyNi9tYXBzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1139/maps?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTEzOS9tYXBzP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5e26a34c-10fe-45ca-800d-cbf7e2914c64" + "d742cde5-91ca-4175-a955-6fd93079a753" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu10by01.blob.core.windows.net/integrationaccounts596fb7c6d06942388eaf9b0d86198076/99D1E_XSLT_INTEGRATIONACCOUNTMAP729-73E00AD18F504A27B96B1D8D88DDB4E5?sv=2014-02-14&sr=b&sig=rLyOc0fSC4SZPwujVx%2FeGXHO8UBi%2BtnVIBlPyPUsqgo%3D&se=2016-07-20T21%3A22%3A32Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D3B0C26E652D85\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2016-07-20T17:22:32.5450253Z\",\r\n \"changedTime\": \"2016-07-20T17:22:32.5457248Z\",\r\n \"metadata\": \"IntegrationAccountMap729\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2026/maps/IntegrationAccountMap729\",\r\n \"name\": \"IntegrationAccountMap729\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"mapType\": \"Xslt\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu30by01.blob.core.windows.net/integrationaccountsc5db551a8ca940cbaef1c68a9450bb90/99D1E_XSLT_INTEGRATIONACCOUNTMAP8728-B47C79E4289C48888E6F7499878177D2?sv=2014-02-14&sr=b&sig=1tgFsPG%2Bavg5Hvi2hz5wEz%2Bzl1dPmX63WfknnbzugEo%3D&se=2017-02-11T06%3A00%3A21Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45221BC2D4E02\\\"\",\r\n \"contentSize\": 3056,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"A2avz/M0ov2FPI3+Je8vDw==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T02:00:21.5959472Z\",\r\n \"changedTime\": \"2017-02-11T02:00:21.5964804Z\",\r\n \"metadata\": \"IntegrationAccountMap8728\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1139/maps/IntegrationAccountMap8728\",\r\n \"name\": \"IntegrationAccountMap8728\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/maps\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "865" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:20 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ + "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "westus:793ba9e0-7bf1-4b94-9911-32ce401754da" + "westus:93e93875-3eea-4652-8950-949c3eb3af60" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "14804" ], "x-ms-correlation-request-id": [ - "ad12b843-07a7-4cd3-ac87-0822ea9c6114" + "0fb14ddf-8de2-4dce-8d47-3dde61c685df" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172232Z:ad12b843-07a7-4cd3-ac87-0822ea9c6114" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:22:32 GMT" + "CENTRALUS:20170211T020021Z:0fb14ddf-8de2-4dce-8d47-3dde61c685df" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2026?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjAyNj9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1139?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTEzOT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "47909c24-773d-4000-8f58-6ee6c9cffc40" + "b29493e4-ffd5-4483-832a-e7dd1d164a14" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, "ResponseBody": "", @@ -201,29 +206,29 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:21 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:607f094b-332e-467f-8718-5f04bea58cfb" + "westus:dcb33827-b5e2-4da8-a542-5756d2ff0fb9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1182" + "1189" ], "x-ms-correlation-request-id": [ - "11e55f4c-8fbe-4afb-b728-bca7213e7fbb" + "6a56240b-2809-43ac-bf55-dffb7b7b3d1d" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172234Z:11e55f4c-8fbe-4afb-b728-bca7213e7fbb" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:22:33 GMT" + "CENTRALUS:20170211T020022Z:6a56240b-2809-43ac-bf55-dffb7b7b3d1d" ] }, "StatusCode": 200 @@ -231,11 +236,11 @@ ], "Names": { "ListIntegrationAccountMaps": [ - "IntegrationAccount2026", - "IntegrationAccountMap729" + "IntegrationAccount1139", + "IntegrationAccountMap8728" ] }, "Variables": { - "SubscriptionId": "5250dd92-b580-46be-b327-e6596c8de196" + "SubscriptionId": "f34b22a3-2202-4fb1-b040-1332bd928c84" } } \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/CreateAndDeleteIntegrationAccountPartner.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/CreateAndDeleteIntegrationAccountPartner.json index b912c9105c52..3f768730a0b6 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/CreateAndDeleteIntegrationAccountPartner.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/CreateAndDeleteIntegrationAccountPartner.json @@ -1,31 +1,32 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6858?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Njg1OD9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount630?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjMwP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"name\": \"IntegrationAccount6858\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "128" + "91" ], "x-ms-client-request-id": [ - "8d88440f-2d14-4ff7-9310-793ca12de96d" + "c644c75a-ecb1-406e-afb9-8a85fab3f930" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6858\",\r\n \"name\": \"IntegrationAccount6858\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount630\",\r\n \"name\": \"IntegrationAccount630\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "290" + "288" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,56 +34,57 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:59:40 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:5a76361e-1c57-43b0-9ed5-5f102c9f0357" + "westus:a6947384-7a7f-4578-9c67-3cfc47d575ea" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1195" ], "x-ms-correlation-request-id": [ - "8c3da2da-b1f9-4962-a2be-6ea8e6d5add1" + "af9f0d38-194a-4abc-89ad-3a9438676f21" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172151Z:8c3da2da-b1f9-4962-a2be-6ea8e6d5add1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:21:51 GMT" + "CENTRALUS:20170211T015941Z:af9f0d38-194a-4abc-89ad-3a9438676f21" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6858/partners/IntegrationAccountPartner5993?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Njg1OC9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyNTk5Mz9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount630/partners/IntegrationAccountPartner9262?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjMwL3BhcnRuZXJzL0ludGVncmF0aW9uQWNjb3VudFBhcnRuZXI5MjYyP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"metadata\": \"IntegrationAccountPartner5993\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"Qualifier\": \"AA\",\r\n \"Value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"name\": \"IntegrationAccountPartner5993\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountPartnerName\": \"IntegrationAccountPartner5993\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"metadata\": \"IntegrationAccountPartner9262\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountPartnerName\": \"IntegrationAccountPartner9262\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "442" + "398" ], "x-ms-client-request-id": [ - "80b6ace6-5d77-42d5-8a24-255736de609c" + "431d4151-f8a2-4994-a86e-103390b2f629" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2016-07-20T17:21:51.969836Z\",\r\n \"changedTime\": \"2016-07-20T17:21:51.9703808Z\",\r\n \"metadata\": \"IntegrationAccountPartner5993\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6858/partners/IntegrationAccountPartner5993\",\r\n \"name\": \"IntegrationAccountPartner5993\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T01:59:41.8597082Z\",\r\n \"changedTime\": \"2017-02-11T01:59:41.8599041Z\",\r\n \"metadata\": \"IntegrationAccountPartner9262\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount630/partners/IntegrationAccountPartner9262\",\r\n \"name\": \"IntegrationAccountPartner9262\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n}", "ResponseHeaders": { "Content-Length": [ "525" @@ -93,47 +95,48 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:59:41 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:c876916f-3552-4e5c-815d-71f88503f423" + "westus:2b916046-231d-4fc0-a492-e91fc8c1779e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1194" ], "x-ms-correlation-request-id": [ - "77f45887-4080-4de4-a4f0-dcb725825206" + "c22f455c-2b2c-4f4b-a9a7-7bdcf24b1ce4" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172151Z:77f45887-4080-4de4-a4f0-dcb725825206" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:21:51 GMT" + "CENTRALUS:20170211T015941Z:c22f455c-2b2c-4f4b-a9a7-7bdcf24b1ce4" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6858/partners/IntegrationAccountPartner5993?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Njg1OC9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyNTk5Mz9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount630/partners/IntegrationAccountPartner9262?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjMwL3BhcnRuZXJzL0ludGVncmF0aW9uQWNjb3VudFBhcnRuZXI5MjYyP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "a88ca1ed-bf66-4376-a014-d12b9d04b8b1" + "ec0580ef-e958-42ec-813b-8a5d91a73eb5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, "ResponseBody": "", @@ -144,47 +147,48 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:59:41 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:ae3cc876-3ced-40b2-8d8c-18433b495afb" + "westus:e1202611-df98-4407-85ab-4f1818d68970" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1193" ], "x-ms-correlation-request-id": [ - "e258c33b-dd2a-45ac-bd52-8def00a88889" + "fd46ce82-e573-4724-97ce-5eeec8f6fb9b" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172152Z:e258c33b-dd2a-45ac-bd52-8def00a88889" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:21:51 GMT" + "CENTRALUS:20170211T015941Z:fd46ce82-e573-4724-97ce-5eeec8f6fb9b" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6858?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Njg1OD9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount630?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjMwP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f0d350c7-c0fb-47d1-ad64-204f30877184" + "1a4b7902-855f-41ad-bc1f-089165f2aada" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, "ResponseBody": "", @@ -195,29 +199,29 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:59:42 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:4803ca5c-6ea1-408a-8400-4fb3cc6172d3" + "westus:644f2b39-f74f-4eff-a1a0-884afec1fa17" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1192" ], "x-ms-correlation-request-id": [ - "89b9b598-14c2-4d1a-8fef-d0b44b35ecac" + "c6bcaccf-61ed-4ea4-96b9-549389f7500a" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172152Z:89b9b598-14c2-4d1a-8fef-d0b44b35ecac" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:21:52 GMT" + "CENTRALUS:20170211T015942Z:c6bcaccf-61ed-4ea4-96b9-549389f7500a" ] }, "StatusCode": 200 @@ -225,11 +229,11 @@ ], "Names": { "CreateAndDeleteIntegrationAccountPartner": [ - "IntegrationAccount6858", - "IntegrationAccountPartner5993" + "IntegrationAccount630", + "IntegrationAccountPartner9262" ] }, "Variables": { - "SubscriptionId": "5250dd92-b580-46be-b327-e6596c8de196" + "SubscriptionId": "f34b22a3-2202-4fb1-b040-1332bd928c84" } } \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/CreateAndGetIntegrationAccountPartner.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/CreateAndGetIntegrationAccountPartner.json index 1022f00d8742..38a92652bf11 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/CreateAndGetIntegrationAccountPartner.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/CreateAndGetIntegrationAccountPartner.json @@ -1,28 +1,29 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3257?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzI1Nz9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1862?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTg2Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"name\": \"IntegrationAccount3257\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "128" + "91" ], "x-ms-client-request-id": [ - "fe63cc8e-0d6c-4b4b-a1db-d79390d873bd" + "3d5075ab-57cc-4210-81ab-d51170135dcb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3257\",\r\n \"name\": \"IntegrationAccount3257\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1862\",\r\n \"name\": \"IntegrationAccount1862\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -33,59 +34,60 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:59:32 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:261e1ff4-6499-4191-aeb6-59ca688d856d" + "westus:b548c28e-2069-4ae9-8f94-b9292d3a014a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1190" + "1199" ], "x-ms-correlation-request-id": [ - "efa3b648-a7f2-4744-9a59-345437a68309" + "fe364b33-6e70-492c-ad31-22f88093e987" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172202Z:efa3b648-a7f2-4744-9a59-345437a68309" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:22:01 GMT" + "WESTUS2:20170211T015933Z:fe364b33-6e70-492c-ad31-22f88093e987" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3257/partners/IntegrationAccountPartner7857?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzI1Ny9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyNzg1Nz9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1862/partners/IntegrationAccountPartner9515?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTg2Mi9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyOTUxNT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"metadata\": \"IntegrationAccountPartner7857\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"Qualifier\": \"AA\",\r\n \"Value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"name\": \"IntegrationAccountPartner7857\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountPartnerName\": \"IntegrationAccountPartner7857\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"metadata\": \"IntegrationAccountPartner9515\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountPartnerName\": \"IntegrationAccountPartner9515\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "442" + "398" ], "x-ms-client-request-id": [ - "0e673578-1d74-47c9-979c-218fb1ef06cf" + "f71a4424-45a1-41e9-8f6f-fc184ef3e442" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2016-07-20T17:22:02.3966203Z\",\r\n \"changedTime\": \"2016-07-20T17:22:02.3974582Z\",\r\n \"metadata\": \"IntegrationAccountPartner7857\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3257/partners/IntegrationAccountPartner7857\",\r\n \"name\": \"IntegrationAccountPartner7857\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T01:59:33.886693Z\",\r\n \"changedTime\": \"2017-02-11T01:59:33.8873688Z\",\r\n \"metadata\": \"IntegrationAccountPartner9515\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1862/partners/IntegrationAccountPartner9515\",\r\n \"name\": \"IntegrationAccountPartner9515\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "526" + "525" ], "Content-Type": [ "application/json; charset=utf-8" @@ -93,104 +95,107 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:59:33 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:1d572646-bb5a-4c24-9011-8808621d96bd" + "westus:e0f9655b-bd0b-417f-9bf3-5264a27bb058" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1189" + "1198" ], "x-ms-correlation-request-id": [ - "afd4b0da-02c1-405f-a2f0-7d4152ee05f7" + "45c458d2-05d6-43aa-91f5-9c3ee418d8b0" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172202Z:afd4b0da-02c1-405f-a2f0-7d4152ee05f7" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:22:01 GMT" + "WESTUS2:20170211T015933Z:45c458d2-05d6-43aa-91f5-9c3ee418d8b0" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3257/partners/IntegrationAccountPartner7857?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzI1Ny9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyNzg1Nz9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1862/partners/IntegrationAccountPartner9515?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTg2Mi9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyOTUxNT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "05ae3b78-be92-4d54-b1be-0ff8a7da426b" + "7a642c3a-2f7f-4732-aad1-0fa70e3b9a40" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2016-07-20T17:22:02.3966203Z\",\r\n \"changedTime\": \"2016-07-20T17:22:02.3974582Z\",\r\n \"metadata\": \"IntegrationAccountPartner7857\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3257/partners/IntegrationAccountPartner7857\",\r\n \"name\": \"IntegrationAccountPartner7857\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T01:59:33.886693Z\",\r\n \"changedTime\": \"2017-02-11T01:59:33.8873688Z\",\r\n \"metadata\": \"IntegrationAccountPartner9515\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1862/partners/IntegrationAccountPartner9515\",\r\n \"name\": \"IntegrationAccountPartner9515\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "526" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:59:33 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ + "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "westus:a7f46369-5aa6-48f0-9d43-f25fd07bd8af" + "westus:f08eb9d5-5e58-41a3-b33f-fabf0491e01d" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14956" + "14784" ], "x-ms-correlation-request-id": [ - "7bee67f9-8462-473c-9fa4-eccc2c563ee3" + "fc8b4e68-20c3-485d-b0d9-bc37403d8934" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172202Z:7bee67f9-8462-473c-9fa4-eccc2c563ee3" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:22:01 GMT" + "WESTUS2:20170211T015933Z:fc8b4e68-20c3-485d-b0d9-bc37403d8934" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3257?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzI1Nz9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1862?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTg2Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "fc4ac29e-a6de-4532-9a0b-c522ba35391c" + "ea96e5ad-bbd9-40de-b47d-555c1b2301c2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, "ResponseBody": "", @@ -201,29 +206,29 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:59:33 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:5bd3c3c6-740b-4826-9e92-1617cb67eb6f" + "westus:7bf99456-8b6c-49c8-bcb5-59e6927d68c9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1188" + "1197" ], "x-ms-correlation-request-id": [ - "03166486-f84d-4b6a-8a3e-8991c1da848f" + "c22bf2b8-70cf-4b01-b01e-fb1155dc2ca5" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172202Z:03166486-f84d-4b6a-8a3e-8991c1da848f" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:22:01 GMT" + "WESTUS2:20170211T015934Z:c22bf2b8-70cf-4b01-b01e-fb1155dc2ca5" ] }, "StatusCode": 200 @@ -231,11 +236,11 @@ ], "Names": { "CreateAndGetIntegrationAccountPartner": [ - "IntegrationAccount3257", - "IntegrationAccountPartner7857" + "IntegrationAccount1862", + "IntegrationAccountPartner9515" ] }, "Variables": { - "SubscriptionId": "5250dd92-b580-46be-b327-e6596c8de196" + "SubscriptionId": "f34b22a3-2202-4fb1-b040-1332bd928c84" } } \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/CreateAndUpdateIntegrationAccountPartner.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/CreateAndUpdateIntegrationAccountPartner.json index 3e96f8e71106..58bfc6559421 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/CreateAndUpdateIntegrationAccountPartner.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/CreateAndUpdateIntegrationAccountPartner.json @@ -1,28 +1,29 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4325?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDMyNT9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6961?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Njk2MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"name\": \"IntegrationAccount4325\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "128" + "91" ], "x-ms-client-request-id": [ - "ab32b165-48d1-4de8-af5a-b954ee785010" + "e384c869-588e-4e94-ae32-b9a45b2db928" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4325\",\r\n \"name\": \"IntegrationAccount4325\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6961\",\r\n \"name\": \"IntegrationAccount6961\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -33,56 +34,57 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:59:45 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:9d1aebff-0e2c-4138-92fe-2bd319714a37" + "westus:8dac4f47-c868-4690-8213-458dedd58f28" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1196" ], "x-ms-correlation-request-id": [ - "be1ab1f2-b8ba-415c-871f-38cbf7b7d500" + "9266a0b4-969a-44d0-9f40-9243e5a30719" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172207Z:be1ab1f2-b8ba-415c-871f-38cbf7b7d500" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:22:07 GMT" + "CENTRALUS:20170211T015946Z:9266a0b4-969a-44d0-9f40-9243e5a30719" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4325/partners/IntegrationAccountPartner2651?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDMyNS9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyMjY1MT9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6961/partners/IntegrationAccountPartner5662?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Njk2MS9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyNTY2Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"metadata\": \"IntegrationAccountPartner2651\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"Qualifier\": \"AA\",\r\n \"Value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"name\": \"IntegrationAccountPartner2651\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountPartnerName\": \"IntegrationAccountPartner2651\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"metadata\": \"IntegrationAccountPartner5662\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountPartnerName\": \"IntegrationAccountPartner5662\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "442" + "398" ], "x-ms-client-request-id": [ - "8fd3180c-35f1-496c-ade9-41fc6fcf42e8" + "1333192c-eeb8-4432-bdcb-df773b309e5b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2016-07-20T17:22:07.6276231Z\",\r\n \"changedTime\": \"2016-07-20T17:22:07.6280373Z\",\r\n \"metadata\": \"IntegrationAccountPartner2651\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4325/partners/IntegrationAccountPartner2651\",\r\n \"name\": \"IntegrationAccountPartner2651\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T01:59:47.3587126Z\",\r\n \"changedTime\": \"2017-02-11T01:59:47.3591666Z\",\r\n \"metadata\": \"IntegrationAccountPartner5662\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6961/partners/IntegrationAccountPartner5662\",\r\n \"name\": \"IntegrationAccountPartner5662\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n}", "ResponseHeaders": { "Content-Length": [ "526" @@ -93,110 +95,113 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:59:46 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:9534d99b-fcd1-41bb-8cd4-6fd5f70ca0ae" + "westus:3dd7a8bf-cd45-48ac-85d0-0589047f6f49" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" + "1195" ], "x-ms-correlation-request-id": [ - "9871b905-3884-4aed-af44-9adef9527c1b" + "a8cfa803-6d1e-4612-82fc-90dff4ea4b99" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172207Z:9871b905-3884-4aed-af44-9adef9527c1b" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:22:07 GMT" + "CENTRALUS:20170211T015947Z:a8cfa803-6d1e-4612-82fc-90dff4ea4b99" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4325/partners/IntegrationAccountPartner2651?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDMyNS9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyMjY1MT9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6961/partners/IntegrationAccountPartner5662?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Njk2MS9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyNTY2Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"metadata\": \"updated\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"Qualifier\": \"XX\",\r\n \"Value\": \"DD\"\r\n },\r\n {\r\n \"Qualifier\": \"XX\",\r\n \"Value\": \"DD\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"name\": \"IntegrationAccountPartner2651\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"metadata\": \"updated\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"XX\",\r\n \"value\": \"DD\"\r\n },\r\n {\r\n \"qualifier\": \"XX\",\r\n \"value\": \"DD\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "417" + "373" ], "x-ms-client-request-id": [ - "86c34cd7-1fe8-4dde-813f-7dba626f5dcc" + "4aa3ca32-b592-4e33-834c-5938fee7bd6f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"XX\",\r\n \"value\": \"DD\"\r\n },\r\n {\r\n \"qualifier\": \"XX\",\r\n \"value\": \"DD\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2016-07-20T17:22:07.6276231Z\",\r\n \"changedTime\": \"2016-07-20T17:22:07.7646596Z\",\r\n \"metadata\": \"updated\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4325/partners/IntegrationAccountPartner2651\",\r\n \"name\": \"IntegrationAccountPartner2651\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"XX\",\r\n \"value\": \"DD\"\r\n },\r\n {\r\n \"qualifier\": \"XX\",\r\n \"value\": \"DD\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T01:59:47.3587126Z\",\r\n \"changedTime\": \"2017-02-11T01:59:47.513454Z\",\r\n \"metadata\": \"updated\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6961/partners/IntegrationAccountPartner5662\",\r\n \"name\": \"IntegrationAccountPartner5662\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "536" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:59:46 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ + "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "westus:4efccfdf-b454-4be7-a6a9-be7ef34f510d" + "westus:9e95f926-a2a0-4fac-ac5c-9a9ec8e07fa8" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1184" + "1194" ], "x-ms-correlation-request-id": [ - "63c72954-c7a8-4b96-9fca-8b68979523c1" + "85512ffd-4da9-4587-8806-6301a7529775" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172207Z:63c72954-c7a8-4b96-9fca-8b68979523c1" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:22:07 GMT" + "CENTRALUS:20170211T015947Z:85512ffd-4da9-4587-8806-6301a7529775" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4325?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDMyNT9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6961?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Njk2MT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "87998d98-c69f-45d2-8fdb-9da758088978" + "334661c4-ca51-4f87-830f-9f3f329f63e1" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, "ResponseBody": "", @@ -207,29 +212,29 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:59:47 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:abf48906-2ff8-4f55-a147-05fad23d7f06" + "westus:cec0e57f-1e04-4ef7-ae3c-56ff1eed5a18" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1183" + "1193" ], "x-ms-correlation-request-id": [ - "dcd90c3e-ea58-4b3f-9331-688b041c4f5b" + "9fbc5898-23ae-437f-a144-d9e3f3915656" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172208Z:dcd90c3e-ea58-4b3f-9331-688b041c4f5b" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:22:08 GMT" + "CENTRALUS:20170211T015948Z:9fbc5898-23ae-437f-a144-d9e3f3915656" ] }, "StatusCode": 200 @@ -237,11 +242,11 @@ ], "Names": { "CreateAndUpdateIntegrationAccountPartner": [ - "IntegrationAccount4325", - "IntegrationAccountPartner2651" + "IntegrationAccount6961", + "IntegrationAccountPartner5662" ] }, "Variables": { - "SubscriptionId": "5250dd92-b580-46be-b327-e6596c8de196" + "SubscriptionId": "f34b22a3-2202-4fb1-b040-1332bd928c84" } } \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/DeleteIntegrationAccountPartnerOnAccountDeletion.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/DeleteIntegrationAccountPartnerOnAccountDeletion.json index d3f99a77c5a2..4f785e43b874 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/DeleteIntegrationAccountPartnerOnAccountDeletion.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/DeleteIntegrationAccountPartnerOnAccountDeletion.json @@ -1,28 +1,29 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1899?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTg5OT9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1262?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTI2Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"name\": \"IntegrationAccount1899\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "128" + "91" ], "x-ms-client-request-id": [ - "5a301240-6736-413c-8bb3-fe0711b99032" + "a92c215f-f7e7-49c8-b5c3-27566f2aee7f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1899\",\r\n \"name\": \"IntegrationAccount1899\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1262\",\r\n \"name\": \"IntegrationAccount1262\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -33,56 +34,57 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:59:50 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:27864ffd-d9c5-4fc6-91f3-285ccf3e6b1a" + "westus:aa6cd6c5-d1a7-4470-9254-add3ec1d5eef" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1187" + "1195" ], "x-ms-correlation-request-id": [ - "503e9bec-acef-471c-af25-8bf37168f9bd" + "afae8812-6978-4584-a533-f3eb8d30d5ed" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172212Z:503e9bec-acef-471c-af25-8bf37168f9bd" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:22:11 GMT" + "CENTRALUS:20170211T015950Z:afae8812-6978-4584-a533-f3eb8d30d5ed" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1899/partners/IntegrationAccountPartner6884?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTg5OS9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyNjg4ND9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1262/partners/IntegrationAccountPartner4140?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTI2Mi9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyNDE0MD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"metadata\": \"IntegrationAccountPartner6884\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"Qualifier\": \"AA\",\r\n \"Value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"name\": \"IntegrationAccountPartner6884\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountPartnerName\": \"IntegrationAccountPartner6884\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"metadata\": \"IntegrationAccountPartner4140\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountPartnerName\": \"IntegrationAccountPartner4140\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "442" + "398" ], "x-ms-client-request-id": [ - "cbca0a91-f1b6-486f-b02c-86141318e4b7" + "ecee570b-9a27-4ecb-9d3b-847e3bfd7955" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2016-07-20T17:22:12.3180473Z\",\r\n \"changedTime\": \"2016-07-20T17:22:12.3188076Z\",\r\n \"metadata\": \"IntegrationAccountPartner6884\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1899/partners/IntegrationAccountPartner6884\",\r\n \"name\": \"IntegrationAccountPartner6884\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T01:59:51.3617776Z\",\r\n \"changedTime\": \"2017-02-11T01:59:51.3626998Z\",\r\n \"metadata\": \"IntegrationAccountPartner4140\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1262/partners/IntegrationAccountPartner4140\",\r\n \"name\": \"IntegrationAccountPartner4140\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n}", "ResponseHeaders": { "Content-Length": [ "526" @@ -93,47 +95,48 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:59:50 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:95eb7394-9bc5-4987-b736-c768b276c9a1" + "westus:c1277759-4662-44f2-8f9a-2cffe0752117" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1186" + "1194" ], "x-ms-correlation-request-id": [ - "c34647ac-e58b-4fb5-80a4-5a3fb100fd63" + "986b8dd7-b8d7-45c6-9374-16d36339655a" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172212Z:c34647ac-e58b-4fb5-80a4-5a3fb100fd63" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:22:11 GMT" + "CENTRALUS:20170211T015951Z:986b8dd7-b8d7-45c6-9374-16d36339655a" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1899?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTg5OT9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1262?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTI2Mj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "eb1044fe-358b-4461-8356-6715caa9497e" + "d69cc865-c59b-496b-bd91-80a8155101e0" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, "ResponseBody": "", @@ -144,50 +147,51 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:59:51 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:8c06ef50-99e3-4f0e-8eae-a69ef4b8f243" + "westus:e036aecf-a585-4147-b9e6-4eb4f59e6849" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1185" + "1193" ], "x-ms-correlation-request-id": [ - "ccfef3cf-9942-4678-a043-693860c71df9" + "8c5034a1-584c-43a0-8450-ab3759c63abc" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172212Z:ccfef3cf-9942-4678-a043-693860c71df9" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:22:11 GMT" + "CENTRALUS:20170211T015952Z:8c5034a1-584c-43a0-8450-ab3759c63abc" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1899/partners/IntegrationAccountPartner6884?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTg5OS9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyNjg4ND9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1262/partners/IntegrationAccountPartner4140?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTI2Mi9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyNDE0MD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e95a4be8-965f-494d-aa07-8f344c71a76f" + "e7830e2a-21ac-4e59-8573-9a3062389f26" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/integrationAccounts/IntegrationAccount1899' under resource group 'flowrg' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/integrationAccounts/IntegrationAccount1262' under resource group 'flowrg' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "168" @@ -198,6 +202,12 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:59:51 GMT" + ], "Pragma": [ "no-cache" ], @@ -205,22 +215,16 @@ "gateway" ], "x-ms-request-id": [ - "05cd63eb-f7d7-45bb-a8ce-69775192f833" + "d86bedef-1cf6-4251-9448-847f599c443a" ], "x-ms-correlation-request-id": [ - "05cd63eb-f7d7-45bb-a8ce-69775192f833" + "d86bedef-1cf6-4251-9448-847f599c443a" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172212Z:05cd63eb-f7d7-45bb-a8ce-69775192f833" + "CENTRALUS:20170211T015952Z:d86bedef-1cf6-4251-9448-847f599c443a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:22:12 GMT" ] }, "StatusCode": 404 @@ -228,11 +232,11 @@ ], "Names": { "DeleteIntegrationAccountPartnerOnAccountDeletion": [ - "IntegrationAccount1899", - "IntegrationAccountPartner6884" + "IntegrationAccount1262", + "IntegrationAccountPartner4140" ] }, "Variables": { - "SubscriptionId": "5250dd92-b580-46be-b327-e6596c8de196" + "SubscriptionId": "f34b22a3-2202-4fb1-b040-1332bd928c84" } } \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/ListIntegrationAccountPartners.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/ListIntegrationAccountPartners.json index fb15a03ba767..114517814529 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/ListIntegrationAccountPartners.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountPartnerScenarioTests/ListIntegrationAccountPartners.json @@ -1,28 +1,29 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2050?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjA1MD9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6015?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjAxNT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"name\": \"IntegrationAccount2050\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "128" + "91" ], "x-ms-client-request-id": [ - "26b3e64e-717c-4697-919e-4b2f7a801381" + "c465a52c-bc12-4ca6-996f-9a9c32326d89" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2050\",\r\n \"name\": \"IntegrationAccount2050\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6015\",\r\n \"name\": \"IntegrationAccount6015\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -33,56 +34,57 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:59:36 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:d95de9b2-68d4-4bf2-9d70-195b1fe17424" + "westus:c006f016-3dc8-4511-a115-ea239fa1d998" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1183" + "1199" ], "x-ms-correlation-request-id": [ - "f17a14fc-e247-4327-ada8-399edff191d8" + "0f637f9b-f232-4946-8f59-6a42fdc8bf0b" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172157Z:f17a14fc-e247-4327-ada8-399edff191d8" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:21:56 GMT" + "CENTRALUS:20170211T015936Z:0f637f9b-f232-4946-8f59-6a42fdc8bf0b" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2050/partners/IntegrationAccountPartner1370?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjA1MC9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyMTM3MD9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6015/partners/IntegrationAccountPartner7302?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjAxNS9wYXJ0bmVycy9JbnRlZ3JhdGlvbkFjY291bnRQYXJ0bmVyNzMwMj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"metadata\": \"IntegrationAccountPartner1370\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"Qualifier\": \"AA\",\r\n \"Value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"name\": \"IntegrationAccountPartner1370\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountPartnerName\": \"IntegrationAccountPartner1370\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"metadata\": \"IntegrationAccountPartner7302\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountPartnerName\": \"IntegrationAccountPartner7302\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "442" + "398" ], "x-ms-client-request-id": [ - "6ed88f7a-6c6b-424f-9b2e-1eb2ca47553b" + "0c43ac19-0f04-43b2-bc67-0b4bfd070e53" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2016-07-20T17:21:57.4196504Z\",\r\n \"changedTime\": \"2016-07-20T17:21:57.4205748Z\",\r\n \"metadata\": \"IntegrationAccountPartner1370\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2050/partners/IntegrationAccountPartner1370\",\r\n \"name\": \"IntegrationAccountPartner1370\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T01:59:37.3968142Z\",\r\n \"changedTime\": \"2017-02-11T01:59:37.3974798Z\",\r\n \"metadata\": \"IntegrationAccountPartner7302\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6015/partners/IntegrationAccountPartner7302\",\r\n \"name\": \"IntegrationAccountPartner7302\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n}", "ResponseHeaders": { "Content-Length": [ "526" @@ -93,104 +95,107 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:59:36 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:b705407d-9af2-46c3-b759-8975c124c2fc" + "westus:fa653443-2f46-4890-99fa-d6ba532bbb25" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1182" + "1198" ], "x-ms-correlation-request-id": [ - "6fc5a52d-1098-4f25-b4e7-5b9e30995fa9" + "6b6a0ca2-3636-4c0f-85dc-849c0f7de5aa" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172157Z:6fc5a52d-1098-4f25-b4e7-5b9e30995fa9" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:21:56 GMT" + "CENTRALUS:20170211T015937Z:6b6a0ca2-3636-4c0f-85dc-849c0f7de5aa" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2050/partners?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjA1MC9wYXJ0bmVycz9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6015/partners?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjAxNS9wYXJ0bmVycz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "98e97f1d-09e3-4e09-8e6f-1edd599b9ae0" + "9fd6b27f-69e7-4d71-b689-405ede86c03b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2016-07-20T17:21:57.4196504Z\",\r\n \"changedTime\": \"2016-07-20T17:21:57.4205748Z\",\r\n \"metadata\": \"IntegrationAccountPartner1370\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2050/partners/IntegrationAccountPartner1370\",\r\n \"name\": \"IntegrationAccountPartner1370\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"partnerType\": \"B2B\",\r\n \"content\": {\r\n \"b2b\": {\r\n \"businessIdentities\": [\r\n {\r\n \"qualifier\": \"AA\",\r\n \"value\": \"ZZ\"\r\n }\r\n ]\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T01:59:37.3968142Z\",\r\n \"changedTime\": \"2017-02-11T01:59:37.3974798Z\",\r\n \"metadata\": \"IntegrationAccountPartner7302\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6015/partners/IntegrationAccountPartner7302\",\r\n \"name\": \"IntegrationAccountPartner7302\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/partners\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "538" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:59:36 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ + "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "westus:45517d5f-9681-4b53-a2d5-eb3a389d742e" + "westus:ad84603d-60cc-4ebf-94ea-ba80a907d6db" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14986" + "14900" ], "x-ms-correlation-request-id": [ - "34b1fee7-1694-41f0-b5e6-b223d4257a90" + "9177b08a-89e2-4100-854b-81b372eb9a2b" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172157Z:34b1fee7-1694-41f0-b5e6-b223d4257a90" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:21:56 GMT" + "CENTRALUS:20170211T015937Z:9177b08a-89e2-4100-854b-81b372eb9a2b" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2050?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MjA1MD9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6015?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjAxNT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "43fc4250-68b7-440d-b564-36632f532c1a" + "c917fdf8-9b4a-4de6-bf29-cf71b4d12e5b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, "ResponseBody": "", @@ -201,29 +206,29 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:59:37 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:f1a87011-d072-497a-a100-43909e83f9e3" + "westus:0ea9df64-6341-487b-972d-f6f4e4966658" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1181" + "1197" ], "x-ms-correlation-request-id": [ - "0ba9a9e4-d82e-458e-a7ef-ae9bae8c8820" + "b4d3c128-701f-418a-9896-8d258ddd76c5" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172158Z:0ba9a9e4-d82e-458e-a7ef-ae9bae8c8820" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:21:58 GMT" + "CENTRALUS:20170211T015938Z:b4d3c128-701f-418a-9896-8d258ddd76c5" ] }, "StatusCode": 200 @@ -231,11 +236,11 @@ ], "Names": { "ListIntegrationAccountPartners": [ - "IntegrationAccount2050", - "IntegrationAccountPartner1370" + "IntegrationAccount6015", + "IntegrationAccountPartner7302" ] }, "Variables": { - "SubscriptionId": "5250dd92-b580-46be-b327-e6596c8de196" + "SubscriptionId": "f34b22a3-2202-4fb1-b040-1332bd928c84" } } \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/CreateAndDeleteIntegrationAccount.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/CreateAndDeleteIntegrationAccount.json index cc1b8ba0462a..bd469345dc8e 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/CreateAndDeleteIntegrationAccount.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/CreateAndDeleteIntegrationAccount.json @@ -1,28 +1,29 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3336?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzMzNj9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8657?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODY1Nz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"name\": \"IntegrationAccount3336\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "128" + "91" ], "x-ms-client-request-id": [ - "e107f517-94dd-4ecb-b03f-e9c32e0c4b97" + "bebfa88a-1f63-47e3-9ec9-c71f97b5beca" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3336\",\r\n \"name\": \"IntegrationAccount3336\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8657\",\r\n \"name\": \"IntegrationAccount8657\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -33,47 +34,48 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:36 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:c4e9953f-2654-4544-aef1-721dd791691f" + "westus:863ccf4e-8ae9-481c-8b3a-f7e408c108a3" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1193" ], "x-ms-correlation-request-id": [ - "f5e12455-19e8-48d9-9fc2-779c090afa87" + "35d92968-0971-4b29-8317-259951d7cd5b" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172018Z:f5e12455-19e8-48d9-9fc2-779c090afa87" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:20:17 GMT" + "WESTUS2:20170211T020036Z:35d92968-0971-4b29-8317-259951d7cd5b" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3336?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzMzNj9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8657?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODY1Nz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "19216d16-6bb2-43d2-bdc9-e91bc66c7789" + "57c93f4f-c871-4626-8d4c-8f0a50654bda" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, "ResponseBody": "", @@ -84,29 +86,29 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:36 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:d2e06f41-3008-4010-87d1-c5b3525a9990" + "westus:4d9db001-e2ef-4a74-bb4c-e7473723a667" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1192" ], "x-ms-correlation-request-id": [ - "34793384-36d8-46ac-ba08-e85287823014" + "5d7c4042-eec1-4799-9f90-ea313aa85afc" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172018Z:34793384-36d8-46ac-ba08-e85287823014" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:20:18 GMT" + "WESTUS2:20170211T020037Z:5d7c4042-eec1-4799-9f90-ea313aa85afc" ] }, "StatusCode": 200 @@ -114,10 +116,10 @@ ], "Names": { "CreateAndDeleteIntegrationAccount": [ - "IntegrationAccount3336" + "IntegrationAccount8657" ] }, "Variables": { - "SubscriptionId": "5250dd92-b580-46be-b327-e6596c8de196" + "SubscriptionId": "f34b22a3-2202-4fb1-b040-1332bd928c84" } } \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/CreateAndGetIntegrationAccountByName.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/CreateAndGetIntegrationAccountByName.json index 2cf900afc957..b7113bfde2c9 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/CreateAndGetIntegrationAccountByName.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/CreateAndGetIntegrationAccountByName.json @@ -1,28 +1,29 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4930?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDkzMD9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9660?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTY2MD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"name\": \"IntegrationAccount4930\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "128" + "91" ], "x-ms-client-request-id": [ - "7f3d50b5-9b14-45cd-ac0c-383b1f3ed872" + "b6fe5238-9dd7-456d-835e-644853423202" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4930\",\r\n \"name\": \"IntegrationAccount4930\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9660\",\r\n \"name\": \"IntegrationAccount9660\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -33,11 +34,17 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:48 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:f7a0862d-3ec8-4c0d-8c97-d0eb5e1afae0" + "westus:a328172e-3e62-489e-944a-84edab9fe0de" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,91 +53,88 @@ "1195" ], "x-ms-correlation-request-id": [ - "9ff50ca9-5765-48b7-a610-337d239d1140" + "0d596801-81b8-4507-a3d8-36f3b75d7021" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172006Z:9ff50ca9-5765-48b7-a610-337d239d1140" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:20:06 GMT" + "WESTUS2:20170211T020048Z:0d596801-81b8-4507-a3d8-36f3b75d7021" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4930?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDkzMD9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9660?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTY2MD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "95a56c75-4647-40b3-99be-83295210190b" + "12eb2b32-be4b-4c94-b99a-cb4c172fbd7d" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4930\",\r\n \"name\": \"IntegrationAccount4930\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9660\",\r\n \"name\": \"IntegrationAccount9660\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "290" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:48 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ + "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "westus:0fe08199-3268-41c1-99e5-777d33573d73" + "westus:d5bfc0c0-d61b-4548-b6f2-f7ed12ffef6b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14988" + "14630" ], "x-ms-correlation-request-id": [ - "8ec71554-244f-46f7-944b-3902f964920e" + "c80d790b-d268-4bc7-8256-9027da27dbbc" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172006Z:8ec71554-244f-46f7-944b-3902f964920e" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:20:06 GMT" + "WESTUS2:20170211T020048Z:c80d790b-d268-4bc7-8256-9027da27dbbc" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4930?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDkzMD9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9660?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTY2MD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "e2fce6c9-0d17-4f49-968a-5d08ea13c128" + "743f8bee-4fcb-4296-af0f-72e104177dd8" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, "ResponseBody": "", @@ -141,11 +145,17 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:48 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:d341d5b1-1892-4cbc-b00d-dacde8fa2b69" + "westus:a0b6ec19-e294-4b5c-ae72-d68e196b6d07" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -154,16 +164,10 @@ "1194" ], "x-ms-correlation-request-id": [ - "395e815a-d0d6-4268-ba7f-7cb9c800014e" + "be08b705-0f1a-47bb-ad1b-e83ed86611dd" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172007Z:395e815a-d0d6-4268-ba7f-7cb9c800014e" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:20:07 GMT" + "WESTUS2:20170211T020049Z:be08b705-0f1a-47bb-ad1b-e83ed86611dd" ] }, "StatusCode": 200 @@ -171,10 +175,10 @@ ], "Names": { "CreateAndGetIntegrationAccountByName": [ - "IntegrationAccount4930" + "IntegrationAccount9660" ] }, "Variables": { - "SubscriptionId": "5250dd92-b580-46be-b327-e6596c8de196" + "SubscriptionId": "f34b22a3-2202-4fb1-b040-1332bd928c84" } } \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/CreateAndUpdateIntegrationAccount.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/CreateAndUpdateIntegrationAccount.json index c53204122fc6..267a651f3ac2 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/CreateAndUpdateIntegrationAccount.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/CreateAndUpdateIntegrationAccount.json @@ -1,28 +1,29 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1567?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTU2Nz9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5374?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTM3ND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"name\": \"IntegrationAccount1567\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "128" + "91" ], "x-ms-client-request-id": [ - "21243f74-57ae-41e9-822b-d8c98f5ed07a" + "55bf08e4-a01c-4ffa-a1f2-18c156c8d46c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1567\",\r\n \"name\": \"IntegrationAccount1567\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5374\",\r\n \"name\": \"IntegrationAccount5374\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -33,110 +34,113 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:44 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:e14237ca-f7d0-4fc7-b27d-7e3e0a3bf8e6" + "westus:6daef8a7-0615-4688-b892-5730c9c89948" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1191" ], "x-ms-correlation-request-id": [ - "2a97916a-2825-4dbf-9b1f-dafa7825163d" + "273cb95f-2e7e-4ada-9ee5-754f888f853f" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172001Z:2a97916a-2825-4dbf-9b1f-dafa7825163d" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:20:01 GMT" + "WESTUS2:20170211T020045Z:273cb95f-2e7e-4ada-9ee5-754f888f853f" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1567?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTU2Nz9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5374?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTM3ND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"name\": \"IntegrationAccount1567\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "124" + "91" ], "x-ms-client-request-id": [ - "1a0d88bc-da24-40ab-8aca-06bb549534ad" + "76d0c1fa-31e4-4abe-b40b-40da2a22203e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1567\",\r\n \"name\": \"IntegrationAccount1567\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5374\",\r\n \"name\": \"IntegrationAccount5374\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "286" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:45 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ + "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "westus:b5e69a73-45c6-4192-abc3-ee75de797f52" + "westus:a6820687-cab7-4fb3-8ebe-f47c6f276a7f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1190" ], "x-ms-correlation-request-id": [ - "470fbf8a-fad2-4a8b-92ae-9f36b92437ef" + "362127eb-194c-47ad-901c-03f803e32b76" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172002Z:470fbf8a-fad2-4a8b-92ae-9f36b92437ef" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:20:01 GMT" + "WESTUS2:20170211T020046Z:362127eb-194c-47ad-901c-03f803e32b76" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1567?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTU2Nz9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5374?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTM3ND9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b7326134-24b1-44b1-8088-9d4b6a63d9db" + "63c77563-b276-431e-9c8b-2548dd43e034" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, "ResponseBody": "", @@ -147,29 +151,29 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:45 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:78956f58-ebfa-43d8-a36f-1f1f60ba45d4" + "westus:4c35bb56-a73f-4a62-a5e6-d1ed747184a9" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1189" ], "x-ms-correlation-request-id": [ - "e9103e0c-bbf8-4fac-89f4-632f3513064f" + "366a8269-2a96-4f0c-82ac-51a4b84ad63f" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172002Z:e9103e0c-bbf8-4fac-89f4-632f3513064f" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:20:02 GMT" + "WESTUS2:20170211T020046Z:366a8269-2a96-4f0c-82ac-51a4b84ad63f" ] }, "StatusCode": 200 @@ -177,10 +181,10 @@ ], "Names": { "CreateAndUpdateIntegrationAccount": [ - "IntegrationAccount1567" + "IntegrationAccount5374" ] }, "Variables": { - "SubscriptionId": "5250dd92-b580-46be-b327-e6596c8de196" + "SubscriptionId": "f34b22a3-2202-4fb1-b040-1332bd928c84" } } \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/ListIntegrationAccountByResourceGroup.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/ListIntegrationAccountByResourceGroup.json index 1d87164ae207..79eaff32da6b 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/ListIntegrationAccountByResourceGroup.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/ListIntegrationAccountByResourceGroup.json @@ -1,28 +1,29 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9242?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTI0Mj9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1875?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTg3NT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"name\": \"IntegrationAccount9242\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "128" + "91" ], "x-ms-client-request-id": [ - "46a181cb-93c6-4b64-b0cc-9dc044bf3b55" + "819a9ddb-c454-4810-9d13-1351e17275a2" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9242\",\r\n \"name\": \"IntegrationAccount9242\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1875\",\r\n \"name\": \"IntegrationAccount1875\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -33,104 +34,107 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:42 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:87c2d14c-7944-46c5-a729-bd40a9947a4f" + "westus:e92ba672-9bd9-4bfb-ab44-1249ecde6cfe" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1199" ], "x-ms-correlation-request-id": [ - "a9cc77c7-dbf1-499c-8ce4-0da1dcf31f0c" + "a3d7758c-383d-47bc-8f9c-251c7a3a4e32" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172022Z:a9cc77c7-dbf1-499c-8ce4-0da1dcf31f0c" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:20:22 GMT" + "WESTUS2:20170211T020043Z:a3d7758c-383d-47bc-8f9c-251c7a3a4e32" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNS0wOC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "06acc304-d6c7-4406-a267-809b884f0105" + "e3b8b98d-df7b-473c-a49c-3e9846ee2fda" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1096\",\r\n \"name\": \"IntegrationAccount1096\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1542\",\r\n \"name\": \"IntegrationAccount1542\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3062\",\r\n \"name\": \"IntegrationAccount3062\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3143\",\r\n \"name\": \"IntegrationAccount3143\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3219\",\r\n \"name\": \"IntegrationAccount3219\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount375\",\r\n \"name\": \"IntegrationAccount375\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7285\",\r\n \"name\": \"IntegrationAccount7285\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7803\",\r\n \"name\": \"IntegrationAccount7803\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8038\",\r\n \"name\": \"IntegrationAccount8038\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9242\",\r\n \"name\": \"IntegrationAccount9242\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9281\",\r\n \"name\": \"IntegrationAccount9281\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1192\",\r\n \"name\": \"IntegrationAccount1192\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1875\",\r\n \"name\": \"IntegrationAccount1875\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "3210" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:42 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ + "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "westus:e2ea2a6d-6b74-41b3-b02a-8d248c7a7812" + "westus:6b97db64-a8c9-4fbb-ba79-2fb713fbfdda" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14987" + "14604" ], "x-ms-correlation-request-id": [ - "4729ad72-0eea-4593-8400-f83a3ba76b48" + "01bd8783-75b4-4e3a-a28d-257ff088ccaf" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172022Z:4729ad72-0eea-4593-8400-f83a3ba76b48" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:20:22 GMT" + "WESTUS2:20170211T020043Z:01bd8783-75b4-4e3a-a28d-257ff088ccaf" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9242?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTI0Mj9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1875?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTg3NT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "586a070d-75d7-4a75-86b6-dc503dedabf2" + "3de84599-bb3c-4c9d-a49f-95a57f14d03b" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, "ResponseBody": "", @@ -141,29 +145,29 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:43 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:b34ba415-1879-44ed-a171-48609fcf5caa" + "westus:a51851c9-128f-4428-b47c-6bb17982b19b" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1198" ], "x-ms-correlation-request-id": [ - "39e3e7f5-0882-4130-861f-90f313b5121c" + "25faa2ea-e054-4572-b37d-f61466879bf8" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172023Z:39e3e7f5-0882-4130-861f-90f313b5121c" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:20:22 GMT" + "WESTUS2:20170211T020043Z:25faa2ea-e054-4572-b37d-f61466879bf8" ] }, "StatusCode": 200 @@ -171,10 +175,10 @@ ], "Names": { "ListIntegrationAccountByResourceGroup": [ - "IntegrationAccount9242" + "IntegrationAccount1875" ] }, "Variables": { - "SubscriptionId": "5250dd92-b580-46be-b327-e6596c8de196" + "SubscriptionId": "f34b22a3-2202-4fb1-b040-1332bd928c84" } } \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/ListIntegrationAccountBySubscription.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/ListIntegrationAccountBySubscription.json index e974dec190dd..b87112a1d443 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/ListIntegrationAccountBySubscription.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/ListIntegrationAccountBySubscription.json @@ -1,28 +1,29 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1997?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTk5Nz9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6318?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjMxOD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"name\": \"IntegrationAccount1997\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "128" + "91" ], "x-ms-client-request-id": [ - "3a173ee8-c548-44eb-8f51-6ee306e7e58f" + "843b7f25-e7ff-4d0e-9ff5-1a80a0af589f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1997\",\r\n \"name\": \"IntegrationAccount1997\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6318\",\r\n \"name\": \"IntegrationAccount6318\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -33,104 +34,116 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:38 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:fbcd2df9-e6ea-4da9-b16a-f141b666756c" + "westus:23a9b214-02e5-4c63-98ee-d0c77fc72c0f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1192" ], "x-ms-correlation-request-id": [ - "74da4537-dbcb-43d7-94a5-b31f45e8a1e7" + "4253a2c6-a81c-41dd-8701-8818f91eb4f4" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172027Z:74da4537-dbcb-43d7-94a5-b31f45e8a1e7" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:20:27 GMT" + "WESTUS2:20170211T020039Z:4253a2c6-a81c-41dd-8701-8818f91eb4f4" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/providers/Microsoft.Logic/integrationAccounts?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Byb3ZpZGVycy9NaWNyb3NvZnQuTG9naWMvaW50ZWdyYXRpb25BY2NvdW50cz9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/providers/Microsoft.Logic/integrationAccounts?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Byb3ZpZGVycy9NaWNyb3NvZnQuTG9naWMvaW50ZWdyYXRpb25BY2NvdW50cz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "890a0a46-4883-4679-9720-301e62768ef3" + "29c3f902-8436-49a7-a967-e9c166880493" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1096\",\r\n \"name\": \"IntegrationAccount1096\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1542\",\r\n \"name\": \"IntegrationAccount1542\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1997\",\r\n \"name\": \"IntegrationAccount1997\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3062\",\r\n \"name\": \"IntegrationAccount3062\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3143\",\r\n \"name\": \"IntegrationAccount3143\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3219\",\r\n \"name\": \"IntegrationAccount3219\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount375\",\r\n \"name\": \"IntegrationAccount375\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7285\",\r\n \"name\": \"IntegrationAccount7285\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7803\",\r\n \"name\": \"IntegrationAccount7803\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8038\",\r\n \"name\": \"IntegrationAccount8038\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9281\",\r\n \"name\": \"IntegrationAccount9281\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgRG_NC/providers/Microsoft.Logic/integrationAccounts/daviburgIAFabrikam\",\r\n \"name\": \"daviburgIAFabrikam\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgRG_NC/providers/Microsoft.Logic/integrationAccounts/daviburgIANC\",\r\n \"name\": \"daviburgIANC\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/DONOTDELETE-TrackingResourceGroupNorthCentralUS/providers/Microsoft.Logic/integrationAccounts/DONOTDELETE-TrackingIntegrationAccountNorthCentralUS\",\r\n \"name\": \"DONOTDELETE-TrackingIntegrationAccountNorthCentralUS\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/EIPTemplates/providers/Microsoft.Logic/integrationAccounts/testbatchtracking\",\r\n \"name\": \"testbatchtracking\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JavRGBTS/providers/Microsoft.Logic/integrationAccounts/JavIANCUS\",\r\n \"name\": \"JavIANCUS\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/sapdemo2\",\r\n \"name\": \"sapdemo2\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/klamRG/providers/Microsoft.Logic/integrationAccounts/klamIntegrationAccount\",\r\n \"name\": \"klamIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/PaginationTestRG/providers/Microsoft.Logic/integrationAccounts/PaginationIA\",\r\n \"name\": \"PaginationIA\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/sumikumRGt1/providers/Microsoft.Logic/integrationAccounts/ContosoIntegrationAccount\",\r\n \"name\": \"ContosoIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"displayName\": \"Contoso Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/sumikumRGt1/providers/Microsoft.Logic/integrationAccounts/FabrikamIntegrationAccount\",\r\n \"name\": \"FabrikamIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\",\r\n \"tags\": {\r\n \"displayName\": \"Fabrikam Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/sumikumRGt1/providers/Microsoft.Logic/integrationAccounts/sumikumIA2\",\r\n \"name\": \"sumikumIA2\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/sumikumRGt1/providers/Microsoft.Logic/integrationAccounts/sumikumIAt1\",\r\n \"name\": \"sumikumIAt1\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/ContosoIntegrationAccountDemo\",\r\n \"name\": \"ContosoIntegrationAccountDemo\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"displayName\": \"Contoso Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/FabrikamIntegrationAccountDemo\",\r\n \"name\": \"FabrikamIntegrationAccountDemo\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"displayName\": \"Fabrikam Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/IntegrationAccountDemo\",\r\n \"name\": \"IntegrationAccountDemo\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/JonsCentralUSAccount\",\r\n \"name\": \"JonsCentralUSAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/JonsIntAcc\",\r\n \"name\": \"JonsIntAcc\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/ContosoIntegrationAccount\",\r\n \"name\": \"ContosoIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"displayName\": \"Contoso Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/FabrikamIntegrationAccount\",\r\n \"name\": \"FabrikamIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\",\r\n \"tags\": {\r\n \"displayName\": \"Fabrikam Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount\",\r\n \"name\": \"IntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/JonsDemos\",\r\n \"name\": \"JonsDemos\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/jonsigniteintacc\",\r\n \"name\": \"jonsigniteintacc\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/JonsIntAccCentralUS\",\r\n \"name\": \"JonsIntAccCentralUS\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/jonsintegrationaccount\",\r\n \"name\": \"jonsintegrationaccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/padintegrationaccountdiagnostics/providers/Microsoft.Logic/integrationAccounts/testdiagnostics\",\r\n \"name\": \"testdiagnostics\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayuducentralusrg/providers/Microsoft.Logic/integrationAccounts/rarayuducentralusia\",\r\n \"name\": \"rarayuducentralusia\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/vinay-central-ua/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount\",\r\n \"name\": \"IntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"centralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/VETERaccount\",\r\n \"name\": \"VETERaccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/ramacfar-test/providers/Microsoft.Logic/integrationAccounts/ramacfar_south_central\",\r\n \"name\": \"ramacfar_south_central\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayudutestas2rg/providers/Microsoft.Logic/integrationAccounts/rarayuduiaSCUS\",\r\n \"name\": \"rarayuduiaSCUS\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"southcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JAV-RG-NorthEurope2/providers/Microsoft.Logic/integrationAccounts/Jav-IA-NorthEurope\",\r\n \"name\": \"Jav-IA-NorthEurope\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayudutestnortheuroperg/providers/Microsoft.Logic/integrationAccounts/rarayudutestnortheuropeia\",\r\n \"name\": \"rarayudutestnortheuropeia\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/TrackingTip/providers/Microsoft.Logic/integrationAccounts/TrackingTipGuestIA\",\r\n \"name\": \"TrackingTipGuestIA\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/TrackingTip/providers/Microsoft.Logic/integrationAccounts/TrackingTipHostIA\",\r\n \"name\": \"TrackingTipHostIA\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/vinayvsrg/providers/Microsoft.Logic/integrationAccounts/NorthEuropeTesting\",\r\n \"name\": \"NorthEuropeTesting\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"northeurope\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JavRG-WestEurope2/providers/Microsoft.Logic/integrationAccounts/JavIA-WestEurope\",\r\n \"name\": \"JavIA-WestEurope\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/TestFreeAccount\",\r\n \"name\": \"TestFreeAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/X12WestEurope/providers/Microsoft.Logic/integrationAccounts/westeuropeia\",\r\n \"name\": \"westeuropeia\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westeurope\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/apsethRG/providers/Microsoft.Logic/integrationAccounts/APATEST\",\r\n \"name\": \"APATEST\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/as2tryit/providers/Microsoft.Logic/integrationAccounts/ContosoIntegrationAccount\",\r\n \"name\": \"ContosoIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/as2tryit/providers/Microsoft.Logic/integrationAccounts/FabrikamIntegrationAccount\",\r\n \"name\": \"FabrikamIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"displayName\": \"Fabrikam Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/ContosoIntegration/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount-1.618\",\r\n \"name\": \"IntegrationAccount-1.618\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgIASdkTestRg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1890\",\r\n \"name\": \"IntegrationAccount1890\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgIASdkTestRg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2342\",\r\n \"name\": \"IntegrationAccount2342\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgIASdkTestRg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount2800\",\r\n \"name\": \"IntegrationAccount2800\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgIASdkTestRg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6287\",\r\n \"name\": \"IntegrationAccount6287\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgIASdkTestRg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6364\",\r\n \"name\": \"IntegrationAccount6364\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgIASdkTestRg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8794\",\r\n \"name\": \"IntegrationAccount8794\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgIASdkTestRg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9648\",\r\n \"name\": \"IntegrationAccount9648\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgIASdkTestRg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9789\",\r\n \"name\": \"IntegrationAccount9789\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/Default-Web-WestUS/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount\",\r\n \"name\": \"IntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/EIPTemplates/providers/Microsoft.Logic/integrationAccounts/EIPIntegration\",\r\n \"name\": \"EIPIntegration\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/EIPTemplates/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount\",\r\n \"name\": \"IntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/EIPTemplates/providers/Microsoft.Logic/integrationAccounts/PrimaryIntegrationAccount\",\r\n \"name\": \"PrimaryIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1192\",\r\n \"name\": \"IntegrationAccount1192\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6318\",\r\n \"name\": \"IntegrationAccount6318\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JavRGBTS/providers/Microsoft.Logic/integrationAccounts/JavIABTS\",\r\n \"name\": \"JavIABTS\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JavRGBTS4/providers/Microsoft.Logic/integrationAccounts/Jav-BrazilUSIA\",\r\n \"name\": \"Jav-BrazilUSIA\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/JonsB2Baccount\",\r\n \"name\": \"JonsB2Baccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/AS2IntegrationAccount\",\r\n \"name\": \"AS2IntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/myRGname/providers/Microsoft.Logic/integrationAccounts/TestAccount\",\r\n \"name\": \"TestAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/paddemo/providers/Microsoft.Logic/integrationAccounts/integrationaccountdemo\",\r\n \"name\": \"integrationaccountdemo\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/PadmaCSADemo/providers/Microsoft.Logic/integrationAccounts/padintegrationdemo\",\r\n \"name\": \"padintegrationdemo\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/PrimaryRegionRG/providers/Microsoft.Logic/integrationAccounts/PrimaryIntegrationAccount\",\r\n \"name\": \"PrimaryIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayudutestas2westusrg/providers/Microsoft.Logic/integrationAccounts/rarayudutestas2westusia\",\r\n \"name\": \"rarayudutestas2westusia\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayudutestvsrg/providers/Microsoft.Logic/integrationAccounts/rarayudutestdiagnosticsia\",\r\n \"name\": \"rarayudutestdiagnosticsia\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayudutestvsrg/providers/Microsoft.Logic/integrationAccounts/rarayudutestintegration\",\r\n \"name\": \"rarayudutestintegration\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/testvetr/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount\",\r\n \"name\": \"IntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/EIPTemplates/providers/Microsoft.Logic/integrationAccounts/SecondaryIntegrationAccount\",\r\n \"name\": \"SecondaryIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/jonnewia\",\r\n \"name\": \"jonnewia\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/padmarg/providers/Microsoft.Logic/integrationAccounts/MyIntegrationAccount\",\r\n \"name\": \"MyIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayudueastusrg/providers/Microsoft.Logic/integrationAccounts/rarayuduiaeastus\",\r\n \"name\": \"rarayuduiaeastus\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/SecondaryRegionRG/providers/Microsoft.Logic/integrationAccounts/SecondaryIntegrationAccount\",\r\n \"name\": \"SecondaryIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"eastus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayuduperftest/providers/Microsoft.Logic/integrationAccounts/rarayudutestsignencryptis\",\r\n \"name\": \"rarayudutestsignencryptis\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"eastus2\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/A2ABugBash_TUJAMGRG/providers/Microsoft.Logic/integrationAccounts/IntAccount-tujamg\",\r\n \"name\": \"IntAccount-tujamg\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\",\r\n \"tags\": {}\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/Axrunz/providers/Microsoft.Logic/integrationAccounts/x12TestIntegrationAccount\",\r\n \"name\": \"x12TestIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/BizTalkConnectorDemoRG/providers/Microsoft.Logic/integrationAccounts/BtsLogicAppTestIntAcc\",\r\n \"name\": \"BtsLogicAppTestIntAcc\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/brazilsouth1/providers/Microsoft.Logic/integrationAccounts/MyIntegrationAccount\",\r\n \"name\": \"MyIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/ContosoIntegration/providers/Microsoft.Logic/integrationAccounts/ContosoIntegration\",\r\n \"name\": \"ContosoIntegration\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/ContosoIntegration/providers/Microsoft.Logic/integrationAccounts/MyIntegrationAccount\",\r\n \"name\": \"MyIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgRG_DogFood/providers/Microsoft.Logic/integrationAccounts/daviburgIA_BS\",\r\n \"name\": \"daviburgIA_BS\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgRG_DogFood/providers/Microsoft.Logic/integrationAccounts/daviburgIA_BS_Fabrikam\",\r\n \"name\": \"daviburgIA_BS_Fabrikam\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk4218\",\r\n \"name\": \"onesdk4218\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk5235\",\r\n \"name\": \"onesdk5235\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/IntegrationAccountPsCmdletTest/providers/Microsoft.Logic/integrationAccounts/onesdk5333\",\r\n \"name\": \"onesdk5333\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/CanaryIA\",\r\n \"name\": \"CanaryIA\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/ContosoIntegrationAccount\",\r\n \"name\": \"ContosoIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\",\r\n \"tags\": {\r\n \"displayName\": \"Contoso Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/FabrikamIntegrationAccount\",\r\n \"name\": \"FabrikamIntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\",\r\n \"tags\": {\r\n \"displayName\": \"Fabrikam Integration Account\"\r\n }\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount\",\r\n \"name\": \"IntegrationAccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/JonIA2\",\r\n \"name\": \"JonIA2\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/jonsintegrationaccount\",\r\n \"name\": \"jonsintegrationaccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/JonsIARG/providers/Microsoft.Logic/integrationAccounts/JonsNewIA\",\r\n \"name\": \"JonsNewIA\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/JonsIntAccountBrazil\",\r\n \"name\": \"JonsIntAccountBrazil\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/padCSAdemo/providers/Microsoft.Logic/integrationAccounts/padcsaIAdemo\",\r\n \"name\": \"padcsaIAdemo\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/padmarg/providers/Microsoft.Logic/integrationAccounts/dfpadtestint\",\r\n \"name\": \"dfpadtestint\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/psrivasintAccount/providers/Microsoft.Logic/integrationAccounts/psrivasIntAcc\",\r\n \"name\": \"psrivasIntAcc\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayuduperftest/providers/Microsoft.Logic/integrationAccounts/rarayuduperfDecodeIA1\",\r\n \"name\": \"rarayuduperfDecodeIA1\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayuduperftest/providers/Microsoft.Logic/integrationAccounts/rarayuduperftestia1\",\r\n \"name\": \"rarayuduperftestia1\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayuduperftest/providers/Microsoft.Logic/integrationAccounts/rarayuduperftestia10\",\r\n \"name\": \"rarayuduperftestia10\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayuduperftest/providers/Microsoft.Logic/integrationAccounts/rarayuduperftestia2\",\r\n \"name\": \"rarayuduperftestia2\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayuduperftest/providers/Microsoft.Logic/integrationAccounts/rarayuduperftestia3\",\r\n \"name\": \"rarayuduperftestia3\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayuduperftest/providers/Microsoft.Logic/integrationAccounts/rarayuduperftestia4\",\r\n \"name\": \"rarayuduperftestia4\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayuduperftest/providers/Microsoft.Logic/integrationAccounts/rarayuduperftestia5\",\r\n \"name\": \"rarayuduperftestia5\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayuduperftest/providers/Microsoft.Logic/integrationAccounts/rarayuduperftestia6\",\r\n \"name\": \"rarayuduperftestia6\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"brazilsouth\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/jonsigniterg/providers/Microsoft.Logic/integrationAccounts/msftconnectaccount\",\r\n \"name\": \"msftconnectaccount\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus2\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/B2BEndToEndTracking/providers/Microsoft.Logic/integrationAccounts/TrackingTipGuest\",\r\n \"name\": \"TrackingTipGuest\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgRG_WCUS/providers/Microsoft.Logic/integrationAccounts/daviburgWCUS_Contoso\",\r\n \"name\": \"daviburgWCUS_Contoso\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/daviburgRG_WCUS/providers/Microsoft.Logic/integrationAccounts/daviburgWCUS_Fabrikam\",\r\n \"name\": \"daviburgWCUS_Fabrikam\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/rarayudutestas2westusrg/providers/Microsoft.Logic/integrationAccounts/rarayuduiatestwestcentralus\",\r\n \"name\": \"rarayuduiatestwestcentralus\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/TrackingTipRG/providers/Microsoft.Logic/integrationAccounts/TrackingTip\",\r\n \"name\": \"TrackingTip\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westcentralus\"\r\n },\r\n {\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Free\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/westcentralus-rg/providers/Microsoft.Logic/integrationAccounts/westcentralus-ia\",\r\n \"name\": \"westcentralus-ia\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westcentralus\"\r\n }\r\n ],\r\n \"nextLink\": \"https://management.azure.com/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/providers/Microsoft.Logic/integrationAccounts?api-version=2016-06-01&%24skiptoken=5dHbbqMwEADQf0HqPi3BEKjaSNUq2eIUEsjG2EPEm7kkcTCXgnNr1X9fr7SfsG8r2Q8ej2ZGcz6NtrqptWjr0Zh9GqmfUJYYM%2bOoVD%2fOLKvhLT9UTdWqCf84D9Wk6BprPOdjMYheia4drf3UzR2HT03HQY7p7nPbzJGLTHs6dfLy2XkqnlyrH7qLKKthtCJRDN3Y7dVk3R1EYYlWVYeB%2f6k1L4ru3KrxB%2b%2bFedHJOvbiIPvRRPrY3x4cd6x1266u2pfqHp6z3RGxJb6XS4l4%2bnxOHPCCUyeixHcD8K8pjRMufRWIq8gbcEscXkqkZJUEj8HJP0Y00HnhO6ULwmvpMSBxxez37U5uCPSvFCAskedvd8e4qm2PpYrE%2bp%2f75BfBYQM%2b8xiObiBxBDKkDGBDcQwxO6YEMgZ1tiKSXTeQAUfekp3wiuEs3e5ISur%2bJ6MLlEgyZBgSqD1gNrN1S8hwTHS9FbzO7a30r1QuUtDDBC16mJbGd2NB5lmwTjaMvv1HWHP0z7D08iFVy1RmwPTVWJQ1t0Rj3diOaCz9hmzUCEuNq3H6N6ghBZzh3A835R2pvxhfX78B\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "3210" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:39 GMT" + ], "Pragma": [ "no-cache" ], "Vary": [ "Accept-Encoding" ], - "x-ms-request-id": [ - "westus:5511d3b0-bbfa-4456-8647-6b33f3fbe50a" - ], - "Strict-Transport-Security": [ - "max-age=31536000; includeSubDomains" + "x-ms-original-request-ids": [ + "northcentralus:f423bf44-b11d-4374-a823-a9ada22ce095", + "centralus:cb1f7108-2534-4e27-a40c-7da1f8072090", + "southcentralus:f04d47cd-fe1d-495e-a198-9f82fe5da45b", + "northeurope:25cea73e-83c9-4474-8007-0f9104adfa03", + "westeurope:0ead2b4e-7d40-4d85-aafc-ecf2e64f1036", + "westus:6908d9b0-5a9c-4466-a7c7-19c2a97be0cc", + "eastus:a9bcc0da-dce7-4a81-81b1-219502c1bb72", + "eastus2:c3d1e56e-0ea5-478b-b5ef-c302b9ac20db", + "brazilsouth:91185814-b167-4d96-bead-17ba3170125a", + "westus2:f576bf66-6b39-4b00-b45f-7b711e357079", + "westcentralus:400d3a9f-c728-44f2-9b1b-4154d39daa16" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14820" + ], + "x-ms-request-id": [ + "371f1aab-a2cd-496d-928f-f0de14be78ea" ], "x-ms-correlation-request-id": [ - "de24a4a4-c8b1-4c89-8462-90d80d9bfc6d" + "371f1aab-a2cd-496d-928f-f0de14be78ea" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172027Z:de24a4a4-c8b1-4c89-8462-90d80d9bfc6d" - ], - "Cache-Control": [ - "no-cache" + "WESTUS2:20170211T020040Z:371f1aab-a2cd-496d-928f-f0de14be78ea" ], - "Date": [ - "Wed, 20 Jul 2016 17:20:27 GMT" + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1997?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTk5Nz9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6318?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NjMxOD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "36e0adb2-30d3-45f2-bd8e-f20df460df26" + "56a97073-e384-409f-b858-192b46178517" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, "ResponseBody": "", @@ -141,29 +154,29 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:40 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:c60cb51b-2810-42c9-87ec-9b408f5c378e" + "westus:74a2de90-ab58-4dd3-a219-55e7d849b64c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1191" ], "x-ms-correlation-request-id": [ - "0b1914ad-3bcb-483d-9f94-5f9101c7b28b" + "ff8633bc-7c28-4990-ab7b-2aad23713c89" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172028Z:0b1914ad-3bcb-483d-9f94-5f9101c7b28b" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:20:28 GMT" + "WESTUS2:20170211T020041Z:ff8633bc-7c28-4990-ab7b-2aad23713c89" ] }, "StatusCode": 200 @@ -171,10 +184,10 @@ ], "Names": { "ListIntegrationAccountBySubscription": [ - "IntegrationAccount1997" + "IntegrationAccount6318" ] }, "Variables": { - "SubscriptionId": "5250dd92-b580-46be-b327-e6596c8de196" + "SubscriptionId": "f34b22a3-2202-4fb1-b040-1332bd928c84" } } \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/ListIntegrationAccountCallbackUrl.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/ListIntegrationAccountCallbackUrl.json index f2b7c826a41d..9d3bfe4e9980 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/ListIntegrationAccountCallbackUrl.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/ListIntegrationAccountCallbackUrl.json @@ -1,28 +1,29 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4729?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDcyOT9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9785?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTc4NT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"name\": \"IntegrationAccount4729\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "128" + "91" ], "x-ms-client-request-id": [ - "1cd9c603-035d-42e8-8eb6-b475f7f87ff0" + "c6067697-5242-4a0a-b1e3-093f505821e5" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4729\",\r\n \"name\": \"IntegrationAccount4729\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9785\",\r\n \"name\": \"IntegrationAccount9785\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -33,36 +34,101 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:33 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:6fd40491-04fc-4c04-9fdd-51db59ccff87" + "westus:fe8d227d-bc2f-49ab-bfc5-cea002fca36e" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1192" ], "x-ms-correlation-request-id": [ - "804a4f9b-e613-48d9-8216-69c681b86e99" + "e0abd999-a537-41f9-8b36-aa75a932db5f" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172033Z:804a4f9b-e613-48d9-8216-69c681b86e99" + "WESTUS2:20170211T020033Z:e0abd999-a537-41f9-8b36-aa75a932db5f" + ] + }, + "StatusCode": 201 + }, + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9785/listCallbackUrl?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTc4NS9saXN0Q2FsbGJhY2tVcmw/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "2" + ], + "x-ms-client-request-id": [ + "36f320d5-3e4d-4d8e-90f9-c8f1c7292886" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "{\r\n \"value\": \"https://prod-20.westus.logic.azure.com:443/integrationAccounts/b95aa92641f74ca7a0cdad4ef7a91f95?api-version=2015-08-01-preview&sp=%2F%2F%2A&sv=1.0&sig=ZliL4IFFJTBJo712YcXgHaWSnfhtcoazjFgpFPSX6QI\",\r\n \"basePath\": \"https://prod-20.westus.logic.azure.com/integrationAccounts/b95aa92641f74ca7a0cdad4ef7a91f95\",\r\n \"queries\": {\r\n \"api-version\": \"2015-08-01-preview\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 20 Jul 2016 17:20:32 GMT" + "Sat, 11 Feb 2017 02:00:33 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:49e2d7d3-0833-4b9d-870e-9b4635df8131" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1191" + ], + "x-ms-correlation-request-id": [ + "c2d64a65-0c05-4b19-ac4c-4e8d394b3c2a" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170211T020033Z:c2d64a65-0c05-4b19-ac4c-4e8d394b3c2a" ] }, - "StatusCode": 201 + "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4729/listCallbackUrl?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDcyOS9saXN0Q2FsbGJhY2tVcmw/YXBpLXZlcnNpb249MjAxNS0wOC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9785/listCallbackUrl?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTc4NS9saXN0Q2FsbGJhY2tVcmw/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "POST", "RequestBody": "{}", "RequestHeaders": { @@ -73,133 +139,268 @@ "2" ], "x-ms-client-request-id": [ - "dbb8f709-0850-42c7-bdab-28577ef1b1b2" + "0a092b4f-4f9b-46d9-886e-1b77bd33add7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"value\": \"https://prod-01.westus.logic.azure.com:443/integrationAccounts/ccda100f95b64cdcb366292e255c59a1?api-version=2015-08-01-preview&sp=%2F%2F%2A&sv=1.0&sig=8Cdv3b_GWHNsf92fe1Yorb_wrkRenOoUajLc7nWhyG0\"\r\n}", + "ResponseBody": "{\r\n \"value\": \"https://prod-20.westus.logic.azure.com:443/integrationAccounts/b95aa92641f74ca7a0cdad4ef7a91f95?api-version=2015-08-01-preview&sp=%2F%2F%2A&sv=1.0&sig=ZliL4IFFJTBJo712YcXgHaWSnfhtcoazjFgpFPSX6QI\",\r\n \"basePath\": \"https://prod-20.westus.logic.azure.com/integrationAccounts/b95aa92641f74ca7a0cdad4ef7a91f95\",\r\n \"queries\": {\r\n \"api-version\": \"2015-08-01-preview\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "206" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:33 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ + "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "westus:50692b5f-29e3-4033-a345-08d7430d463a" + "westus:77738141-f2af-4a41-a396-c28fda394caa" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1190" ], "x-ms-correlation-request-id": [ - "7da82f09-fa16-4291-aaa2-1d8e814b4f26" + "05fb078b-8583-41f3-bf69-a1e0562cec38" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172033Z:7da82f09-fa16-4291-aaa2-1d8e814b4f26" + "WESTUS2:20170211T020033Z:05fb078b-8583-41f3-bf69-a1e0562cec38" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9785/listCallbackUrl?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTc4NS9saXN0Q2FsbGJhY2tVcmw/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"notAfter\": \"2017-02-20T08:00:00Z\",\r\n \"keyType\": \"Primary\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "67" + ], + "x-ms-client-request-id": [ + "aa4c8720-018e-4084-8926-64f778ca92e6" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "{\r\n \"value\": \"https://prod-20.westus.logic.azure.com:443/integrationAccounts/b95aa92641f74ca7a0cdad4ef7a91f95?api-version=2015-08-01-preview&se=2017-02-20T08%3A00%3A00.0000000Z&sp=%2F%2F%2A&sv=1.0&sig=vLeve_PiBqsb_3xWC5ZnNOmPrO_uHgdzmEdnJ0q_wJw\",\r\n \"basePath\": \"https://prod-20.westus.logic.azure.com/integrationAccounts/b95aa92641f74ca7a0cdad4ef7a91f95\",\r\n \"queries\": {\r\n \"api-version\": \"2015-08-01-preview\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 20 Jul 2016 17:20:32 GMT" + "Sat, 11 Feb 2017 02:00:33 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:f5e5ca40-dc29-4226-88bb-b51964e63bf3" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1189" + ], + "x-ms-correlation-request-id": [ + "285f26f7-b0cd-45da-8656-a0a7d1dcaff9" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170211T020033Z:285f26f7-b0cd-45da-8656-a0a7d1dcaff9" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4729/listCallbackUrl?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDcyOS9saXN0Q2FsbGJhY2tVcmw/YXBpLXZlcnNpb249MjAxNS0wOC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9785/listCallbackUrl?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTc4NS9saXN0Q2FsbGJhY2tVcmw/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "POST", - "RequestBody": "{}", + "RequestBody": "{\r\n \"keyType\": \"Primary\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "2" + "28" ], "x-ms-client-request-id": [ - "46574825-ef6f-4e86-8759-d07dedb7a3ca" + "a7a316c4-87c0-43c4-bc3c-780f21e995a6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"value\": \"https://prod-01.westus.logic.azure.com:443/integrationAccounts/ccda100f95b64cdcb366292e255c59a1?api-version=2015-08-01-preview&sp=%2F%2F%2A&sv=1.0&sig=8Cdv3b_GWHNsf92fe1Yorb_wrkRenOoUajLc7nWhyG0\"\r\n}", + "ResponseBody": "{\r\n \"value\": \"https://prod-20.westus.logic.azure.com:443/integrationAccounts/b95aa92641f74ca7a0cdad4ef7a91f95?api-version=2015-08-01-preview&sp=%2F%2F%2A&sv=1.0&sig=ZliL4IFFJTBJo712YcXgHaWSnfhtcoazjFgpFPSX6QI\",\r\n \"basePath\": \"https://prod-20.westus.logic.azure.com/integrationAccounts/b95aa92641f74ca7a0cdad4ef7a91f95\",\r\n \"queries\": {\r\n \"api-version\": \"2015-08-01-preview\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "206" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:33 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ + "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "westus:221a1ed6-1216-45bf-838d-8ddce8e12f02" + "westus:4fe7a84b-8148-4796-830f-60cad4e00c49" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1188" ], "x-ms-correlation-request-id": [ - "2cad739b-6b4e-4acb-841a-6ae9c8d72676" + "895d33d5-4920-45d2-82bf-2b6d4fb59aa0" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172033Z:2cad739b-6b4e-4acb-841a-6ae9c8d72676" + "WESTUS2:20170211T020034Z:895d33d5-4920-45d2-82bf-2b6d4fb59aa0" + ] + }, + "StatusCode": 200 + }, + { + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9785/listCallbackUrl?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTc4NS9saXN0Q2FsbGJhY2tVcmw/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", + "RequestMethod": "POST", + "RequestBody": "{\r\n \"notAfter\": \"2017-02-20T08:00:00Z\"\r\n}", + "RequestHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Content-Length": [ + "42" + ], + "x-ms-client-request-id": [ + "104488de-b201-4c92-9be7-f5c0570326c1" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "{\r\n \"value\": \"https://prod-20.westus.logic.azure.com:443/integrationAccounts/b95aa92641f74ca7a0cdad4ef7a91f95?api-version=2015-08-01-preview&se=2017-02-20T08%3A00%3A00.0000000Z&sp=%2F%2F%2A&sv=1.0&sig=vLeve_PiBqsb_3xWC5ZnNOmPrO_uHgdzmEdnJ0q_wJw\",\r\n \"basePath\": \"https://prod-20.westus.logic.azure.com/integrationAccounts/b95aa92641f74ca7a0cdad4ef7a91f95\",\r\n \"queries\": {\r\n \"api-version\": \"2015-08-01-preview\"\r\n }\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" ], "Cache-Control": [ "no-cache" ], "Date": [ - "Wed, 20 Jul 2016 17:20:32 GMT" + "Sat, 11 Feb 2017 02:00:33 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus:c46d9fba-97ab-4cc1-961b-dec4d228abec" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-subscription-writes": [ + "1187" + ], + "x-ms-correlation-request-id": [ + "b5f473a3-26d5-42d5-8f95-f0147e9214b8" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170211T020034Z:b5f473a3-26d5-42d5-8f95-f0147e9214b8" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4729?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDcyOT9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9785?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTc4NT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "80bc47cc-6077-42e9-9c46-e98e440843ac" + "a3f28cec-6a80-4b1d-b8fb-082fc10a0974" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, "ResponseBody": "", @@ -210,29 +411,29 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:33 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:74cec7f2-c828-43b6-8c53-8c8c3b1787e5" + "westus:b365775f-6867-4ed1-99f3-aa9d83be96d0" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1186" ], "x-ms-correlation-request-id": [ - "5e0c4d33-4db9-4f19-a612-d235e81d8cff" + "e71f3a2b-3cef-4ff1-84a8-1af9155325c0" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172033Z:5e0c4d33-4db9-4f19-a612-d235e81d8cff" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:20:33 GMT" + "WESTUS2:20170211T020034Z:e71f3a2b-3cef-4ff1-84a8-1af9155325c0" ] }, "StatusCode": 200 @@ -240,10 +441,10 @@ ], "Names": { "ListIntegrationAccountCallbackUrl": [ - "IntegrationAccount4729" + "IntegrationAccount9785" ] }, "Variables": { - "SubscriptionId": "5250dd92-b580-46be-b327-e6596c8de196" + "SubscriptionId": "f34b22a3-2202-4fb1-b040-1332bd928c84" } } \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/UpdateIntegrationAccount.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/UpdateIntegrationAccount.json index 7d9f76ecb0fa..c4dc07ab6c99 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/UpdateIntegrationAccount.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountScenarioTests/UpdateIntegrationAccount.json @@ -1,28 +1,29 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1406?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTQwNj9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9811?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTgxMT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"name\": \"IntegrationAccount1406\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "128" + "91" ], "x-ms-client-request-id": [ - "8ef603fc-848a-4a71-b587-52ea7b14bd5c" + "23246d35-fa8e-461e-ac50-35678e13e2b6" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1406\",\r\n \"name\": \"IntegrationAccount1406\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9811\",\r\n \"name\": \"IntegrationAccount9811\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -33,38 +34,38 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:50 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:f4dc184d-68cb-46c6-8d8f-bf2368e537cb" + "westus:4d4a892d-5d85-4902-b3f5-1065872d14f5" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1190" ], "x-ms-correlation-request-id": [ - "f74ac775-4d9f-41a7-8133-ebd9f12644b5" + "2b5e64f5-ad88-41de-a294-a463fd3780f2" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172012Z:f74ac775-4d9f-41a7-8133-ebd9f12644b5" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:20:11 GMT" + "WESTUS2:20170211T020050Z:2b5e64f5-ad88-41de-a294-a463fd3780f2" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1406?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTQwNj9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9811?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTgxMT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PATCH", - "RequestBody": "{\r\n \"tags\": {\r\n \"IntegrationAccount\": \"IntegrationAccount1406\"\r\n }\r\n}", + "RequestBody": "{\r\n \"tags\": {\r\n \"IntegrationAccount\": \"IntegrationAccount9811\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" @@ -73,70 +74,73 @@ "74" ], "x-ms-client-request-id": [ - "416b0140-c66e-41e8-bd81-08234b3f6cf5" + "2b8af1ea-e098-4fc9-8d53-43962ac43c60" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1406\",\r\n \"name\": \"IntegrationAccount1406\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccount\": \"IntegrationAccount1406\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9811\",\r\n \"name\": \"IntegrationAccount9811\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"IntegrationAccount\": \"IntegrationAccount9811\"\r\n }\r\n}", "ResponseHeaders": { - "Content-Length": [ - "345" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:51 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ + "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "westus:22c70618-b055-4364-b6a9-0dbecdcfb7a9" + "westus:95b46f7d-1d8c-435b-ab23-b82ddc417c1c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1195" + "1189" ], "x-ms-correlation-request-id": [ - "2e50dbd8-9d70-4236-99f4-8fc2b629e0f0" + "10318b88-ab54-4a8a-8383-9f34ce0f5201" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172012Z:2e50dbd8-9d70-4236-99f4-8fc2b629e0f0" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:20:12 GMT" + "WESTUS2:20170211T020051Z:10318b88-ab54-4a8a-8383-9f34ce0f5201" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount1406?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MTQwNj9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount9811?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50OTgxMT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "b5d43c68-7215-4cf3-a049-6746d0f14934" + "a030cc0a-d5f7-4e78-972b-297e2c3af502" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, "ResponseBody": "", @@ -147,29 +151,29 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:51 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:4611a9c4-7cf0-4d8f-a1ac-154212faa7ba" + "westus:3f3447cc-addc-4980-be8d-8530d8ba59ae" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1188" ], "x-ms-correlation-request-id": [ - "3e6dc4ae-df7a-4e95-9502-3613f7212b8c" + "f42c8e96-7a5d-4d1e-aa0a-d081b8aed191" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172013Z:3e6dc4ae-df7a-4e95-9502-3613f7212b8c" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:20:12 GMT" + "WESTUS2:20170211T020051Z:f42c8e96-7a5d-4d1e-aa0a-d081b8aed191" ] }, "StatusCode": 200 @@ -177,10 +181,10 @@ ], "Names": { "UpdateIntegrationAccount": [ - "IntegrationAccount1406" + "IntegrationAccount9811" ] }, "Variables": { - "SubscriptionId": "5250dd92-b580-46be-b327-e6596c8de196" + "SubscriptionId": "f34b22a3-2202-4fb1-b040-1332bd928c84" } } \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/CreateAndDeleteIntegrationAccountSchema.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/CreateAndDeleteIntegrationAccountSchema.json index b42db4fc6041..d946622c3d9a 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/CreateAndDeleteIntegrationAccountSchema.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/CreateAndDeleteIntegrationAccountSchema.json @@ -1,28 +1,29 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7813?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzgxMz9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4730?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDczMD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"name\": \"IntegrationAccount7813\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "128" + "91" ], "x-ms-client-request-id": [ - "99b2136a-0a80-4fbf-9627-f43b608f6e6a" + "5e6ab795-daa5-43a6-8326-ec8e03a41bcc" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7813\",\r\n \"name\": \"IntegrationAccount7813\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4730\",\r\n \"name\": \"IntegrationAccount4730\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -33,59 +34,60 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:09 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:58bb8efb-373f-47bc-88bb-2acc2fe127ff" + "westus:be6302cd-2bec-4b1b-b81d-47c6afe8616c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1194" + "1199" ], "x-ms-correlation-request-id": [ - "bbcbadc1-1199-40d3-a0e1-a5169832324e" + "3ff246d4-8926-47f2-8582-88698f7e29e8" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172308Z:bbcbadc1-1199-40d3-a0e1-a5169832324e" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:23:07 GMT" + "WESTUS2:20170211T020009Z:3ff246d4-8926-47f2-8582-88698f7e29e8" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7813/schemas/IntegrationAccountSchema2841?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzgxMy9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTI4NDE/YXBpLXZlcnNpb249MjAxNS0wOC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4730/schemas/IntegrationAccountSchema1938?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDczMC9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTE5Mzg/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\",\r\n \"metadata\": \"IntegrationAccountSchema2841\"\r\n },\r\n \"name\": \"IntegrationAccountSchema2841\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountSchemaName\": \"IntegrationAccountSchema2841\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"metadata\": \"IntegrationAccountSchema1938\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountSchemaName\": \"IntegrationAccountSchema1938\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "8743" + "8700" ], "x-ms-client-request-id": [ - "c3ef952e-cd31-4bc5-a98f-d68d1074cf9d" + "ec020faf-7ea1-4c5c-b656-8f9f47412210" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu13by01.blob.core.windows.net/integrationaccounts49b8a980e75846b9bdb68e60fed828dc/3839E_XML_INTEGRATIONACCOUNTSCHEMA2841-A2E80FC2F1864BEF86035AC04C67ADDF?sv=2014-02-14&sr=b&sig=XWyU3k2oG%2B0%2BmtFmIGn8DJYBN%2BrEsnSVgtOs6Xu%2Blx0%3D&se=2016-07-20T21%3A23%3A08Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D3B0C284003AD6\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2016-07-20T17:23:08.6875324Z\",\r\n \"changedTime\": \"2016-07-20T17:23:08.688098Z\",\r\n \"metadata\": \"IntegrationAccountSchema2841\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7813/schemas/IntegrationAccountSchema2841\",\r\n \"name\": \"IntegrationAccountSchema2841\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu13by01.blob.core.windows.net/integrationaccounts10a94a04cfef4b71a664cc282fbdde96/3839E_XML_INTEGRATIONACCOUNTSCHEMA1938-CFF50723593248A8B94C5E5E185EEBD4?sv=2014-02-14&sr=b&sig=DTXxcGLeGU2AAuB%2FsSHx0I1oY7s%2BqsWVdWJCMhbv%2BmI%3D&se=2017-02-11T06%3A00%3A10Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45221B56A08DA\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T02:00:09.9828339Z\",\r\n \"changedTime\": \"2017-02-11T02:00:09.9835715Z\",\r\n \"metadata\": \"IntegrationAccountSchema1938\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4730/schemas/IntegrationAccountSchema1938\",\r\n \"name\": \"IntegrationAccountSchema1938\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "955" + "954" ], "Content-Type": [ "application/json; charset=utf-8" @@ -93,47 +95,48 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:09 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:666ded44-bc39-4ca0-ab25-9d72c2d1314e" + "westus:453fa75a-3768-4f1e-9428-5fd7404ce4a7" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1193" + "1198" ], "x-ms-correlation-request-id": [ - "df58b225-0cf3-4f87-8ace-ccd6f2b2c423" + "d7b7965e-c4bf-40b5-9a63-d8af78d4ee9a" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172308Z:df58b225-0cf3-4f87-8ace-ccd6f2b2c423" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:23:08 GMT" + "WESTUS2:20170211T020009Z:d7b7965e-c4bf-40b5-9a63-d8af78d4ee9a" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7813/schemas/IntegrationAccountSchema2841?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzgxMy9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTI4NDE/YXBpLXZlcnNpb249MjAxNS0wOC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4730/schemas/IntegrationAccountSchema1938?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDczMC9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTE5Mzg/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ff10fd0f-2673-466d-931f-fe526c707110" + "19ee2360-0f51-4109-bbc4-b058026959bd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, "ResponseBody": "", @@ -144,50 +147,51 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:10 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:c18781ed-15a4-47a6-ada0-2e37ae2940bb" + "westus:90efbf25-2ce0-4d48-90bd-3d2489be245a" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1192" + "1197" ], "x-ms-correlation-request-id": [ - "02a44f13-68d1-4b65-b2ba-8a30609e4aa2" + "1722be51-8328-48e8-986f-86f65d891e14" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172308Z:02a44f13-68d1-4b65-b2ba-8a30609e4aa2" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:23:08 GMT" + "WESTUS2:20170211T020010Z:1722be51-8328-48e8-986f-86f65d891e14" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7813/schemas/IntegrationAccountSchema2841?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzgxMy9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTI4NDE/YXBpLXZlcnNpb249MjAxNS0wOC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4730/schemas/IntegrationAccountSchema1938?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDczMC9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTE5Mzg/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "c0e6854b-145d-476a-9d6b-5c979cf86ca1" + "a65774c7-9161-43ec-8b3c-68459664af31" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"SchemaNotFound\",\r\n \"message\": \"The schema 'IntegrationAccountSchema2841' could not be found in integration account 'IntegrationAccount7813'.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"SchemaNotFound\",\r\n \"message\": \"The schema 'IntegrationAccountSchema1938' could not be found in integration account 'IntegrationAccount4730'.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "157" @@ -198,47 +202,48 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:10 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:bb34a880-23dc-4f67-9f1e-ea9cca453012" + "westus:2b35d412-3a11-4469-9823-046e52d2c130" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14973" + "14616" ], "x-ms-correlation-request-id": [ - "835e7a5f-5332-47d1-9c45-f69328ff70d2" + "5b829957-0352-47dc-a417-7dcaaab32ccb" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172309Z:835e7a5f-5332-47d1-9c45-f69328ff70d2" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:23:08 GMT" + "WESTUS2:20170211T020010Z:5b829957-0352-47dc-a417-7dcaaab32ccb" ] }, "StatusCode": 404 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7813?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzgxMz9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount4730?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NDczMD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "02534596-3a47-480d-b58a-52fe79963042" + "c3c717e0-a71c-4297-a924-0a0f6553f91c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, "ResponseBody": "", @@ -249,29 +254,29 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:10 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:5a5e59c7-6a24-44f7-9110-f5103fc085b1" + "westus:06f75cdd-a5f3-42e1-bb87-2cda062d4d7c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1191" + "1196" ], "x-ms-correlation-request-id": [ - "f733c34f-cdc8-4abb-93f3-9127e5599676" + "7c0d8c0a-3831-4958-a71e-18db66f92b67" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172309Z:f733c34f-cdc8-4abb-93f3-9127e5599676" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:23:08 GMT" + "WESTUS2:20170211T020010Z:7c0d8c0a-3831-4958-a71e-18db66f92b67" ] }, "StatusCode": 200 @@ -279,11 +284,11 @@ ], "Names": { "CreateAndDeleteIntegrationAccountSchema": [ - "IntegrationAccount7813", - "IntegrationAccountSchema2841" + "IntegrationAccount4730", + "IntegrationAccountSchema1938" ] }, "Variables": { - "SubscriptionId": "5250dd92-b580-46be-b327-e6596c8de196" + "SubscriptionId": "f34b22a3-2202-4fb1-b040-1332bd928c84" } } \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/CreateAndGetIntegrationAccountSchema.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/CreateAndGetIntegrationAccountSchema.json index 71b73d214c78..b4eef5d37e26 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/CreateAndGetIntegrationAccountSchema.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/CreateAndGetIntegrationAccountSchema.json @@ -1,28 +1,29 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7344?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzM0ND9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5820?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTgyMD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"name\": \"IntegrationAccount7344\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "128" + "91" ], "x-ms-client-request-id": [ - "1b98c3af-acad-4bbf-8bd6-e9fb1affdfed" + "0d61ff3f-09ab-41ba-b672-156bd1d939cd" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7344\",\r\n \"name\": \"IntegrationAccount7344\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5820\",\r\n \"name\": \"IntegrationAccount5820\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -33,59 +34,60 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:59:59 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:7951b7d8-7eb1-4229-a6e2-bb1e7a9f5098" + "westus:4aaa550f-d617-4142-a3b9-08d642980532" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1181" + "1199" ], "x-ms-correlation-request-id": [ - "3ef3036a-086b-4313-b14a-a591440a291e" + "72e3e3cf-ab80-4d6b-b0cf-793be9c16357" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172302Z:3ef3036a-086b-4313-b14a-a591440a291e" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:23:01 GMT" + "WESTUS2:20170211T015959Z:72e3e3cf-ab80-4d6b-b0cf-793be9c16357" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7344/schemas/IntegrationAccountSchema2083?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzM0NC9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTIwODM/YXBpLXZlcnNpb249MjAxNS0wOC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5820/schemas/IntegrationAccountSchema8656?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTgyMC9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTg2NTY/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\",\r\n \"metadata\": \"IntegrationAccountSchema2083\"\r\n },\r\n \"name\": \"IntegrationAccountSchema2083\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountSchemaName\": \"IntegrationAccountSchema2083\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"metadata\": \"IntegrationAccountSchema8656\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountSchemaName\": \"IntegrationAccountSchema8656\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "8743" + "8700" ], "x-ms-client-request-id": [ - "8afb9b70-b51a-419d-88d8-41218e5dd920" + "a3da3989-ec74-479d-8848-0ef272e9625e" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu15by01.blob.core.windows.net/integrationaccounts839b03218bc64302983e27b166ebf927/3839E_XML_INTEGRATIONACCOUNTSCHEMA2083-FB74866C354E4294BCAF6D5288C0A52F?sv=2014-02-14&sr=b&sig=RMW5JXW64B8YzCOjnMsM%2F8PkmeikdROwU0tuBteIJ8M%3D&se=2016-07-20T21%3A23%3A03Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D3B0C280D2434A\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2016-07-20T17:23:03.1484187Z\",\r\n \"changedTime\": \"2016-07-20T17:23:03.1486761Z\",\r\n \"metadata\": \"IntegrationAccountSchema2083\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7344/schemas/IntegrationAccountSchema2083\",\r\n \"name\": \"IntegrationAccountSchema2083\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu00by01.blob.core.windows.net/integrationaccountsab504f345f8b4e15ba7a1104f7519eb9/3839E_XML_INTEGRATIONACCOUNTSCHEMA8656-569014A96527473BA5106F424E0BE72D?sv=2014-02-14&sr=b&sig=IywZrfm1rpPP1bma7PcFVAmb4idbFKAwsYOvxCo28BU%3D&se=2017-02-11T06%3A00%3A00Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45221B000BFC7\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T02:00:00.6674467Z\",\r\n \"changedTime\": \"2017-02-11T02:00:00.6677843Z\",\r\n \"metadata\": \"IntegrationAccountSchema8656\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5820/schemas/IntegrationAccountSchema8656\",\r\n \"name\": \"IntegrationAccountSchema8656\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "950" + "948" ], "Content-Type": [ "application/json; charset=utf-8" @@ -93,104 +95,107 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:00 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:729d635a-802e-4daf-b678-77496eb7d58a" + "westus:e5439810-8ee0-4a6c-ad3c-029a3126a875" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1180" + "1198" ], "x-ms-correlation-request-id": [ - "30c0118c-ba1e-4ae6-88ce-85371c3050e6" + "e0d8d119-6973-4587-96eb-83b5acddc73d" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172303Z:30c0118c-ba1e-4ae6-88ce-85371c3050e6" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:23:03 GMT" + "WESTUS2:20170211T020000Z:e0d8d119-6973-4587-96eb-83b5acddc73d" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7344/schemas/IntegrationAccountSchema2083?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzM0NC9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTIwODM/YXBpLXZlcnNpb249MjAxNS0wOC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5820/schemas/IntegrationAccountSchema8656?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTgyMC9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTg2NTY/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3aaae430-5e2b-41cc-8356-a4e1aa3326ca" + "bf334d60-68ac-4f37-9c0d-cf8aec23502c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu15by01.blob.core.windows.net/integrationaccounts839b03218bc64302983e27b166ebf927/3839E_XML_INTEGRATIONACCOUNTSCHEMA2083-FB74866C354E4294BCAF6D5288C0A52F?sv=2014-02-14&sr=b&sig=RMW5JXW64B8YzCOjnMsM%2F8PkmeikdROwU0tuBteIJ8M%3D&se=2016-07-20T21%3A23%3A03Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D3B0C280D2434A\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2016-07-20T17:23:03.1484187Z\",\r\n \"changedTime\": \"2016-07-20T17:23:03.1486761Z\",\r\n \"metadata\": \"IntegrationAccountSchema2083\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7344/schemas/IntegrationAccountSchema2083\",\r\n \"name\": \"IntegrationAccountSchema2083\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu00by01.blob.core.windows.net/integrationaccountsab504f345f8b4e15ba7a1104f7519eb9/3839E_XML_INTEGRATIONACCOUNTSCHEMA8656-569014A96527473BA5106F424E0BE72D?sv=2014-02-14&sr=b&sig=IywZrfm1rpPP1bma7PcFVAmb4idbFKAwsYOvxCo28BU%3D&se=2017-02-11T06%3A00%3A00Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45221B000BFC7\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T02:00:00.6674467Z\",\r\n \"changedTime\": \"2017-02-11T02:00:00.6677843Z\",\r\n \"metadata\": \"IntegrationAccountSchema8656\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5820/schemas/IntegrationAccountSchema8656\",\r\n \"name\": \"IntegrationAccountSchema8656\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "950" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:00 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ + "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "westus:e67677d3-a286-4b30-bed0-7b1d08647e57" + "westus:70c57fbc-e323-4141-ab2c-1267572610a1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14955" + "14726" ], "x-ms-correlation-request-id": [ - "6c2392f7-8658-46f1-a83a-b8d2d6a6168f" + "67d868e1-32a7-4337-82c5-4f127ead4178" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172303Z:6c2392f7-8658-46f1-a83a-b8d2d6a6168f" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:23:03 GMT" + "WESTUS2:20170211T020000Z:67d868e1-32a7-4337-82c5-4f127ead4178" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7344?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzM0ND9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount5820?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NTgyMD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "f0be8669-bdf6-4358-bd90-a3de6c88c739" + "d0f9ee0b-554f-4d7c-9d70-911cd7bec683" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, "ResponseBody": "", @@ -201,29 +206,29 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:01 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:64145fa4-7519-4985-91ff-126197c84481" + "westus:e866097a-04ba-4823-a07c-7a86a3f810c6" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1179" + "1197" ], "x-ms-correlation-request-id": [ - "e1002982-359d-4339-ae1c-6766762397bf" + "ed6d9b27-a2dc-407d-aa63-3049ab0359ae" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172303Z:e1002982-359d-4339-ae1c-6766762397bf" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:23:03 GMT" + "WESTUS2:20170211T020001Z:ed6d9b27-a2dc-407d-aa63-3049ab0359ae" ] }, "StatusCode": 200 @@ -231,11 +236,11 @@ ], "Names": { "CreateAndGetIntegrationAccountSchema": [ - "IntegrationAccount7344", - "IntegrationAccountSchema2083" + "IntegrationAccount5820", + "IntegrationAccountSchema8656" ] }, "Variables": { - "SubscriptionId": "5250dd92-b580-46be-b327-e6596c8de196" + "SubscriptionId": "f34b22a3-2202-4fb1-b040-1332bd928c84" } } \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/CreateAndUpdateIntegrationAccountSchema.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/CreateAndUpdateIntegrationAccountSchema.json index 4294364e0c3e..c24c3d9d1993 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/CreateAndUpdateIntegrationAccountSchema.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/CreateAndUpdateIntegrationAccountSchema.json @@ -1,31 +1,32 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount345?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzQ1P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6980?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Njk4MD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"name\": \"IntegrationAccount345\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "127" + "91" ], "x-ms-client-request-id": [ - "2395719c-7506-4b41-9b4c-2b86b5749a08" + "5fc0f49b-f4f4-40e5-938d-19f96e58fc60" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount345\",\r\n \"name\": \"IntegrationAccount345\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6980\",\r\n \"name\": \"IntegrationAccount6980\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ - "288" + "290" ], "Content-Type": [ "application/json; charset=utf-8" @@ -33,56 +34,57 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:03 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:8539498a-aafc-4e00-bc46-99da10e8c364" + "westus:77207c1c-787f-476d-a188-3e02ccebd8d1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1193" ], "x-ms-correlation-request-id": [ - "30eb80e7-bde8-4ebe-9d7c-2872a80fbc63" + "80c5966d-85e7-4536-bd9e-b12d945712fe" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172314Z:30eb80e7-bde8-4ebe-9d7c-2872a80fbc63" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:23:13 GMT" + "CENTRALUS:20170211T020004Z:80c5966d-85e7-4536-bd9e-b12d945712fe" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount345/schemas/IntegrationAccountSchema8571?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzQ1L3NjaGVtYXMvSW50ZWdyYXRpb25BY2NvdW50U2NoZW1hODU3MT9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6980/schemas/IntegrationAccountSchema1829?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Njk4MC9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTE4Mjk/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\",\r\n \"metadata\": \"IntegrationAccountSchema8571\"\r\n },\r\n \"name\": \"IntegrationAccountSchema8571\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountSchemaName\": \"IntegrationAccountSchema8571\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"metadata\": \"IntegrationAccountSchema1829\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountSchemaName\": \"IntegrationAccountSchema1829\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "8743" + "8700" ], "x-ms-client-request-id": [ - "00ff64b7-cb90-41b8-9eaa-550264479bc0" + "f7d5c9cf-5870-4644-a550-30fe82dabc41" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu07by01.blob.core.windows.net/integrationaccountsb25ec8eadb134244b015a67fa8cf950c/3839E_XML_INTEGRATIONACCOUNTSCHEMA8571-2272B34B2DFB401EA677EABAD8F2B165?sv=2014-02-14&sr=b&sig=r8FBnQ6c2iMO6EnrJS7z%2FMo1IqFCM3Ch1HB9qhhPcxs%3D&se=2016-07-20T21%3A23%3A16Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D3B0C2877897EA\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2016-07-20T17:23:15.9883945Z\",\r\n \"changedTime\": \"2016-07-20T17:23:15.9888644Z\",\r\n \"metadata\": \"IntegrationAccountSchema8571\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount345/schemas/IntegrationAccountSchema8571\",\r\n \"name\": \"IntegrationAccountSchema8571\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu14by01.blob.core.windows.net/integrationaccounts68e5b5f525204eed83431fa6e718d0e5/3839E_XML_INTEGRATIONACCOUNTSCHEMA1829-92A70373D3B144EFAAB70B9157CC5D32?sv=2014-02-14&sr=b&sig=vwoYvn52nx66UETWMcbAQxSbWzLsE%2FF7rQZZLYs63dU%3D&se=2017-02-11T06%3A00%3A04Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45221B2382DDB\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T02:00:04.6281857Z\",\r\n \"changedTime\": \"2017-02-11T02:00:04.628661Z\",\r\n \"metadata\": \"IntegrationAccountSchema1829\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6980/schemas/IntegrationAccountSchema1829\",\r\n \"name\": \"IntegrationAccountSchema1829\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n}", "ResponseHeaders": { "Content-Length": [ "949" @@ -93,110 +95,113 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:03 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:11d6e4c3-2129-4847-87fb-d7068e3dd2fb" + "westus:8d4f4591-0bf7-46a2-9b56-19a17f048993" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1192" ], "x-ms-correlation-request-id": [ - "7183a744-f121-47ca-a897-cc10acd17afb" + "f7f77fd2-df8f-4bfa-b8fe-4ef95f91209a" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172316Z:7183a744-f121-47ca-a897-cc10acd17afb" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:23:15 GMT" + "CENTRALUS:20170211T020004Z:f7f77fd2-df8f-4bfa-b8fe-4ef95f91209a" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount345/schemas/IntegrationAccountSchema8571?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzQ1L3NjaGVtYXMvSW50ZWdyYXRpb25BY2NvdW50U2NoZW1hODU3MT9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6980/schemas/IntegrationAccountSchema1829?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Njk4MC9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTE4Mjk/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\"\r\n },\r\n \"name\": \"IntegrationAccountSchema8571\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "8607" + "8564" ], "x-ms-client-request-id": [ - "b91794b0-2b14-409f-8035-4ef23f586bda" + "ab9c8668-d44f-4fc4-b6ed-35e6acd2b733" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu07by01.blob.core.windows.net/integrationaccountsb25ec8eadb134244b015a67fa8cf950c/3839E_XML_INTEGRATIONACCOUNTSCHEMA8571-3F0B39E9AE414E19BFB6FABC315C0B57?sv=2014-02-14&sr=b&sig=atqZk%2B%2B7LLDdy6YcGqTD2n632GPk3jfjiAfiMc38SwE%3D&se=2016-07-20T21%3A23%3A16Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D3B0C2887ED4E9\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2016-07-20T17:23:15.9883945Z\",\r\n \"changedTime\": \"2016-07-20T17:23:16.2857722Z\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount345/schemas/IntegrationAccountSchema8571\",\r\n \"name\": \"IntegrationAccountSchema8571\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu14by01.blob.core.windows.net/integrationaccounts68e5b5f525204eed83431fa6e718d0e5/3839E_XML_INTEGRATIONACCOUNTSCHEMA1829-9DEC35C29A8144B68C8F13C1EF47F818?sv=2014-02-14&sr=b&sig=iLfuqMLsSkN7d8hREmjqMDE7rD4wf3nyhyIcbLj1dac%3D&se=2017-02-11T06%3A00%3A05Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45221B2568BF6\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T02:00:04.6281857Z\",\r\n \"changedTime\": \"2017-02-11T02:00:04.8326679Z\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6980/schemas/IntegrationAccountSchema1829\",\r\n \"name\": \"IntegrationAccountSchema1829\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n}", "ResponseHeaders": { - "Content-Length": [ - "909" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:04 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ + "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "westus:dd66ad0c-1bf3-4231-b228-1c97193bf695" + "westus:5b84d88f-54e4-4f79-9c6f-3e5a7eab62e1" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1191" ], "x-ms-correlation-request-id": [ - "36652178-35d4-4f4b-80dd-437b7e27e6c0" + "1f4017b2-37bd-49ff-8b7d-f7212c4fbc93" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172316Z:36652178-35d4-4f4b-80dd-437b7e27e6c0" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:23:16 GMT" + "CENTRALUS:20170211T020005Z:1f4017b2-37bd-49ff-8b7d-f7212c4fbc93" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount345?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzQ1P2FwaS12ZXJzaW9uPTIwMTUtMDgtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount6980?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50Njk4MD9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "3b22ef16-d0de-482c-9d90-92f7564c2f5e" + "60f24073-41be-4d1e-805f-2f3c4f424287" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, "ResponseBody": "", @@ -207,29 +212,29 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:05 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:ffa344fe-c03a-440b-8ffc-49c42115afe2" + "westus:9d0dcb05-1fe2-4881-9d4b-7b549f687800" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1196" + "1190" ], "x-ms-correlation-request-id": [ - "a1e96f89-9854-424f-8684-949a6246f48b" + "be8e46eb-ad47-4bb2-82ec-76870dedeef4" ], "x-ms-routing-request-id": [ - "WESTUS2:20160720T172316Z:a1e96f89-9854-424f-8684-949a6246f48b" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:23:16 GMT" + "CENTRALUS:20170211T020006Z:be8e46eb-ad47-4bb2-82ec-76870dedeef4" ] }, "StatusCode": 200 @@ -237,11 +242,11 @@ ], "Names": { "CreateAndUpdateIntegrationAccountSchema": [ - "IntegrationAccount345", - "IntegrationAccountSchema8571" + "IntegrationAccount6980", + "IntegrationAccountSchema1829" ] }, "Variables": { - "SubscriptionId": "5250dd92-b580-46be-b327-e6596c8de196" + "SubscriptionId": "f34b22a3-2202-4fb1-b040-1332bd928c84" } } \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/DeleteIntegrationAccountSchemaOnAccountDeletion.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/DeleteIntegrationAccountSchemaOnAccountDeletion.json index b11b55ee6449..ba096eccace2 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/DeleteIntegrationAccountSchemaOnAccountDeletion.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/DeleteIntegrationAccountSchemaOnAccountDeletion.json @@ -1,28 +1,29 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8803?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODgwMz9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7659?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzY1OT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"name\": \"IntegrationAccount8803\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "128" + "91" ], "x-ms-client-request-id": [ - "f81d5371-356e-44c1-aec5-c48db7825059" + "c444c989-cf29-47e9-b970-ce3aba17c15f" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8803\",\r\n \"name\": \"IntegrationAccount8803\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7659\",\r\n \"name\": \"IntegrationAccount7659\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -33,56 +34,57 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:12 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:4b2dc08c-b379-4498-8dd3-8a65de3cc84f" + "westus:01b5e14d-1676-44d7-8d08-0da97c9358d4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1199" + "1196" ], "x-ms-correlation-request-id": [ - "35b6c649-c3fd-4039-a17a-ec51017000f0" + "3d93d488-c066-484b-805d-8df53a22c3d7" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160720T172329Z:35b6c649-c3fd-4039-a17a-ec51017000f0" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:23:29 GMT" + "WESTUS2:20170211T020012Z:3d93d488-c066-484b-805d-8df53a22c3d7" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8803/schemas/IntegrationAccountSchema8458?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODgwMy9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTg0NTg/YXBpLXZlcnNpb249MjAxNS0wOC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7659/schemas/IntegrationAccountSchema6785?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzY1OS9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTY3ODU/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\",\r\n \"metadata\": \"IntegrationAccountSchema8458\"\r\n },\r\n \"name\": \"IntegrationAccountSchema8458\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountSchemaName\": \"IntegrationAccountSchema8458\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"metadata\": \"IntegrationAccountSchema6785\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountSchemaName\": \"IntegrationAccountSchema6785\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "8743" + "8700" ], "x-ms-client-request-id": [ - "b7172434-2b38-4551-af03-854b95bf8bd6" + "0d87c291-9e6d-4d45-98a2-b85ac213371c" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu12by01.blob.core.windows.net/integrationaccounts5446b207829c479ea2a4d52aea9ede36/3839E_XML_INTEGRATIONACCOUNTSCHEMA8458-BE6FF4A1920F4A53ACEFB8C0C7C13619?sv=2014-02-14&sr=b&sig=ri%2FWiMDR%2F0yKj6qQULp7p1vHboluVuivwFbFGkcSA0s%3D&se=2016-07-20T21%3A23%3A29Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D3B0C290A8142A\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2016-07-20T17:23:29.9047381Z\",\r\n \"changedTime\": \"2016-07-20T17:23:29.9056404Z\",\r\n \"metadata\": \"IntegrationAccountSchema8458\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8803/schemas/IntegrationAccountSchema8458\",\r\n \"name\": \"IntegrationAccountSchema8458\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu16by01.blob.core.windows.net/integrationaccounts9748c9eb8b7d4d6b8419e6a04fe99c71/3839E_XML_INTEGRATIONACCOUNTSCHEMA6785-6CD1700638404F67BE4470B04EBB7D99?sv=2014-02-14&sr=b&sig=Qk%2B10w4jMsUx2byLTjJ8%2BmQAACIiEejRABs1Ra9Gf38%3D&se=2017-02-11T06%3A00%3A13Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45221B7701EB0\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T02:00:13.0423551Z\",\r\n \"changedTime\": \"2017-02-11T02:00:13.0431878Z\",\r\n \"metadata\": \"IntegrationAccountSchema6785\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7659/schemas/IntegrationAccountSchema6785\",\r\n \"name\": \"IntegrationAccountSchema6785\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n}", "ResponseHeaders": { "Content-Length": [ "952" @@ -93,47 +95,48 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:12 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:d7fce165-ebd0-4f5d-9f2a-35dd324e8696" + "westus:7fc5bdaf-2433-4195-85cd-20939dad7027" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1198" + "1195" ], "x-ms-correlation-request-id": [ - "450edbb2-32be-4e46-a310-2645818e64c0" + "1362cfd0-5620-4649-bc1a-6640da967106" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160720T172329Z:450edbb2-32be-4e46-a310-2645818e64c0" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:23:29 GMT" + "WESTUS2:20170211T020012Z:1362cfd0-5620-4649-bc1a-6640da967106" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8803?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODgwMz9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7659?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzY1OT9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "5ea3bfcf-feab-45da-8248-870ee471e538" + "9e99fde5-92f6-4841-9213-d4353e0d2feb" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, "ResponseBody": "", @@ -144,50 +147,51 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:13 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:f8d92055-3307-415d-bcc4-b97d86357ab8" + "westus:0def6dbd-8c5e-4c19-9ecb-70ee6f67ee45" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-writes": [ - "1197" + "1194" ], "x-ms-correlation-request-id": [ - "72ef72a1-c506-4429-ba1e-a79b4b24e3ca" + "e17299bb-be28-4355-a319-c5ce5fc89a76" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160720T172330Z:72ef72a1-c506-4429-ba1e-a79b4b24e3ca" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:23:30 GMT" + "WESTUS2:20170211T020013Z:e17299bb-be28-4355-a319-c5ce5fc89a76" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8803/schemas/IntegrationAccountSchema8458?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODgwMy9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTg0NTg/YXBpLXZlcnNpb249MjAxNS0wOC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount7659/schemas/IntegrationAccountSchema6785?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50NzY1OS9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTY3ODU/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "677d32ed-8c92-4aa5-bc5e-45b99c70083c" + "2d1a371c-6ebe-486e-a9e7-caf7b8be9b56" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/integrationAccounts/IntegrationAccount8803' under resource group 'flowrg' was not found.\"\r\n }\r\n}", + "ResponseBody": "{\r\n \"error\": {\r\n \"code\": \"ResourceNotFound\",\r\n \"message\": \"The Resource 'Microsoft.Logic/integrationAccounts/IntegrationAccount7659' under resource group 'flowrg' was not found.\"\r\n }\r\n}", "ResponseHeaders": { "Content-Length": [ "168" @@ -198,6 +202,12 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:13 GMT" + ], "Pragma": [ "no-cache" ], @@ -205,22 +215,16 @@ "gateway" ], "x-ms-request-id": [ - "666d6ce7-ce36-4a1a-88d9-12b05202e134" + "52f94e84-aec8-47fb-86dc-dc6e692817f4" ], "x-ms-correlation-request-id": [ - "666d6ce7-ce36-4a1a-88d9-12b05202e134" + "52f94e84-aec8-47fb-86dc-dc6e692817f4" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160720T172330Z:666d6ce7-ce36-4a1a-88d9-12b05202e134" + "WESTUS2:20170211T020013Z:52f94e84-aec8-47fb-86dc-dc6e692817f4" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:23:30 GMT" ] }, "StatusCode": 404 @@ -228,11 +232,11 @@ ], "Names": { "DeleteIntegrationAccountSchemaOnAccountDeletion": [ - "IntegrationAccount8803", - "IntegrationAccountSchema8458" + "IntegrationAccount7659", + "IntegrationAccountSchema6785" ] }, "Variables": { - "SubscriptionId": "5250dd92-b580-46be-b327-e6596c8de196" + "SubscriptionId": "f34b22a3-2202-4fb1-b040-1332bd928c84" } } \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/ListIntegrationAccountSchemas.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/ListIntegrationAccountSchemas.json index b6ffcaab5fb7..3533f385567b 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/ListIntegrationAccountSchemas.json +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.IntegrationAccountSchemaScenarioTests/ListIntegrationAccountSchemas.json @@ -1,28 +1,29 @@ { "Entries": [ { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8994?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODk5ND9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3146?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzE0Nj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"name\": \"IntegrationAccount8994\",\r\n \"location\": \"westus\"\r\n}", + "RequestBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"location\": \"westus\"\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "128" + "91" ], "x-ms-client-request-id": [ - "57024ce1-1454-41d0-a1e1-d4cf9d98678a" + "de29aaed-b5e7-4afc-902e-f71152a924e7" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8994\",\r\n \"name\": \"IntegrationAccount8994\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {},\r\n \"sku\": {\r\n \"name\": \"Standard\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3146\",\r\n \"name\": \"IntegrationAccount3146\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts\",\r\n \"location\": \"westus\"\r\n}", "ResponseHeaders": { "Content-Length": [ "290" @@ -33,11 +34,17 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:59:55 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:0c727895-8cc5-406f-8edd-23d8e52dadb4" + "westus:c209cdaa-8bea-4af6-937a-cdcf4ca5869f" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -46,43 +53,38 @@ "1199" ], "x-ms-correlation-request-id": [ - "363761f3-cea0-4ec5-ad9f-1433c52c9580" + "cb379bb3-264f-4369-a401-d4a3ff0b71e3" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160720T172322Z:363761f3-cea0-4ec5-ad9f-1433c52c9580" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:23:22 GMT" + "CENTRALUS:20170211T015955Z:cb379bb3-264f-4369-a401-d4a3ff0b71e3" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8994/schemas/IntegrationAccountSchema7172?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODk5NC9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTcxNzI/YXBpLXZlcnNpb249MjAxNS0wOC0wMS1wcmV2aWV3", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3146/schemas/IntegrationAccountSchema3633?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzE0Ni9zY2hlbWFzL0ludGVncmF0aW9uQWNjb3VudFNjaGVtYTM2MzM/YXBpLXZlcnNpb249MjAxNi0wNi0wMQ==", "RequestMethod": "PUT", - "RequestBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\",\r\n \"metadata\": \"IntegrationAccountSchema7172\"\r\n },\r\n \"name\": \"IntegrationAccountSchema7172\",\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountSchemaName\": \"IntegrationAccountSchema7172\"\r\n }\r\n}", + "RequestBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"metadata\": \"IntegrationAccountSchema3633\",\r\n \"content\": \"\\r\\n\\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n \\r\\n\",\r\n \"contentType\": \"application/xml\"\r\n },\r\n \"location\": \"westus\",\r\n \"tags\": {\r\n \"integrationAccountSchemaName\": \"IntegrationAccountSchema3633\"\r\n }\r\n}", "RequestHeaders": { "Content-Type": [ "application/json; charset=utf-8" ], "Content-Length": [ - "8743" + "8700" ], "x-ms-client-request-id": [ - "e4b2de55-d585-40bf-9b01-31482f7bbd88" + "d3e82512-a2a9-48fd-99b3-96ff68cddee4" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu01by01.blob.core.windows.net/integrationaccountsaee3313964124588935e0a948c536f35/3839E_XML_INTEGRATIONACCOUNTSCHEMA7172-420B82EF057643E1B5BA5978A7504E14?sv=2014-02-14&sr=b&sig=qdru6bCeWlbMTQLlEoQJKpTZaeMI19gKV26IBY14bb8%3D&se=2016-07-20T21%3A23%3A22Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D3B0C28C59F3D5\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2016-07-20T17:23:22.894104Z\",\r\n \"changedTime\": \"2016-07-20T17:23:22.8943905Z\",\r\n \"metadata\": \"IntegrationAccountSchema7172\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8994/schemas/IntegrationAccountSchema7172\",\r\n \"name\": \"IntegrationAccountSchema7172\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n}", + "ResponseBody": "{\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu19by01.blob.core.windows.net/integrationaccountseb36b889717a413f84b5635b8a0ee4c1/3839E_XML_INTEGRATIONACCOUNTSCHEMA3633-5231776D09F5497EAFDFE97BBCEDF42B?sv=2014-02-14&sr=b&sig=xYkAhCcvHme3bNmpyzFIIw0cU2DVccLCuMGAKjGC55M%3D&se=2017-02-11T05%3A59%3A57Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45221ADD56D31\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T01:59:57.028461Z\",\r\n \"changedTime\": \"2017-02-11T01:59:57.0287217Z\",\r\n \"metadata\": \"IntegrationAccountSchema3633\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3146/schemas/IntegrationAccountSchema3633\",\r\n \"name\": \"IntegrationAccountSchema3633\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n}", "ResponseHeaders": { "Content-Length": [ "947" @@ -93,11 +95,17 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:59:56 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:7d2c3dd0-031b-4659-8b1d-16f0aa0548f4" + "westus:5efbd36b-32d9-4dc9-84aa-081e799bb592" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -106,91 +114,88 @@ "1198" ], "x-ms-correlation-request-id": [ - "a5528699-2430-431f-ae4a-b2253c87d4dd" + "2742d62c-5e54-41eb-82cb-dd0156139fdd" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160720T172322Z:a5528699-2430-431f-ae4a-b2253c87d4dd" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:23:22 GMT" + "CENTRALUS:20170211T015956Z:2742d62c-5e54-41eb-82cb-dd0156139fdd" ] }, "StatusCode": 201 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8994/schemas?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODk5NC9zY2hlbWFzP2FwaS12ZXJzaW9uPTIwMTUtMDgtMDEtcHJldmlldw==", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3146/schemas?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzE0Ni9zY2hlbWFzP2FwaS12ZXJzaW9uPTIwMTYtMDYtMDE=", "RequestMethod": "GET", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "ca59695f-c9ef-4e80-9fa3-0eb700d301d9" + "9cf18717-2695-4be2-b651-8a56c7534996" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, - "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu01by01.blob.core.windows.net/integrationaccountsaee3313964124588935e0a948c536f35/3839E_XML_INTEGRATIONACCOUNTSCHEMA7172-420B82EF057643E1B5BA5978A7504E14?sv=2014-02-14&sr=b&sig=cDqAnOYKEoBx1bVCpBM2sMPMJO8SIba7DzMwQPA9vQ0%3D&se=2016-07-20T21%3A23%3A23Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D3B0C28C59F3D5\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2016-07-20T17:23:22.894104Z\",\r\n \"changedTime\": \"2016-07-20T17:23:22.8943905Z\",\r\n \"metadata\": \"IntegrationAccountSchema7172\"\r\n },\r\n \"id\": \"/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8994/schemas/IntegrationAccountSchema7172\",\r\n \"name\": \"IntegrationAccountSchema7172\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n }\r\n ]\r\n}", + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"properties\": {\r\n \"schemaType\": \"Xml\",\r\n \"targetNamespace\": \"http://Inbound_EDI.OrderFile\",\r\n \"documentName\": \"OrderFile\",\r\n \"contentLink\": {\r\n \"uri\": \"https://flowprodcu19by01.blob.core.windows.net/integrationaccountseb36b889717a413f84b5635b8a0ee4c1/3839E_XML_INTEGRATIONACCOUNTSCHEMA3633-5231776D09F5497EAFDFE97BBCEDF42B?sv=2014-02-14&sr=b&sig=xYkAhCcvHme3bNmpyzFIIw0cU2DVccLCuMGAKjGC55M%3D&se=2017-02-11T05%3A59%3A57Z&sp=r\",\r\n \"contentVersion\": \"\\\"0x8D45221ADD56D31\\\"\",\r\n \"contentSize\": 7901,\r\n \"contentHash\": {\r\n \"algorithm\": \"md5\",\r\n \"value\": \"a+4ZnOsIm8I/Mr0aKJIK6w==\"\r\n }\r\n },\r\n \"createdTime\": \"2017-02-11T01:59:57.028461Z\",\r\n \"changedTime\": \"2017-02-11T01:59:57.0287217Z\",\r\n \"metadata\": \"IntegrationAccountSchema3633\"\r\n },\r\n \"id\": \"/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3146/schemas/IntegrationAccountSchema3633\",\r\n \"name\": \"IntegrationAccountSchema3633\",\r\n \"type\": \"Microsoft.Logic/integrationAccounts/schemas\"\r\n }\r\n ]\r\n}", "ResponseHeaders": { - "Content-Length": [ - "959" - ], "Content-Type": [ "application/json; charset=utf-8" ], "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:59:56 GMT" + ], "Pragma": [ "no-cache" ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ + "Accept-Encoding", "Accept-Encoding" ], "x-ms-request-id": [ - "westus:b7692789-e038-427f-8a94-a693f5609894" + "westus:91a99287-e44b-4e28-8511-cdd27c36ce7c" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" ], "x-ms-ratelimit-remaining-subscription-reads": [ - "14975" + "14788" ], "x-ms-correlation-request-id": [ - "f0260aa3-8113-4f35-b231-c609513d109f" + "39704b0e-1b6e-4caa-acef-10b3e489ac00" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160720T172323Z:f0260aa3-8113-4f35-b231-c609513d109f" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:23:23 GMT" + "CENTRALUS:20170211T015957Z:39704b0e-1b6e-4caa-acef-10b3e489ac00" ] }, "StatusCode": 200 }, { - "RequestUri": "/subscriptions/5250dd92-b580-46be-b327-e6596c8de196/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount8994?api-version=2015-08-01-preview", - "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvNTI1MGRkOTItYjU4MC00NmJlLWIzMjctZTY1OTZjOGRlMTk2L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50ODk5ND9hcGktdmVyc2lvbj0yMDE1LTA4LTAxLXByZXZpZXc=", + "RequestUri": "/subscriptions/f34b22a3-2202-4fb1-b040-1332bd928c84/resourceGroups/flowrg/providers/Microsoft.Logic/integrationAccounts/IntegrationAccount3146?api-version=2016-06-01", + "EncodedRequestUri": "L3N1YnNjcmlwdGlvbnMvZjM0YjIyYTMtMjIwMi00ZmIxLWIwNDAtMTMzMmJkOTI4Yzg0L3Jlc291cmNlR3JvdXBzL2Zsb3dyZy9wcm92aWRlcnMvTWljcm9zb2Z0LkxvZ2ljL2ludGVncmF0aW9uQWNjb3VudHMvSW50ZWdyYXRpb25BY2NvdW50MzE0Nj9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", "RequestMethod": "DELETE", "RequestBody": "", "RequestHeaders": { "x-ms-client-request-id": [ - "91724a64-6afe-4807-b52e-d31c455e082b" + "50db502c-9239-45cf-a995-d767abefea55" ], "accept-language": [ "en-US" ], "User-Agent": [ - "Microsoft.Azure.Management.Logic.LogicManagementClient/0.1.0.0" + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" ] }, "ResponseBody": "", @@ -201,11 +206,17 @@ "Expires": [ "-1" ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 01:59:57 GMT" + ], "Pragma": [ "no-cache" ], "x-ms-request-id": [ - "westus:492197c6-0302-4c23-abea-996612ffc428" + "westus:4ef76f30-9325-4394-aa8a-7761039c4171" ], "Strict-Transport-Security": [ "max-age=31536000; includeSubDomains" @@ -214,16 +225,10 @@ "1197" ], "x-ms-correlation-request-id": [ - "94e04e7e-d327-43d4-a061-cf2f18b33768" + "d1830290-4184-4a33-823a-b9b2997ad9f0" ], "x-ms-routing-request-id": [ - "CENTRALUS:20160720T172323Z:94e04e7e-d327-43d4-a061-cf2f18b33768" - ], - "Cache-Control": [ - "no-cache" - ], - "Date": [ - "Wed, 20 Jul 2016 17:23:23 GMT" + "CENTRALUS:20170211T015957Z:d1830290-4184-4a33-823a-b9b2997ad9f0" ] }, "StatusCode": 200 @@ -231,11 +236,11 @@ ], "Names": { "ListIntegrationAccountSchemas": [ - "IntegrationAccount8994", - "IntegrationAccountSchema7172" + "IntegrationAccount3146", + "IntegrationAccountSchema3633" ] }, "Variables": { - "SubscriptionId": "5250dd92-b580-46be-b327-e6596c8de196" + "SubscriptionId": "f34b22a3-2202-4fb1-b040-1332bd928c84" } } \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.ProviderOperationsTests/GetProviderOperations.json b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.ProviderOperationsTests/GetProviderOperations.json new file mode 100644 index 000000000000..3c257b75d44f --- /dev/null +++ b/src/ResourceManagement/Logic/Logic.Tests/SessionRecords/Test.Azure.Management.Logic.ProviderOperationsTests/GetProviderOperations.json @@ -0,0 +1,67 @@ +{ + "Entries": [ + { + "RequestUri": "/providers/Microsoft.Logic/operations?api-version=2016-06-01", + "EncodedRequestUri": "L3Byb3ZpZGVycy9NaWNyb3NvZnQuTG9naWMvb3BlcmF0aW9ucz9hcGktdmVyc2lvbj0yMDE2LTA2LTAx", + "RequestMethod": "GET", + "RequestBody": "", + "RequestHeaders": { + "x-ms-client-request-id": [ + "7338864d-e722-4c85-9b73-f18c9a2b4966" + ], + "accept-language": [ + "en-US" + ], + "User-Agent": [ + "FxVersion/4.6.24410.01", + "Microsoft.Azure.Management.Logic.LogicManagementClient/1.0.1" + ] + }, + "ResponseBody": "{\r\n \"value\": [\r\n {\r\n \"name\": \"Microsoft.Logic/locations/workflows/validate/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Workflow\",\r\n \"operation\": \"Validate Workflow\",\r\n \"description\": \"Validates the workflow.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Workflow\",\r\n \"operation\": \"Get Workflow\",\r\n \"description\": \"Reads the workflow.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Workflow\",\r\n \"operation\": \"Set Workflow\",\r\n \"description\": \"Creates or updates the workflow.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Workflow\",\r\n \"operation\": \"Delete Workflow\",\r\n \"description\": \"Deletes the workflow.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/run/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Workflow\",\r\n \"operation\": \"Run Workflow\",\r\n \"description\": \"Starts a run of the workflow.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/disable/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Workflow\",\r\n \"operation\": \"Disable Workflow\",\r\n \"description\": \"Disables the workflow.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/enable/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Workflow\",\r\n \"operation\": \"Enable Workflow\",\r\n \"description\": \"Enables the workflow.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/validate/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Workflow\",\r\n \"operation\": \"Validate Workflow\",\r\n \"description\": \"Validates the workflow.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/move/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Workflow\",\r\n \"operation\": \"Move Workflow\",\r\n \"description\": \"Moves Workflow from its existing subscription id, resource group, and/or name to a different subscription id, resource group, and/or name.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/listSwagger/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Workflow\",\r\n \"operation\": \"Get workflow swagger\",\r\n \"description\": \"Gets the workflow swagger definitions.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/versions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Workflow Version\",\r\n \"operation\": \"Get Workflow Version\",\r\n \"description\": \"Reads the workflow version.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/accessKeys/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Access Key\",\r\n \"operation\": \"Get Access Key\",\r\n \"description\": \"Reads the access key.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/accessKeys/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Access Key\",\r\n \"operation\": \"Set Access Key\",\r\n \"description\": \"Creates or updates the access key.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/accessKeys/delete\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Access Key\",\r\n \"operation\": \"Delete Access Key\",\r\n \"description\": \"Deletes the access key.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/accessKeys/list/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Access Key\",\r\n \"operation\": \"List Access Key\",\r\n \"description\": \"Lists the access key secrets.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/accessKeys/regenerate/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Access Key\",\r\n \"operation\": \"Regenerate Access Key\",\r\n \"description\": \"Regenerates the access key secrets.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/regenerateAccessKey/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Access Key\",\r\n \"operation\": \"Regenerate Access Key\",\r\n \"description\": \"Regenerates the access key secrets.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/triggers/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Trigger\",\r\n \"operation\": \"Get Trigger\",\r\n \"description\": \"Reads the trigger.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/triggers/run/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Trigger\",\r\n \"operation\": \"Trigger Run\",\r\n \"description\": \"Executes the trigger.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/triggers/histories/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Trigger Histories\",\r\n \"operation\": \"Get Trigger Histories\",\r\n \"description\": \"Reads the trigger histories.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/triggers/histories/resubmit/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Trigger Histories\",\r\n \"operation\": \"Resubmit trigger\",\r\n \"description\": \"Resubmits the workflow trigger.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/runs/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Workflow Run\",\r\n \"operation\": \"Get Workflow Run\",\r\n \"description\": \"Reads the workflow run.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/runs/cancel/action\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Workflow Run\",\r\n \"operation\": \"Cancel Workflow Run\",\r\n \"description\": \"Cancels the run of a workflow.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/runs/operations/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Workflow Run Operation\",\r\n \"operation\": \"Get Workflow Run Operation Status\",\r\n \"description\": \"Reads the workflow run operation status.\"\r\n }\r\n },\r\n {\r\n \"name\": \"Microsoft.Logic/workflows/runs/actions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Workflow Run Action\",\r\n \"operation\": \"Get Workflow Run Action\",\r\n \"description\": \"Reads the workflow run action.\"\r\n }\r\n },\r\n {\r\n \"origin\": \"System\",\r\n \"name\": \"Microsoft.Logic/workflows/providers/Microsoft.Insights/diagnosticSettings/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Workflow Diagnostic Setting\",\r\n \"operation\": \"Get Workflow Diagnostic Setting\",\r\n \"description\": \"Reads the workflow diagnostic settings.\"\r\n }\r\n },\r\n {\r\n \"origin\": \"System\",\r\n \"name\": \"Microsoft.Logic/workflows/providers/Microsoft.Insights/diagnosticSettings/write\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Workflow Diagnostic Setting\",\r\n \"operation\": \"Set Workflow Diagnostic Setting\",\r\n \"description\": \"Creates or updates the workflow diagnostic setting.\"\r\n }\r\n },\r\n {\r\n \"origin\": \"System\",\r\n \"name\": \"Microsoft.Logic/workflows/providers/Microsoft.Insights/metricDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Workflow Metric Definition\",\r\n \"operation\": \"Get Workflow Metric Definition\",\r\n \"description\": \"Reads the workflow metric definitions.\"\r\n },\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"metricSpecifications\": [\r\n {\r\n \"name\": \"RunsStarted\",\r\n \"displayName\": \"Runs Started\",\r\n \"displayDescription\": \"Number of workflow runs started.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"RunsCompleted\",\r\n \"displayName\": \"Runs Completed\",\r\n \"displayDescription\": \"Number of workflow runs completed.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"RunsSucceeded\",\r\n \"displayName\": \"Runs Succeeded\",\r\n \"displayDescription\": \"Number of workflow runs succeeded.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"RunsFailed\",\r\n \"displayName\": \"Runs Failed\",\r\n \"displayDescription\": \"Number of workflow runs failed.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"RunsCancelled\",\r\n \"displayName\": \"Runs Cancelled\",\r\n \"displayDescription\": \"Number of workflow runs cancelled.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"RunLatency\",\r\n \"displayName\": \"Run Latency\",\r\n \"displayDescription\": \"Latency of completed workflow runs.\",\r\n \"unit\": \"Seconds\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": false\r\n },\r\n {\r\n \"name\": \"RunSuccessLatency\",\r\n \"displayName\": \"Run Success Latency\",\r\n \"displayDescription\": \"Latency of succeeded workflow runs.\",\r\n \"unit\": \"Seconds\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": false\r\n },\r\n {\r\n \"name\": \"RunThrottledEvents\",\r\n \"displayName\": \"Run Throttled Events\",\r\n \"displayDescription\": \"Number of workflow action or trigger throttled events.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"RunFailurePercentage\",\r\n \"displayName\": \"Run Failure Percentage\",\r\n \"displayDescription\": \"Percentage of workflow runs failed.\",\r\n \"unit\": \"Percent\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"ActionsStarted\",\r\n \"displayName\": \"Actions Started \",\r\n \"displayDescription\": \"Number of workflow actions started.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"ActionsCompleted\",\r\n \"displayName\": \"Actions Completed \",\r\n \"displayDescription\": \"Number of workflow actions completed.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"ActionsSucceeded\",\r\n \"displayName\": \"Actions Succeeded \",\r\n \"displayDescription\": \"Number of workflow actions succeeded.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"ActionsFailed\",\r\n \"displayName\": \"Actions Failed\",\r\n \"displayDescription\": \"Number of workflow actions failed.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"ActionsSkipped\",\r\n \"displayName\": \"Actions Skipped \",\r\n \"displayDescription\": \"Number of workflow actions skipped.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"ActionLatency\",\r\n \"displayName\": \"Action Latency \",\r\n \"displayDescription\": \"Latency of completed workflow actions.\",\r\n \"unit\": \"Seconds\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": false\r\n },\r\n {\r\n \"name\": \"ActionSuccessLatency\",\r\n \"displayName\": \"Action Success Latency \",\r\n \"displayDescription\": \"Latency of succeeded workflow actions.\",\r\n \"unit\": \"Seconds\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": false\r\n },\r\n {\r\n \"name\": \"ActionThrottledEvents\",\r\n \"displayName\": \"Action Throttled Events\",\r\n \"displayDescription\": \"Number of workflow action throttled events..\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"TriggersStarted\",\r\n \"displayName\": \"Triggers Started \",\r\n \"displayDescription\": \"Number of workflow triggers started.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"TriggersCompleted\",\r\n \"displayName\": \"Triggers Completed \",\r\n \"displayDescription\": \"Number of workflow triggers completed.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"TriggersSucceeded\",\r\n \"displayName\": \"Triggers Succeeded \",\r\n \"displayDescription\": \"Number of workflow triggers succeeded.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"TriggersFailed\",\r\n \"displayName\": \"Triggers Failed \",\r\n \"displayDescription\": \"Number of workflow triggers failed.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"TriggersSkipped\",\r\n \"displayName\": \"Triggers Skipped\",\r\n \"displayDescription\": \"Number of workflow triggers skipped.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"TriggersFired\",\r\n \"displayName\": \"Triggers Fired \",\r\n \"displayDescription\": \"Number of workflow triggers fired.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"TriggerLatency\",\r\n \"displayName\": \"Trigger Latency \",\r\n \"displayDescription\": \"Latency of completed workflow triggers.\",\r\n \"unit\": \"Seconds\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": false\r\n },\r\n {\r\n \"name\": \"TriggerFireLatency\",\r\n \"displayName\": \"Trigger Fire Latency \",\r\n \"displayDescription\": \"Latency of fired workflow triggers.\",\r\n \"unit\": \"Seconds\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": false\r\n },\r\n {\r\n \"name\": \"TriggerSuccessLatency\",\r\n \"displayName\": \"Trigger Success Latency \",\r\n \"displayDescription\": \"Latency of succeeded workflow triggers.\",\r\n \"unit\": \"Seconds\",\r\n \"aggregationType\": \"Average\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": false\r\n },\r\n {\r\n \"name\": \"TriggerThrottledEvents\",\r\n \"displayName\": \"Trigger Throttled Events\",\r\n \"displayDescription\": \"Number of workflow trigger throttled events.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"BillableActionExecutions\",\r\n \"displayName\": \"Billable Action Executions\",\r\n \"displayDescription\": \"Number of workflow action executions getting billed.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"BillableTriggerExecutions\",\r\n \"displayName\": \"Billable Trigger Executions\",\r\n \"displayDescription\": \"Number of workflow trigger executions getting billed.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n },\r\n {\r\n \"name\": \"TotalBillableExecutions\",\r\n \"displayName\": \"Total Billable Executions\",\r\n \"displayDescription\": \"Number of workflow executions getting billed.\",\r\n \"unit\": \"Count\",\r\n \"aggregationType\": \"Total\",\r\n \"dimensions\": [\r\n {\r\n \"name\": \"Deployment\",\r\n \"displayName\": \"Deployment\"\r\n },\r\n {\r\n \"name\": \"Role\",\r\n \"displayName\": \"Role\"\r\n },\r\n {\r\n \"name\": \"RoleInstance\",\r\n \"displayName\": \"Role Instance\"\r\n }\r\n ],\r\n \"availabilities\": [\r\n {\r\n \"timeGrain\": \"PT1M\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ],\r\n \"fillGapWithZero\": true\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"origin\": \"System\",\r\n \"name\": \"Microsoft.Logic/workflows/providers/Microsoft.Insights/logDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Workflow Log Definition\",\r\n \"operation\": \"Get Workflow Log Definition\",\r\n \"description\": \"Reads the workflow log definitions.\"\r\n },\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"logSpecifications\": [\r\n {\r\n \"name\": \"WorkflowRuntime\",\r\n \"displayName\": \"Workflow runtime diagnostic events\",\r\n \"description\": \"Diagnostic events related to workflow runtime executions.\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n }\r\n },\r\n {\r\n \"origin\": \"System\",\r\n \"name\": \"Microsoft.Logic/integrationAccounts/providers/Microsoft.Insights/logDefinitions/read\",\r\n \"display\": {\r\n \"provider\": \"Microsoft Logic\",\r\n \"resource\": \"Integration Account Log Definition\",\r\n \"operation\": \"Get Integration Account Log Definition\",\r\n \"description\": \"Reads the Integration Account log definitions.\"\r\n },\r\n \"properties\": {\r\n \"serviceSpecification\": {\r\n \"logSpecifications\": [\r\n {\r\n \"name\": \"IntegrationAccountTrackingEvents\",\r\n \"displayName\": \"Integration Account track events\",\r\n \"description\": \"Track events related to Integration Account.\",\r\n \"blobDuration\": \"PT1H\"\r\n }\r\n ]\r\n }\r\n }\r\n }\r\n ]\r\n}", + "ResponseHeaders": { + "Content-Type": [ + "application/json; charset=utf-8" + ], + "Expires": [ + "-1" + ], + "Cache-Control": [ + "no-cache" + ], + "Date": [ + "Sat, 11 Feb 2017 02:00:52 GMT" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Accept-Encoding", + "Accept-Encoding" + ], + "x-ms-request-id": [ + "westus2:d3953fa0-0b79-47b7-972c-c49c539ca1cf" + ], + "Strict-Transport-Security": [ + "max-age=31536000; includeSubDomains" + ], + "x-ms-ratelimit-remaining-tenant-reads": [ + "14999" + ], + "x-ms-correlation-request-id": [ + "957b2d31-3fac-4386-b88c-1eed7459b366" + ], + "x-ms-routing-request-id": [ + "WESTUS2:20170211T020052Z:957b2d31-3fac-4386-b88c-1eed7459b366" + ] + }, + "StatusCode": 200 + } + ], + "Names": {}, + "Variables": { + "SubscriptionId": "f34b22a3-2202-4fb1-b040-1332bd928c84" + } +} \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.Tests/TestData/IntegrationAccountEDIFACTAgreementContent.json b/src/ResourceManagement/Logic/Logic.Tests/TestData/IntegrationAccountEDIFACTAgreementContent.json index 500eea4195d3..ad339da67e68 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/TestData/IntegrationAccountEDIFACTAgreementContent.json +++ b/src/ResourceManagement/Logic/Logic.Tests/TestData/IntegrationAccountEDIFACTAgreementContent.json @@ -23,17 +23,18 @@ "trailingSeparatorPolicy": "Mandatory" }, "framingSettings": { - "serviceCodeListDirectoryVersion": "0", - "characterEncoding": "0", - "protocolVersion": 0, - "dataElementSeparator": 0, - "componentSeparator": 0, - "segmentTerminator": 0, - "releaseIndicator": 0, - "repetitionSeparator": 0, - "characterSet": "KECA", - "decimalPointIndicator": "Comma", - "segmentTerminatorSuffix": "CR" + "dataElementSeparator":53, + "componentSeparator":58, + "replaceSeparatorsInPayload":false, + "replaceCharacter":36, + "segmentTerminator":39, + "characterSet":"UNOC", + "segmentTerminatorSuffix":"None", + "protocolVersion" : 4, + "decimalPointIndicator" : "Comma", + "releaseIndicator" : 63, + "characterEncoding" : "UTF", + "repetitionSeparator" : 42 }, "envelopeSettings": { "groupAssociationAssignedCode": "0", @@ -42,21 +43,19 @@ "createGroupingSegments": true, "enableDefaultGroupHeaders": true, "recipientReferencePasswordValue": "AAA", - "recipientReferencePasswordQualifier": "ZZZ", + "recipientReferencePasswordQualifier": "ZZ", "applicationReferenceId": "0", "processingPriorityCode": "0", - "interchangeControlNumberLowerBound": 0, + "interchangeControlNumberLowerBound": 1, "interchangeControlNumberUpperBound": 2147483647, "rolloverInterchangeControlNumber": true, "interchangeControlNumberPrefix": "CU", "interchangeControlNumberSuffix": "NUM", - "senderReverseRoutingAddress": "XXX", - "receiverReverseRoutingAddress": "0", "functionalGroupId": "0", "groupControllingAgencyCode": "0", "groupMessageVersion": "0.0", "groupMessageRelease": "0.0", - "groupControlNumberLowerBound": 0, + "groupControlNumberLowerBound": 1, "groupControlNumberUpperBound": 2147483647, "rolloverGroupControlNumber": true, "groupControlNumberPrefix": "CU", @@ -67,9 +66,9 @@ "groupApplicationSenderId": "AAA", "groupApplicationPassword": "0", "overwriteExistingTransactionSetControlNumber": true, - "transactionSetControlNumberPrefix": "CN", - "transactionSetControlNumberSuffix": "NUM", - "transactionSetControlNumberLowerBound": 0, + "transactionSetControlNumberPrefix": "A", + "transactionSetControlNumberSuffix": "B", + "transactionSetControlNumberLowerBound": 1, "transactionSetControlNumberUpperBound": 2147483647, "rolloverTransactionSetControlNumber": true, "isTestInterchange": true, @@ -85,9 +84,9 @@ "batchFunctionalAcknowledgements": true, "needLoopForValidMessages": true, "sendSynchronousAcknowledgement": true, - "acknowledgementControlNumberPrefix": "CN", - "acknowledgementControlNumberSuffix": "NUM", - "acknowledgementControlNumberLowerBound": 0, + "acknowledgementControlNumberPrefix": "A", + "acknowledgementControlNumberSuffix": "B", + "acknowledgementControlNumberLowerBound": 1, "acknowledgementControlNumberUpperBound": 2147483647, "rolloverAcknowledgementControlNumber": true }, @@ -128,17 +127,18 @@ "trailingSeparatorPolicy": "Mandatory" }, "framingSettings": { - "serviceCodeListDirectoryVersion": "0", - "characterEncoding": "0", - "protocolVersion": 0, - "dataElementSeparator": 0, - "componentSeparator": 0, - "segmentTerminator": 0, - "releaseIndicator": 0, - "repetitionSeparator": 0, - "characterSet": "KECA", - "decimalPointIndicator": "Comma", - "segmentTerminatorSuffix": "CR" + "dataElementSeparator":53, + "componentSeparator":58, + "replaceSeparatorsInPayload":false, + "replaceCharacter":36, + "segmentTerminator":39, + "characterSet":"UNOC", + "segmentTerminatorSuffix":"None", + "protocolVersion" : 4, + "decimalPointIndicator" : "Comma", + "releaseIndicator" : 63, + "characterEncoding" : "UTF", + "repetitionSeparator" : 42 }, "envelopeSettings": { "groupAssociationAssignedCode": "0", @@ -147,21 +147,19 @@ "createGroupingSegments": true, "enableDefaultGroupHeaders": true, "recipientReferencePasswordValue": "AAA", - "recipientReferencePasswordQualifier": "ZZZ", + "recipientReferencePasswordQualifier": "ZZ", "applicationReferenceId": "0", "processingPriorityCode": "0", - "interchangeControlNumberLowerBound": 0, + "interchangeControlNumberLowerBound": 1, "interchangeControlNumberUpperBound": 2147483647, "rolloverInterchangeControlNumber": true, "interchangeControlNumberPrefix": "CU", "interchangeControlNumberSuffix": "NUM", - "senderReverseRoutingAddress": "XXX", - "receiverReverseRoutingAddress": "0", "functionalGroupId": "0", "groupControllingAgencyCode": "0", "groupMessageVersion": "0.0", "groupMessageRelease": "0.0", - "groupControlNumberLowerBound": 0, + "groupControlNumberLowerBound": 1, "groupControlNumberUpperBound": 2147483647, "rolloverGroupControlNumber": true, "groupControlNumberPrefix": "CU", @@ -172,9 +170,9 @@ "groupApplicationSenderId": "AAA", "groupApplicationPassword": "0", "overwriteExistingTransactionSetControlNumber": true, - "transactionSetControlNumberPrefix": "CN", - "transactionSetControlNumberSuffix": "NUM", - "transactionSetControlNumberLowerBound": 0, + "transactionSetControlNumberPrefix": "A", + "transactionSetControlNumberSuffix": "B", + "transactionSetControlNumberLowerBound": 1, "transactionSetControlNumberUpperBound": 2147483647, "rolloverTransactionSetControlNumber": true, "isTestInterchange": true, @@ -190,9 +188,9 @@ "batchFunctionalAcknowledgements": true, "needLoopForValidMessages": true, "sendSynchronousAcknowledgement": true, - "acknowledgementControlNumberPrefix": "CN", - "acknowledgementControlNumberSuffix": "NUM", - "acknowledgementControlNumberLowerBound": 0, + "acknowledgementControlNumberPrefix": "A", + "acknowledgementControlNumberSuffix": "B", + "acknowledgementControlNumberLowerBound": 1, "acknowledgementControlNumberUpperBound": 2147483647, "rolloverAcknowledgementControlNumber": true }, diff --git a/src/ResourceManagement/Logic/Logic.Tests/TestData/IntegrationAccountX12AgreementContent.json b/src/ResourceManagement/Logic/Logic.Tests/TestData/IntegrationAccountX12AgreementContent.json index 81459bf6edfa..a78beabb2c13 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/TestData/IntegrationAccountX12AgreementContent.json +++ b/src/ResourceManagement/Logic/Logic.Tests/TestData/IntegrationAccountX12AgreementContent.json @@ -14,15 +14,15 @@ "trimLeadingAndTrailingSpacesAndZeroes":false, "trailingSeparatorPolicy":"NotAllowed" }, - "framingSettings":{ - "dataElementSeparator":42, - "componentSeparator":58, - "replaceSeparatorsInPayload":false, - "replaceCharacter":36, - "segmentTerminator":126, - "characterSet":"UTF8", - "segmentTerminatorSuffix":"None" - }, + "framingSettings": { + "dataElementSeparator": 42, + "componentSeparator": 58, + "replaceSeparatorsInPayload": false, + "replaceCharacter": 36, + "segmentTerminator": 126, + "characterSet": "UTF8", + "segmentTerminatorSuffix": "None" + }, "envelopeSettings":{ "controlStandardsId":85, "useControlStandardsIdAsRepetitionCharacter":false, @@ -101,15 +101,15 @@ "trimLeadingAndTrailingSpacesAndZeroes":false, "trailingSeparatorPolicy":"NotAllowed" }, - "framingSettings":{ - "dataElementSeparator":42, - "componentSeparator":58, - "replaceSeparatorsInPayload":false, - "replaceCharacter":36, - "segmentTerminator":126, - "characterSet":"UTF8", - "segmentTerminatorSuffix":"None" - }, + "framingSettings": { + "dataElementSeparator": 42, + "componentSeparator": 58, + "replaceSeparatorsInPayload": false, + "replaceCharacter": 36, + "segmentTerminator": 126, + "characterSet": "UTF8", + "segmentTerminatorSuffix": "None" + }, "envelopeSettings":{ "controlStandardsId":100, "useControlStandardsIdAsRepetitionCharacter":true, diff --git a/src/ResourceManagement/Logic/Logic.Tests/Utilities/Constants.cs b/src/ResourceManagement/Logic/Logic.Tests/Utilities/Constants.cs index 1df49364d60c..b8ace6c4dd40 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/Utilities/Constants.cs +++ b/src/ResourceManagement/Logic/Logic.Tests/Utilities/Constants.cs @@ -25,12 +25,12 @@ internal class Constants /// /// Test integration account name prefix /// - public const string IntegrationAccountPrefix = "IntegrationAccount"; + public const string IntegrationAccountPrefix = "IntegrationAccount"; /// /// Default test subscription /// - public const string DefaultSubscription = "5250dd92-b580-46be-b327-e6596c8de196"; + public const string DefaultSubscription = "f34b22a3-2202-4fb1-b040-1332bd928c84"; /// /// Default test resource group diff --git a/src/ResourceManagement/Logic/Logic.Tests/project.json b/src/ResourceManagement/Logic/Logic.Tests/project.json index d4929e97c71b..ced652ac7861 100644 --- a/src/ResourceManagement/Logic/Logic.Tests/project.json +++ b/src/ResourceManagement/Logic/Logic.Tests/project.json @@ -14,7 +14,8 @@ "delaySign": true, "publicSign": false, "keyFile": "../../../../tools/MSSharedLibKey.snk", - "compile": "../../../../tools/DisableTestRunParallel.cs" + "compile": "../../../../tools/DisableTestRunParallel.cs", + "define": [] }, "testRunner": "xunit", @@ -31,11 +32,11 @@ "version": "1.0.0" }, "Microsoft.Azure.Test.HttpRecorder": "[1.6.7-preview,2.0.0)", - "Microsoft.Rest.ClientRuntime.Azure.TestFramework": "[1.5.0-preview,2.0.0)", - "Microsoft.Rest.ClientRuntime.Azure": "[3.3.1,4.0.0)", + "Microsoft.Rest.ClientRuntime.Azure.TestFramework": "[1.5.1-preview,2.0.0)", + "Microsoft.Rest.ClientRuntime.Azure": "[3.3.4,4.0.0)", "Microsoft.Azure.ResourceManager": "1.0.0-preview", "xunit": "2.2.0-beta2-build3300", "dotnet-test-xunit": "2.2.0-preview2-build1029", - "Microsoft.Azure.Management.Logic": "1.0.0" + "Microsoft.Azure.Management.Logic": "2.0.0" } } \ No newline at end of file diff --git a/src/ResourceManagement/Logic/Logic.sln b/src/ResourceManagement/Logic/Logic.sln index bf0e2e951399..97f978dfbb1c 100644 --- a/src/ResourceManagement/Logic/Logic.sln +++ b/src/ResourceManagement/Logic/Logic.sln @@ -11,6 +11,12 @@ Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "HttpRecorder", "..\..\TestF EndProject Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "TestFramework", "..\..\TestFramework\Microsoft.Rest.ClientRuntime.Azure.TestFramework\TestFramework.xproj", "{C4C4E1C8-B99D-4D90-8C27-6D0C0A268BA5}" EndProject +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Rest.ClientRuntime", "..\..\ClientRuntime\Microsoft.Rest.ClientRuntime\Microsoft.Rest.ClientRuntime.xproj", "{EDDB6367-5C7B-428C-B54C-96BCD90F6E6C}" +EndProject +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Rest.ClientRuntime.Azure", "..\..\ClientRuntime\Microsoft.Rest.ClientRuntime.Azure\Microsoft.Rest.ClientRuntime.Azure.xproj", "{D5296EAB-C13E-4A88-9532-BD0677D18EC9}" +EndProject +Project("{8BB2217D-0F2D-49D1-97BC-3654ED321F3B}") = "Microsoft.Rest.ClientRuntime.Azure.Authentication", "..\..\ClientRuntime\Microsoft.Rest.ClientRuntime.Azure.Authentication\Microsoft.Rest.ClientRuntime.Azure.Authentication.xproj", "{6319205D-BBFC-4150-BEAE-31B1C9B911DD}" +EndProject Global GlobalSection(SolutionConfigurationPlatforms) = preSolution Debug|Any CPU = Debug|Any CPU @@ -33,6 +39,18 @@ Global {C4C4E1C8-B99D-4D90-8C27-6D0C0A268BA5}.Debug|Any CPU.Build.0 = Debug|Any CPU {C4C4E1C8-B99D-4D90-8C27-6D0C0A268BA5}.Release|Any CPU.ActiveCfg = Release|Any CPU {C4C4E1C8-B99D-4D90-8C27-6D0C0A268BA5}.Release|Any CPU.Build.0 = Release|Any CPU + {EDDB6367-5C7B-428C-B54C-96BCD90F6E6C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {EDDB6367-5C7B-428C-B54C-96BCD90F6E6C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {EDDB6367-5C7B-428C-B54C-96BCD90F6E6C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {EDDB6367-5C7B-428C-B54C-96BCD90F6E6C}.Release|Any CPU.Build.0 = Release|Any CPU + {D5296EAB-C13E-4A88-9532-BD0677D18EC9}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {D5296EAB-C13E-4A88-9532-BD0677D18EC9}.Debug|Any CPU.Build.0 = Debug|Any CPU + {D5296EAB-C13E-4A88-9532-BD0677D18EC9}.Release|Any CPU.ActiveCfg = Release|Any CPU + {D5296EAB-C13E-4A88-9532-BD0677D18EC9}.Release|Any CPU.Build.0 = Release|Any CPU + {6319205D-BBFC-4150-BEAE-31B1C9B911DD}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {6319205D-BBFC-4150-BEAE-31B1C9B911DD}.Debug|Any CPU.Build.0 = Debug|Any CPU + {6319205D-BBFC-4150-BEAE-31B1C9B911DD}.Release|Any CPU.ActiveCfg = Release|Any CPU + {6319205D-BBFC-4150-BEAE-31B1C9B911DD}.Release|Any CPU.Build.0 = Release|Any CPU EndGlobalSection GlobalSection(SolutionProperties) = preSolution HideSolutionNode = FALSE diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IntegrationAccountAgreementsOperations.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/AgreementsOperations.cs similarity index 95% rename from src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IntegrationAccountAgreementsOperations.cs rename to src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/AgreementsOperations.cs index 4a6511156f3a..6fbfee167618 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IntegrationAccountAgreementsOperations.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/AgreementsOperations.cs @@ -26,12 +26,12 @@ namespace Microsoft.Azure.Management.Logic using Models; /// - /// IntegrationAccountAgreementsOperations operations. + /// AgreementsOperations operations. /// - internal partial class IntegrationAccountAgreementsOperations : IServiceOperations, IIntegrationAccountAgreementsOperations + internal partial class AgreementsOperations : IServiceOperations, IAgreementsOperations { /// - /// Initializes a new instance of the IntegrationAccountAgreementsOperations class. + /// Initializes a new instance of the AgreementsOperations class. /// /// /// Reference to the service client. @@ -39,7 +39,7 @@ internal partial class IntegrationAccountAgreementsOperations : IServiceOperatio /// /// Thrown when a required parameter is null /// - internal IntegrationAccountAgreementsOperations(LogicManagementClient client) + internal AgreementsOperations(LogicManagementClient client) { if (client == null) { @@ -83,7 +83,7 @@ internal IntegrationAccountAgreementsOperations(LogicManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByIntegrationAccountsWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (this.Client.SubscriptionId == null) { @@ -97,7 +97,10 @@ internal IntegrationAccountAgreementsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "integrationAccountName"); } - string apiVersion = "2015-08-01-preview"; + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -108,9 +111,8 @@ internal IntegrationAccountAgreementsOperations(LogicManagementClient client) tracingParameters.Add("odataQuery", odataQuery); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("integrationAccountName", integrationAccountName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByIntegrationAccounts", tracingParameters); } // Construct URL var _baseUrl = this.Client.BaseUri.AbsoluteUri; @@ -127,9 +129,9 @@ internal IntegrationAccountAgreementsOperations(LogicManagementClient client) _queryParameters.Add(_odataFilter); } } - if (apiVersion != null) + if (this.Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); } if (_queryParameters.Count > 0) { @@ -302,7 +304,10 @@ internal IntegrationAccountAgreementsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "agreementName"); } - string apiVersion = "2015-08-01-preview"; + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -313,7 +318,6 @@ internal IntegrationAccountAgreementsOperations(LogicManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("integrationAccountName", integrationAccountName); tracingParameters.Add("agreementName", agreementName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } @@ -325,9 +329,9 @@ internal IntegrationAccountAgreementsOperations(LogicManagementClient client) _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); _url = _url.Replace("{agreementName}", Uri.EscapeDataString(agreementName)); List _queryParameters = new List(); - if (apiVersion != null) + if (this.Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); } if (_queryParameters.Count > 0) { @@ -503,11 +507,18 @@ internal IntegrationAccountAgreementsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "agreementName"); } + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } if (agreement == null) { throw new ValidationException(ValidationRules.CannotBeNull, "agreement"); } - string apiVersion = "2015-08-01-preview"; + if (agreement != null) + { + agreement.Validate(); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -518,7 +529,6 @@ internal IntegrationAccountAgreementsOperations(LogicManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("integrationAccountName", integrationAccountName); tracingParameters.Add("agreementName", agreementName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("agreement", agreement); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); @@ -531,9 +541,9 @@ internal IntegrationAccountAgreementsOperations(LogicManagementClient client) _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); _url = _url.Replace("{agreementName}", Uri.EscapeDataString(agreementName)); List _queryParameters = new List(); - if (apiVersion != null) + if (this.Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); } if (_queryParameters.Count > 0) { @@ -727,7 +737,10 @@ internal IntegrationAccountAgreementsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "agreementName"); } - string apiVersion = "2015-08-01-preview"; + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -738,7 +751,6 @@ internal IntegrationAccountAgreementsOperations(LogicManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("integrationAccountName", integrationAccountName); tracingParameters.Add("agreementName", agreementName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); } @@ -750,9 +762,9 @@ internal IntegrationAccountAgreementsOperations(LogicManagementClient client) _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); _url = _url.Replace("{agreementName}", Uri.EscapeDataString(agreementName)); List _queryParameters = new List(); - if (apiVersion != null) + if (this.Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); } if (_queryParameters.Count > 0) { @@ -875,7 +887,7 @@ internal IntegrationAccountAgreementsOperations(LogicManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByIntegrationAccountsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -890,7 +902,7 @@ internal IntegrationAccountAgreementsOperations(LogicManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByIntegrationAccountsNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IntegrationAccountAgreementsOperationsExtensions.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/AgreementsOperationsExtensions.cs similarity index 70% rename from src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IntegrationAccountAgreementsOperationsExtensions.cs rename to src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/AgreementsOperationsExtensions.cs index ec72c3f8c1ee..c4a055a51106 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IntegrationAccountAgreementsOperationsExtensions.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/AgreementsOperationsExtensions.cs @@ -19,9 +19,9 @@ namespace Microsoft.Azure.Management.Logic using Models; /// - /// Extension methods for IntegrationAccountAgreementsOperations. + /// Extension methods for AgreementsOperations. /// - public static partial class IntegrationAccountAgreementsOperationsExtensions + public static partial class AgreementsOperationsExtensions { /// /// Gets a list of integration account agreements. @@ -38,9 +38,9 @@ public static partial class IntegrationAccountAgreementsOperationsExtensions /// /// OData parameters to apply to the operation. /// - public static IPage List(this IIntegrationAccountAgreementsOperations operations, string resourceGroupName, string integrationAccountName, ODataQuery odataQuery = default(ODataQuery)) + public static IPage ListByIntegrationAccounts(this IAgreementsOperations operations, string resourceGroupName, string integrationAccountName, ODataQuery odataQuery = default(ODataQuery)) { - return Task.Factory.StartNew(s => ((IIntegrationAccountAgreementsOperations)s).ListAsync(resourceGroupName, integrationAccountName, odataQuery), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((IAgreementsOperations)s).ListByIntegrationAccountsAsync(resourceGroupName, integrationAccountName, odataQuery), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// @@ -61,9 +61,9 @@ public static partial class IntegrationAccountAgreementsOperationsExtensions /// /// The cancellation token. /// - public static async Task> ListAsync(this IIntegrationAccountAgreementsOperations operations, string resourceGroupName, string integrationAccountName, ODataQuery odataQuery = default(ODataQuery), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByIntegrationAccountsAsync(this IAgreementsOperations operations, string resourceGroupName, string integrationAccountName, ODataQuery odataQuery = default(ODataQuery), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, integrationAccountName, odataQuery, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByIntegrationAccountsWithHttpMessagesAsync(resourceGroupName, integrationAccountName, odataQuery, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -84,9 +84,9 @@ public static partial class IntegrationAccountAgreementsOperationsExtensions /// /// The integration account agreement name. /// - public static IntegrationAccountAgreement Get(this IIntegrationAccountAgreementsOperations operations, string resourceGroupName, string integrationAccountName, string agreementName) + public static IntegrationAccountAgreement Get(this IAgreementsOperations operations, string resourceGroupName, string integrationAccountName, string agreementName) { - return Task.Factory.StartNew(s => ((IIntegrationAccountAgreementsOperations)s).GetAsync(resourceGroupName, integrationAccountName, agreementName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((IAgreementsOperations)s).GetAsync(resourceGroupName, integrationAccountName, agreementName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// @@ -107,7 +107,7 @@ public static IntegrationAccountAgreement Get(this IIntegrationAccountAgreements /// /// The cancellation token. /// - public static async Task GetAsync(this IIntegrationAccountAgreementsOperations operations, string resourceGroupName, string integrationAccountName, string agreementName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this IAgreementsOperations operations, string resourceGroupName, string integrationAccountName, string agreementName, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, integrationAccountName, agreementName, null, cancellationToken).ConfigureAwait(false)) { @@ -133,9 +133,9 @@ public static IntegrationAccountAgreement Get(this IIntegrationAccountAgreements /// /// The integration account agreement. /// - public static IntegrationAccountAgreement CreateOrUpdate(this IIntegrationAccountAgreementsOperations operations, string resourceGroupName, string integrationAccountName, string agreementName, IntegrationAccountAgreement agreement) + public static IntegrationAccountAgreement CreateOrUpdate(this IAgreementsOperations operations, string resourceGroupName, string integrationAccountName, string agreementName, IntegrationAccountAgreement agreement) { - return Task.Factory.StartNew(s => ((IIntegrationAccountAgreementsOperations)s).CreateOrUpdateAsync(resourceGroupName, integrationAccountName, agreementName, agreement), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((IAgreementsOperations)s).CreateOrUpdateAsync(resourceGroupName, integrationAccountName, agreementName, agreement), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// @@ -159,7 +159,7 @@ public static IntegrationAccountAgreement CreateOrUpdate(this IIntegrationAccoun /// /// The cancellation token. /// - public static async Task CreateOrUpdateAsync(this IIntegrationAccountAgreementsOperations operations, string resourceGroupName, string integrationAccountName, string agreementName, IntegrationAccountAgreement agreement, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateOrUpdateAsync(this IAgreementsOperations operations, string resourceGroupName, string integrationAccountName, string agreementName, IntegrationAccountAgreement agreement, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, integrationAccountName, agreementName, agreement, null, cancellationToken).ConfigureAwait(false)) { @@ -182,9 +182,9 @@ public static IntegrationAccountAgreement CreateOrUpdate(this IIntegrationAccoun /// /// The integration account agreement name. /// - public static void Delete(this IIntegrationAccountAgreementsOperations operations, string resourceGroupName, string integrationAccountName, string agreementName) + public static void Delete(this IAgreementsOperations operations, string resourceGroupName, string integrationAccountName, string agreementName) { - Task.Factory.StartNew(s => ((IIntegrationAccountAgreementsOperations)s).DeleteAsync(resourceGroupName, integrationAccountName, agreementName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + Task.Factory.StartNew(s => ((IAgreementsOperations)s).DeleteAsync(resourceGroupName, integrationAccountName, agreementName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// @@ -205,7 +205,7 @@ public static void Delete(this IIntegrationAccountAgreementsOperations operation /// /// The cancellation token. /// - public static async Task DeleteAsync(this IIntegrationAccountAgreementsOperations operations, string resourceGroupName, string integrationAccountName, string agreementName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteAsync(this IAgreementsOperations operations, string resourceGroupName, string integrationAccountName, string agreementName, CancellationToken cancellationToken = default(CancellationToken)) { await operations.DeleteWithHttpMessagesAsync(resourceGroupName, integrationAccountName, agreementName, null, cancellationToken).ConfigureAwait(false); } @@ -219,9 +219,9 @@ public static void Delete(this IIntegrationAccountAgreementsOperations operation /// /// The NextLink from the previous successful call to List operation. /// - public static IPage ListNext(this IIntegrationAccountAgreementsOperations operations, string nextPageLink) + public static IPage ListByIntegrationAccountsNext(this IAgreementsOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((IIntegrationAccountAgreementsOperations)s).ListNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((IAgreementsOperations)s).ListByIntegrationAccountsNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// @@ -236,9 +236,9 @@ public static IPage ListNext(this IIntegrationAccou /// /// The cancellation token. /// - public static async Task> ListNextAsync(this IIntegrationAccountAgreementsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByIntegrationAccountsNextAsync(this IAgreementsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByIntegrationAccountsNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IntegrationAccountCertificatesOperations.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/CertificatesOperations.cs similarity index 95% rename from src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IntegrationAccountCertificatesOperations.cs rename to src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/CertificatesOperations.cs index aaebc5486e22..f3dd2923e0bd 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IntegrationAccountCertificatesOperations.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/CertificatesOperations.cs @@ -25,12 +25,12 @@ namespace Microsoft.Azure.Management.Logic using Models; /// - /// IntegrationAccountCertificatesOperations operations. + /// CertificatesOperations operations. /// - internal partial class IntegrationAccountCertificatesOperations : IServiceOperations, IIntegrationAccountCertificatesOperations + internal partial class CertificatesOperations : IServiceOperations, ICertificatesOperations { /// - /// Initializes a new instance of the IntegrationAccountCertificatesOperations class. + /// Initializes a new instance of the CertificatesOperations class. /// /// /// Reference to the service client. @@ -38,7 +38,7 @@ internal partial class IntegrationAccountCertificatesOperations : IServiceOperat /// /// Thrown when a required parameter is null /// - internal IntegrationAccountCertificatesOperations(LogicManagementClient client) + internal CertificatesOperations(LogicManagementClient client) { if (client == null) { @@ -82,7 +82,7 @@ internal IntegrationAccountCertificatesOperations(LogicManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, int? top = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByIntegrationAccountsWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, int? top = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (this.Client.SubscriptionId == null) { @@ -96,7 +96,10 @@ internal IntegrationAccountCertificatesOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "integrationAccountName"); } - string apiVersion = "2015-08-01-preview"; + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -106,10 +109,9 @@ internal IntegrationAccountCertificatesOperations(LogicManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("integrationAccountName", integrationAccountName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("top", top); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByIntegrationAccounts", tracingParameters); } // Construct URL var _baseUrl = this.Client.BaseUri.AbsoluteUri; @@ -118,9 +120,9 @@ internal IntegrationAccountCertificatesOperations(LogicManagementClient client) _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); List _queryParameters = new List(); - if (apiVersion != null) + if (this.Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); } if (top != null) { @@ -297,7 +299,10 @@ internal IntegrationAccountCertificatesOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "certificateName"); } - string apiVersion = "2015-08-01-preview"; + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -308,7 +313,6 @@ internal IntegrationAccountCertificatesOperations(LogicManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("integrationAccountName", integrationAccountName); tracingParameters.Add("certificateName", certificateName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } @@ -320,9 +324,9 @@ internal IntegrationAccountCertificatesOperations(LogicManagementClient client) _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); _url = _url.Replace("{certificateName}", Uri.EscapeDataString(certificateName)); List _queryParameters = new List(); - if (apiVersion != null) + if (this.Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); } if (_queryParameters.Count > 0) { @@ -498,11 +502,18 @@ internal IntegrationAccountCertificatesOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "certificateName"); } + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } if (certificate == null) { throw new ValidationException(ValidationRules.CannotBeNull, "certificate"); } - string apiVersion = "2015-08-01-preview"; + if (certificate != null) + { + certificate.Validate(); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -513,7 +524,6 @@ internal IntegrationAccountCertificatesOperations(LogicManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("integrationAccountName", integrationAccountName); tracingParameters.Add("certificateName", certificateName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("certificate", certificate); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); @@ -526,9 +536,9 @@ internal IntegrationAccountCertificatesOperations(LogicManagementClient client) _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); _url = _url.Replace("{certificateName}", Uri.EscapeDataString(certificateName)); List _queryParameters = new List(); - if (apiVersion != null) + if (this.Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); } if (_queryParameters.Count > 0) { @@ -722,7 +732,10 @@ internal IntegrationAccountCertificatesOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "certificateName"); } - string apiVersion = "2015-08-01-preview"; + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -733,7 +746,6 @@ internal IntegrationAccountCertificatesOperations(LogicManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("integrationAccountName", integrationAccountName); tracingParameters.Add("certificateName", certificateName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); } @@ -745,9 +757,9 @@ internal IntegrationAccountCertificatesOperations(LogicManagementClient client) _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); _url = _url.Replace("{certificateName}", Uri.EscapeDataString(certificateName)); List _queryParameters = new List(); - if (apiVersion != null) + if (this.Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); } if (_queryParameters.Count > 0) { @@ -870,7 +882,7 @@ internal IntegrationAccountCertificatesOperations(LogicManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByIntegrationAccountsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -885,7 +897,7 @@ internal IntegrationAccountCertificatesOperations(LogicManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByIntegrationAccountsNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IntegrationAccountCertificatesOperationsExtensions.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/CertificatesOperationsExtensions.cs similarity index 71% rename from src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IntegrationAccountCertificatesOperationsExtensions.cs rename to src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/CertificatesOperationsExtensions.cs index 3189cff09824..9016914b62dd 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IntegrationAccountCertificatesOperationsExtensions.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/CertificatesOperationsExtensions.cs @@ -18,9 +18,9 @@ namespace Microsoft.Azure.Management.Logic using Models; /// - /// Extension methods for IntegrationAccountCertificatesOperations. + /// Extension methods for CertificatesOperations. /// - public static partial class IntegrationAccountCertificatesOperationsExtensions + public static partial class CertificatesOperationsExtensions { /// /// Gets a list of integration account certificates. @@ -37,9 +37,9 @@ public static partial class IntegrationAccountCertificatesOperationsExtensions /// /// The number of items to be included in the result. /// - public static IPage List(this IIntegrationAccountCertificatesOperations operations, string resourceGroupName, string integrationAccountName, int? top = default(int?)) + public static IPage ListByIntegrationAccounts(this ICertificatesOperations operations, string resourceGroupName, string integrationAccountName, int? top = default(int?)) { - return Task.Factory.StartNew(s => ((IIntegrationAccountCertificatesOperations)s).ListAsync(resourceGroupName, integrationAccountName, top), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((ICertificatesOperations)s).ListByIntegrationAccountsAsync(resourceGroupName, integrationAccountName, top), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// @@ -60,9 +60,9 @@ public static partial class IntegrationAccountCertificatesOperationsExtensions /// /// The cancellation token. /// - public static async Task> ListAsync(this IIntegrationAccountCertificatesOperations operations, string resourceGroupName, string integrationAccountName, int? top = default(int?), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByIntegrationAccountsAsync(this ICertificatesOperations operations, string resourceGroupName, string integrationAccountName, int? top = default(int?), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, integrationAccountName, top, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByIntegrationAccountsWithHttpMessagesAsync(resourceGroupName, integrationAccountName, top, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -83,9 +83,9 @@ public static partial class IntegrationAccountCertificatesOperationsExtensions /// /// The integration account certificate name. /// - public static IntegrationAccountCertificate Get(this IIntegrationAccountCertificatesOperations operations, string resourceGroupName, string integrationAccountName, string certificateName) + public static IntegrationAccountCertificate Get(this ICertificatesOperations operations, string resourceGroupName, string integrationAccountName, string certificateName) { - return Task.Factory.StartNew(s => ((IIntegrationAccountCertificatesOperations)s).GetAsync(resourceGroupName, integrationAccountName, certificateName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((ICertificatesOperations)s).GetAsync(resourceGroupName, integrationAccountName, certificateName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// @@ -106,7 +106,7 @@ public static IntegrationAccountCertificate Get(this IIntegrationAccountCertific /// /// The cancellation token. /// - public static async Task GetAsync(this IIntegrationAccountCertificatesOperations operations, string resourceGroupName, string integrationAccountName, string certificateName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this ICertificatesOperations operations, string resourceGroupName, string integrationAccountName, string certificateName, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, integrationAccountName, certificateName, null, cancellationToken).ConfigureAwait(false)) { @@ -132,9 +132,9 @@ public static IntegrationAccountCertificate Get(this IIntegrationAccountCertific /// /// The integration account certificate. /// - public static IntegrationAccountCertificate CreateOrUpdate(this IIntegrationAccountCertificatesOperations operations, string resourceGroupName, string integrationAccountName, string certificateName, IntegrationAccountCertificate certificate) + public static IntegrationAccountCertificate CreateOrUpdate(this ICertificatesOperations operations, string resourceGroupName, string integrationAccountName, string certificateName, IntegrationAccountCertificate certificate) { - return Task.Factory.StartNew(s => ((IIntegrationAccountCertificatesOperations)s).CreateOrUpdateAsync(resourceGroupName, integrationAccountName, certificateName, certificate), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((ICertificatesOperations)s).CreateOrUpdateAsync(resourceGroupName, integrationAccountName, certificateName, certificate), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// @@ -158,7 +158,7 @@ public static IntegrationAccountCertificate CreateOrUpdate(this IIntegrationAcco /// /// The cancellation token. /// - public static async Task CreateOrUpdateAsync(this IIntegrationAccountCertificatesOperations operations, string resourceGroupName, string integrationAccountName, string certificateName, IntegrationAccountCertificate certificate, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateOrUpdateAsync(this ICertificatesOperations operations, string resourceGroupName, string integrationAccountName, string certificateName, IntegrationAccountCertificate certificate, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, integrationAccountName, certificateName, certificate, null, cancellationToken).ConfigureAwait(false)) { @@ -181,9 +181,9 @@ public static IntegrationAccountCertificate CreateOrUpdate(this IIntegrationAcco /// /// The integration account certificate name. /// - public static void Delete(this IIntegrationAccountCertificatesOperations operations, string resourceGroupName, string integrationAccountName, string certificateName) + public static void Delete(this ICertificatesOperations operations, string resourceGroupName, string integrationAccountName, string certificateName) { - Task.Factory.StartNew(s => ((IIntegrationAccountCertificatesOperations)s).DeleteAsync(resourceGroupName, integrationAccountName, certificateName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + Task.Factory.StartNew(s => ((ICertificatesOperations)s).DeleteAsync(resourceGroupName, integrationAccountName, certificateName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// @@ -204,7 +204,7 @@ public static void Delete(this IIntegrationAccountCertificatesOperations operati /// /// The cancellation token. /// - public static async Task DeleteAsync(this IIntegrationAccountCertificatesOperations operations, string resourceGroupName, string integrationAccountName, string certificateName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteAsync(this ICertificatesOperations operations, string resourceGroupName, string integrationAccountName, string certificateName, CancellationToken cancellationToken = default(CancellationToken)) { await operations.DeleteWithHttpMessagesAsync(resourceGroupName, integrationAccountName, certificateName, null, cancellationToken).ConfigureAwait(false); } @@ -218,9 +218,9 @@ public static void Delete(this IIntegrationAccountCertificatesOperations operati /// /// The NextLink from the previous successful call to List operation. /// - public static IPage ListNext(this IIntegrationAccountCertificatesOperations operations, string nextPageLink) + public static IPage ListByIntegrationAccountsNext(this ICertificatesOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((IIntegrationAccountCertificatesOperations)s).ListNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((ICertificatesOperations)s).ListByIntegrationAccountsNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// @@ -235,9 +235,9 @@ public static IPage ListNext(this IIntegrationAcc /// /// The cancellation token. /// - public static async Task> ListNextAsync(this IIntegrationAccountCertificatesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByIntegrationAccountsNextAsync(this ICertificatesOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByIntegrationAccountsNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IIntegrationAccountAgreementsOperations.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IAgreementsOperations.cs similarity index 91% rename from src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IIntegrationAccountAgreementsOperations.cs rename to src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IAgreementsOperations.cs index 7f6c1de28db4..7aec05e21e3b 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IIntegrationAccountAgreementsOperations.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IAgreementsOperations.cs @@ -19,9 +19,9 @@ namespace Microsoft.Azure.Management.Logic using Models; /// - /// IntegrationAccountAgreementsOperations operations. + /// AgreementsOperations operations. /// - public partial interface IIntegrationAccountAgreementsOperations + public partial interface IAgreementsOperations { /// /// Gets a list of integration account agreements. @@ -50,7 +50,7 @@ public partial interface IIntegrationAccountAgreementsOperations /// /// Thrown when a required parameter is null /// - Task>> ListWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByIntegrationAccountsWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets an integration account agreement. /// @@ -156,6 +156,6 @@ public partial interface IIntegrationAccountAgreementsOperations /// /// Thrown when a required parameter is null /// - Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByIntegrationAccountsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IIntegrationAccountCertificatesOperations.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/ICertificatesOperations.cs similarity index 92% rename from src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IIntegrationAccountCertificatesOperations.cs rename to src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/ICertificatesOperations.cs index ac17ccd907b4..3ff858d2f5a3 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IIntegrationAccountCertificatesOperations.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/ICertificatesOperations.cs @@ -18,9 +18,9 @@ namespace Microsoft.Azure.Management.Logic using Models; /// - /// IntegrationAccountCertificatesOperations operations. + /// CertificatesOperations operations. /// - public partial interface IIntegrationAccountCertificatesOperations + public partial interface ICertificatesOperations { /// /// Gets a list of integration account certificates. @@ -49,7 +49,7 @@ public partial interface IIntegrationAccountCertificatesOperations /// /// Thrown when a required parameter is null /// - Task>> ListWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, int? top = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByIntegrationAccountsWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, int? top = default(int?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets an integration account certificate. /// @@ -155,6 +155,6 @@ public partial interface IIntegrationAccountCertificatesOperations /// /// Thrown when a required parameter is null /// - Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByIntegrationAccountsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IIntegrationAccountsOperations.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IIntegrationAccountsOperations.cs index 29cf3ff5631d..7b4c6c558ef1 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IIntegrationAccountsOperations.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IIntegrationAccountsOperations.cs @@ -173,7 +173,7 @@ public partial interface IIntegrationAccountsOperations /// Task DeleteWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Lists the integration account callback URL. + /// Gets the integration account callback URL. /// /// /// The resource group name. @@ -181,8 +181,8 @@ public partial interface IIntegrationAccountsOperations /// /// The integration account name. /// - /// - /// The expiry time. + /// + /// The callback URL parameters. /// /// /// The headers that will be added to request. @@ -199,7 +199,7 @@ public partial interface IIntegrationAccountsOperations /// /// Thrown when a required parameter is null /// - Task> ListCallbackUrlWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, DateTime? notAfter = default(DateTime?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GetCallbackUrlWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, GetCallbackUrlParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets a list of integration accounts by subscription. /// diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/ILogicManagementClient.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/ILogicManagementClient.cs index ded2b3fac37f..645931da8861 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/ILogicManagementClient.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/ILogicManagementClient.cs @@ -19,7 +19,7 @@ namespace Microsoft.Azure.Management.Logic using Models; /// - /// Composite Swagger for Logic Management Client + /// REST API for Azure Logic Apps. /// public partial interface ILogicManagementClient : IDisposable { @@ -48,6 +48,11 @@ public partial interface ILogicManagementClient : IDisposable /// string SubscriptionId { get; set; } + /// + /// The API version. + /// + string ApiVersion { get; } + /// /// Gets or sets the preferred language for the response. /// @@ -102,29 +107,54 @@ public partial interface ILogicManagementClient : IDisposable IIntegrationAccountsOperations IntegrationAccounts { get; } /// - /// Gets the IIntegrationAccountSchemasOperations. + /// Gets the ISchemasOperations. + /// + ISchemasOperations Schemas { get; } + + /// + /// Gets the IMapsOperations. /// - IIntegrationAccountSchemasOperations IntegrationAccountSchemas { get; } + IMapsOperations Maps { get; } /// - /// Gets the IIntegrationAccountMapsOperations. + /// Gets the IPartnersOperations. /// - IIntegrationAccountMapsOperations IntegrationAccountMaps { get; } + IPartnersOperations Partners { get; } /// - /// Gets the IIntegrationAccountPartnersOperations. + /// Gets the IAgreementsOperations. /// - IIntegrationAccountPartnersOperations IntegrationAccountPartners { get; } + IAgreementsOperations Agreements { get; } /// - /// Gets the IIntegrationAccountAgreementsOperations. + /// Gets the ICertificatesOperations. + /// + ICertificatesOperations Certificates { get; } + + /// + /// Lists all of the available Logic REST API operations. /// - IIntegrationAccountAgreementsOperations IntegrationAccountAgreements { get; } + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task>> ListOperationsWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// - /// Gets the IIntegrationAccountCertificatesOperations. + /// Lists all of the available Logic REST API operations. /// - IIntegrationAccountCertificatesOperations IntegrationAccountCertificates { get; } + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The headers that will be added to request. + /// + /// + /// The cancellation token. + /// + Task>> ListOperationsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IIntegrationAccountMapsOperations.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IMapsOperations.cs similarity index 91% rename from src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IIntegrationAccountMapsOperations.cs rename to src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IMapsOperations.cs index d3afc526aa51..7dc91cc5db9b 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IIntegrationAccountMapsOperations.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IMapsOperations.cs @@ -19,9 +19,9 @@ namespace Microsoft.Azure.Management.Logic using Models; /// - /// IntegrationAccountMapsOperations operations. + /// MapsOperations operations. /// - public partial interface IIntegrationAccountMapsOperations + public partial interface IMapsOperations { /// /// Gets a list of integration account maps. @@ -50,7 +50,7 @@ public partial interface IIntegrationAccountMapsOperations /// /// Thrown when a required parameter is null /// - Task>> ListWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByIntegrationAccountsWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets an integration account map. /// @@ -156,6 +156,6 @@ public partial interface IIntegrationAccountMapsOperations /// /// Thrown when a required parameter is null /// - Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByIntegrationAccountsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IIntegrationAccountPartnersOperations.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IPartnersOperations.cs similarity index 91% rename from src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IIntegrationAccountPartnersOperations.cs rename to src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IPartnersOperations.cs index 387d2c38e84e..a1f93faeab0a 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IIntegrationAccountPartnersOperations.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IPartnersOperations.cs @@ -19,9 +19,9 @@ namespace Microsoft.Azure.Management.Logic using Models; /// - /// IntegrationAccountPartnersOperations operations. + /// PartnersOperations operations. /// - public partial interface IIntegrationAccountPartnersOperations + public partial interface IPartnersOperations { /// /// Gets a list of integration account partners. @@ -50,7 +50,7 @@ public partial interface IIntegrationAccountPartnersOperations /// /// Thrown when a required parameter is null /// - Task>> ListWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByIntegrationAccountsWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets an integration account partner. /// @@ -156,6 +156,6 @@ public partial interface IIntegrationAccountPartnersOperations /// /// Thrown when a required parameter is null /// - Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByIntegrationAccountsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IIntegrationAccountSchemasOperations.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/ISchemasOperations.cs similarity index 91% rename from src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IIntegrationAccountSchemasOperations.cs rename to src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/ISchemasOperations.cs index c5fe930389db..7a908e89639e 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IIntegrationAccountSchemasOperations.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/ISchemasOperations.cs @@ -19,9 +19,9 @@ namespace Microsoft.Azure.Management.Logic using Models; /// - /// IntegrationAccountSchemasOperations operations. + /// SchemasOperations operations. /// - public partial interface IIntegrationAccountSchemasOperations + public partial interface ISchemasOperations { /// /// Gets a list of integration account schemas. @@ -50,7 +50,7 @@ public partial interface IIntegrationAccountSchemasOperations /// /// Thrown when a required parameter is null /// - Task>> ListWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByIntegrationAccountsWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Gets an integration account schema. /// @@ -156,6 +156,6 @@ public partial interface IIntegrationAccountSchemasOperations /// /// Thrown when a required parameter is null /// - Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task>> ListByIntegrationAccountsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IWorkflowsOperations.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IWorkflowsOperations.cs index c94318b24d0d..ea23ae685f09 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IWorkflowsOperations.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IWorkflowsOperations.cs @@ -226,8 +226,8 @@ public partial interface IWorkflowsOperations /// /// The workflow name. /// - /// - /// The target schema version. + /// + /// Parameters for generating an upgraded definition. /// /// /// The headers that will be added to request. @@ -244,7 +244,7 @@ public partial interface IWorkflowsOperations /// /// Thrown when a required parameter is null /// - Task> GenerateUpgradedDefinitionWithHttpMessagesAsync(string resourceGroupName, string workflowName, string targetSchemaVersion = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); + Task> GenerateUpgradedDefinitionWithHttpMessagesAsync(string resourceGroupName, string workflowName, GenerateUpgradedDefinitionParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); /// /// Validates the workflow definition. /// diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IntegrationAccountsOperations.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IntegrationAccountsOperations.cs index bdc9dd4dd477..4be21aa0da67 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IntegrationAccountsOperations.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IntegrationAccountsOperations.cs @@ -82,7 +82,10 @@ internal IntegrationAccountsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2015-08-01-preview"; + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -90,7 +93,6 @@ internal IntegrationAccountsOperations(LogicManagementClient client) { _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("top", top); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListBySubscription", tracingParameters); @@ -100,9 +102,9 @@ internal IntegrationAccountsOperations(LogicManagementClient client) var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "subscriptions/{subscriptionId}/providers/Microsoft.Logic/integrationAccounts").ToString(); _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); List _queryParameters = new List(); - if (apiVersion != null) + if (this.Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); } if (top != null) { @@ -268,7 +270,10 @@ internal IntegrationAccountsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - string apiVersion = "2015-08-01-preview"; + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -277,7 +282,6 @@ internal IntegrationAccountsOperations(LogicManagementClient client) _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("top", top); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", tracingParameters); @@ -288,9 +292,9 @@ internal IntegrationAccountsOperations(LogicManagementClient client) _url = _url.Replace("{subscriptionId}", Uri.EscapeDataString(this.Client.SubscriptionId)); _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); List _queryParameters = new List(); - if (apiVersion != null) + if (this.Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); } if (top != null) { @@ -460,7 +464,10 @@ internal IntegrationAccountsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "integrationAccountName"); } - string apiVersion = "2015-08-01-preview"; + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -470,7 +477,6 @@ internal IntegrationAccountsOperations(LogicManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("integrationAccountName", integrationAccountName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } @@ -481,9 +487,9 @@ internal IntegrationAccountsOperations(LogicManagementClient client) _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); List _queryParameters = new List(); - if (apiVersion != null) + if (this.Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); } if (_queryParameters.Count > 0) { @@ -652,11 +658,18 @@ internal IntegrationAccountsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "integrationAccountName"); } + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } if (integrationAccount == null) { throw new ValidationException(ValidationRules.CannotBeNull, "integrationAccount"); } - string apiVersion = "2015-08-01-preview"; + if (integrationAccount != null) + { + integrationAccount.Validate(); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -666,7 +679,6 @@ internal IntegrationAccountsOperations(LogicManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("integrationAccountName", integrationAccountName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("integrationAccount", integrationAccount); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); @@ -678,9 +690,9 @@ internal IntegrationAccountsOperations(LogicManagementClient client) _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); List _queryParameters = new List(); - if (apiVersion != null) + if (this.Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); } if (_queryParameters.Count > 0) { @@ -873,11 +885,14 @@ internal IntegrationAccountsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "integrationAccountName"); } + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } if (integrationAccount == null) { throw new ValidationException(ValidationRules.CannotBeNull, "integrationAccount"); } - string apiVersion = "2015-08-01-preview"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -887,7 +902,6 @@ internal IntegrationAccountsOperations(LogicManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("integrationAccountName", integrationAccountName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("integrationAccount", integrationAccount); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Update", tracingParameters); @@ -899,9 +913,9 @@ internal IntegrationAccountsOperations(LogicManagementClient client) _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); List _queryParameters = new List(); - if (apiVersion != null) + if (this.Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); } if (_queryParameters.Count > 0) { @@ -1070,7 +1084,10 @@ internal IntegrationAccountsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "integrationAccountName"); } - string apiVersion = "2015-08-01-preview"; + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1080,7 +1097,6 @@ internal IntegrationAccountsOperations(LogicManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("integrationAccountName", integrationAccountName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); } @@ -1091,9 +1107,9 @@ internal IntegrationAccountsOperations(LogicManagementClient client) _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); List _queryParameters = new List(); - if (apiVersion != null) + if (this.Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); } if (_queryParameters.Count > 0) { @@ -1193,7 +1209,7 @@ internal IntegrationAccountsOperations(LogicManagementClient client) } /// - /// Lists the integration account callback URL. + /// Gets the integration account callback URL. /// /// /// The resource group name. @@ -1201,8 +1217,8 @@ internal IntegrationAccountsOperations(LogicManagementClient client) /// /// The integration account name. /// - /// - /// The expiry time. + /// + /// The callback URL parameters. /// /// /// Headers that will be added to request. @@ -1222,7 +1238,7 @@ internal IntegrationAccountsOperations(LogicManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> ListCallbackUrlWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, DateTime? notAfter = default(DateTime?), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GetCallbackUrlWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, GetCallbackUrlParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (this.Client.SubscriptionId == null) { @@ -1236,9 +1252,14 @@ internal IntegrationAccountsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "integrationAccountName"); } - string apiVersion = "2015-08-01-preview"; - ListCallbackUrlParameters parameters = new ListCallbackUrlParameters(); - parameters.NotAfter = notAfter; + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1248,10 +1269,9 @@ internal IntegrationAccountsOperations(LogicManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("integrationAccountName", integrationAccountName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListCallbackUrl", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "GetCallbackUrl", tracingParameters); } // Construct URL var _baseUrl = this.Client.BaseUri.AbsoluteUri; @@ -1260,9 +1280,9 @@ internal IntegrationAccountsOperations(LogicManagementClient client) _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); List _queryParameters = new List(); - if (apiVersion != null) + if (this.Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); } if (_queryParameters.Count > 0) { diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IntegrationAccountsOperationsExtensions.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IntegrationAccountsOperationsExtensions.cs index c0f452f8699c..3244021eb8f5 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IntegrationAccountsOperationsExtensions.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IntegrationAccountsOperationsExtensions.cs @@ -266,7 +266,7 @@ public static void Delete(this IIntegrationAccountsOperations operations, string } /// - /// Lists the integration account callback URL. + /// Gets the integration account callback URL. /// /// /// The operations group for this extension method. @@ -277,16 +277,16 @@ public static void Delete(this IIntegrationAccountsOperations operations, string /// /// The integration account name. /// - /// - /// The expiry time. + /// + /// The callback URL parameters. /// - public static CallbackUrl ListCallbackUrl(this IIntegrationAccountsOperations operations, string resourceGroupName, string integrationAccountName, DateTime? notAfter = default(DateTime?)) + public static CallbackUrl GetCallbackUrl(this IIntegrationAccountsOperations operations, string resourceGroupName, string integrationAccountName, GetCallbackUrlParameters parameters) { - return Task.Factory.StartNew(s => ((IIntegrationAccountsOperations)s).ListCallbackUrlAsync(resourceGroupName, integrationAccountName, notAfter), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((IIntegrationAccountsOperations)s).GetCallbackUrlAsync(resourceGroupName, integrationAccountName, parameters), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// - /// Lists the integration account callback URL. + /// Gets the integration account callback URL. /// /// /// The operations group for this extension method. @@ -297,15 +297,15 @@ public static void Delete(this IIntegrationAccountsOperations operations, string /// /// The integration account name. /// - /// - /// The expiry time. + /// + /// The callback URL parameters. /// /// /// The cancellation token. /// - public static async Task ListCallbackUrlAsync(this IIntegrationAccountsOperations operations, string resourceGroupName, string integrationAccountName, DateTime? notAfter = default(DateTime?), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetCallbackUrlAsync(this IIntegrationAccountsOperations operations, string resourceGroupName, string integrationAccountName, GetCallbackUrlParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListCallbackUrlWithHttpMessagesAsync(resourceGroupName, integrationAccountName, notAfter, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GetCallbackUrlWithHttpMessagesAsync(resourceGroupName, integrationAccountName, parameters, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/LogicManagementClient.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/LogicManagementClient.cs index 8aef2a4e53ea..58c7bc7bd1b4 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/LogicManagementClient.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/LogicManagementClient.cs @@ -26,7 +26,7 @@ namespace Microsoft.Azure.Management.Logic using Models; /// - /// Composite Swagger for Logic Management Client + /// REST API for Azure Logic Apps. /// public partial class LogicManagementClient : ServiceClient, ILogicManagementClient, IAzureClient { @@ -55,6 +55,11 @@ public partial class LogicManagementClient : ServiceClient public string SubscriptionId { get; set; } + /// + /// The API version. + /// + public string ApiVersion { get; private set; } + /// /// Gets or sets the preferred language for the response. /// @@ -108,29 +113,29 @@ public partial class LogicManagementClient : ServiceClient - /// Gets the IIntegrationAccountSchemasOperations. + /// Gets the ISchemasOperations. /// - public virtual IIntegrationAccountSchemasOperations IntegrationAccountSchemas { get; private set; } + public virtual ISchemasOperations Schemas { get; private set; } /// - /// Gets the IIntegrationAccountMapsOperations. + /// Gets the IMapsOperations. /// - public virtual IIntegrationAccountMapsOperations IntegrationAccountMaps { get; private set; } + public virtual IMapsOperations Maps { get; private set; } /// - /// Gets the IIntegrationAccountPartnersOperations. + /// Gets the IPartnersOperations. /// - public virtual IIntegrationAccountPartnersOperations IntegrationAccountPartners { get; private set; } + public virtual IPartnersOperations Partners { get; private set; } /// - /// Gets the IIntegrationAccountAgreementsOperations. + /// Gets the IAgreementsOperations. /// - public virtual IIntegrationAccountAgreementsOperations IntegrationAccountAgreements { get; private set; } + public virtual IAgreementsOperations Agreements { get; private set; } /// - /// Gets the IIntegrationAccountCertificatesOperations. + /// Gets the ICertificatesOperations. /// - public virtual IIntegrationAccountCertificatesOperations IntegrationAccountCertificates { get; private set; } + public virtual ICertificatesOperations Certificates { get; private set; } /// /// Initializes a new instance of the LogicManagementClient class. @@ -340,12 +345,13 @@ private void Initialize() this.WorkflowRuns = new WorkflowRunsOperations(this); this.WorkflowRunActions = new WorkflowRunActionsOperations(this); this.IntegrationAccounts = new IntegrationAccountsOperations(this); - this.IntegrationAccountSchemas = new IntegrationAccountSchemasOperations(this); - this.IntegrationAccountMaps = new IntegrationAccountMapsOperations(this); - this.IntegrationAccountPartners = new IntegrationAccountPartnersOperations(this); - this.IntegrationAccountAgreements = new IntegrationAccountAgreementsOperations(this); - this.IntegrationAccountCertificates = new IntegrationAccountCertificatesOperations(this); + this.Schemas = new SchemasOperations(this); + this.Maps = new MapsOperations(this); + this.Partners = new PartnersOperations(this); + this.Agreements = new AgreementsOperations(this); + this.Certificates = new CertificatesOperations(this); this.BaseUri = new Uri("https://management.azure.com"); + this.ApiVersion = "2016-06-01"; this.AcceptLanguage = "en-US"; this.LongRunningOperationRetryTimeout = 30; this.GenerateClientRequestId = true; @@ -379,5 +385,331 @@ private void Initialize() DeserializationSettings.Converters.Add(new TransformationJsonConverter()); DeserializationSettings.Converters.Add(new CloudErrorJsonConverter()); } + /// + /// Lists all of the available Logic REST API operations. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListOperationsWithHttpMessagesAsync(Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (this.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.ApiVersion"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListOperations", tracingParameters); + } + // Construct URL + var _baseUrl = this.BaseUri.AbsoluteUri; + var _url = new Uri(new Uri(_baseUrl + (_baseUrl.EndsWith("/") ? "" : "/")), "providers/Microsoft.Logic/operations").ToString(); + List _queryParameters = new List(); + if (this.ApiVersion != null) + { + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.ApiVersion))); + } + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + HttpRequestMessage _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new Uri(_url); + // Set Headers + if (this.GenerateClientRequestId != null && this.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + } + if (this.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.AcceptLanguage); + } + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + + /// + /// Lists all of the available Logic REST API operations. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// Headers that will be added to request. + /// + /// + /// The cancellation token. + /// + /// + /// Thrown when the operation returned an invalid status code + /// + /// + /// Thrown when unable to deserialize the response + /// + /// + /// Thrown when a required parameter is null + /// + /// + /// A response object containing the response body and response headers. + /// + public async Task>> ListOperationsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + { + if (nextPageLink == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "nextPageLink"); + } + // Tracing + bool _shouldTrace = ServiceClientTracing.IsEnabled; + string _invocationId = null; + if (_shouldTrace) + { + _invocationId = ServiceClientTracing.NextInvocationId.ToString(); + Dictionary tracingParameters = new Dictionary(); + tracingParameters.Add("nextPageLink", nextPageLink); + tracingParameters.Add("cancellationToken", cancellationToken); + ServiceClientTracing.Enter(_invocationId, this, "ListOperationsNext", tracingParameters); + } + // Construct URL + string _url = "{nextLink}"; + _url = _url.Replace("{nextLink}", nextPageLink); + List _queryParameters = new List(); + if (_queryParameters.Count > 0) + { + _url += "?" + string.Join("&", _queryParameters); + } + // Create HTTP transport objects + HttpRequestMessage _httpRequest = new HttpRequestMessage(); + HttpResponseMessage _httpResponse = null; + _httpRequest.Method = new HttpMethod("GET"); + _httpRequest.RequestUri = new Uri(_url); + // Set Headers + if (this.GenerateClientRequestId != null && this.GenerateClientRequestId.Value) + { + _httpRequest.Headers.TryAddWithoutValidation("x-ms-client-request-id", Guid.NewGuid().ToString()); + } + if (this.AcceptLanguage != null) + { + if (_httpRequest.Headers.Contains("accept-language")) + { + _httpRequest.Headers.Remove("accept-language"); + } + _httpRequest.Headers.TryAddWithoutValidation("accept-language", this.AcceptLanguage); + } + if (customHeaders != null) + { + foreach(var _header in customHeaders) + { + if (_httpRequest.Headers.Contains(_header.Key)) + { + _httpRequest.Headers.Remove(_header.Key); + } + _httpRequest.Headers.TryAddWithoutValidation(_header.Key, _header.Value); + } + } + + // Serialize Request + string _requestContent = null; + // Set Credentials + if (this.Credentials != null) + { + cancellationToken.ThrowIfCancellationRequested(); + await this.Credentials.ProcessHttpRequestAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + } + // Send Request + if (_shouldTrace) + { + ServiceClientTracing.SendRequest(_invocationId, _httpRequest); + } + cancellationToken.ThrowIfCancellationRequested(); + _httpResponse = await this.HttpClient.SendAsync(_httpRequest, cancellationToken).ConfigureAwait(false); + if (_shouldTrace) + { + ServiceClientTracing.ReceiveResponse(_invocationId, _httpResponse); + } + HttpStatusCode _statusCode = _httpResponse.StatusCode; + cancellationToken.ThrowIfCancellationRequested(); + string _responseContent = null; + if ((int)_statusCode != 200) + { + var ex = new ErrorResponseException(string.Format("Operation returned an invalid status code '{0}'", _statusCode)); + try + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + ErrorResponse _errorBody = SafeJsonConvert.DeserializeObject(_responseContent, this.DeserializationSettings); + if (_errorBody != null) + { + ex.Body = _errorBody; + } + } + catch (JsonException) + { + // Ignore the exception + } + ex.Request = new HttpRequestMessageWrapper(_httpRequest, _requestContent); + ex.Response = new HttpResponseMessageWrapper(_httpResponse, _responseContent); + if (_shouldTrace) + { + ServiceClientTracing.Error(_invocationId, ex); + } + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw ex; + } + // Create Result + var _result = new AzureOperationResponse>(); + _result.Request = _httpRequest; + _result.Response = _httpResponse; + if (_httpResponse.Headers.Contains("x-ms-request-id")) + { + _result.RequestId = _httpResponse.Headers.GetValues("x-ms-request-id").FirstOrDefault(); + } + // Deserialize Response + if ((int)_statusCode == 200) + { + _responseContent = await _httpResponse.Content.ReadAsStringAsync().ConfigureAwait(false); + try + { + _result.Body = SafeJsonConvert.DeserializeObject>(_responseContent, this.DeserializationSettings); + } + catch (JsonException ex) + { + _httpRequest.Dispose(); + if (_httpResponse != null) + { + _httpResponse.Dispose(); + } + throw new SerializationException("Unable to deserialize the response.", _responseContent, ex); + } + } + if (_shouldTrace) + { + ServiceClientTracing.Exit(_invocationId, _result); + } + return _result; + } + } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/LogicManagementClientExtensions.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/LogicManagementClientExtensions.cs new file mode 100644 index 000000000000..63bcc5eb4556 --- /dev/null +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/LogicManagementClientExtensions.cs @@ -0,0 +1,88 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Logic +{ + using System; + using System.Collections; + using System.Collections.Generic; + using System.Threading; + using System.Threading.Tasks; + using Microsoft.Rest; + using Microsoft.Rest.Azure; + using Models; + + /// + /// Extension methods for LogicManagementClient. + /// + public static partial class LogicManagementClientExtensions + { + /// + /// Lists all of the available Logic REST API operations. + /// + /// + /// The operations group for this extension method. + /// + public static IPage ListOperations(this ILogicManagementClient operations) + { + return Task.Factory.StartNew(s => ((ILogicManagementClient)s).ListOperationsAsync(), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Lists all of the available Logic REST API operations. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The cancellation token. + /// + public static async Task> ListOperationsAsync(this ILogicManagementClient operations, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListOperationsWithHttpMessagesAsync(null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + /// + /// Lists all of the available Logic REST API operations. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + public static IPage ListOperationsNext(this ILogicManagementClient operations, string nextPageLink) + { + return Task.Factory.StartNew(s => ((ILogicManagementClient)s).ListOperationsNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + } + + /// + /// Lists all of the available Logic REST API operations. + /// + /// + /// The operations group for this extension method. + /// + /// + /// The NextLink from the previous successful call to List operation. + /// + /// + /// The cancellation token. + /// + public static async Task> ListOperationsNextAsync(this ILogicManagementClient operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + { + using (var _result = await operations.ListOperationsNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + { + return _result.Body; + } + } + + } +} diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IntegrationAccountMapsOperations.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/MapsOperations.cs similarity index 95% rename from src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IntegrationAccountMapsOperations.cs rename to src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/MapsOperations.cs index 813f0b7360be..deabf9037fa3 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IntegrationAccountMapsOperations.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/MapsOperations.cs @@ -26,12 +26,12 @@ namespace Microsoft.Azure.Management.Logic using Models; /// - /// IntegrationAccountMapsOperations operations. + /// MapsOperations operations. /// - internal partial class IntegrationAccountMapsOperations : IServiceOperations, IIntegrationAccountMapsOperations + internal partial class MapsOperations : IServiceOperations, IMapsOperations { /// - /// Initializes a new instance of the IntegrationAccountMapsOperations class. + /// Initializes a new instance of the MapsOperations class. /// /// /// Reference to the service client. @@ -39,7 +39,7 @@ internal partial class IntegrationAccountMapsOperations : IServiceOperations /// Thrown when a required parameter is null /// - internal IntegrationAccountMapsOperations(LogicManagementClient client) + internal MapsOperations(LogicManagementClient client) { if (client == null) { @@ -83,7 +83,7 @@ internal IntegrationAccountMapsOperations(LogicManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByIntegrationAccountsWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (this.Client.SubscriptionId == null) { @@ -97,7 +97,10 @@ internal IntegrationAccountMapsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "integrationAccountName"); } - string apiVersion = "2015-08-01-preview"; + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -108,9 +111,8 @@ internal IntegrationAccountMapsOperations(LogicManagementClient client) tracingParameters.Add("odataQuery", odataQuery); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("integrationAccountName", integrationAccountName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByIntegrationAccounts", tracingParameters); } // Construct URL var _baseUrl = this.Client.BaseUri.AbsoluteUri; @@ -127,9 +129,9 @@ internal IntegrationAccountMapsOperations(LogicManagementClient client) _queryParameters.Add(_odataFilter); } } - if (apiVersion != null) + if (this.Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); } if (_queryParameters.Count > 0) { @@ -302,7 +304,10 @@ internal IntegrationAccountMapsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "mapName"); } - string apiVersion = "2015-08-01-preview"; + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -313,7 +318,6 @@ internal IntegrationAccountMapsOperations(LogicManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("integrationAccountName", integrationAccountName); tracingParameters.Add("mapName", mapName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } @@ -325,9 +329,9 @@ internal IntegrationAccountMapsOperations(LogicManagementClient client) _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); _url = _url.Replace("{mapName}", Uri.EscapeDataString(mapName)); List _queryParameters = new List(); - if (apiVersion != null) + if (this.Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); } if (_queryParameters.Count > 0) { @@ -503,11 +507,18 @@ internal IntegrationAccountMapsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "mapName"); } + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } if (map == null) { throw new ValidationException(ValidationRules.CannotBeNull, "map"); } - string apiVersion = "2015-08-01-preview"; + if (map != null) + { + map.Validate(); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -518,7 +529,6 @@ internal IntegrationAccountMapsOperations(LogicManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("integrationAccountName", integrationAccountName); tracingParameters.Add("mapName", mapName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("map", map); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); @@ -531,9 +541,9 @@ internal IntegrationAccountMapsOperations(LogicManagementClient client) _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); _url = _url.Replace("{mapName}", Uri.EscapeDataString(mapName)); List _queryParameters = new List(); - if (apiVersion != null) + if (this.Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); } if (_queryParameters.Count > 0) { @@ -727,7 +737,10 @@ internal IntegrationAccountMapsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "mapName"); } - string apiVersion = "2015-08-01-preview"; + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -738,7 +751,6 @@ internal IntegrationAccountMapsOperations(LogicManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("integrationAccountName", integrationAccountName); tracingParameters.Add("mapName", mapName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); } @@ -750,9 +762,9 @@ internal IntegrationAccountMapsOperations(LogicManagementClient client) _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); _url = _url.Replace("{mapName}", Uri.EscapeDataString(mapName)); List _queryParameters = new List(); - if (apiVersion != null) + if (this.Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); } if (_queryParameters.Count > 0) { @@ -875,7 +887,7 @@ internal IntegrationAccountMapsOperations(LogicManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByIntegrationAccountsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -890,7 +902,7 @@ internal IntegrationAccountMapsOperations(LogicManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByIntegrationAccountsNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IntegrationAccountMapsOperationsExtensions.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/MapsOperationsExtensions.cs similarity index 68% rename from src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IntegrationAccountMapsOperationsExtensions.cs rename to src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/MapsOperationsExtensions.cs index 123aaf66289e..a5b0efb022ff 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IntegrationAccountMapsOperationsExtensions.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/MapsOperationsExtensions.cs @@ -19,9 +19,9 @@ namespace Microsoft.Azure.Management.Logic using Models; /// - /// Extension methods for IntegrationAccountMapsOperations. + /// Extension methods for MapsOperations. /// - public static partial class IntegrationAccountMapsOperationsExtensions + public static partial class MapsOperationsExtensions { /// /// Gets a list of integration account maps. @@ -38,9 +38,9 @@ public static partial class IntegrationAccountMapsOperationsExtensions /// /// OData parameters to apply to the operation. /// - public static IPage List(this IIntegrationAccountMapsOperations operations, string resourceGroupName, string integrationAccountName, ODataQuery odataQuery = default(ODataQuery)) + public static IPage ListByIntegrationAccounts(this IMapsOperations operations, string resourceGroupName, string integrationAccountName, ODataQuery odataQuery = default(ODataQuery)) { - return Task.Factory.StartNew(s => ((IIntegrationAccountMapsOperations)s).ListAsync(resourceGroupName, integrationAccountName, odataQuery), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((IMapsOperations)s).ListByIntegrationAccountsAsync(resourceGroupName, integrationAccountName, odataQuery), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// @@ -61,9 +61,9 @@ public static partial class IntegrationAccountMapsOperationsExtensions /// /// The cancellation token. /// - public static async Task> ListAsync(this IIntegrationAccountMapsOperations operations, string resourceGroupName, string integrationAccountName, ODataQuery odataQuery = default(ODataQuery), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByIntegrationAccountsAsync(this IMapsOperations operations, string resourceGroupName, string integrationAccountName, ODataQuery odataQuery = default(ODataQuery), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, integrationAccountName, odataQuery, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByIntegrationAccountsWithHttpMessagesAsync(resourceGroupName, integrationAccountName, odataQuery, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -84,9 +84,9 @@ public static partial class IntegrationAccountMapsOperationsExtensions /// /// The integration account map name. /// - public static IntegrationAccountMap Get(this IIntegrationAccountMapsOperations operations, string resourceGroupName, string integrationAccountName, string mapName) + public static IntegrationAccountMap Get(this IMapsOperations operations, string resourceGroupName, string integrationAccountName, string mapName) { - return Task.Factory.StartNew(s => ((IIntegrationAccountMapsOperations)s).GetAsync(resourceGroupName, integrationAccountName, mapName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((IMapsOperations)s).GetAsync(resourceGroupName, integrationAccountName, mapName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// @@ -107,7 +107,7 @@ public static IntegrationAccountMap Get(this IIntegrationAccountMapsOperations o /// /// The cancellation token. /// - public static async Task GetAsync(this IIntegrationAccountMapsOperations operations, string resourceGroupName, string integrationAccountName, string mapName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this IMapsOperations operations, string resourceGroupName, string integrationAccountName, string mapName, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, integrationAccountName, mapName, null, cancellationToken).ConfigureAwait(false)) { @@ -133,9 +133,9 @@ public static IntegrationAccountMap Get(this IIntegrationAccountMapsOperations o /// /// The integration account map. /// - public static IntegrationAccountMap CreateOrUpdate(this IIntegrationAccountMapsOperations operations, string resourceGroupName, string integrationAccountName, string mapName, IntegrationAccountMap map) + public static IntegrationAccountMap CreateOrUpdate(this IMapsOperations operations, string resourceGroupName, string integrationAccountName, string mapName, IntegrationAccountMap map) { - return Task.Factory.StartNew(s => ((IIntegrationAccountMapsOperations)s).CreateOrUpdateAsync(resourceGroupName, integrationAccountName, mapName, map), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((IMapsOperations)s).CreateOrUpdateAsync(resourceGroupName, integrationAccountName, mapName, map), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// @@ -159,7 +159,7 @@ public static IntegrationAccountMap CreateOrUpdate(this IIntegrationAccountMapsO /// /// The cancellation token. /// - public static async Task CreateOrUpdateAsync(this IIntegrationAccountMapsOperations operations, string resourceGroupName, string integrationAccountName, string mapName, IntegrationAccountMap map, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateOrUpdateAsync(this IMapsOperations operations, string resourceGroupName, string integrationAccountName, string mapName, IntegrationAccountMap map, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, integrationAccountName, mapName, map, null, cancellationToken).ConfigureAwait(false)) { @@ -182,9 +182,9 @@ public static IntegrationAccountMap CreateOrUpdate(this IIntegrationAccountMapsO /// /// The integration account map name. /// - public static void Delete(this IIntegrationAccountMapsOperations operations, string resourceGroupName, string integrationAccountName, string mapName) + public static void Delete(this IMapsOperations operations, string resourceGroupName, string integrationAccountName, string mapName) { - Task.Factory.StartNew(s => ((IIntegrationAccountMapsOperations)s).DeleteAsync(resourceGroupName, integrationAccountName, mapName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + Task.Factory.StartNew(s => ((IMapsOperations)s).DeleteAsync(resourceGroupName, integrationAccountName, mapName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// @@ -205,7 +205,7 @@ public static void Delete(this IIntegrationAccountMapsOperations operations, str /// /// The cancellation token. /// - public static async Task DeleteAsync(this IIntegrationAccountMapsOperations operations, string resourceGroupName, string integrationAccountName, string mapName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteAsync(this IMapsOperations operations, string resourceGroupName, string integrationAccountName, string mapName, CancellationToken cancellationToken = default(CancellationToken)) { await operations.DeleteWithHttpMessagesAsync(resourceGroupName, integrationAccountName, mapName, null, cancellationToken).ConfigureAwait(false); } @@ -219,9 +219,9 @@ public static void Delete(this IIntegrationAccountMapsOperations operations, str /// /// The NextLink from the previous successful call to List operation. /// - public static IPage ListNext(this IIntegrationAccountMapsOperations operations, string nextPageLink) + public static IPage ListByIntegrationAccountsNext(this IMapsOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((IIntegrationAccountMapsOperations)s).ListNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((IMapsOperations)s).ListByIntegrationAccountsNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// @@ -236,9 +236,9 @@ public static IPage ListNext(this IIntegrationAccountMaps /// /// The cancellation token. /// - public static async Task> ListNextAsync(this IIntegrationAccountMapsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByIntegrationAccountsNextAsync(this IMapsOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByIntegrationAccountsNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2AcknowledgementConnectionSettings.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2AcknowledgementConnectionSettings.cs index 1a7319a295a2..c8812cf4e9ff 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2AcknowledgementConnectionSettings.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2AcknowledgementConnectionSettings.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The AS2 agreement acknowledegment connection settings. + /// public partial class AS2AcknowledgementConnectionSettings { /// @@ -28,7 +31,7 @@ public AS2AcknowledgementConnectionSettings() { } /// Initializes a new instance of the /// AS2AcknowledgementConnectionSettings class. /// - public AS2AcknowledgementConnectionSettings(bool? ignoreCertificateNameMismatch = default(bool?), bool? supportHttpStatusCodeContinue = default(bool?), bool? keepHttpConnectionAlive = default(bool?), bool? unfoldHttpHeaders = default(bool?)) + public AS2AcknowledgementConnectionSettings(bool ignoreCertificateNameMismatch, bool supportHttpStatusCodeContinue, bool keepHttpConnectionAlive, bool unfoldHttpHeaders) { IgnoreCertificateNameMismatch = ignoreCertificateNameMismatch; SupportHttpStatusCodeContinue = supportHttpStatusCodeContinue; @@ -41,28 +44,38 @@ public AS2AcknowledgementConnectionSettings() { } /// certificate name. /// [JsonProperty(PropertyName = "ignoreCertificateNameMismatch")] - public bool? IgnoreCertificateNameMismatch { get; set; } + public bool IgnoreCertificateNameMismatch { get; set; } /// /// Gets or sets the value indicating whether to support HTTP status /// code 'CONTINUE'. /// [JsonProperty(PropertyName = "supportHttpStatusCodeContinue")] - public bool? SupportHttpStatusCodeContinue { get; set; } + public bool SupportHttpStatusCodeContinue { get; set; } /// /// Gets or sets the value indicating whether to keep the connection /// alive. /// [JsonProperty(PropertyName = "keepHttpConnectionAlive")] - public bool? KeepHttpConnectionAlive { get; set; } + public bool KeepHttpConnectionAlive { get; set; } /// /// Gets or sets the value indicating whether to unfold the HTTP /// headers. /// [JsonProperty(PropertyName = "unfoldHttpHeaders")] - public bool? UnfoldHttpHeaders { get; set; } + public bool UnfoldHttpHeaders { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + //Nothing to validate + } } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2AgreementContent.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2AgreementContent.cs index e5ec6d8dbae5..6340d9910ae8 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2AgreementContent.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2AgreementContent.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The integration account AS2 agreement content. + /// public partial class AS2AgreementContent { /// @@ -26,7 +29,7 @@ public AS2AgreementContent() { } /// /// Initializes a new instance of the AS2AgreementContent class. /// - public AS2AgreementContent(AS2OneWayAgreement receiveAgreement = default(AS2OneWayAgreement), AS2OneWayAgreement sendAgreement = default(AS2OneWayAgreement)) + public AS2AgreementContent(AS2OneWayAgreement receiveAgreement, AS2OneWayAgreement sendAgreement) { ReceiveAgreement = receiveAgreement; SendAgreement = sendAgreement; @@ -44,5 +47,30 @@ public AS2AgreementContent() { } [JsonProperty(PropertyName = "sendAgreement")] public AS2OneWayAgreement SendAgreement { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (ReceiveAgreement == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "ReceiveAgreement"); + } + if (SendAgreement == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "SendAgreement"); + } + if (this.ReceiveAgreement != null) + { + this.ReceiveAgreement.Validate(); + } + if (this.SendAgreement != null) + { + this.SendAgreement.Validate(); + } + } } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2EnvelopeSettings.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2EnvelopeSettings.cs index 08aaf48c1e49..cc957b486278 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2EnvelopeSettings.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2EnvelopeSettings.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The AS2 agreement envelope settings. + /// public partial class AS2EnvelopeSettings { /// @@ -26,7 +29,7 @@ public AS2EnvelopeSettings() { } /// /// Initializes a new instance of the AS2EnvelopeSettings class. /// - public AS2EnvelopeSettings(string messageContentType = default(string), bool? transmitFileNameInMimeHeader = default(bool?), string fileNameTemplate = default(string), bool? suspendMessageOnFileNameGenerationError = default(bool?), bool? autogenerateFileName = default(bool?)) + public AS2EnvelopeSettings(string messageContentType, bool transmitFileNameInMimeHeader, string fileNameTemplate, bool suspendMessageOnFileNameGenerationError, bool autogenerateFileName) { MessageContentType = messageContentType; TransmitFileNameInMimeHeader = transmitFileNameInMimeHeader; @@ -46,7 +49,7 @@ public AS2EnvelopeSettings() { } /// mime header. /// [JsonProperty(PropertyName = "transmitFileNameInMimeHeader")] - public bool? TransmitFileNameInMimeHeader { get; set; } + public bool TransmitFileNameInMimeHeader { get; set; } /// /// Gets or sets the template for file name. @@ -58,15 +61,32 @@ public AS2EnvelopeSettings() { } /// Gets or sets the value indicating whether to suspend message on /// file name generation error. /// - [JsonProperty(PropertyName = "SuspendMessageOnFileNameGenerationError")] - public bool? SuspendMessageOnFileNameGenerationError { get; set; } + [JsonProperty(PropertyName = "suspendMessageOnFileNameGenerationError")] + public bool SuspendMessageOnFileNameGenerationError { get; set; } /// /// Gets or sets the value indicating whether to auto generate file /// name. /// - [JsonProperty(PropertyName = "AutogenerateFileName")] - public bool? AutogenerateFileName { get; set; } + [JsonProperty(PropertyName = "autogenerateFileName")] + public bool AutogenerateFileName { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (MessageContentType == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "MessageContentType"); + } + if (FileNameTemplate == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "FileNameTemplate"); + } + } } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2ErrorSettings.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2ErrorSettings.cs index 52e4023a46c5..d20edae35334 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2ErrorSettings.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2ErrorSettings.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The AS2 agreement error settings. + /// public partial class AS2ErrorSettings { /// @@ -26,7 +29,7 @@ public AS2ErrorSettings() { } /// /// Initializes a new instance of the AS2ErrorSettings class. /// - public AS2ErrorSettings(bool? suspendDuplicateMessage = default(bool?), bool? resendIfMdnNotReceived = default(bool?)) + public AS2ErrorSettings(bool suspendDuplicateMessage, bool resendIfMdnNotReceived) { SuspendDuplicateMessage = suspendDuplicateMessage; ResendIfMdnNotReceived = resendIfMdnNotReceived; @@ -36,15 +39,25 @@ public AS2ErrorSettings() { } /// Gets or sets the value indicating whether to suspend duplicate /// message. /// - [JsonProperty(PropertyName = "SuspendDuplicateMessage")] - public bool? SuspendDuplicateMessage { get; set; } + [JsonProperty(PropertyName = "suspendDuplicateMessage")] + public bool SuspendDuplicateMessage { get; set; } /// /// Gets or sets the value indicating whether to resend message If MDN /// is not received. /// - [JsonProperty(PropertyName = "ResendIfMdnNotReceived")] - public bool? ResendIfMdnNotReceived { get; set; } + [JsonProperty(PropertyName = "resendIfMdnNotReceived")] + public bool ResendIfMdnNotReceived { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + //Nothing to validate + } } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2MdnSettings.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2MdnSettings.cs index 0079a59ecdca..d5b6dccfde53 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2MdnSettings.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2MdnSettings.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The AS2 agreement mdn settings. + /// public partial class AS2MdnSettings { /// @@ -26,7 +29,7 @@ public AS2MdnSettings() { } /// /// Initializes a new instance of the AS2MdnSettings class. /// - public AS2MdnSettings(bool? needMdn = default(bool?), bool? signMdn = default(bool?), bool? sendMdnAsynchronously = default(bool?), string receiptDeliveryUrl = default(string), string dispositionNotificationTo = default(string), bool? signOutboundMdnIfOptional = default(bool?), string mdnText = default(string), bool? sendInboundMdnToMessageBox = default(bool?), HashingAlgorithm? micHashingAlgorithm = default(HashingAlgorithm?)) + public AS2MdnSettings(bool needMdn, bool signMdn, bool sendMdnAsynchronously, bool signOutboundMdnIfOptional, bool sendInboundMdnToMessageBox, HashingAlgorithm micHashingAlgorithm, string receiptDeliveryUrl = default(string), string dispositionNotificationTo = default(string), string mdnText = default(string)) { NeedMdn = needMdn; SignMdn = signMdn; @@ -43,21 +46,21 @@ public AS2MdnSettings() { } /// Gets or sets the value indicating whether to send or request a MDN. /// [JsonProperty(PropertyName = "needMdn")] - public bool? NeedMdn { get; set; } + public bool NeedMdn { get; set; } /// /// Gets or sets the value indicating whether the MDN needs to be /// signed or not. /// [JsonProperty(PropertyName = "signMdn")] - public bool? SignMdn { get; set; } + public bool SignMdn { get; set; } /// /// Gets or sets the value indicating whether to send the asynchronous /// MDN. /// [JsonProperty(PropertyName = "sendMdnAsynchronously")] - public bool? SendMdnAsynchronously { get; set; } + public bool SendMdnAsynchronously { get; set; } /// /// Gets or sets the receipt delivery URL. @@ -76,7 +79,7 @@ public AS2MdnSettings() { } /// if optional. /// [JsonProperty(PropertyName = "signOutboundMdnIfOptional")] - public bool? SignOutboundMdnIfOptional { get; set; } + public bool SignOutboundMdnIfOptional { get; set; } /// /// Gets or sets the MDN text. @@ -89,14 +92,24 @@ public AS2MdnSettings() { } /// message box. /// [JsonProperty(PropertyName = "sendInboundMdnToMessageBox")] - public bool? SendInboundMdnToMessageBox { get; set; } + public bool SendInboundMdnToMessageBox { get; set; } /// /// Gets or sets the signing or hashing algorithm. Possible values - /// include: 'NotSpecified', 'None', 'SHA2256', 'SHA2384', 'SHA2512' + /// include: 'NotSpecified', 'None', 'MD5', 'SHA1', 'SHA2256', + /// 'SHA2384', 'SHA2512' /// [JsonProperty(PropertyName = "micHashingAlgorithm")] - public HashingAlgorithm? MicHashingAlgorithm { get; set; } + public HashingAlgorithm MicHashingAlgorithm { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + } } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2MessageConnectionSettings.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2MessageConnectionSettings.cs index 3350206af857..ebc4c19daaee 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2MessageConnectionSettings.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2MessageConnectionSettings.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The AS2 agreement message connection settings. + /// public partial class AS2MessageConnectionSettings { /// @@ -28,7 +31,7 @@ public AS2MessageConnectionSettings() { } /// Initializes a new instance of the AS2MessageConnectionSettings /// class. /// - public AS2MessageConnectionSettings(bool? ignoreCertificateNameMismatch = default(bool?), bool? supportHttpStatusCodeContinue = default(bool?), bool? keepHttpConnectionAlive = default(bool?), bool? unfoldHttpHeaders = default(bool?)) + public AS2MessageConnectionSettings(bool ignoreCertificateNameMismatch, bool supportHttpStatusCodeContinue, bool keepHttpConnectionAlive, bool unfoldHttpHeaders) { IgnoreCertificateNameMismatch = ignoreCertificateNameMismatch; SupportHttpStatusCodeContinue = supportHttpStatusCodeContinue; @@ -41,28 +44,38 @@ public AS2MessageConnectionSettings() { } /// certificate name. /// [JsonProperty(PropertyName = "ignoreCertificateNameMismatch")] - public bool? IgnoreCertificateNameMismatch { get; set; } + public bool IgnoreCertificateNameMismatch { get; set; } /// /// Gets or sets the value indicating whether to support HTTP status /// code 'CONTINUE'. /// [JsonProperty(PropertyName = "supportHttpStatusCodeContinue")] - public bool? SupportHttpStatusCodeContinue { get; set; } + public bool SupportHttpStatusCodeContinue { get; set; } /// /// Gets or sets the value indicating whether to keep the connection /// alive. /// [JsonProperty(PropertyName = "keepHttpConnectionAlive")] - public bool? KeepHttpConnectionAlive { get; set; } + public bool KeepHttpConnectionAlive { get; set; } /// /// Gets or sets the value indicating whether to unfold the HTTP /// headers. /// [JsonProperty(PropertyName = "unfoldHttpHeaders")] - public bool? UnfoldHttpHeaders { get; set; } + public bool UnfoldHttpHeaders { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + //Nothing to validate + } } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2OneWayAgreement.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2OneWayAgreement.cs index 48d1ef3a7755..52b5cec75692 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2OneWayAgreement.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2OneWayAgreement.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The integration account AS2 oneway agreement. + /// public partial class AS2OneWayAgreement { /// @@ -26,7 +29,7 @@ public AS2OneWayAgreement() { } /// /// Initializes a new instance of the AS2OneWayAgreement class. /// - public AS2OneWayAgreement(BusinessIdentity senderBusinessIdentity = default(BusinessIdentity), BusinessIdentity receiverBusinessIdentity = default(BusinessIdentity), AS2ProtocolSettings protocolSettings = default(AS2ProtocolSettings)) + public AS2OneWayAgreement(BusinessIdentity senderBusinessIdentity, BusinessIdentity receiverBusinessIdentity, AS2ProtocolSettings protocolSettings) { SenderBusinessIdentity = senderBusinessIdentity; ReceiverBusinessIdentity = receiverBusinessIdentity; @@ -51,5 +54,38 @@ public AS2OneWayAgreement() { } [JsonProperty(PropertyName = "protocolSettings")] public AS2ProtocolSettings ProtocolSettings { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (SenderBusinessIdentity == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "SenderBusinessIdentity"); + } + if (ReceiverBusinessIdentity == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "ReceiverBusinessIdentity"); + } + if (ProtocolSettings == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "ProtocolSettings"); + } + if (this.SenderBusinessIdentity != null) + { + this.SenderBusinessIdentity.Validate(); + } + if (this.ReceiverBusinessIdentity != null) + { + this.ReceiverBusinessIdentity.Validate(); + } + if (this.ProtocolSettings != null) + { + this.ProtocolSettings.Validate(); + } + } } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2ProtocolSettings.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2ProtocolSettings.cs index ea2d54ee186d..9ea14b506304 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2ProtocolSettings.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2ProtocolSettings.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The AS2 agreement protocol settings. + /// public partial class AS2ProtocolSettings { /// @@ -26,7 +29,7 @@ public AS2ProtocolSettings() { } /// /// Initializes a new instance of the AS2ProtocolSettings class. /// - public AS2ProtocolSettings(AS2MessageConnectionSettings messageConnectionSettings = default(AS2MessageConnectionSettings), AS2AcknowledgementConnectionSettings acknowledgementConnectionSettings = default(AS2AcknowledgementConnectionSettings), AS2MdnSettings mdnSettings = default(AS2MdnSettings), AS2SecuritySettings securitySettings = default(AS2SecuritySettings), AS2ValidationSettings validationSettings = default(AS2ValidationSettings), AS2EnvelopeSettings envelopeSettings = default(AS2EnvelopeSettings), AS2ErrorSettings errorSettings = default(AS2ErrorSettings)) + public AS2ProtocolSettings(AS2MessageConnectionSettings messageConnectionSettings, AS2AcknowledgementConnectionSettings acknowledgementConnectionSettings, AS2MdnSettings mdnSettings, AS2SecuritySettings securitySettings, AS2ValidationSettings validationSettings, AS2EnvelopeSettings envelopeSettings, AS2ErrorSettings errorSettings) { MessageConnectionSettings = messageConnectionSettings; AcknowledgementConnectionSettings = acknowledgementConnectionSettings; @@ -79,5 +82,70 @@ public AS2ProtocolSettings() { } [JsonProperty(PropertyName = "errorSettings")] public AS2ErrorSettings ErrorSettings { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (MessageConnectionSettings == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "MessageConnectionSettings"); + } + if (AcknowledgementConnectionSettings == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "AcknowledgementConnectionSettings"); + } + if (MdnSettings == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "MdnSettings"); + } + if (SecuritySettings == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "SecuritySettings"); + } + if (ValidationSettings == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "ValidationSettings"); + } + if (EnvelopeSettings == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "EnvelopeSettings"); + } + if (ErrorSettings == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "ErrorSettings"); + } + if (this.MessageConnectionSettings != null) + { + this.MessageConnectionSettings.Validate(); + } + if (this.AcknowledgementConnectionSettings != null) + { + this.AcknowledgementConnectionSettings.Validate(); + } + if (this.MdnSettings != null) + { + this.MdnSettings.Validate(); + } + if (this.SecuritySettings != null) + { + this.SecuritySettings.Validate(); + } + if (this.ValidationSettings != null) + { + this.ValidationSettings.Validate(); + } + if (this.EnvelopeSettings != null) + { + this.EnvelopeSettings.Validate(); + } + if (this.ErrorSettings != null) + { + this.ErrorSettings.Validate(); + } + } } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2SecuritySettings.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2SecuritySettings.cs index 0a2d1f0b9f63..5ba22d621d33 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2SecuritySettings.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2SecuritySettings.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The AS2 agreement security settings. + /// public partial class AS2SecuritySettings { /// @@ -26,7 +29,7 @@ public AS2SecuritySettings() { } /// /// Initializes a new instance of the AS2SecuritySettings class. /// - public AS2SecuritySettings(bool? overrideGroupSigningCertificate = default(bool?), string signingCertificateName = default(string), string encryptionCertificateName = default(string), bool? enableNrrForInboundEncodedMessages = default(bool?), bool? enableNrrForInboundDecodedMessages = default(bool?), bool? enableNrrForOutboundMdn = default(bool?), bool? enableNrrForOutboundEncodedMessages = default(bool?), bool? enableNrrForOutboundDecodedMessages = default(bool?), bool? enableNrrForInboundMdn = default(bool?)) + public AS2SecuritySettings(bool overrideGroupSigningCertificate, bool enableNrrForInboundEncodedMessages, bool enableNrrForInboundDecodedMessages, bool enableNrrForOutboundMdn, bool enableNrrForOutboundEncodedMessages, bool enableNrrForOutboundDecodedMessages, bool enableNrrForInboundMdn, string signingCertificateName = default(string), string encryptionCertificateName = default(string)) { OverrideGroupSigningCertificate = overrideGroupSigningCertificate; SigningCertificateName = signingCertificateName; @@ -43,7 +46,7 @@ public AS2SecuritySettings() { } /// Gets or sets the value indicating whether to send or request a MDN. /// [JsonProperty(PropertyName = "overrideGroupSigningCertificate")] - public bool? OverrideGroupSigningCertificate { get; set; } + public bool OverrideGroupSigningCertificate { get; set; } /// /// Gets or sets the name of the signing certificate. @@ -62,42 +65,52 @@ public AS2SecuritySettings() { } /// inbound encoded messages. /// [JsonProperty(PropertyName = "enableNrrForInboundEncodedMessages")] - public bool? EnableNrrForInboundEncodedMessages { get; set; } + public bool EnableNrrForInboundEncodedMessages { get; set; } /// /// Gets or sets the value indicating whether to enable NRR for /// inbound decoded messages. /// [JsonProperty(PropertyName = "enableNrrForInboundDecodedMessages")] - public bool? EnableNrrForInboundDecodedMessages { get; set; } + public bool EnableNrrForInboundDecodedMessages { get; set; } /// /// Gets or sets the value indicating whether to enable NRR for /// outbound MDN. /// [JsonProperty(PropertyName = "enableNrrForOutboundMdn")] - public bool? EnableNrrForOutboundMdn { get; set; } + public bool EnableNrrForOutboundMdn { get; set; } /// /// Gets or sets the value indicating whether to enable NRR for /// outbound encoded messages. /// [JsonProperty(PropertyName = "enableNrrForOutboundEncodedMessages")] - public bool? EnableNrrForOutboundEncodedMessages { get; set; } + public bool EnableNrrForOutboundEncodedMessages { get; set; } /// /// Gets or sets the value indicating whether to enable NRR for /// outbound decoded messages. /// [JsonProperty(PropertyName = "enableNrrForOutboundDecodedMessages")] - public bool? EnableNrrForOutboundDecodedMessages { get; set; } + public bool EnableNrrForOutboundDecodedMessages { get; set; } /// /// Gets or sets the value indicating whether to enable NRR for /// inbound MDN. /// [JsonProperty(PropertyName = "enableNrrForInboundMdn")] - public bool? EnableNrrForInboundMdn { get; set; } + public bool EnableNrrForInboundMdn { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + //Nothing to validate + } } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2ValidationSettings.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2ValidationSettings.cs index 300b58ac4202..4634d6307931 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2ValidationSettings.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AS2ValidationSettings.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The AS2 agreement validation settings. + /// public partial class AS2ValidationSettings { /// @@ -26,7 +29,7 @@ public AS2ValidationSettings() { } /// /// Initializes a new instance of the AS2ValidationSettings class. /// - public AS2ValidationSettings(bool? overrideMessageProperties = default(bool?), bool? encryptMessage = default(bool?), bool? signMessage = default(bool?), bool? compressMessage = default(bool?), bool? checkDuplicateMessage = default(bool?), int? interchangeDuplicatesValidityDays = default(int?), bool? checkCertificateRevocationListOnSend = default(bool?), bool? checkCertificateRevocationListOnReceive = default(bool?), EncryptionAlgorithm? encryptionAlgorithm = default(EncryptionAlgorithm?)) + public AS2ValidationSettings(bool overrideMessageProperties, bool encryptMessage, bool signMessage, bool compressMessage, bool checkDuplicateMessage, int interchangeDuplicatesValidityDays, bool checkCertificateRevocationListOnSend, bool checkCertificateRevocationListOnReceive, EncryptionAlgorithm encryptionAlgorithm) { OverrideMessageProperties = overrideMessageProperties; EncryptMessage = encryptMessage; @@ -44,56 +47,56 @@ public AS2ValidationSettings() { } /// message properties with those in agreement. /// [JsonProperty(PropertyName = "overrideMessageProperties")] - public bool? OverrideMessageProperties { get; set; } + public bool OverrideMessageProperties { get; set; } /// /// Gets or sets the value indicating whether the message has to be /// encrypted. /// [JsonProperty(PropertyName = "encryptMessage")] - public bool? EncryptMessage { get; set; } + public bool EncryptMessage { get; set; } /// /// Gets or sets the value indicating whether the message has to be /// signed. /// [JsonProperty(PropertyName = "signMessage")] - public bool? SignMessage { get; set; } + public bool SignMessage { get; set; } /// /// Gets or sets the value indicating whether the message has to be /// compressed. /// [JsonProperty(PropertyName = "compressMessage")] - public bool? CompressMessage { get; set; } + public bool CompressMessage { get; set; } /// /// Gets or sets the value indicating whether to check for duplicate /// message. /// [JsonProperty(PropertyName = "checkDuplicateMessage")] - public bool? CheckDuplicateMessage { get; set; } + public bool CheckDuplicateMessage { get; set; } /// /// Gets or sets the number of days to look back for duplicate /// interchange. /// [JsonProperty(PropertyName = "interchangeDuplicatesValidityDays")] - public int? InterchangeDuplicatesValidityDays { get; set; } + public int InterchangeDuplicatesValidityDays { get; set; } /// /// Gets or sets the value indicating whether to check for certificate /// revocation list on send. /// [JsonProperty(PropertyName = "checkCertificateRevocationListOnSend")] - public bool? CheckCertificateRevocationListOnSend { get; set; } + public bool CheckCertificateRevocationListOnSend { get; set; } /// /// Gets or sets the value indicating whether to check for certificate /// revocation list on receive. /// [JsonProperty(PropertyName = "checkCertificateRevocationListOnReceive")] - public bool? CheckCertificateRevocationListOnReceive { get; set; } + public bool CheckCertificateRevocationListOnReceive { get; set; } /// /// Gets or sets the encryption algorithm. Possible values include: @@ -101,7 +104,16 @@ public AS2ValidationSettings() { } /// 'AES256' /// [JsonProperty(PropertyName = "encryptionAlgorithm")] - public EncryptionAlgorithm? EncryptionAlgorithm { get; set; } + public EncryptionAlgorithm EncryptionAlgorithm { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + } } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AgreementContent.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AgreementContent.cs index 2d17e2bc0584..20df922816c4 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AgreementContent.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/AgreementContent.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The integration account agreement content. + /// public partial class AgreementContent { /// @@ -51,5 +54,26 @@ public AgreementContent() { } [JsonProperty(PropertyName = "Edifact")] public EdifactAgreementContent Edifact { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (this.AS2 != null) + { + this.AS2.Validate(); + } + if (this.X12 != null) + { + this.X12.Validate(); + } + if (this.Edifact != null) + { + this.Edifact.Validate(); + } + } } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/B2BPartnerContent.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/B2BPartnerContent.cs index cc41cec29263..d8a03ca36892 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/B2BPartnerContent.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/B2BPartnerContent.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The B2B partner content. + /// public partial class B2BPartnerContent { /// diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/BusinessIdentity.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/BusinessIdentity.cs index 08dd46603f06..9b2f22820fb6 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/BusinessIdentity.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/BusinessIdentity.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The integration account partner's business identity. + /// public partial class BusinessIdentity { /// @@ -26,23 +29,41 @@ public BusinessIdentity() { } /// /// Initializes a new instance of the BusinessIdentity class. /// - public BusinessIdentity(string qualifier = default(string), string value = default(string)) + public BusinessIdentity(string qualifier, string value) { Qualifier = qualifier; Value = value; } /// - /// Gets or sets the business identity qualifier. + /// Gets or sets the business identity qualifier e.g. as2identity, ZZ, + /// ZZZ, 31, 32 /// - [JsonProperty(PropertyName = "Qualifier")] + [JsonProperty(PropertyName = "qualifier")] public string Qualifier { get; set; } /// - /// Gets or sets the business identity value. + /// Gets or sets the user defined business identity value. /// - [JsonProperty(PropertyName = "Value")] + [JsonProperty(PropertyName = "value")] public string Value { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Qualifier == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Qualifier"); + } + if (Value == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Value"); + } + } } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/CallbackUrl.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/CallbackUrl.cs index 2697c31432cc..65ed1f30e3f9 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/CallbackUrl.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/CallbackUrl.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The callback url. + /// public partial class CallbackUrl { /// diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/ContentHash.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/ContentHash.cs index e851f3483da0..8ac45ef7039b 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/ContentHash.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/ContentHash.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The content hash. + /// public partial class ContentHash { /// @@ -33,13 +36,13 @@ public ContentHash() { } } /// - /// Gets or sets gets or sets the algorithm. + /// Gets or sets the algorithm of the content hash. /// [JsonProperty(PropertyName = "algorithm")] public string Algorithm { get; set; } /// - /// Gets or sets gets or sets the value. + /// Gets or sets the value of the content hash. /// [JsonProperty(PropertyName = "value")] public string Value { get; set; } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/ContentLink.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/ContentLink.cs index 6d4eb2099d09..7fc77551a851 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/ContentLink.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/ContentLink.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The content link. + /// public partial class ContentLink { /// @@ -36,31 +39,31 @@ public ContentLink() { } } /// - /// Gets or sets gets or sets the content link URI. + /// Gets or sets the content link URI. /// [JsonProperty(PropertyName = "uri")] public string Uri { get; set; } /// - /// Gets or sets gets or sets the content version. + /// Gets or sets the content version. /// [JsonProperty(PropertyName = "contentVersion")] public string ContentVersion { get; set; } /// - /// Gets or sets gets or sets the content size. + /// Gets or sets the content size. /// [JsonProperty(PropertyName = "contentSize")] public long? ContentSize { get; set; } /// - /// Gets or sets gets or sets the content hash. + /// Gets or sets the content hash. /// [JsonProperty(PropertyName = "contentHash")] public ContentHash ContentHash { get; set; } /// - /// Gets or sets gets or sets the metadata. + /// Gets or sets the metadata. /// [JsonProperty(PropertyName = "metadata")] public object Metadata { get; set; } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/Correlation.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/Correlation.cs index b9fe343ae00c..41fb12929eed 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/Correlation.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/Correlation.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The correlation property. + /// public partial class Correlation { /// @@ -32,7 +35,7 @@ public Correlation() { } } /// - /// Gets or sets gets or sets the client tracking id. + /// Gets or sets the client tracking id. /// [JsonProperty(PropertyName = "clientTrackingId")] public string ClientTrackingId { get; set; } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactAcknowledgementSettings.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactAcknowledgementSettings.cs index 42c372c32227..8a64985eef4d 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactAcknowledgementSettings.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactAcknowledgementSettings.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The Edifact agreement acknowledgement settings. + /// public partial class EdifactAcknowledgementSettings { /// @@ -28,7 +31,7 @@ public EdifactAcknowledgementSettings() { } /// Initializes a new instance of the EdifactAcknowledgementSettings /// class. /// - public EdifactAcknowledgementSettings(bool? needTechnicalAcknowledgement = default(bool?), bool? batchTechnicalAcknowledgements = default(bool?), bool? needFunctionalAcknowledgement = default(bool?), bool? batchFunctionalAcknowledgements = default(bool?), bool? needLoopForValidMessages = default(bool?), bool? sendSynchronousAcknowledgement = default(bool?), string acknowledgementControlNumberPrefix = default(string), string acknowledgementControlNumberSuffix = default(string), int? acknowledgementControlNumberLowerBound = default(int?), int? acknowledgementControlNumberUpperBound = default(int?), bool? rolloverAcknowledgementControlNumber = default(bool?)) + public EdifactAcknowledgementSettings(bool needTechnicalAcknowledgement, bool batchTechnicalAcknowledgements, bool needFunctionalAcknowledgement, bool batchFunctionalAcknowledgements, bool needLoopForValidMessages, bool sendSynchronousAcknowledgement, int acknowledgementControlNumberLowerBound, int acknowledgementControlNumberUpperBound, bool rolloverAcknowledgementControlNumber, string acknowledgementControlNumberPrefix = default(string), string acknowledgementControlNumberSuffix = default(string)) { NeedTechnicalAcknowledgement = needTechnicalAcknowledgement; BatchTechnicalAcknowledgements = batchTechnicalAcknowledgements; @@ -48,42 +51,42 @@ public EdifactAcknowledgementSettings() { } /// acknowledgement is needed. /// [JsonProperty(PropertyName = "needTechnicalAcknowledgement")] - public bool? NeedTechnicalAcknowledgement { get; set; } + public bool NeedTechnicalAcknowledgement { get; set; } /// /// Gets or sets the value indicating whether to batch the technical /// acknowledgements. /// [JsonProperty(PropertyName = "batchTechnicalAcknowledgements")] - public bool? BatchTechnicalAcknowledgements { get; set; } + public bool BatchTechnicalAcknowledgements { get; set; } /// /// Gets or sets the value indicating whether functional /// acknowledgement is needed. /// [JsonProperty(PropertyName = "needFunctionalAcknowledgement")] - public bool? NeedFunctionalAcknowledgement { get; set; } + public bool NeedFunctionalAcknowledgement { get; set; } /// /// Gets or sets the value indicating whether to batch functional /// acknowledgements. /// [JsonProperty(PropertyName = "batchFunctionalAcknowledgements")] - public bool? BatchFunctionalAcknowledgements { get; set; } + public bool BatchFunctionalAcknowledgements { get; set; } /// /// Gets or sets the value indicating whether a loop is needed for /// valid messages. /// [JsonProperty(PropertyName = "needLoopForValidMessages")] - public bool? NeedLoopForValidMessages { get; set; } + public bool NeedLoopForValidMessages { get; set; } /// /// Gets or sets the value indicating whether to send synchronous /// acknowledgement. /// [JsonProperty(PropertyName = "sendSynchronousAcknowledgement")] - public bool? SendSynchronousAcknowledgement { get; set; } + public bool SendSynchronousAcknowledgement { get; set; } /// /// Gets or sets the acknowledgement control number prefix. @@ -101,20 +104,30 @@ public EdifactAcknowledgementSettings() { } /// Gets or sets the acknowledgement control number lower bound. /// [JsonProperty(PropertyName = "acknowledgementControlNumberLowerBound")] - public int? AcknowledgementControlNumberLowerBound { get; set; } + public int AcknowledgementControlNumberLowerBound { get; set; } /// /// Gets or sets the acknowledgement control number upper bound. /// [JsonProperty(PropertyName = "acknowledgementControlNumberUpperBound")] - public int? AcknowledgementControlNumberUpperBound { get; set; } + public int AcknowledgementControlNumberUpperBound { get; set; } /// /// Gets or sets the value indicating whether to rollover /// acknowledgement control number. /// [JsonProperty(PropertyName = "rolloverAcknowledgementControlNumber")] - public bool? RolloverAcknowledgementControlNumber { get; set; } + public bool RolloverAcknowledgementControlNumber { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + //Nothing to validate + } } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactAgreementContent.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactAgreementContent.cs index e5299d670c09..9a1b8f95df65 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactAgreementContent.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactAgreementContent.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The Edifact agreement content. + /// public partial class EdifactAgreementContent { /// @@ -26,7 +29,7 @@ public EdifactAgreementContent() { } /// /// Initializes a new instance of the EdifactAgreementContent class. /// - public EdifactAgreementContent(EdifactOneWayAgreement receiveAgreement = default(EdifactOneWayAgreement), EdifactOneWayAgreement sendAgreement = default(EdifactOneWayAgreement)) + public EdifactAgreementContent(EdifactOneWayAgreement receiveAgreement, EdifactOneWayAgreement sendAgreement) { ReceiveAgreement = receiveAgreement; SendAgreement = sendAgreement; @@ -44,5 +47,30 @@ public EdifactAgreementContent() { } [JsonProperty(PropertyName = "sendAgreement")] public EdifactOneWayAgreement SendAgreement { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (ReceiveAgreement == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "ReceiveAgreement"); + } + if (SendAgreement == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "SendAgreement"); + } + if (this.ReceiveAgreement != null) + { + this.ReceiveAgreement.Validate(); + } + if (this.SendAgreement != null) + { + this.SendAgreement.Validate(); + } + } } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactDelimiterOverride.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactDelimiterOverride.cs index 116260fe81b8..de9c0fc4c16c 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactDelimiterOverride.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactDelimiterOverride.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The Edifact delimiter override settings. + /// public partial class EdifactDelimiterOverride { /// @@ -26,7 +29,7 @@ public EdifactDelimiterOverride() { } /// /// Initializes a new instance of the EdifactDelimiterOverride class. /// - public EdifactDelimiterOverride(string messageId = default(string), string messageVersion = default(string), string messageRelease = default(string), int? dataElementSeparator = default(int?), int? componentSeparator = default(int?), int? segmentTerminator = default(int?), int? repetitionSeparator = default(int?), SegmentTerminatorSuffix? segmentTerminatorSuffix = default(SegmentTerminatorSuffix?), EdifactDecimalIndicator? decimalPointIndicator = default(EdifactDecimalIndicator?), int? releaseIndicator = default(int?), string messageAssociationAssignedCode = default(string), string targetNamespace = default(string)) + public EdifactDelimiterOverride(int dataElementSeparator, int componentSeparator, int segmentTerminator, int repetitionSeparator, SegmentTerminatorSuffix segmentTerminatorSuffix, EdifactDecimalIndicator decimalPointIndicator, int releaseIndicator, string messageId = default(string), string messageVersion = default(string), string messageRelease = default(string), string messageAssociationAssignedCode = default(string), string targetNamespace = default(string)) { MessageId = messageId; MessageVersion = messageVersion; @@ -64,45 +67,45 @@ public EdifactDelimiterOverride() { } /// Gets or sets the data element separator. /// [JsonProperty(PropertyName = "dataElementSeparator")] - public int? DataElementSeparator { get; set; } + public int DataElementSeparator { get; set; } /// /// Gets or sets the component separator. /// [JsonProperty(PropertyName = "componentSeparator")] - public int? ComponentSeparator { get; set; } + public int ComponentSeparator { get; set; } /// /// Gets or sets the segment terminator. /// [JsonProperty(PropertyName = "segmentTerminator")] - public int? SegmentTerminator { get; set; } + public int SegmentTerminator { get; set; } /// /// Gets or sets the repetition separator. /// [JsonProperty(PropertyName = "repetitionSeparator")] - public int? RepetitionSeparator { get; set; } + public int RepetitionSeparator { get; set; } /// /// Gets or sets the segment terminator suffix. Possible values /// include: 'NotSpecified', 'None', 'CR', 'LF', 'CRLF' /// [JsonProperty(PropertyName = "segmentTerminatorSuffix")] - public SegmentTerminatorSuffix? SegmentTerminatorSuffix { get; set; } + public SegmentTerminatorSuffix SegmentTerminatorSuffix { get; set; } /// /// Gets or sets the decimal point indicator. Possible values include: /// 'NotSpecified', 'Comma', 'Decimal' /// [JsonProperty(PropertyName = "decimalPointIndicator")] - public EdifactDecimalIndicator? DecimalPointIndicator { get; set; } + public EdifactDecimalIndicator DecimalPointIndicator { get; set; } /// /// Gets or sets the release indicator. /// [JsonProperty(PropertyName = "releaseIndicator")] - public int? ReleaseIndicator { get; set; } + public int ReleaseIndicator { get; set; } /// /// Gets or sets the message association assigned code. @@ -117,5 +120,14 @@ public EdifactDelimiterOverride() { } [JsonProperty(PropertyName = "targetNamespace")] public string TargetNamespace { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + } } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactEnvelopeOverride.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactEnvelopeOverride.cs index e81ae3d11dd6..6aa220c5e9de 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactEnvelopeOverride.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactEnvelopeOverride.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The Edifact enevlope override settings. + /// public partial class EdifactEnvelopeOverride { /// diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactEnvelopeSettings.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactEnvelopeSettings.cs index 0e7b8fb7a3d5..4a4cde796321 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactEnvelopeSettings.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactEnvelopeSettings.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The Edifact agreement envelope settings. + /// public partial class EdifactEnvelopeSettings { /// @@ -26,7 +29,7 @@ public EdifactEnvelopeSettings() { } /// /// Initializes a new instance of the EdifactEnvelopeSettings class. /// - public EdifactEnvelopeSettings(string groupAssociationAssignedCode = default(string), string communicationAgreementId = default(string), bool? applyDelimiterStringAdvice = default(bool?), bool? createGroupingSegments = default(bool?), bool? enableDefaultGroupHeaders = default(bool?), string recipientReferencePasswordValue = default(string), string recipientReferencePasswordQualifier = default(string), string applicationReferenceId = default(string), string processingPriorityCode = default(string), long? interchangeControlNumberLowerBound = default(long?), long? interchangeControlNumberUpperBound = default(long?), bool? rolloverInterchangeControlNumber = default(bool?), string interchangeControlNumberPrefix = default(string), string interchangeControlNumberSuffix = default(string), string senderReverseRoutingAddress = default(string), string receiverReverseRoutingAddress = default(string), string functionalGroupId = default(string), string groupControllingAgencyCode = default(string), string groupMessageVersion = default(string), string groupMessageRelease = default(string), long? groupControlNumberLowerBound = default(long?), long? groupControlNumberUpperBound = default(long?), bool? rolloverGroupControlNumber = default(bool?), string groupControlNumberPrefix = default(string), string groupControlNumberSuffix = default(string), string groupApplicationReceiverQualifier = default(string), string groupApplicationReceiverId = default(string), string groupApplicationSenderQualifier = default(string), string groupApplicationSenderId = default(string), string groupApplicationPassword = default(string), bool? overwriteExistingTransactionSetControlNumber = default(bool?), string transactionSetControlNumberPrefix = default(string), string transactionSetControlNumberSuffix = default(string), long? transactionSetControlNumberLowerBound = default(long?), long? transactionSetControlNumberUpperBound = default(long?), bool? rolloverTransactionSetControlNumber = default(bool?), bool? isTestInterchange = default(bool?), string senderInternalIdentification = default(string), string senderInternalSubIdentification = default(string), string receiverInternalIdentification = default(string), string receiverInternalSubIdentification = default(string)) + public EdifactEnvelopeSettings(bool applyDelimiterStringAdvice, bool createGroupingSegments, bool enableDefaultGroupHeaders, long interchangeControlNumberLowerBound, long interchangeControlNumberUpperBound, bool rolloverInterchangeControlNumber, long groupControlNumberLowerBound, long groupControlNumberUpperBound, bool rolloverGroupControlNumber, bool overwriteExistingTransactionSetControlNumber, long transactionSetControlNumberLowerBound, long transactionSetControlNumberUpperBound, bool rolloverTransactionSetControlNumber, bool isTestInterchange, string groupAssociationAssignedCode = default(string), string communicationAgreementId = default(string), string recipientReferencePasswordValue = default(string), string recipientReferencePasswordQualifier = default(string), string applicationReferenceId = default(string), string processingPriorityCode = default(string), string interchangeControlNumberPrefix = default(string), string interchangeControlNumberSuffix = default(string), string senderReverseRoutingAddress = default(string), string receiverReverseRoutingAddress = default(string), string functionalGroupId = default(string), string groupControllingAgencyCode = default(string), string groupMessageVersion = default(string), string groupMessageRelease = default(string), string groupControlNumberPrefix = default(string), string groupControlNumberSuffix = default(string), string groupApplicationReceiverQualifier = default(string), string groupApplicationReceiverId = default(string), string groupApplicationSenderQualifier = default(string), string groupApplicationSenderId = default(string), string groupApplicationPassword = default(string), string transactionSetControlNumberPrefix = default(string), string transactionSetControlNumberSuffix = default(string), string senderInternalIdentification = default(string), string senderInternalSubIdentification = default(string), string receiverInternalIdentification = default(string), string receiverInternalSubIdentification = default(string)) { GroupAssociationAssignedCode = groupAssociationAssignedCode; CommunicationAgreementId = communicationAgreementId; @@ -88,21 +91,21 @@ public EdifactEnvelopeSettings() { } /// string advice. /// [JsonProperty(PropertyName = "applyDelimiterStringAdvice")] - public bool? ApplyDelimiterStringAdvice { get; set; } + public bool ApplyDelimiterStringAdvice { get; set; } /// /// Gets or sets the value indicating whether to create grouping /// segments. /// [JsonProperty(PropertyName = "createGroupingSegments")] - public bool? CreateGroupingSegments { get; set; } + public bool CreateGroupingSegments { get; set; } /// /// Gets or sets the value indicating whether to enable default group /// headers. /// [JsonProperty(PropertyName = "enableDefaultGroupHeaders")] - public bool? EnableDefaultGroupHeaders { get; set; } + public bool EnableDefaultGroupHeaders { get; set; } /// /// Gets or sets the recipient reference password value. @@ -132,20 +135,20 @@ public EdifactEnvelopeSettings() { } /// Gets or sets the interchange control number lower bound. /// [JsonProperty(PropertyName = "interchangeControlNumberLowerBound")] - public long? InterchangeControlNumberLowerBound { get; set; } + public long InterchangeControlNumberLowerBound { get; set; } /// /// Gets or sets the interchange control number upper bound. /// [JsonProperty(PropertyName = "interchangeControlNumberUpperBound")] - public long? InterchangeControlNumberUpperBound { get; set; } + public long InterchangeControlNumberUpperBound { get; set; } /// /// Gets or sets the value indicating whether to rollover interchange /// control number. /// [JsonProperty(PropertyName = "rolloverInterchangeControlNumber")] - public bool? RolloverInterchangeControlNumber { get; set; } + public bool RolloverInterchangeControlNumber { get; set; } /// /// Gets or sets the interchange control number prefix. @@ -199,20 +202,20 @@ public EdifactEnvelopeSettings() { } /// Gets or sets the group control number lower bound. /// [JsonProperty(PropertyName = "groupControlNumberLowerBound")] - public long? GroupControlNumberLowerBound { get; set; } + public long GroupControlNumberLowerBound { get; set; } /// /// Gets or sets the group control number upper bound. /// [JsonProperty(PropertyName = "groupControlNumberUpperBound")] - public long? GroupControlNumberUpperBound { get; set; } + public long GroupControlNumberUpperBound { get; set; } /// /// Gets or sets the value indicating whether to rollover group /// control number. /// [JsonProperty(PropertyName = "rolloverGroupControlNumber")] - public bool? RolloverGroupControlNumber { get; set; } + public bool RolloverGroupControlNumber { get; set; } /// /// Gets or sets the group control number prefix. @@ -261,7 +264,7 @@ public EdifactEnvelopeSettings() { } /// transaction set control number. /// [JsonProperty(PropertyName = "overwriteExistingTransactionSetControlNumber")] - public bool? OverwriteExistingTransactionSetControlNumber { get; set; } + public bool OverwriteExistingTransactionSetControlNumber { get; set; } /// /// Gets or sets the transaction set control number prefix. @@ -279,27 +282,27 @@ public EdifactEnvelopeSettings() { } /// Gets or sets the transaction set control number lower bound. /// [JsonProperty(PropertyName = "transactionSetControlNumberLowerBound")] - public long? TransactionSetControlNumberLowerBound { get; set; } + public long TransactionSetControlNumberLowerBound { get; set; } /// /// Gets or sets the transaction set control number upper bound. /// [JsonProperty(PropertyName = "transactionSetControlNumberUpperBound")] - public long? TransactionSetControlNumberUpperBound { get; set; } + public long TransactionSetControlNumberUpperBound { get; set; } /// /// Gets or sets the value indicating whether to rollover transaction /// set control number. /// [JsonProperty(PropertyName = "rolloverTransactionSetControlNumber")] - public bool? RolloverTransactionSetControlNumber { get; set; } + public bool RolloverTransactionSetControlNumber { get; set; } /// /// Gets or sets the value indicating whether the message is a test /// interchange. /// [JsonProperty(PropertyName = "isTestInterchange")] - public bool? IsTestInterchange { get; set; } + public bool IsTestInterchange { get; set; } /// /// Gets or sets the sender internal identification. @@ -325,5 +328,15 @@ public EdifactEnvelopeSettings() { } [JsonProperty(PropertyName = "receiverInternalSubIdentification")] public string ReceiverInternalSubIdentification { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + //Nothing to validate + } } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactFramingSettings.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactFramingSettings.cs index 6a0468756ee8..8f2d9278bb9e 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactFramingSettings.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactFramingSettings.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The Edifact agreement framing settings. + /// public partial class EdifactFramingSettings { /// @@ -26,7 +29,7 @@ public EdifactFramingSettings() { } /// /// Initializes a new instance of the EdifactFramingSettings class. /// - public EdifactFramingSettings(string serviceCodeListDirectoryVersion = default(string), string characterEncoding = default(string), int? protocolVersion = default(int?), int? dataElementSeparator = default(int?), int? componentSeparator = default(int?), int? segmentTerminator = default(int?), int? releaseIndicator = default(int?), int? repetitionSeparator = default(int?), EdifactCharacterSet? characterSet = default(EdifactCharacterSet?), EdifactDecimalIndicator? decimalPointIndicator = default(EdifactDecimalIndicator?), SegmentTerminatorSuffix? segmentTerminatorSuffix = default(SegmentTerminatorSuffix?)) + public EdifactFramingSettings(int protocolVersion, int dataElementSeparator, int componentSeparator, int segmentTerminator, int releaseIndicator, int repetitionSeparator, EdifactCharacterSet characterSet, EdifactDecimalIndicator decimalPointIndicator, SegmentTerminatorSuffix segmentTerminatorSuffix, string serviceCodeListDirectoryVersion = default(string), string characterEncoding = default(string)) { ServiceCodeListDirectoryVersion = serviceCodeListDirectoryVersion; CharacterEncoding = characterEncoding; @@ -57,37 +60,37 @@ public EdifactFramingSettings() { } /// Gets or sets the protocol version. /// [JsonProperty(PropertyName = "protocolVersion")] - public int? ProtocolVersion { get; set; } + public int ProtocolVersion { get; set; } /// /// Gets or sets the data element separator. /// [JsonProperty(PropertyName = "dataElementSeparator")] - public int? DataElementSeparator { get; set; } + public int DataElementSeparator { get; set; } /// /// Gets or sets the component separator. /// [JsonProperty(PropertyName = "componentSeparator")] - public int? ComponentSeparator { get; set; } + public int ComponentSeparator { get; set; } /// /// Gets or sets the segment terminator. /// [JsonProperty(PropertyName = "segmentTerminator")] - public int? SegmentTerminator { get; set; } + public int SegmentTerminator { get; set; } /// /// Gets or sets the release indicator. /// [JsonProperty(PropertyName = "releaseIndicator")] - public int? ReleaseIndicator { get; set; } + public int ReleaseIndicator { get; set; } /// /// Gets or sets the repetition separator. /// [JsonProperty(PropertyName = "repetitionSeparator")] - public int? RepetitionSeparator { get; set; } + public int RepetitionSeparator { get; set; } /// /// Gets or sets the EDIFACT frame setting characterSet. Possible @@ -96,14 +99,14 @@ public EdifactFramingSettings() { } /// 'UNOY', 'KECA' /// [JsonProperty(PropertyName = "characterSet")] - public EdifactCharacterSet? CharacterSet { get; set; } + public EdifactCharacterSet CharacterSet { get; set; } /// /// Gets or sets the EDIFACT frame setting decimal indicator. Possible /// values include: 'NotSpecified', 'Comma', 'Decimal' /// [JsonProperty(PropertyName = "decimalPointIndicator")] - public EdifactDecimalIndicator? DecimalPointIndicator { get; set; } + public EdifactDecimalIndicator DecimalPointIndicator { get; set; } /// /// Gets or sets the EDIFACT frame setting segment terminator suffix. @@ -111,7 +114,16 @@ public EdifactFramingSettings() { } /// 'CRLF' /// [JsonProperty(PropertyName = "segmentTerminatorSuffix")] - public SegmentTerminatorSuffix? SegmentTerminatorSuffix { get; set; } + public SegmentTerminatorSuffix SegmentTerminatorSuffix { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + } } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactMessageFilter.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactMessageFilter.cs index 86df9900f98f..eaa9796b8b1a 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactMessageFilter.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactMessageFilter.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The Edifact message filter for odata query. + /// public partial class EdifactMessageFilter { /// @@ -26,7 +29,7 @@ public EdifactMessageFilter() { } /// /// Initializes a new instance of the EdifactMessageFilter class. /// - public EdifactMessageFilter(MessageFilterType? messageFilterType = default(MessageFilterType?)) + public EdifactMessageFilter(MessageFilterType messageFilterType) { MessageFilterType = messageFilterType; } @@ -36,7 +39,16 @@ public EdifactMessageFilter() { } /// 'NotSpecified', 'Include', 'Exclude' /// [JsonProperty(PropertyName = "messageFilterType")] - public MessageFilterType? MessageFilterType { get; set; } + public MessageFilterType MessageFilterType { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + } } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactMessageIdentifier.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactMessageIdentifier.cs index a45d125e4365..4b33b76c2404 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactMessageIdentifier.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactMessageIdentifier.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The Edifact message identifier. + /// public partial class EdifactMessageIdentifier { /// @@ -26,7 +29,7 @@ public EdifactMessageIdentifier() { } /// /// Initializes a new instance of the EdifactMessageIdentifier class. /// - public EdifactMessageIdentifier(string messageId = default(string)) + public EdifactMessageIdentifier(string messageId) { MessageId = messageId; } @@ -38,5 +41,18 @@ public EdifactMessageIdentifier() { } [JsonProperty(PropertyName = "messageId")] public string MessageId { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (MessageId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "MessageId"); + } + } } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactOneWayAgreement.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactOneWayAgreement.cs index 561214d1dc63..4e386fb17288 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactOneWayAgreement.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactOneWayAgreement.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The Edifact one way agreement. + /// public partial class EdifactOneWayAgreement { /// @@ -26,7 +29,7 @@ public EdifactOneWayAgreement() { } /// /// Initializes a new instance of the EdifactOneWayAgreement class. /// - public EdifactOneWayAgreement(BusinessIdentity senderBusinessIdentity = default(BusinessIdentity), BusinessIdentity receiverBusinessIdentity = default(BusinessIdentity), EdifactProtocolSettings protocolSettings = default(EdifactProtocolSettings)) + public EdifactOneWayAgreement(BusinessIdentity senderBusinessIdentity, BusinessIdentity receiverBusinessIdentity, EdifactProtocolSettings protocolSettings) { SenderBusinessIdentity = senderBusinessIdentity; ReceiverBusinessIdentity = receiverBusinessIdentity; @@ -51,5 +54,38 @@ public EdifactOneWayAgreement() { } [JsonProperty(PropertyName = "protocolSettings")] public EdifactProtocolSettings ProtocolSettings { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (SenderBusinessIdentity == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "SenderBusinessIdentity"); + } + if (ReceiverBusinessIdentity == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "ReceiverBusinessIdentity"); + } + if (ProtocolSettings == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "ProtocolSettings"); + } + if (this.SenderBusinessIdentity != null) + { + this.SenderBusinessIdentity.Validate(); + } + if (this.ReceiverBusinessIdentity != null) + { + this.ReceiverBusinessIdentity.Validate(); + } + if (this.ProtocolSettings != null) + { + this.ProtocolSettings.Validate(); + } + } } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactProcessingSettings.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactProcessingSettings.cs index a69bf36c0032..923f3203edb4 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactProcessingSettings.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactProcessingSettings.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The Edifact agreement protocol settings. + /// public partial class EdifactProcessingSettings { /// @@ -26,7 +29,7 @@ public EdifactProcessingSettings() { } /// /// Initializes a new instance of the EdifactProcessingSettings class. /// - public EdifactProcessingSettings(bool? maskSecurityInfo = default(bool?), bool? preserveInterchange = default(bool?), bool? suspendInterchangeOnError = default(bool?), bool? createEmptyXmlTagsForTrailingSeparators = default(bool?), bool? useDotAsDecimalSeparator = default(bool?)) + public EdifactProcessingSettings(bool maskSecurityInfo, bool preserveInterchange, bool suspendInterchangeOnError, bool createEmptyXmlTagsForTrailingSeparators, bool useDotAsDecimalSeparator) { MaskSecurityInfo = maskSecurityInfo; PreserveInterchange = preserveInterchange; @@ -40,34 +43,44 @@ public EdifactProcessingSettings() { } /// information. /// [JsonProperty(PropertyName = "maskSecurityInfo")] - public bool? MaskSecurityInfo { get; set; } + public bool MaskSecurityInfo { get; set; } /// /// Gets or sets the value indicating whether to preserve interchange. /// [JsonProperty(PropertyName = "preserveInterchange")] - public bool? PreserveInterchange { get; set; } + public bool PreserveInterchange { get; set; } /// /// Gets or sets the value indicating whether to suspend interchange /// on error. /// [JsonProperty(PropertyName = "suspendInterchangeOnError")] - public bool? SuspendInterchangeOnError { get; set; } + public bool SuspendInterchangeOnError { get; set; } /// /// Gets or sets the value indicating whether to create empty xml tags /// for trailing separators. /// [JsonProperty(PropertyName = "createEmptyXmlTagsForTrailingSeparators")] - public bool? CreateEmptyXmlTagsForTrailingSeparators { get; set; } + public bool CreateEmptyXmlTagsForTrailingSeparators { get; set; } /// /// Gets or sets the value indicating whether to use dot as decimal /// separator. /// [JsonProperty(PropertyName = "useDotAsDecimalSeparator")] - public bool? UseDotAsDecimalSeparator { get; set; } + public bool UseDotAsDecimalSeparator { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + //Nothing to validate + } } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactProtocolSettings.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactProtocolSettings.cs index ef1281bbc220..d743c20236a4 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactProtocolSettings.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactProtocolSettings.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The Edifact agreement protocol settings. + /// public partial class EdifactProtocolSettings { /// @@ -26,7 +29,7 @@ public EdifactProtocolSettings() { } /// /// Initializes a new instance of the EdifactProtocolSettings class. /// - public EdifactProtocolSettings(EdifactValidationSettings validationSettings = default(EdifactValidationSettings), EdifactFramingSettings framingSettings = default(EdifactFramingSettings), EdifactEnvelopeSettings envelopeSettings = default(EdifactEnvelopeSettings), EdifactAcknowledgementSettings acknowledgementSettings = default(EdifactAcknowledgementSettings), EdifactMessageFilter messageFilter = default(EdifactMessageFilter), EdifactProcessingSettings processingSettings = default(EdifactProcessingSettings), IList envelopeOverrides = default(IList), IList messageFilterList = default(IList), IList schemaReferences = default(IList), IList validationOverrides = default(IList), IList edifactDelimiterOverrides = default(IList)) + public EdifactProtocolSettings(EdifactValidationSettings validationSettings, EdifactFramingSettings framingSettings, EdifactEnvelopeSettings envelopeSettings, EdifactAcknowledgementSettings acknowledgementSettings, EdifactMessageFilter messageFilter, EdifactProcessingSettings processingSettings, IList schemaReferences, IList envelopeOverrides = default(IList), IList messageFilterList = default(IList), IList validationOverrides = default(IList), IList edifactDelimiterOverrides = default(IList)) { ValidationSettings = validationSettings; FramingSettings = framingSettings; @@ -107,5 +110,106 @@ public EdifactProtocolSettings() { } [JsonProperty(PropertyName = "edifactDelimiterOverrides")] public IList EdifactDelimiterOverrides { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (ValidationSettings == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "ValidationSettings"); + } + if (FramingSettings == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "FramingSettings"); + } + if (EnvelopeSettings == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "EnvelopeSettings"); + } + if (AcknowledgementSettings == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "AcknowledgementSettings"); + } + if (MessageFilter == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "MessageFilter"); + } + if (ProcessingSettings == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "ProcessingSettings"); + } + if (SchemaReferences == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "SchemaReferences"); + } + if (this.ValidationSettings != null) + { + this.ValidationSettings.Validate(); + } + if (this.FramingSettings != null) + { + this.FramingSettings.Validate(); + } + if (this.EnvelopeSettings != null) + { + this.EnvelopeSettings.Validate(); + } + if (this.AcknowledgementSettings != null) + { + this.AcknowledgementSettings.Validate(); + } + if (this.MessageFilter != null) + { + this.MessageFilter.Validate(); + } + if (this.ProcessingSettings != null) + { + this.ProcessingSettings.Validate(); + } + if (this.MessageFilterList != null) + { + foreach (var element in this.MessageFilterList) + { + if (element != null) + { + element.Validate(); + } + } + } + if (this.SchemaReferences != null) + { + foreach (var element1 in this.SchemaReferences) + { + if (element1 != null) + { + element1.Validate(); + } + } + } + if (this.ValidationOverrides != null) + { + foreach (var element2 in this.ValidationOverrides) + { + if (element2 != null) + { + element2.Validate(); + } + } + } + if (this.EdifactDelimiterOverrides != null) + { + foreach (var element3 in this.EdifactDelimiterOverrides) + { + if (element3 != null) + { + element3.Validate(); + } + } + } + } } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactSchemaReference.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactSchemaReference.cs index 75e16908005e..e4274390ed3f 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactSchemaReference.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactSchemaReference.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The Edifact schema reference. + /// public partial class EdifactSchemaReference { /// @@ -26,7 +29,7 @@ public EdifactSchemaReference() { } /// /// Initializes a new instance of the EdifactSchemaReference class. /// - public EdifactSchemaReference(string messageId = default(string), string messageVersion = default(string), string messageRelease = default(string), string senderApplicationId = default(string), string senderApplicationQualifier = default(string), string associationAssignedCode = default(string), string schemaName = default(string)) + public EdifactSchemaReference(string messageId, string messageVersion, string messageRelease, string schemaName, string senderApplicationId = default(string), string senderApplicationQualifier = default(string), string associationAssignedCode = default(string)) { MessageId = messageId; MessageVersion = messageVersion; @@ -79,5 +82,30 @@ public EdifactSchemaReference() { } [JsonProperty(PropertyName = "schemaName")] public string SchemaName { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (MessageId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "MessageId"); + } + if (MessageVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "MessageVersion"); + } + if (MessageRelease == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "MessageRelease"); + } + if (SchemaName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "SchemaName"); + } + } } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactValidationOverride.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactValidationOverride.cs index 07064f475250..2b287ddfc633 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactValidationOverride.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactValidationOverride.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The Edifact validation override settings. + /// public partial class EdifactValidationOverride { /// @@ -26,7 +29,7 @@ public EdifactValidationOverride() { } /// /// Initializes a new instance of the EdifactValidationOverride class. /// - public EdifactValidationOverride(string messageId = default(string), bool? enforceCharacterSet = default(bool?), bool? validateEDITypes = default(bool?), bool? validateXSDTypes = default(bool?), bool? allowLeadingAndTrailingSpacesAndZeroes = default(bool?), TrailingSeparatorPolicy? trailingSeparatorPolicy = default(TrailingSeparatorPolicy?), bool? trimLeadingAndTrailingSpacesAndZeroes = default(bool?)) + public EdifactValidationOverride(string messageId, bool enforceCharacterSet, bool validateEDITypes, bool validateXSDTypes, bool allowLeadingAndTrailingSpacesAndZeroes, TrailingSeparatorPolicy trailingSeparatorPolicy, bool trimLeadingAndTrailingSpacesAndZeroes) { MessageId = messageId; EnforceCharacterSet = enforceCharacterSet; @@ -49,40 +52,53 @@ public EdifactValidationOverride() { } /// Set. /// [JsonProperty(PropertyName = "enforceCharacterSet")] - public bool? EnforceCharacterSet { get; set; } + public bool EnforceCharacterSet { get; set; } /// /// Gets or sets the value indicating whether to validate EDI types. /// [JsonProperty(PropertyName = "validateEDITypes")] - public bool? ValidateEDITypes { get; set; } + public bool ValidateEDITypes { get; set; } /// /// Gets or sets the value indicating whether to validate XSD types. /// [JsonProperty(PropertyName = "validateXSDTypes")] - public bool? ValidateXSDTypes { get; set; } + public bool ValidateXSDTypes { get; set; } /// /// Gets or sets the value indicating whether to allow leading and /// trailing spaces and zeroes. /// [JsonProperty(PropertyName = "allowLeadingAndTrailingSpacesAndZeroes")] - public bool? AllowLeadingAndTrailingSpacesAndZeroes { get; set; } + public bool AllowLeadingAndTrailingSpacesAndZeroes { get; set; } /// /// Gets or sets the trailing separator policy. Possible values /// include: 'NotSpecified', 'NotAllowed', 'Optional', 'Mandatory' /// [JsonProperty(PropertyName = "trailingSeparatorPolicy")] - public TrailingSeparatorPolicy? TrailingSeparatorPolicy { get; set; } + public TrailingSeparatorPolicy TrailingSeparatorPolicy { get; set; } /// /// Gets or sets the value indicating whether to trim leading and /// trailing spaces and zeroes. /// [JsonProperty(PropertyName = "trimLeadingAndTrailingSpacesAndZeroes")] - public bool? TrimLeadingAndTrailingSpacesAndZeroes { get; set; } + public bool TrimLeadingAndTrailingSpacesAndZeroes { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (MessageId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "MessageId"); + } + } } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactValidationSettings.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactValidationSettings.cs index 5ec7879e5f11..479da76ccc90 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactValidationSettings.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/EdifactValidationSettings.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The Edifact agreement validation settings. + /// public partial class EdifactValidationSettings { /// @@ -26,7 +29,7 @@ public EdifactValidationSettings() { } /// /// Initializes a new instance of the EdifactValidationSettings class. /// - public EdifactValidationSettings(bool? validateCharacterSet = default(bool?), bool? checkDuplicateInterchangeControlNumber = default(bool?), int? interchangeControlNumberValidityDays = default(int?), bool? checkDuplicateGroupControlNumber = default(bool?), bool? checkDuplicateTransactionSetControlNumber = default(bool?), bool? validateEDITypes = default(bool?), bool? validateXSDTypes = default(bool?), bool? allowLeadingAndTrailingSpacesAndZeroes = default(bool?), bool? trimLeadingAndTrailingSpacesAndZeroes = default(bool?), TrailingSeparatorPolicy? trailingSeparatorPolicy = default(TrailingSeparatorPolicy?)) + public EdifactValidationSettings(bool validateCharacterSet, bool checkDuplicateInterchangeControlNumber, int interchangeControlNumberValidityDays, bool checkDuplicateGroupControlNumber, bool checkDuplicateTransactionSetControlNumber, bool validateEDITypes, bool validateXSDTypes, bool allowLeadingAndTrailingSpacesAndZeroes, bool trimLeadingAndTrailingSpacesAndZeroes, TrailingSeparatorPolicy trailingSeparatorPolicy) { ValidateCharacterSet = validateCharacterSet; CheckDuplicateInterchangeControlNumber = checkDuplicateInterchangeControlNumber; @@ -45,69 +48,78 @@ public EdifactValidationSettings() { } /// set in the message. /// [JsonProperty(PropertyName = "validateCharacterSet")] - public bool? ValidateCharacterSet { get; set; } + public bool ValidateCharacterSet { get; set; } /// /// Gets or sets the value indicating whether to check for duplicate /// interchange control number. /// [JsonProperty(PropertyName = "checkDuplicateInterchangeControlNumber")] - public bool? CheckDuplicateInterchangeControlNumber { get; set; } + public bool CheckDuplicateInterchangeControlNumber { get; set; } /// /// Gets or sets the validity period of interchange control number. /// [JsonProperty(PropertyName = "interchangeControlNumberValidityDays")] - public int? InterchangeControlNumberValidityDays { get; set; } + public int InterchangeControlNumberValidityDays { get; set; } /// /// Gets or sets the value indicating whether to check for duplicate /// group control number. /// [JsonProperty(PropertyName = "checkDuplicateGroupControlNumber")] - public bool? CheckDuplicateGroupControlNumber { get; set; } + public bool CheckDuplicateGroupControlNumber { get; set; } /// /// Gets or sets the value indicating whether to check for duplicate /// transaction set control number. /// [JsonProperty(PropertyName = "checkDuplicateTransactionSetControlNumber")] - public bool? CheckDuplicateTransactionSetControlNumber { get; set; } + public bool CheckDuplicateTransactionSetControlNumber { get; set; } /// /// Gets or sets the value indicating whether to Whether to validate /// EDI types. /// [JsonProperty(PropertyName = "validateEDITypes")] - public bool? ValidateEDITypes { get; set; } + public bool ValidateEDITypes { get; set; } /// /// Gets or sets the value indicating whether to Whether to validate /// XSD types. /// [JsonProperty(PropertyName = "validateXSDTypes")] - public bool? ValidateXSDTypes { get; set; } + public bool ValidateXSDTypes { get; set; } /// /// Gets or sets the value indicating whether to allow leading and /// trailing spaces and zeroes. /// [JsonProperty(PropertyName = "allowLeadingAndTrailingSpacesAndZeroes")] - public bool? AllowLeadingAndTrailingSpacesAndZeroes { get; set; } + public bool AllowLeadingAndTrailingSpacesAndZeroes { get; set; } /// /// Gets or sets the value indicating whether to trim leading and /// trailing spaces and zeroes. /// [JsonProperty(PropertyName = "trimLeadingAndTrailingSpacesAndZeroes")] - public bool? TrimLeadingAndTrailingSpacesAndZeroes { get; set; } + public bool TrimLeadingAndTrailingSpacesAndZeroes { get; set; } /// /// Gets or sets the trailing separator policy. Possible values /// include: 'NotSpecified', 'NotAllowed', 'Optional', 'Mandatory' /// [JsonProperty(PropertyName = "trailingSeparatorPolicy")] - public TrailingSeparatorPolicy? TrailingSeparatorPolicy { get; set; } + public TrailingSeparatorPolicy TrailingSeparatorPolicy { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + } } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/ErrorResponse.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/ErrorResponse.cs new file mode 100644 index 000000000000..5184e51b3fb1 --- /dev/null +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/ErrorResponse.cs @@ -0,0 +1,52 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Logic.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// + /// Error reponse indicates Logic service is not able to process the + /// incoming request. The reason is provided in the error message. + /// + public partial class ErrorResponse + { + /// + /// Initializes a new instance of the ErrorResponse class. + /// + public ErrorResponse() { } + + /// + /// Initializes a new instance of the ErrorResponse class. + /// + public ErrorResponse(string code = default(string), string message = default(string)) + { + Code = code; + Message = message; + } + + /// + /// Gets or sets error code. + /// + [JsonProperty(PropertyName = "code")] + public string Code { get; set; } + + /// + /// Gets or sets error message indicating why the operation failed. + /// + [JsonProperty(PropertyName = "message")] + public string Message { get; set; } + + } +} diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/ErrorResponseException.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/ErrorResponseException.cs new file mode 100644 index 000000000000..bbf3c952980e --- /dev/null +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/ErrorResponseException.cs @@ -0,0 +1,103 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Logic.Models +{ + using Microsoft.Rest; + using System; + using System.Net.Http; + using System.Runtime.Serialization; +#if !PORTABLE + using System.Security.Permissions; +#endif + + /// + /// Exception thrown for an invalid response with ErrorResponse + /// information. + /// +#if !PORTABLE + [Serializable] +#endif + public class ErrorResponseException : RestException + { + /// + /// Gets information about the associated HTTP request. + /// + public HttpRequestMessageWrapper Request { get; set; } + + /// + /// Gets information about the associated HTTP response. + /// + public HttpResponseMessageWrapper Response { get; set; } + + /// + /// Gets or sets the body object. + /// + public ErrorResponse Body { get; set; } + + /// + /// Initializes a new instance of the ErrorResponseException class. + /// + public ErrorResponseException() + { + } + + /// + /// Initializes a new instance of the ErrorResponseException class. + /// + /// The exception message. + public ErrorResponseException(string message) + : this(message, null) + { + } + + /// + /// Initializes a new instance of the ErrorResponseException class. + /// + /// The exception message. + /// Inner exception. + public ErrorResponseException(string message, Exception innerException) + : base(message, innerException) + { + } + +#if !PORTABLE + /// + /// Initializes a new instance of the ErrorResponseException class. + /// + /// Serialization info. + /// Streaming context. + protected ErrorResponseException(SerializationInfo info, StreamingContext context) + : base(info, context) + { + } + + /// + /// Serializes content of the exception. + /// + /// Serialization info. + /// Streaming context. + /// + /// Thrown when a required parameter is null + /// + [SecurityPermission(SecurityAction.Demand, SerializationFormatter = true)] + public override void GetObjectData(SerializationInfo info, StreamingContext context) + { + base.GetObjectData(info, context); + if (info == null) + { + throw new ArgumentNullException("info"); + } + + info.AddValue("Request", Request); + info.AddValue("Response", Response); + info.AddValue("Body", Body); + } +#endif + } +} diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/GenerateUpgradedDefinitionParameters.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/GenerateUpgradedDefinitionParameters.cs index e62170d1db93..6ec06261d25f 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/GenerateUpgradedDefinitionParameters.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/GenerateUpgradedDefinitionParameters.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The parameters to generate upgraded definition. + /// public partial class GenerateUpgradedDefinitionParameters { /// diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/ListCallbackUrlParameters.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/GetCallbackUrlParameters.cs similarity index 52% rename from src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/ListCallbackUrlParameters.cs rename to src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/GetCallbackUrlParameters.cs index 2320450c0f21..767756e642da 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/ListCallbackUrlParameters.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/GetCallbackUrlParameters.cs @@ -16,26 +16,37 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; - public partial class ListCallbackUrlParameters + /// + /// The callback url parameters. + /// + public partial class GetCallbackUrlParameters { /// - /// Initializes a new instance of the ListCallbackUrlParameters class. + /// Initializes a new instance of the GetCallbackUrlParameters class. /// - public ListCallbackUrlParameters() { } + public GetCallbackUrlParameters() { } /// - /// Initializes a new instance of the ListCallbackUrlParameters class. + /// Initializes a new instance of the GetCallbackUrlParameters class. /// - public ListCallbackUrlParameters(DateTime? notAfter = default(DateTime?)) + public GetCallbackUrlParameters(DateTime? notAfter = default(DateTime?), KeyType? keyType = default(KeyType?)) { NotAfter = notAfter; + KeyType = keyType; } /// /// Gets or sets the expiry time. /// - [JsonProperty(PropertyName = "NotAfter")] + [JsonProperty(PropertyName = "notAfter")] public DateTime? NotAfter { get; set; } + /// + /// Gets or sets the key type. Possible values include: + /// 'NotSpecified', 'Primary', 'Secondary' + /// + [JsonProperty(PropertyName = "keyType")] + public KeyType? KeyType { get; set; } + } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/HashingAlgorithm.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/HashingAlgorithm.cs index 5d76bb6098ab..20429aff1f56 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/HashingAlgorithm.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/HashingAlgorithm.cs @@ -22,6 +22,10 @@ public enum HashingAlgorithm NotSpecified, [EnumMember(Value = "None")] None, + [EnumMember(Value = "MD5")] + MD5, + [EnumMember(Value = "SHA1")] + SHA1, [EnumMember(Value = "SHA2256")] SHA2256, [EnumMember(Value = "SHA2384")] diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccount.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccount.cs index d6118ffe59ca..e8293419d255 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccount.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccount.cs @@ -16,7 +16,10 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; - public partial class IntegrationAccount : IntegrationAccountResource + /// + /// The integration account. + /// + public partial class IntegrationAccount : Resource { /// /// Initializes a new instance of the IntegrationAccount class. @@ -45,5 +48,18 @@ public IntegrationAccount() { } [JsonProperty(PropertyName = "sku")] public IntegrationAccountSku Sku { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (this.Sku != null) + { + this.Sku.Validate(); + } + } } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountAgreement.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountAgreement.cs index b26b56287781..1e2f5a7e3ab3 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountAgreement.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountAgreement.cs @@ -16,8 +16,11 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The integration account agreement. + /// [JsonTransformation] - public partial class IntegrationAccountAgreement : IntegrationAccountResource + public partial class IntegrationAccountAgreement : Resource { /// /// Initializes a new instance of the IntegrationAccountAgreement @@ -29,7 +32,7 @@ public IntegrationAccountAgreement() { } /// Initializes a new instance of the IntegrationAccountAgreement /// class. /// - public IntegrationAccountAgreement(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), DateTime? createdTime = default(DateTime?), DateTime? changedTime = default(DateTime?), object metadata = default(object), AgreementType? agreementType = default(AgreementType?), string hostPartner = default(string), string guestPartner = default(string), BusinessIdentity hostIdentity = default(BusinessIdentity), BusinessIdentity guestIdentity = default(BusinessIdentity), AgreementContent content = default(AgreementContent)) + public IntegrationAccountAgreement(AgreementType agreementType, string hostPartner, string guestPartner, BusinessIdentity hostIdentity, BusinessIdentity guestIdentity, AgreementContent content, string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), DateTime? createdTime = default(DateTime?), DateTime? changedTime = default(DateTime?), object metadata = default(object)) : base(id, name, type, location, tags) { CreatedTime = createdTime; @@ -66,28 +69,30 @@ public IntegrationAccountAgreement() { } /// 'NotSpecified', 'AS2', 'X12', 'Edifact' /// [JsonProperty(PropertyName = "properties.agreementType")] - public AgreementType? AgreementType { get; set; } + public AgreementType AgreementType { get; set; } /// - /// Gets or sets the host partner. + /// Gets or sets the integration account partner that is set as host + /// partner for this agreement. /// [JsonProperty(PropertyName = "properties.hostPartner")] public string HostPartner { get; set; } /// - /// Gets or sets the guest partner. + /// Gets or sets the integration account partner that is set as guest + /// partner for this agreement. /// [JsonProperty(PropertyName = "properties.guestPartner")] public string GuestPartner { get; set; } /// - /// Gets or sets the host identity. + /// Gets or sets the business identity of the host partner. /// [JsonProperty(PropertyName = "properties.hostIdentity")] public BusinessIdentity HostIdentity { get; set; } /// - /// Gets or sets the guest identity. + /// Gets or sets the business identity of the guest partner. /// [JsonProperty(PropertyName = "properties.guestIdentity")] public BusinessIdentity GuestIdentity { get; set; } @@ -98,5 +103,46 @@ public IntegrationAccountAgreement() { } [JsonProperty(PropertyName = "properties.content")] public AgreementContent Content { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (HostPartner == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "HostPartner"); + } + if (GuestPartner == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "GuestPartner"); + } + if (HostIdentity == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "HostIdentity"); + } + if (GuestIdentity == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "GuestIdentity"); + } + if (Content == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Content"); + } + if (this.HostIdentity != null) + { + this.HostIdentity.Validate(); + } + if (this.GuestIdentity != null) + { + this.GuestIdentity.Validate(); + } + if (this.Content != null) + { + this.Content.Validate(); + } + } } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountAgreementFilter.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountAgreementFilter.cs index f95674965285..b6f8b8a1c3c3 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountAgreementFilter.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountAgreementFilter.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The integration account agreement filter for odata query. + /// public partial class IntegrationAccountAgreementFilter { /// @@ -28,7 +31,7 @@ public IntegrationAccountAgreementFilter() { } /// Initializes a new instance of the /// IntegrationAccountAgreementFilter class. /// - public IntegrationAccountAgreementFilter(AgreementType? agreementType = default(AgreementType?)) + public IntegrationAccountAgreementFilter(AgreementType agreementType) { AgreementType = agreementType; } @@ -38,7 +41,16 @@ public IntegrationAccountAgreementFilter() { } /// Possible values include: 'NotSpecified', 'AS2', 'X12', 'Edifact' /// [JsonProperty(PropertyName = "agreementType")] - public AgreementType? AgreementType { get; set; } + public AgreementType AgreementType { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + } } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountCertificate.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountCertificate.cs index a5e85d9a758f..c71807c9f7db 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountCertificate.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountCertificate.cs @@ -16,8 +16,11 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The integration account certificate. + /// [JsonTransformation] - public partial class IntegrationAccountCertificate : IntegrationAccountResource + public partial class IntegrationAccountCertificate : Resource { /// /// Initializes a new instance of the IntegrationAccountCertificate @@ -69,5 +72,18 @@ public IntegrationAccountCertificate() { } [JsonProperty(PropertyName = "properties.publicCertificate")] public string PublicCertificate { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (this.Key != null) + { + this.Key.Validate(); + } + } } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountContentLink.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountContentLink.cs deleted file mode 100644 index c970f8ed7958..000000000000 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountContentLink.cs +++ /dev/null @@ -1,71 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -namespace Microsoft.Azure.Management.Logic.Models -{ - using System; - using System.Linq; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; - - public partial class IntegrationAccountContentLink - { - /// - /// Initializes a new instance of the IntegrationAccountContentLink - /// class. - /// - public IntegrationAccountContentLink() { } - - /// - /// Initializes a new instance of the IntegrationAccountContentLink - /// class. - /// - public IntegrationAccountContentLink(string uri = default(string), string contentVersion = default(string), long? contentSize = default(long?), IntegrationAccountContentHash contentHash = default(IntegrationAccountContentHash), object metadata = default(object)) - { - Uri = uri; - ContentVersion = contentVersion; - ContentSize = contentSize; - ContentHash = contentHash; - Metadata = metadata; - } - - /// - /// Gets or sets the content link URI. - /// - [JsonProperty(PropertyName = "uri")] - public string Uri { get; set; } - - /// - /// Gets or sets the content version. - /// - [JsonProperty(PropertyName = "contentVersion")] - public string ContentVersion { get; set; } - - /// - /// Gets or sets the content size. - /// - [JsonProperty(PropertyName = "contentSize")] - public long? ContentSize { get; set; } - - /// - /// Gets or sets the content hash. - /// - [JsonProperty(PropertyName = "contentHash")] - public IntegrationAccountContentHash ContentHash { get; set; } - - /// - /// Gets or sets the metadata. - /// - [JsonProperty(PropertyName = "metadata")] - public object Metadata { get; set; } - - } -} diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountMap.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountMap.cs index 4fad55930544..b087c07e8fd3 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountMap.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountMap.cs @@ -16,8 +16,11 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The integration account map. + /// [JsonTransformation] - public partial class IntegrationAccountMap : IntegrationAccountResource + public partial class IntegrationAccountMap : Resource { /// /// Initializes a new instance of the IntegrationAccountMap class. @@ -27,10 +30,11 @@ public IntegrationAccountMap() { } /// /// Initializes a new instance of the IntegrationAccountMap class. /// - public IntegrationAccountMap(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), MapType? mapType = default(MapType?), DateTime? createdTime = default(DateTime?), DateTime? changedTime = default(DateTime?), object content = default(object), string contentType = default(string), IntegrationAccountContentLink contentLink = default(IntegrationAccountContentLink), object metadata = default(object)) + public IntegrationAccountMap(MapType mapType, string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), IntegrationAccountMapPropertiesParametersSchema parametersSchema = default(IntegrationAccountMapPropertiesParametersSchema), DateTime? createdTime = default(DateTime?), DateTime? changedTime = default(DateTime?), object content = default(object), string contentType = default(string), ContentLink contentLink = default(ContentLink), object metadata = default(object)) : base(id, name, type, location, tags) { MapType = mapType; + ParametersSchema = parametersSchema; CreatedTime = createdTime; ChangedTime = changedTime; Content = content; @@ -44,7 +48,13 @@ public IntegrationAccountMap() { } /// 'NotSpecified', 'Xslt' /// [JsonProperty(PropertyName = "properties.mapType")] - public MapType? MapType { get; set; } + public MapType MapType { get; set; } + + /// + /// Gets or sets the parameters schema of integration account map. + /// + [JsonProperty(PropertyName = "properties.parametersSchema")] + public IntegrationAccountMapPropertiesParametersSchema ParametersSchema { get; set; } /// /// Gets the created time. @@ -74,7 +84,7 @@ public IntegrationAccountMap() { } /// Gets the content link. /// [JsonProperty(PropertyName = "properties.contentLink")] - public IntegrationAccountContentLink ContentLink { get; private set; } + public ContentLink ContentLink { get; private set; } /// /// Gets or sets the metadata. @@ -82,5 +92,14 @@ public IntegrationAccountMap() { } [JsonProperty(PropertyName = "properties.metadata")] public object Metadata { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + } } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountMapFilter.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountMapFilter.cs index f52bd6ae26fc..1d99d27b7cd8 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountMapFilter.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountMapFilter.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The integration account map filter for odata query. + /// public partial class IntegrationAccountMapFilter { /// @@ -28,17 +31,26 @@ public IntegrationAccountMapFilter() { } /// Initializes a new instance of the IntegrationAccountMapFilter /// class. /// - public IntegrationAccountMapFilter(MapType? schemaType = default(MapType?)) + public IntegrationAccountMapFilter(MapType mapType) { - SchemaType = schemaType; + MapType = mapType; } /// /// Gets or sets the map type of integration account map. Possible /// values include: 'NotSpecified', 'Xslt' /// - [JsonProperty(PropertyName = "schemaType")] - public MapType? SchemaType { get; set; } + [JsonProperty(PropertyName = "mapType")] + public MapType MapType { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + } } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountMapPropertiesParametersSchema.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountMapPropertiesParametersSchema.cs new file mode 100644 index 000000000000..67c9b80af752 --- /dev/null +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountMapPropertiesParametersSchema.cs @@ -0,0 +1,46 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Logic.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// + /// The parameters schema of integration account map. + /// + public partial class IntegrationAccountMapPropertiesParametersSchema + { + /// + /// Initializes a new instance of the + /// IntegrationAccountMapPropertiesParametersSchema class. + /// + public IntegrationAccountMapPropertiesParametersSchema() { } + + /// + /// Initializes a new instance of the + /// IntegrationAccountMapPropertiesParametersSchema class. + /// + public IntegrationAccountMapPropertiesParametersSchema(string refProperty = default(string)) + { + RefProperty = refProperty; + } + + /// + /// Gets or sets the reference name. + /// + [JsonProperty(PropertyName = "ref")] + public string RefProperty { get; set; } + + } +} diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountPartner.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountPartner.cs index 639c1b74c131..23cbb749e424 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountPartner.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountPartner.cs @@ -16,8 +16,11 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The integration account partner. + /// [JsonTransformation] - public partial class IntegrationAccountPartner : IntegrationAccountResource + public partial class IntegrationAccountPartner : Resource { /// /// Initializes a new instance of the IntegrationAccountPartner class. @@ -27,7 +30,7 @@ public IntegrationAccountPartner() { } /// /// Initializes a new instance of the IntegrationAccountPartner class. /// - public IntegrationAccountPartner(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), PartnerType? partnerType = default(PartnerType?), DateTime? createdTime = default(DateTime?), DateTime? changedTime = default(DateTime?), object metadata = default(object), PartnerContent content = default(PartnerContent)) + public IntegrationAccountPartner(PartnerType partnerType, PartnerContent content, string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), DateTime? createdTime = default(DateTime?), DateTime? changedTime = default(DateTime?), object metadata = default(object)) : base(id, name, type, location, tags) { PartnerType = partnerType; @@ -42,7 +45,7 @@ public IntegrationAccountPartner() { } /// 'NotSpecified', 'B2B' /// [JsonProperty(PropertyName = "properties.partnerType")] - public PartnerType? PartnerType { get; set; } + public PartnerType PartnerType { get; set; } /// /// Gets the created time. @@ -68,5 +71,18 @@ public IntegrationAccountPartner() { } [JsonProperty(PropertyName = "properties.content")] public PartnerContent Content { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (Content == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "Content"); + } + } } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountPartnerFilter.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountPartnerFilter.cs index 88255542971c..454f20d252be 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountPartnerFilter.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountPartnerFilter.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The integration account partner filter for odata query. + /// public partial class IntegrationAccountPartnerFilter { /// @@ -28,7 +31,7 @@ public IntegrationAccountPartnerFilter() { } /// Initializes a new instance of the IntegrationAccountPartnerFilter /// class. /// - public IntegrationAccountPartnerFilter(PartnerType? partnerType = default(PartnerType?)) + public IntegrationAccountPartnerFilter(PartnerType partnerType) { PartnerType = partnerType; } @@ -38,7 +41,16 @@ public IntegrationAccountPartnerFilter() { } /// Possible values include: 'NotSpecified', 'B2B' /// [JsonProperty(PropertyName = "partnerType")] - public PartnerType? PartnerType { get; set; } + public PartnerType PartnerType { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + } } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountResource.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountResource.cs deleted file mode 100644 index b921c21be7ea..000000000000 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountResource.cs +++ /dev/null @@ -1,69 +0,0 @@ -// Copyright (c) Microsoft Corporation. All rights reserved. -// Licensed under the MIT License. See License.txt in the project root for -// license information. -// -// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 -// Changes may cause incorrect behavior and will be lost if the code is -// regenerated. - -namespace Microsoft.Azure.Management.Logic.Models -{ - using System; - using System.Linq; - using System.Collections.Generic; - using Newtonsoft.Json; - using Microsoft.Rest; - using Microsoft.Rest.Serialization; - using Microsoft.Rest.Azure; - - public partial class IntegrationAccountResource : IResource - { - /// - /// Initializes a new instance of the IntegrationAccountResource class. - /// - public IntegrationAccountResource() { } - - /// - /// Initializes a new instance of the IntegrationAccountResource class. - /// - public IntegrationAccountResource(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary)) - { - Id = id; - Name = name; - Type = type; - Location = location; - Tags = tags; - } - - /// - /// Gets or sets the resource id. - /// - [JsonProperty(PropertyName = "id")] - public string Id { get; set; } - - /// - /// Gets or sets the resource name. - /// - [JsonProperty(PropertyName = "name")] - public string Name { get; set; } - - /// - /// Gets or sets the resource type. - /// - [JsonProperty(PropertyName = "type")] - public string Type { get; set; } - - /// - /// Gets or sets the resource location. - /// - [JsonProperty(PropertyName = "location")] - public string Location { get; set; } - - /// - /// Gets or sets the resource tags. - /// - [JsonProperty(PropertyName = "tags")] - public IDictionary Tags { get; set; } - - } -} diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountSchema.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountSchema.cs index c8362141c139..556bdfd350cb 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountSchema.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountSchema.cs @@ -16,8 +16,11 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The integration account schema. + /// [JsonTransformation] - public partial class IntegrationAccountSchema : IntegrationAccountResource + public partial class IntegrationAccountSchema : Resource { /// /// Initializes a new instance of the IntegrationAccountSchema class. @@ -27,17 +30,19 @@ public IntegrationAccountSchema() { } /// /// Initializes a new instance of the IntegrationAccountSchema class. /// - public IntegrationAccountSchema(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), SchemaType? schemaType = default(SchemaType?), string targetNamespace = default(string), DateTime? createdTime = default(DateTime?), DateTime? changedTime = default(DateTime?), object content = default(object), string contentType = default(string), IntegrationAccountContentLink contentLink = default(IntegrationAccountContentLink), object metadata = default(object)) + public IntegrationAccountSchema(SchemaType schemaType, string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), string targetNamespace = default(string), string documentName = default(string), string fileName = default(string), DateTime? createdTime = default(DateTime?), DateTime? changedTime = default(DateTime?), object metadata = default(object), object content = default(object), string contentType = default(string), ContentLink contentLink = default(ContentLink)) : base(id, name, type, location, tags) { SchemaType = schemaType; TargetNamespace = targetNamespace; + DocumentName = documentName; + FileName = fileName; CreatedTime = createdTime; ChangedTime = changedTime; + Metadata = metadata; Content = content; ContentType = contentType; ContentLink = contentLink; - Metadata = metadata; } /// @@ -45,14 +50,26 @@ public IntegrationAccountSchema() { } /// 'NotSpecified', 'Xml' /// [JsonProperty(PropertyName = "properties.schemaType")] - public SchemaType? SchemaType { get; set; } + public SchemaType SchemaType { get; set; } /// - /// Gets or sets the target namespace. + /// Gets or sets the target namespace of the schema. /// [JsonProperty(PropertyName = "properties.targetNamespace")] public string TargetNamespace { get; set; } + /// + /// Gets or sets the document name. + /// + [JsonProperty(PropertyName = "properties.documentName")] + public string DocumentName { get; set; } + + /// + /// Gets or sets the file name. + /// + [JsonProperty(PropertyName = "properties.fileName")] + public string FileName { get; set; } + /// /// Gets the created time. /// @@ -65,6 +82,12 @@ public IntegrationAccountSchema() { } [JsonProperty(PropertyName = "properties.changedTime")] public DateTime? ChangedTime { get; private set; } + /// + /// Gets or sets the metadata. + /// + [JsonProperty(PropertyName = "properties.metadata")] + public object Metadata { get; set; } + /// /// Gets or sets the content. /// @@ -81,13 +104,16 @@ public IntegrationAccountSchema() { } /// Gets the content link. /// [JsonProperty(PropertyName = "properties.contentLink")] - public IntegrationAccountContentLink ContentLink { get; private set; } + public ContentLink ContentLink { get; private set; } /// - /// Gets or sets the metadata. + /// Validate the object. /// - [JsonProperty(PropertyName = "properties.metadata")] - public object Metadata { get; set; } - + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + } } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountSchemaFilter.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountSchemaFilter.cs index 92f8c3cf8de4..97882e9fa9e9 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountSchemaFilter.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountSchemaFilter.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The integration account schema filter for odata query. + /// public partial class IntegrationAccountSchemaFilter { /// @@ -28,7 +31,7 @@ public IntegrationAccountSchemaFilter() { } /// Initializes a new instance of the IntegrationAccountSchemaFilter /// class. /// - public IntegrationAccountSchemaFilter(SchemaType? schemaType = default(SchemaType?)) + public IntegrationAccountSchemaFilter(SchemaType schemaType) { SchemaType = schemaType; } @@ -38,7 +41,16 @@ public IntegrationAccountSchemaFilter() { } /// Possible values include: 'NotSpecified', 'Xml' /// [JsonProperty(PropertyName = "schemaType")] - public SchemaType? SchemaType { get; set; } + public SchemaType SchemaType { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + } } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountSku.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountSku.cs index 2dd3a5750d42..47e359ea3f13 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountSku.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountSku.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The integration account sku. + /// public partial class IntegrationAccountSku { /// @@ -26,17 +29,26 @@ public IntegrationAccountSku() { } /// /// Initializes a new instance of the IntegrationAccountSku class. /// - public IntegrationAccountSku(SkuName? name = default(SkuName?)) + public IntegrationAccountSku(IntegrationAccountSkuName name) { Name = name; } /// /// Gets or sets the sku name. Possible values include: - /// 'NotSpecified', 'Free', 'Shared', 'Basic', 'Standard', 'Premium' + /// 'NotSpecified', 'Free', 'Standard' /// [JsonProperty(PropertyName = "name")] - public SkuName? Name { get; set; } + public IntegrationAccountSkuName Name { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + } } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountSkuName.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountSkuName.cs new file mode 100644 index 000000000000..205e2a57d7c6 --- /dev/null +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountSkuName.cs @@ -0,0 +1,28 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Logic.Models +{ + using Newtonsoft.Json; + using Newtonsoft.Json.Converters; + using System.Runtime.Serialization; + + /// + /// Defines values for IntegrationAccountSkuName. + /// + [JsonConverter(typeof(StringEnumConverter))] + public enum IntegrationAccountSkuName + { + [EnumMember(Value = "NotSpecified")] + NotSpecified, + [EnumMember(Value = "Free")] + Free, + [EnumMember(Value = "Standard")] + Standard + } +} diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/KeyVaultKeyReference.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/KeyVaultKeyReference.cs index 88e9c7935606..339442482700 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/KeyVaultKeyReference.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/KeyVaultKeyReference.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The reference to the key vault key. + /// public partial class KeyVaultKeyReference { /// @@ -26,7 +29,7 @@ public KeyVaultKeyReference() { } /// /// Initializes a new instance of the KeyVaultKeyReference class. /// - public KeyVaultKeyReference(KeyVaultKeyReferenceKeyVault keyVault = default(KeyVaultKeyReferenceKeyVault), string keyName = default(string), string keyVersion = default(string)) + public KeyVaultKeyReference(KeyVaultKeyReferenceKeyVault keyVault, string keyName, string keyVersion = default(string)) { KeyVault = keyVault; KeyName = keyName; @@ -51,5 +54,22 @@ public KeyVaultKeyReference() { } [JsonProperty(PropertyName = "keyVersion")] public string KeyVersion { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (KeyVault == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "KeyVault"); + } + if (KeyName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "KeyName"); + } + } } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountContentHash.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/Operation.cs similarity index 51% rename from src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountContentHash.cs rename to src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/Operation.cs index a0c0b135e930..87d9cb6c6a7e 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/IntegrationAccountContentHash.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/Operation.cs @@ -16,35 +16,36 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; - public partial class IntegrationAccountContentHash + /// + /// Logic REST API operation + /// + public partial class Operation { /// - /// Initializes a new instance of the IntegrationAccountContentHash - /// class. + /// Initializes a new instance of the Operation class. /// - public IntegrationAccountContentHash() { } + public Operation() { } /// - /// Initializes a new instance of the IntegrationAccountContentHash - /// class. + /// Initializes a new instance of the Operation class. /// - public IntegrationAccountContentHash(string algorithm = default(string), string value = default(string)) + public Operation(string name = default(string), OperationDisplay display = default(OperationDisplay)) { - Algorithm = algorithm; - Value = value; + Name = name; + Display = display; } /// - /// Gets or sets the conetnt hash algorithm. + /// Gets or sets operation name: {provider}/{resource}/{operation} /// - [JsonProperty(PropertyName = "algorithm")] - public string Algorithm { get; set; } + [JsonProperty(PropertyName = "name")] + public string Name { get; set; } /// - /// Gets or sets the content hash value. + /// Gets or sets the object that represents the operation. /// - [JsonProperty(PropertyName = "value")] - public string Value { get; set; } + [JsonProperty(PropertyName = "display")] + public OperationDisplay Display { get; set; } } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/OperationDisplay.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/OperationDisplay.cs new file mode 100644 index 000000000000..d3a0018e1d98 --- /dev/null +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/OperationDisplay.cs @@ -0,0 +1,59 @@ +// Copyright (c) Microsoft Corporation. All rights reserved. +// Licensed under the MIT License. See License.txt in the project root for +// license information. +// +// Code generated by Microsoft (R) AutoRest Code Generator 0.17.0.0 +// Changes may cause incorrect behavior and will be lost if the code is +// regenerated. + +namespace Microsoft.Azure.Management.Logic.Models +{ + using System; + using System.Linq; + using System.Collections.Generic; + using Newtonsoft.Json; + using Microsoft.Rest; + using Microsoft.Rest.Serialization; + using Microsoft.Rest.Azure; + + /// + /// The object that represents the operation. + /// + public partial class OperationDisplay + { + /// + /// Initializes a new instance of the OperationDisplay class. + /// + public OperationDisplay() { } + + /// + /// Initializes a new instance of the OperationDisplay class. + /// + public OperationDisplay(string provider = default(string), string resource = default(string), string operation = default(string)) + { + Provider = provider; + Resource = resource; + Operation = operation; + } + + /// + /// Gets or sets service provider: Microsoft.Logic + /// + [JsonProperty(PropertyName = "provider")] + public string Provider { get; set; } + + /// + /// Gets or sets resource on which the operation is performed: + /// Profile, endpoint, etc. + /// + [JsonProperty(PropertyName = "resource")] + public string Resource { get; set; } + + /// + /// Gets or sets operation type: Read, write, delete, etc. + /// + [JsonProperty(PropertyName = "operation")] + public string Operation { get; set; } + + } +} diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/PartnerContent.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/PartnerContent.cs index 1f6672092c2d..63c5ba6ffa78 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/PartnerContent.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/PartnerContent.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The integration account partner content. + /// public partial class PartnerContent { /// diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/RecurrenceSchedule.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/RecurrenceSchedule.cs index f918abfa2787..1dd504c48136 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/RecurrenceSchedule.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/RecurrenceSchedule.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The recurrence schedule. + /// public partial class RecurrenceSchedule { /// @@ -36,31 +39,31 @@ public RecurrenceSchedule() { } } /// - /// Gets or sets gets or sets the minutes. + /// Gets or sets the minutes. /// [JsonProperty(PropertyName = "minutes")] public IList Minutes { get; set; } /// - /// Gets or sets gets or sets the hours. + /// Gets or sets the hours. /// [JsonProperty(PropertyName = "hours")] public IList Hours { get; set; } /// - /// Gets or sets gets or sets the days of the week. + /// Gets or sets the days of the week. /// [JsonProperty(PropertyName = "weekDays")] public IList WeekDays { get; set; } /// - /// Gets or sets gets or sets the month days. + /// Gets or sets the month days. /// [JsonProperty(PropertyName = "monthDays")] public IList MonthDays { get; set; } /// - /// Gets or sets gets or sets the monthly occurrences. + /// Gets or sets the monthly occurrences. /// [JsonProperty(PropertyName = "monthlyOccurrences")] public IList MonthlyOccurrences { get; set; } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/RecurrenceScheduleOccurrence.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/RecurrenceScheduleOccurrence.cs index 9e63eb9a50fb..1464ae3ea678 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/RecurrenceScheduleOccurrence.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/RecurrenceScheduleOccurrence.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The recurrence schedule occurence. + /// public partial class RecurrenceScheduleOccurrence { /// @@ -35,15 +38,15 @@ public RecurrenceScheduleOccurrence() { } } /// - /// Gets or sets gets or sets the day of the week. Possible values - /// include: 'Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', - /// 'Friday', 'Saturday' + /// Gets or sets the day of the week. Possible values include: + /// 'Sunday', 'Monday', 'Tuesday', 'Wednesday', 'Thursday', 'Friday', + /// 'Saturday' /// [JsonProperty(PropertyName = "day")] public DayOfWeek? Day { get; set; } /// - /// Gets or sets gets or sets the occurrence. + /// Gets or sets the occurrence. /// [JsonProperty(PropertyName = "occurrence")] public int? Occurrence { get; set; } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/Resource.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/Resource.cs index d38f8783f38b..30f9fcb5a284 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/Resource.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/Resource.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The base resource type. + /// public partial class Resource : IResource { /// @@ -36,31 +39,31 @@ public Resource() { } } /// - /// Gets or sets gets or sets the resource id. + /// Gets the resource id. /// [JsonProperty(PropertyName = "id")] - public string Id { get; set; } + public string Id { get; private set; } /// - /// Gets or sets gets the resource name. + /// Gets gets the resource name. /// [JsonProperty(PropertyName = "name")] - public string Name { get; set; } + public string Name { get; private set; } /// - /// Gets or sets gets the resource type. + /// Gets gets the resource type. /// [JsonProperty(PropertyName = "type")] - public string Type { get; set; } + public string Type { get; private set; } /// - /// Gets or sets gets or sets the resource location. + /// Gets or sets the resource location. /// [JsonProperty(PropertyName = "location")] public string Location { get; set; } /// - /// Gets or sets gets or sets the resource tags. + /// Gets or sets the resource tags. /// [JsonProperty(PropertyName = "tags")] public IDictionary Tags { get; set; } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/ResourceReference.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/ResourceReference.cs index 715a9228d4b4..152f371bb436 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/ResourceReference.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/ResourceReference.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The resource reference. + /// public partial class ResourceReference { /// @@ -34,10 +37,10 @@ public ResourceReference() { } } /// - /// Gets or sets gets or sets the resource id. + /// Gets the resource id. /// [JsonProperty(PropertyName = "id")] - public string Id { get; set; } + public string Id { get; private set; } /// /// Gets gets the resource name. diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/Sku.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/Sku.cs index 8f36206f8cf9..492c0b262210 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/Sku.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/Sku.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The sku type. + /// public partial class Sku { /// @@ -26,24 +29,33 @@ public Sku() { } /// /// Initializes a new instance of the Sku class. /// - public Sku(SkuName? name = default(SkuName?), ResourceReference plan = default(ResourceReference)) + public Sku(SkuName name, ResourceReference plan = default(ResourceReference)) { Name = name; Plan = plan; } /// - /// Gets or sets gets or sets the name. Possible values include: - /// 'NotSpecified', 'Free', 'Shared', 'Basic', 'Standard', 'Premium' + /// Gets or sets the name. Possible values include: 'NotSpecified', + /// 'Free', 'Shared', 'Basic', 'Standard', 'Premium' /// [JsonProperty(PropertyName = "name")] - public SkuName? Name { get; set; } + public SkuName Name { get; set; } /// - /// Gets or sets gets or sets the reference to plan. + /// Gets or sets the reference to plan. /// [JsonProperty(PropertyName = "plan")] public ResourceReference Plan { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + } } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/SubResource.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/SubResource.cs index 3cafda934b23..8e07a8e99974 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/SubResource.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/SubResource.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The sub resource type. + /// public partial class SubResource : IResource { /// @@ -32,10 +35,10 @@ public SubResource() { } } /// - /// Gets or sets gets or sets the resource id. + /// Gets the resource id. /// [JsonProperty(PropertyName = "id")] - public string Id { get; set; } + public string Id { get; private set; } } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/Workflow.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/Workflow.cs index 3801f1c3809e..79f5108eaa0d 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/Workflow.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/Workflow.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The workflow type. + /// [JsonTransformation] public partial class Workflow : Resource { @@ -65,9 +68,8 @@ public Workflow() { } public DateTime? ChangedTime { get; private set; } /// - /// Gets or sets gets or sets the state. Possible values include: - /// 'NotSpecified', 'Completed', 'Enabled', 'Disabled', 'Deleted', - /// 'Suspended' + /// Gets or sets the state. Possible values include: 'NotSpecified', + /// 'Completed', 'Enabled', 'Disabled', 'Deleted', 'Suspended' /// [JsonProperty(PropertyName = "properties.state")] public WorkflowState? State { get; set; } @@ -85,28 +87,41 @@ public Workflow() { } public string AccessEndpoint { get; private set; } /// - /// Gets or sets gets or sets the sku. + /// Gets or sets the sku. /// [JsonProperty(PropertyName = "properties.sku")] public Sku Sku { get; set; } /// - /// Gets or sets gets or sets the integration account. + /// Gets or sets the integration account. /// [JsonProperty(PropertyName = "properties.integrationAccount")] public ResourceReference IntegrationAccount { get; set; } /// - /// Gets or sets gets or sets the definition. + /// Gets or sets the definition. /// [JsonProperty(PropertyName = "properties.definition")] public object Definition { get; set; } /// - /// Gets or sets gets or sets the parameters. + /// Gets or sets the parameters. /// [JsonProperty(PropertyName = "properties.parameters")] public IDictionary Parameters { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (this.Sku != null) + { + this.Sku.Validate(); + } + } } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowFilter.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowFilter.cs index f0df4e7fb5ab..4e17c8e61b3b 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowFilter.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowFilter.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The workflow filter. + /// public partial class WorkflowFilter { /// @@ -32,9 +35,9 @@ public WorkflowFilter() { } } /// - /// Gets or sets gets or sets the state of workflows. Possible values - /// include: 'NotSpecified', 'Completed', 'Enabled', 'Disabled', - /// 'Deleted', 'Suspended' + /// Gets or sets the state of workflows. Possible values include: + /// 'NotSpecified', 'Completed', 'Enabled', 'Disabled', 'Deleted', + /// 'Suspended' /// [JsonProperty(PropertyName = "state")] public WorkflowState? State { get; set; } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowOutputParameter.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowOutputParameter.cs index fd7bd254abce..2a6e7b7bb005 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowOutputParameter.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowOutputParameter.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The workflow output parameter. + /// public partial class WorkflowOutputParameter : WorkflowParameter { /// diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowParameter.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowParameter.cs index dfbed6ba3de3..4c5c32650d1c 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowParameter.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowParameter.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The workflow parameters. + /// public partial class WorkflowParameter { /// @@ -35,27 +38,27 @@ public WorkflowParameter() { } } /// - /// Gets or sets gets or sets the type. Possible values include: - /// 'NotSpecified', 'String', 'SecureString', 'Int', 'Float', 'Bool', - /// 'Array', 'Object', 'SecureObject' + /// Gets or sets the type. Possible values include: 'NotSpecified', + /// 'String', 'SecureString', 'Int', 'Float', 'Bool', 'Array', + /// 'Object', 'SecureObject' /// [JsonProperty(PropertyName = "type")] public ParameterType? Type { get; set; } /// - /// Gets or sets gets or sets the value. + /// Gets or sets the value. /// [JsonProperty(PropertyName = "value")] public object Value { get; set; } /// - /// Gets or sets gets or sets the metadata. + /// Gets or sets the metadata. /// [JsonProperty(PropertyName = "metadata")] public object Metadata { get; set; } /// - /// Gets or sets gets or sets the description. + /// Gets or sets the description. /// [JsonProperty(PropertyName = "description")] public string Description { get; set; } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowRun.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowRun.cs index 20b62b979d4d..318815891fc1 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowRun.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowRun.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The workflow run. + /// [JsonTransformation] public partial class WorkflowRun : SubResource { @@ -85,7 +88,7 @@ public WorkflowRun() { } public string CorrelationId { get; private set; } /// - /// Gets or sets gets or sets the run correlation. + /// Gets or sets the run correlation. /// [JsonProperty(PropertyName = "properties.correlation")] public Correlation Correlation { get; set; } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowRunAction.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowRunAction.cs index 174074f93a1d..2e0b6347a7c4 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowRunAction.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowRunAction.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The workflow run action. + /// [JsonTransformation] public partial class WorkflowRunAction : SubResource { @@ -84,7 +87,7 @@ public WorkflowRunAction() { } public string TrackingId { get; private set; } /// - /// Gets or sets gets or sets the correlation properties. + /// Gets or sets the correlation properties. /// [JsonProperty(PropertyName = "properties.correlation")] public Correlation Correlation { get; set; } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowRunActionFilter.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowRunActionFilter.cs index ea62d914bd19..46b30bec9d95 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowRunActionFilter.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowRunActionFilter.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The workflow run action filter. + /// public partial class WorkflowRunActionFilter { /// @@ -32,10 +35,10 @@ public WorkflowRunActionFilter() { } } /// - /// Gets or sets gets or sets the status of workflow run action. - /// Possible values include: 'NotSpecified', 'Paused', 'Running', - /// 'Waiting', 'Succeeded', 'Skipped', 'Suspended', 'Cancelled', - /// 'Failed', 'Faulted', 'TimedOut', 'Aborted', 'Ignored' + /// Gets or sets the status of workflow run action. Possible values + /// include: 'NotSpecified', 'Paused', 'Running', 'Waiting', + /// 'Succeeded', 'Skipped', 'Suspended', 'Cancelled', 'Failed', + /// 'Faulted', 'TimedOut', 'Aborted', 'Ignored' /// [JsonProperty(PropertyName = "status")] public WorkflowStatus? Status { get; set; } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowRunFilter.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowRunFilter.cs index d4007882b98e..f0de481ede95 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowRunFilter.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowRunFilter.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The workflow run filter. + /// public partial class WorkflowRunFilter { /// @@ -32,10 +35,10 @@ public WorkflowRunFilter() { } } /// - /// Gets or sets gets or sets the status of workflow run. Possible - /// values include: 'NotSpecified', 'Paused', 'Running', 'Waiting', - /// 'Succeeded', 'Skipped', 'Suspended', 'Cancelled', 'Failed', - /// 'Faulted', 'TimedOut', 'Aborted', 'Ignored' + /// Gets or sets the status of workflow run. Possible values include: + /// 'NotSpecified', 'Paused', 'Running', 'Waiting', 'Succeeded', + /// 'Skipped', 'Suspended', 'Cancelled', 'Failed', 'Faulted', + /// 'TimedOut', 'Aborted', 'Ignored' /// [JsonProperty(PropertyName = "status")] public WorkflowStatus? Status { get; set; } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowRunTrigger.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowRunTrigger.cs index d914aa4e32d2..ba61b3c106f1 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowRunTrigger.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowRunTrigger.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The workflow run trigger. + /// public partial class WorkflowRunTrigger { /// @@ -92,7 +95,7 @@ public WorkflowRunTrigger() { } public string TrackingId { get; private set; } /// - /// Gets or sets gets or sets the run correlation. + /// Gets or sets the run correlation. /// [JsonProperty(PropertyName = "correlation")] public Correlation Correlation { get; set; } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowTrigger.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowTrigger.cs index abb434f53c03..c5ba2374d439 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowTrigger.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowTrigger.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The workflow trigger. + /// [JsonTransformation] public partial class WorkflowTrigger : SubResource { diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowTriggerCallbackUrl.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowTriggerCallbackUrl.cs index 8c1a0def26ab..23210b7bf4ee 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowTriggerCallbackUrl.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowTriggerCallbackUrl.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The workflow trigger callback URL. + /// public partial class WorkflowTriggerCallbackUrl { /// diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowTriggerFilter.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowTriggerFilter.cs index bc49d7a5f709..61e8add353e4 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowTriggerFilter.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowTriggerFilter.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The workflow trigger filter. + /// public partial class WorkflowTriggerFilter { /// @@ -32,9 +35,9 @@ public WorkflowTriggerFilter() { } } /// - /// Gets or sets gets or sets the state of workflow trigger. Possible - /// values include: 'NotSpecified', 'Completed', 'Enabled', - /// 'Disabled', 'Deleted', 'Suspended' + /// Gets or sets the state of workflow trigger. Possible values + /// include: 'NotSpecified', 'Completed', 'Enabled', 'Disabled', + /// 'Deleted', 'Suspended' /// [JsonProperty(PropertyName = "state")] public WorkflowState? State { get; set; } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowTriggerHistory.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowTriggerHistory.cs index 0141c0bced7d..14311f2f1400 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowTriggerHistory.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowTriggerHistory.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The workflow trigger history. + /// [JsonTransformation] public partial class WorkflowTriggerHistory : SubResource { @@ -85,7 +88,7 @@ public WorkflowTriggerHistory() { } public string TrackingId { get; private set; } /// - /// Gets or sets gets or sets the run correlation. + /// Gets or sets the run correlation. /// [JsonProperty(PropertyName = "properties.correlation")] public Correlation Correlation { get; set; } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowTriggerHistoryFilter.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowTriggerHistoryFilter.cs index 49c6d657a01f..d00a052cccf0 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowTriggerHistoryFilter.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowTriggerHistoryFilter.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The workflow trigger history filter. + /// public partial class WorkflowTriggerHistoryFilter { /// @@ -34,10 +37,10 @@ public WorkflowTriggerHistoryFilter() { } } /// - /// Gets or sets gets or sets the status of workflow trigger history. - /// Possible values include: 'NotSpecified', 'Paused', 'Running', - /// 'Waiting', 'Succeeded', 'Skipped', 'Suspended', 'Cancelled', - /// 'Failed', 'Faulted', 'TimedOut', 'Aborted', 'Ignored' + /// Gets or sets the status of workflow trigger history. Possible + /// values include: 'NotSpecified', 'Paused', 'Running', 'Waiting', + /// 'Succeeded', 'Skipped', 'Suspended', 'Cancelled', 'Failed', + /// 'Faulted', 'TimedOut', 'Aborted', 'Ignored' /// [JsonProperty(PropertyName = "status")] public WorkflowStatus? Status { get; set; } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowTriggerRecurrence.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowTriggerRecurrence.cs index d4be6f81091c..8e471b13b278 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowTriggerRecurrence.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowTriggerRecurrence.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The workflow trigger recurrence. + /// public partial class WorkflowTriggerRecurrence { /// @@ -37,7 +40,7 @@ public WorkflowTriggerRecurrence() { } } /// - /// Gets or sets gets or sets the frequency. Possible values include: + /// Gets or sets the frequency. Possible values include: /// 'NotSpecified', 'Second', 'Minute', 'Hour', 'Day', 'Week', /// 'Month', 'Year' /// @@ -45,31 +48,31 @@ public WorkflowTriggerRecurrence() { } public RecurrenceFrequency? Frequency { get; set; } /// - /// Gets or sets gets or sets the interval. + /// Gets or sets the interval. /// [JsonProperty(PropertyName = "interval")] public int? Interval { get; set; } /// - /// Gets or sets gets or sets the start time. + /// Gets or sets the start time. /// [JsonProperty(PropertyName = "startTime")] public DateTime? StartTime { get; set; } /// - /// Gets or sets gets or sets the end time. + /// Gets or sets the end time. /// [JsonProperty(PropertyName = "endTime")] public DateTime? EndTime { get; set; } /// - /// Gets or sets gets or sets the time zone. + /// Gets or sets the time zone. /// [JsonProperty(PropertyName = "timeZone")] public string TimeZone { get; set; } /// - /// Gets or sets gets or sets the recurrence schedule. + /// Gets or sets the recurrence schedule. /// [JsonProperty(PropertyName = "schedule")] public RecurrenceSchedule Schedule { get; set; } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowVersion.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowVersion.cs index 5a154fcc3611..837cf0130164 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowVersion.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/WorkflowVersion.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The workflow version. + /// [JsonTransformation] public partial class WorkflowVersion : Resource { @@ -54,9 +57,8 @@ public WorkflowVersion() { } public DateTime? ChangedTime { get; private set; } /// - /// Gets or sets gets or sets the state. Possible values include: - /// 'NotSpecified', 'Completed', 'Enabled', 'Disabled', 'Deleted', - /// 'Suspended' + /// Gets or sets the state. Possible values include: 'NotSpecified', + /// 'Completed', 'Enabled', 'Disabled', 'Deleted', 'Suspended' /// [JsonProperty(PropertyName = "properties.state")] public WorkflowState? State { get; set; } @@ -74,28 +76,41 @@ public WorkflowVersion() { } public string AccessEndpoint { get; private set; } /// - /// Gets or sets gets or sets the sku. + /// Gets or sets the sku. /// [JsonProperty(PropertyName = "properties.sku")] public Sku Sku { get; set; } /// - /// Gets or sets gets or sets the integration account. + /// Gets or sets the integration account. /// [JsonProperty(PropertyName = "properties.integrationAccount")] public ResourceReference IntegrationAccount { get; set; } /// - /// Gets or sets gets or sets the definition. + /// Gets or sets the definition. /// [JsonProperty(PropertyName = "properties.definition")] public object Definition { get; set; } /// - /// Gets or sets gets or sets the parameters. + /// Gets or sets the parameters. /// [JsonProperty(PropertyName = "properties.parameters")] public IDictionary Parameters { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (this.Sku != null) + { + this.Sku.Validate(); + } + } } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12AcknowledgementSettings.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12AcknowledgementSettings.cs index 320910cf9104..518c9275ef01 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12AcknowledgementSettings.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12AcknowledgementSettings.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The X12 agreement acknowledgement settings. + /// public partial class X12AcknowledgementSettings { /// @@ -26,7 +29,7 @@ public X12AcknowledgementSettings() { } /// /// Initializes a new instance of the X12AcknowledgementSettings class. /// - public X12AcknowledgementSettings(bool? needTechnicalAcknowledgement = default(bool?), bool? batchTechnicalAcknowledgements = default(bool?), bool? needFunctionalAcknowledgement = default(bool?), string functionalAcknowledgementVersion = default(string), bool? batchFunctionalAcknowledgements = default(bool?), bool? needImplementationAcknowledgement = default(bool?), string implementationAcknowledgementVersion = default(string), bool? batchImplementationAcknowledgements = default(bool?), bool? needLoopForValidMessages = default(bool?), bool? sendSynchronousAcknowledgement = default(bool?), string acknowledgementControlNumberPrefix = default(string), string acknowledgementControlNumberSuffix = default(string), int? acknowledgementControlNumberLowerBound = default(int?), int? acknowledgementControlNumberUpperBound = default(int?), bool? rolloverAcknowledgementControlNumber = default(bool?)) + public X12AcknowledgementSettings(bool needTechnicalAcknowledgement, bool batchTechnicalAcknowledgements, bool needFunctionalAcknowledgement, bool batchFunctionalAcknowledgements, bool needImplementationAcknowledgement, bool batchImplementationAcknowledgements, bool needLoopForValidMessages, bool sendSynchronousAcknowledgement, int acknowledgementControlNumberLowerBound, int acknowledgementControlNumberUpperBound, bool rolloverAcknowledgementControlNumber, string functionalAcknowledgementVersion = default(string), string implementationAcknowledgementVersion = default(string), string acknowledgementControlNumberPrefix = default(string), string acknowledgementControlNumberSuffix = default(string)) { NeedTechnicalAcknowledgement = needTechnicalAcknowledgement; BatchTechnicalAcknowledgements = batchTechnicalAcknowledgements; @@ -50,21 +53,21 @@ public X12AcknowledgementSettings() { } /// acknowledgement is needed. /// [JsonProperty(PropertyName = "needTechnicalAcknowledgement")] - public bool? NeedTechnicalAcknowledgement { get; set; } + public bool NeedTechnicalAcknowledgement { get; set; } /// /// Gets or sets the value indicating whether to batch the technical /// acknowledgements. /// [JsonProperty(PropertyName = "batchTechnicalAcknowledgements")] - public bool? BatchTechnicalAcknowledgements { get; set; } + public bool BatchTechnicalAcknowledgements { get; set; } /// /// Gets or sets the value indicating whether functional /// acknowledgement is needed. /// [JsonProperty(PropertyName = "needFunctionalAcknowledgement")] - public bool? NeedFunctionalAcknowledgement { get; set; } + public bool NeedFunctionalAcknowledgement { get; set; } /// /// Gets or sets the functional acknowledgement version. @@ -77,14 +80,14 @@ public X12AcknowledgementSettings() { } /// acknowledgements. /// [JsonProperty(PropertyName = "batchFunctionalAcknowledgements")] - public bool? BatchFunctionalAcknowledgements { get; set; } + public bool BatchFunctionalAcknowledgements { get; set; } /// /// Gets or sets the value indicating whether implementation /// acknowledgement is needed. /// [JsonProperty(PropertyName = "needImplementationAcknowledgement")] - public bool? NeedImplementationAcknowledgement { get; set; } + public bool NeedImplementationAcknowledgement { get; set; } /// /// Gets or sets the implementation acknowledgement version. @@ -97,21 +100,21 @@ public X12AcknowledgementSettings() { } /// acknowledgements. /// [JsonProperty(PropertyName = "batchImplementationAcknowledgements")] - public bool? BatchImplementationAcknowledgements { get; set; } + public bool BatchImplementationAcknowledgements { get; set; } /// /// Gets or sets the value indicating whether a loop is needed for /// valid messages. /// [JsonProperty(PropertyName = "needLoopForValidMessages")] - public bool? NeedLoopForValidMessages { get; set; } + public bool NeedLoopForValidMessages { get; set; } /// /// Gets or sets the value indicating whether to send synchronous /// acknowledgement. /// [JsonProperty(PropertyName = "sendSynchronousAcknowledgement")] - public bool? SendSynchronousAcknowledgement { get; set; } + public bool SendSynchronousAcknowledgement { get; set; } /// /// Gets or sets the acknowledgement control number prefix. @@ -129,20 +132,30 @@ public X12AcknowledgementSettings() { } /// Gets or sets the acknowledgement control number lower bound. /// [JsonProperty(PropertyName = "acknowledgementControlNumberLowerBound")] - public int? AcknowledgementControlNumberLowerBound { get; set; } + public int AcknowledgementControlNumberLowerBound { get; set; } /// /// Gets or sets the acknowledgement control number upper bound. /// [JsonProperty(PropertyName = "acknowledgementControlNumberUpperBound")] - public int? AcknowledgementControlNumberUpperBound { get; set; } + public int AcknowledgementControlNumberUpperBound { get; set; } /// /// Gets or sets the value indicating whether to rollover /// acknowledgement control number. /// [JsonProperty(PropertyName = "rolloverAcknowledgementControlNumber")] - public bool? RolloverAcknowledgementControlNumber { get; set; } + public bool RolloverAcknowledgementControlNumber { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + //Nothing to validate + } } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12AgreementContent.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12AgreementContent.cs index 63de14fa1fb1..37f3383fd0dc 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12AgreementContent.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12AgreementContent.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The X12 agreement content. + /// public partial class X12AgreementContent { /// @@ -26,7 +29,7 @@ public X12AgreementContent() { } /// /// Initializes a new instance of the X12AgreementContent class. /// - public X12AgreementContent(X12OneWayAgreement receiveAgreement = default(X12OneWayAgreement), X12OneWayAgreement sendAgreement = default(X12OneWayAgreement)) + public X12AgreementContent(X12OneWayAgreement receiveAgreement, X12OneWayAgreement sendAgreement) { ReceiveAgreement = receiveAgreement; SendAgreement = sendAgreement; @@ -44,5 +47,30 @@ public X12AgreementContent() { } [JsonProperty(PropertyName = "sendAgreement")] public X12OneWayAgreement SendAgreement { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (ReceiveAgreement == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "ReceiveAgreement"); + } + if (SendAgreement == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "SendAgreement"); + } + if (this.ReceiveAgreement != null) + { + this.ReceiveAgreement.Validate(); + } + if (this.SendAgreement != null) + { + this.SendAgreement.Validate(); + } + } } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12DelimiterOverrides.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12DelimiterOverrides.cs index 8e2885ce79ab..559884a4b13b 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12DelimiterOverrides.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12DelimiterOverrides.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The X12 delimiter override settings. + /// public partial class X12DelimiterOverrides { /// @@ -26,7 +29,7 @@ public X12DelimiterOverrides() { } /// /// Initializes a new instance of the X12DelimiterOverrides class. /// - public X12DelimiterOverrides(string protocolVersion = default(string), string messageId = default(string), int? dataElementSeparator = default(int?), int? componentSeparator = default(int?), int? segmentTerminator = default(int?), SegmentTerminatorSuffix? segmentTerminatorSuffix = default(SegmentTerminatorSuffix?), int? replaceCharacter = default(int?), bool? replaceSeparatorsInPayload = default(bool?), string targetNamespace = default(string)) + public X12DelimiterOverrides(int dataElementSeparator, int componentSeparator, int segmentTerminator, SegmentTerminatorSuffix segmentTerminatorSuffix, int replaceCharacter, bool replaceSeparatorsInPayload, string protocolVersion = default(string), string messageId = default(string), string targetNamespace = default(string)) { ProtocolVersion = protocolVersion; MessageId = messageId; @@ -55,39 +58,39 @@ public X12DelimiterOverrides() { } /// Gets or sets the data element separator. /// [JsonProperty(PropertyName = "dataElementSeparator")] - public int? DataElementSeparator { get; set; } + public int DataElementSeparator { get; set; } /// /// Gets or sets the component separator. /// [JsonProperty(PropertyName = "componentSeparator")] - public int? ComponentSeparator { get; set; } + public int ComponentSeparator { get; set; } /// /// Gets or sets the segment terminator. /// [JsonProperty(PropertyName = "segmentTerminator")] - public int? SegmentTerminator { get; set; } + public int SegmentTerminator { get; set; } /// /// Gets or sets the segment terminator suffix. Possible values /// include: 'NotSpecified', 'None', 'CR', 'LF', 'CRLF' /// [JsonProperty(PropertyName = "segmentTerminatorSuffix")] - public SegmentTerminatorSuffix? SegmentTerminatorSuffix { get; set; } + public SegmentTerminatorSuffix SegmentTerminatorSuffix { get; set; } /// /// Gets or sets the replacement character. /// [JsonProperty(PropertyName = "replaceCharacter")] - public int? ReplaceCharacter { get; set; } + public int ReplaceCharacter { get; set; } /// /// Gets or sets the value indicating whether to replace separators in /// payload. /// [JsonProperty(PropertyName = "replaceSeparatorsInPayload")] - public bool? ReplaceSeparatorsInPayload { get; set; } + public bool ReplaceSeparatorsInPayload { get; set; } /// /// Gets or sets the target namespace on which this delimiter settings @@ -96,5 +99,14 @@ public X12DelimiterOverrides() { } [JsonProperty(PropertyName = "targetNamespace")] public string TargetNamespace { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + } } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12EnvelopeOverride.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12EnvelopeOverride.cs index 31444146821f..8087b5739b36 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12EnvelopeOverride.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12EnvelopeOverride.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The X12 envelope override settings. + /// public partial class X12EnvelopeOverride { /// @@ -26,7 +29,7 @@ public X12EnvelopeOverride() { } /// /// Initializes a new instance of the X12EnvelopeOverride class. /// - public X12EnvelopeOverride(string targetNamespace = default(string), string protocolVersion = default(string), string messageId = default(string), int? responsibleAgencyCode = default(int?), string headerVersion = default(string), string senderApplicationId = default(string), string receiverApplicationId = default(string), string functionalIdentifierCode = default(string), X12DateFormat? dateFormat = default(X12DateFormat?), X12TimeFormat? timeFormat = default(X12TimeFormat?)) + public X12EnvelopeOverride(string targetNamespace, string protocolVersion, string messageId, string responsibleAgencyCode, string headerVersion, string senderApplicationId, string receiverApplicationId, X12DateFormat dateFormat, X12TimeFormat timeFormat, string functionalIdentifierCode = default(string)) { TargetNamespace = targetNamespace; ProtocolVersion = protocolVersion; @@ -65,7 +68,7 @@ public X12EnvelopeOverride() { } /// Gets or sets the responsible agency code. /// [JsonProperty(PropertyName = "responsibleAgencyCode")] - public int? ResponsibleAgencyCode { get; set; } + public string ResponsibleAgencyCode { get; set; } /// /// Gets or sets the header version. @@ -96,14 +99,51 @@ public X12EnvelopeOverride() { } /// 'NotSpecified', 'CCYYMMDD', 'YYMMDD' /// [JsonProperty(PropertyName = "dateFormat")] - public X12DateFormat? DateFormat { get; set; } + public X12DateFormat DateFormat { get; set; } /// /// Gets or sets the time format. Possible values include: /// 'NotSpecified', 'HHMM', 'HHMMSS', 'HHMMSSdd', 'HHMMSSd' /// [JsonProperty(PropertyName = "timeFormat")] - public X12TimeFormat? TimeFormat { get; set; } + public X12TimeFormat TimeFormat { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (TargetNamespace == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "TargetNamespace"); + } + if (ProtocolVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "ProtocolVersion"); + } + if (MessageId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "MessageId"); + } + if (ResponsibleAgencyCode == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "ResponsibleAgencyCode"); + } + if (HeaderVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "HeaderVersion"); + } + if (SenderApplicationId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "SenderApplicationId"); + } + if (ReceiverApplicationId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "ReceiverApplicationId"); + } + } } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12EnvelopeSettings.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12EnvelopeSettings.cs index e5533bab8649..f0ee3a1822f4 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12EnvelopeSettings.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12EnvelopeSettings.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The X12 agreement envelope settings. + /// public partial class X12EnvelopeSettings { /// @@ -26,7 +29,7 @@ public X12EnvelopeSettings() { } /// /// Initializes a new instance of the X12EnvelopeSettings class. /// - public X12EnvelopeSettings(int? controlStandardsId = default(int?), bool? useControlStandardsIdAsRepetitionCharacter = default(bool?), string senderApplicationId = default(string), string receiverApplicationId = default(string), string controlVersionNumber = default(string), int? interchangeControlNumberLowerBound = default(int?), int? interchangeControlNumberUpperBound = default(int?), bool? rolloverInterchangeControlNumber = default(bool?), bool? enableDefaultGroupHeaders = default(bool?), string functionalGroupId = default(string), int? groupControlNumberLowerBound = default(int?), int? groupControlNumberUpperBound = default(int?), bool? rolloverGroupControlNumber = default(bool?), string groupHeaderAgencyCode = default(string), string groupHeaderVersion = default(string), int? transactionSetControlNumberLowerBound = default(int?), int? transactionSetControlNumberUpperBound = default(int?), bool? rolloverTransactionSetControlNumber = default(bool?), string transactionSetControlNumberPrefix = default(string), string transactionSetControlNumberSuffix = default(string), bool? overwriteExistingTransactionSetControlNumber = default(bool?), X12DateFormat? groupHeaderDateFormat = default(X12DateFormat?), X12TimeFormat? groupHeaderTimeFormat = default(X12TimeFormat?), UsageIndicator? usageIndicator = default(UsageIndicator?)) + public X12EnvelopeSettings(int controlStandardsId, bool useControlStandardsIdAsRepetitionCharacter, string senderApplicationId, string receiverApplicationId, string controlVersionNumber, int interchangeControlNumberLowerBound, int interchangeControlNumberUpperBound, bool rolloverInterchangeControlNumber, bool enableDefaultGroupHeaders, int groupControlNumberLowerBound, int groupControlNumberUpperBound, bool rolloverGroupControlNumber, string groupHeaderAgencyCode, string groupHeaderVersion, int transactionSetControlNumberLowerBound, int transactionSetControlNumberUpperBound, bool rolloverTransactionSetControlNumber, bool overwriteExistingTransactionSetControlNumber, X12DateFormat groupHeaderDateFormat, X12TimeFormat groupHeaderTimeFormat, UsageIndicator usageIndicator, string functionalGroupId = default(string), string transactionSetControlNumberPrefix = default(string), string transactionSetControlNumberSuffix = default(string)) { ControlStandardsId = controlStandardsId; UseControlStandardsIdAsRepetitionCharacter = useControlStandardsIdAsRepetitionCharacter; @@ -58,14 +61,14 @@ public X12EnvelopeSettings() { } /// Gets or sets the controls standards id. /// [JsonProperty(PropertyName = "controlStandardsId")] - public int? ControlStandardsId { get; set; } + public int ControlStandardsId { get; set; } /// /// Gets or sets the value indicating whether to use control standards /// id as repetition character. /// [JsonProperty(PropertyName = "useControlStandardsIdAsRepetitionCharacter")] - public bool? UseControlStandardsIdAsRepetitionCharacter { get; set; } + public bool UseControlStandardsIdAsRepetitionCharacter { get; set; } /// /// Gets or sets the sender application id. @@ -89,27 +92,27 @@ public X12EnvelopeSettings() { } /// Gets or sets the interchange control number lower bound. /// [JsonProperty(PropertyName = "interchangeControlNumberLowerBound")] - public int? InterchangeControlNumberLowerBound { get; set; } + public int InterchangeControlNumberLowerBound { get; set; } /// /// Gets or sets the interchange control number upper bound. /// [JsonProperty(PropertyName = "interchangeControlNumberUpperBound")] - public int? InterchangeControlNumberUpperBound { get; set; } + public int InterchangeControlNumberUpperBound { get; set; } /// /// Gets or sets the value indicating whether to rollover interchange /// control number. /// [JsonProperty(PropertyName = "rolloverInterchangeControlNumber")] - public bool? RolloverInterchangeControlNumber { get; set; } + public bool RolloverInterchangeControlNumber { get; set; } /// /// Gets or sets the value indicating whether to enable default group /// headers. /// [JsonProperty(PropertyName = "enableDefaultGroupHeaders")] - public bool? EnableDefaultGroupHeaders { get; set; } + public bool EnableDefaultGroupHeaders { get; set; } /// /// Gets or sets the functional group id. @@ -121,20 +124,20 @@ public X12EnvelopeSettings() { } /// Gets or sets the group control number lower bound. /// [JsonProperty(PropertyName = "groupControlNumberLowerBound")] - public int? GroupControlNumberLowerBound { get; set; } + public int GroupControlNumberLowerBound { get; set; } /// /// Gets or sets the group control number upper bound. /// [JsonProperty(PropertyName = "groupControlNumberUpperBound")] - public int? GroupControlNumberUpperBound { get; set; } + public int GroupControlNumberUpperBound { get; set; } /// /// Gets or sets the value indicating whether to rollover group /// control number. /// [JsonProperty(PropertyName = "rolloverGroupControlNumber")] - public bool? RolloverGroupControlNumber { get; set; } + public bool RolloverGroupControlNumber { get; set; } /// /// Gets or sets the group header agency code. @@ -152,20 +155,20 @@ public X12EnvelopeSettings() { } /// Gets or sets the transaction set control number lower bound. /// [JsonProperty(PropertyName = "transactionSetControlNumberLowerBound")] - public int? TransactionSetControlNumberLowerBound { get; set; } + public int TransactionSetControlNumberLowerBound { get; set; } /// /// Gets or sets the transaction set control number upper bound. /// [JsonProperty(PropertyName = "transactionSetControlNumberUpperBound")] - public int? TransactionSetControlNumberUpperBound { get; set; } + public int TransactionSetControlNumberUpperBound { get; set; } /// /// Gets or sets the value indicating whether to rollover transaction /// set control number. /// [JsonProperty(PropertyName = "rolloverTransactionSetControlNumber")] - public bool? RolloverTransactionSetControlNumber { get; set; } + public bool RolloverTransactionSetControlNumber { get; set; } /// /// Gets or sets the transaction set control number prefix. @@ -184,28 +187,57 @@ public X12EnvelopeSettings() { } /// transaction set control number. /// [JsonProperty(PropertyName = "overwriteExistingTransactionSetControlNumber")] - public bool? OverwriteExistingTransactionSetControlNumber { get; set; } + public bool OverwriteExistingTransactionSetControlNumber { get; set; } /// /// Gets or sets the group header date format. Possible values /// include: 'NotSpecified', 'CCYYMMDD', 'YYMMDD' /// [JsonProperty(PropertyName = "groupHeaderDateFormat")] - public X12DateFormat? GroupHeaderDateFormat { get; set; } + public X12DateFormat GroupHeaderDateFormat { get; set; } /// /// Gets or sets the group header time format. Possible values /// include: 'NotSpecified', 'HHMM', 'HHMMSS', 'HHMMSSdd', 'HHMMSSd' /// [JsonProperty(PropertyName = "groupHeaderTimeFormat")] - public X12TimeFormat? GroupHeaderTimeFormat { get; set; } + public X12TimeFormat GroupHeaderTimeFormat { get; set; } /// /// Gets or sets the usage indicator. Possible values include: /// 'NotSpecified', 'Test', 'Information', 'Production' /// [JsonProperty(PropertyName = "usageIndicator")] - public UsageIndicator? UsageIndicator { get; set; } + public UsageIndicator UsageIndicator { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (SenderApplicationId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "SenderApplicationId"); + } + if (ReceiverApplicationId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "ReceiverApplicationId"); + } + if (ControlVersionNumber == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "ControlVersionNumber"); + } + if (GroupHeaderAgencyCode == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "GroupHeaderAgencyCode"); + } + if (GroupHeaderVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "GroupHeaderVersion"); + } + } } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12FramingSettings.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12FramingSettings.cs index 21defa04d0e3..0dc04474fc75 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12FramingSettings.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12FramingSettings.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The X12 agreement framing settings. + /// public partial class X12FramingSettings { /// @@ -26,7 +29,7 @@ public X12FramingSettings() { } /// /// Initializes a new instance of the X12FramingSettings class. /// - public X12FramingSettings(int? dataElementSeparator = default(int?), int? componentSeparator = default(int?), bool? replaceSeparatorsInPayload = default(bool?), int? replaceCharacter = default(int?), int? segmentTerminator = default(int?), X12CharacterSet? characterSet = default(X12CharacterSet?), SegmentTerminatorSuffix? segmentTerminatorSuffix = default(SegmentTerminatorSuffix?)) + public X12FramingSettings(int dataElementSeparator, int componentSeparator, bool replaceSeparatorsInPayload, int replaceCharacter, int segmentTerminator, X12CharacterSet characterSet, SegmentTerminatorSuffix segmentTerminatorSuffix) { DataElementSeparator = dataElementSeparator; ComponentSeparator = componentSeparator; @@ -41,46 +44,55 @@ public X12FramingSettings() { } /// Gets or sets the data element separator. /// [JsonProperty(PropertyName = "dataElementSeparator")] - public int? DataElementSeparator { get; set; } + public int DataElementSeparator { get; set; } /// /// Gets or sets the component separator. /// [JsonProperty(PropertyName = "componentSeparator")] - public int? ComponentSeparator { get; set; } + public int ComponentSeparator { get; set; } /// /// Gets or sets the value indicating whether to replace separators in /// payload. /// [JsonProperty(PropertyName = "replaceSeparatorsInPayload")] - public bool? ReplaceSeparatorsInPayload { get; set; } + public bool ReplaceSeparatorsInPayload { get; set; } /// /// Gets or sets the replacement character. /// [JsonProperty(PropertyName = "replaceCharacter")] - public int? ReplaceCharacter { get; set; } + public int ReplaceCharacter { get; set; } /// /// Gets or sets the segment terminator. /// [JsonProperty(PropertyName = "segmentTerminator")] - public int? SegmentTerminator { get; set; } + public int SegmentTerminator { get; set; } /// /// Gets or sets the X12 character set. Possible values include: /// 'NotSpecified', 'Basic', 'Extended', 'UTF8' /// [JsonProperty(PropertyName = "characterSet")] - public X12CharacterSet? CharacterSet { get; set; } + public X12CharacterSet CharacterSet { get; set; } /// /// Gets or sets the segment terminator suffix. Possible values /// include: 'NotSpecified', 'None', 'CR', 'LF', 'CRLF' /// [JsonProperty(PropertyName = "segmentTerminatorSuffix")] - public SegmentTerminatorSuffix? SegmentTerminatorSuffix { get; set; } + public SegmentTerminatorSuffix SegmentTerminatorSuffix { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + } } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12MessageFilter.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12MessageFilter.cs index ae23fb41467a..797f26e331d4 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12MessageFilter.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12MessageFilter.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The X12 message filter for odata query. + /// public partial class X12MessageFilter { /// @@ -26,7 +29,7 @@ public X12MessageFilter() { } /// /// Initializes a new instance of the X12MessageFilter class. /// - public X12MessageFilter(MessageFilterType? messageFilterType = default(MessageFilterType?)) + public X12MessageFilter(MessageFilterType messageFilterType) { MessageFilterType = messageFilterType; } @@ -36,7 +39,16 @@ public X12MessageFilter() { } /// 'NotSpecified', 'Include', 'Exclude' /// [JsonProperty(PropertyName = "messageFilterType")] - public MessageFilterType? MessageFilterType { get; set; } + public MessageFilterType MessageFilterType { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + } } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12MessageIdentifier.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12MessageIdentifier.cs index 519008427984..4a193263c627 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12MessageIdentifier.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12MessageIdentifier.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The X12 message identifier. + /// public partial class X12MessageIdentifier { /// @@ -26,7 +29,7 @@ public X12MessageIdentifier() { } /// /// Initializes a new instance of the X12MessageIdentifier class. /// - public X12MessageIdentifier(string messageId = default(string)) + public X12MessageIdentifier(string messageId) { MessageId = messageId; } @@ -37,5 +40,18 @@ public X12MessageIdentifier() { } [JsonProperty(PropertyName = "messageId")] public string MessageId { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (MessageId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "MessageId"); + } + } } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12OneWayAgreement.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12OneWayAgreement.cs index acc9125d1769..2dbc1c98be80 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12OneWayAgreement.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12OneWayAgreement.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The X12 oneway agreement. + /// public partial class X12OneWayAgreement { /// @@ -26,7 +29,7 @@ public X12OneWayAgreement() { } /// /// Initializes a new instance of the X12OneWayAgreement class. /// - public X12OneWayAgreement(BusinessIdentity senderBusinessIdentity = default(BusinessIdentity), BusinessIdentity receiverBusinessIdentity = default(BusinessIdentity), X12ProtocolSettings protocolSettings = default(X12ProtocolSettings)) + public X12OneWayAgreement(BusinessIdentity senderBusinessIdentity, BusinessIdentity receiverBusinessIdentity, X12ProtocolSettings protocolSettings) { SenderBusinessIdentity = senderBusinessIdentity; ReceiverBusinessIdentity = receiverBusinessIdentity; @@ -51,5 +54,38 @@ public X12OneWayAgreement() { } [JsonProperty(PropertyName = "protocolSettings")] public X12ProtocolSettings ProtocolSettings { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (SenderBusinessIdentity == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "SenderBusinessIdentity"); + } + if (ReceiverBusinessIdentity == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "ReceiverBusinessIdentity"); + } + if (ProtocolSettings == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "ProtocolSettings"); + } + if (this.SenderBusinessIdentity != null) + { + this.SenderBusinessIdentity.Validate(); + } + if (this.ReceiverBusinessIdentity != null) + { + this.ReceiverBusinessIdentity.Validate(); + } + if (this.ProtocolSettings != null) + { + this.ProtocolSettings.Validate(); + } + } } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12ProcessingSettings.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12ProcessingSettings.cs index eccb593d0286..4f99a355d7e5 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12ProcessingSettings.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12ProcessingSettings.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The X12 processing settings. + /// public partial class X12ProcessingSettings { /// @@ -26,7 +29,7 @@ public X12ProcessingSettings() { } /// /// Initializes a new instance of the X12ProcessingSettings class. /// - public X12ProcessingSettings(bool? maskSecurityInfo = default(bool?), bool? convertImpliedDecimal = default(bool?), bool? preserveInterchange = default(bool?), bool? suspendInterchangeOnError = default(bool?), bool? createEmptyXmlTagsForTrailingSeparators = default(bool?), bool? useDotAsDecimalSeparator = default(bool?)) + public X12ProcessingSettings(bool maskSecurityInfo, bool convertImpliedDecimal, bool preserveInterchange, bool suspendInterchangeOnError, bool createEmptyXmlTagsForTrailingSeparators, bool useDotAsDecimalSeparator) { MaskSecurityInfo = maskSecurityInfo; ConvertImpliedDecimal = convertImpliedDecimal; @@ -41,41 +44,51 @@ public X12ProcessingSettings() { } /// information. /// [JsonProperty(PropertyName = "maskSecurityInfo")] - public bool? MaskSecurityInfo { get; set; } + public bool MaskSecurityInfo { get; set; } /// /// Gets or sets the value indicating whether to convert numerical /// type to implied decimal. /// [JsonProperty(PropertyName = "convertImpliedDecimal")] - public bool? ConvertImpliedDecimal { get; set; } + public bool ConvertImpliedDecimal { get; set; } /// /// Gets or sets the value indicating whether to preserve interchange. /// [JsonProperty(PropertyName = "preserveInterchange")] - public bool? PreserveInterchange { get; set; } + public bool PreserveInterchange { get; set; } /// /// Gets or sets the value indicating whether to suspend interchange /// on error. /// [JsonProperty(PropertyName = "suspendInterchangeOnError")] - public bool? SuspendInterchangeOnError { get; set; } + public bool SuspendInterchangeOnError { get; set; } /// /// Gets or sets the value indicating whether to create empty xml tags /// for trailing separators. /// [JsonProperty(PropertyName = "createEmptyXmlTagsForTrailingSeparators")] - public bool? CreateEmptyXmlTagsForTrailingSeparators { get; set; } + public bool CreateEmptyXmlTagsForTrailingSeparators { get; set; } /// /// Gets or sets the value indicating whether to use dot as decimal /// separator. /// [JsonProperty(PropertyName = "useDotAsDecimalSeparator")] - public bool? UseDotAsDecimalSeparator { get; set; } + public bool UseDotAsDecimalSeparator { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + //Nothing to validate + } } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12ProtocolSettings.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12ProtocolSettings.cs index 2d44a7fb6c0a..66434c09a494 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12ProtocolSettings.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12ProtocolSettings.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The X12 agreement protocol settings. + /// public partial class X12ProtocolSettings { /// @@ -26,7 +29,7 @@ public X12ProtocolSettings() { } /// /// Initializes a new instance of the X12ProtocolSettings class. /// - public X12ProtocolSettings(X12ValidationSettings validationSettings = default(X12ValidationSettings), X12FramingSettings framingSettings = default(X12FramingSettings), X12EnvelopeSettings envelopeSettings = default(X12EnvelopeSettings), X12AcknowledgementSettings acknowledgementSettings = default(X12AcknowledgementSettings), X12MessageFilter messageFilter = default(X12MessageFilter), X12SecuritySettings securitySettings = default(X12SecuritySettings), X12ProcessingSettings processingSettings = default(X12ProcessingSettings), IList envelopeOverrides = default(IList), IList validationOverrides = default(IList), IList messageFilterList = default(IList), IList schemaReferences = default(IList), IList x12DelimiterOverrides = default(IList)) + public X12ProtocolSettings(X12ValidationSettings validationSettings, X12FramingSettings framingSettings, X12EnvelopeSettings envelopeSettings, X12AcknowledgementSettings acknowledgementSettings, X12MessageFilter messageFilter, X12SecuritySettings securitySettings, X12ProcessingSettings processingSettings, IList schemaReferences, IList envelopeOverrides = default(IList), IList validationOverrides = default(IList), IList messageFilterList = default(IList), IList x12DelimiterOverrides = default(IList)) { ValidationSettings = validationSettings; FramingSettings = framingSettings; @@ -114,5 +117,124 @@ public X12ProtocolSettings() { } [JsonProperty(PropertyName = "x12DelimiterOverrides")] public IList X12DelimiterOverrides { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (ValidationSettings == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "ValidationSettings"); + } + if (FramingSettings == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "FramingSettings"); + } + if (EnvelopeSettings == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "EnvelopeSettings"); + } + if (AcknowledgementSettings == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "AcknowledgementSettings"); + } + if (MessageFilter == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "MessageFilter"); + } + if (SecuritySettings == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "SecuritySettings"); + } + if (ProcessingSettings == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "ProcessingSettings"); + } + if (SchemaReferences == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "SchemaReferences"); + } + if (this.ValidationSettings != null) + { + this.ValidationSettings.Validate(); + } + if (this.FramingSettings != null) + { + this.FramingSettings.Validate(); + } + if (this.EnvelopeSettings != null) + { + this.EnvelopeSettings.Validate(); + } + if (this.AcknowledgementSettings != null) + { + this.AcknowledgementSettings.Validate(); + } + if (this.MessageFilter != null) + { + this.MessageFilter.Validate(); + } + if (this.SecuritySettings != null) + { + this.SecuritySettings.Validate(); + } + if (this.ProcessingSettings != null) + { + this.ProcessingSettings.Validate(); + } + if (this.EnvelopeOverrides != null) + { + foreach (var element in this.EnvelopeOverrides) + { + if (element != null) + { + element.Validate(); + } + } + } + if (this.ValidationOverrides != null) + { + foreach (var element1 in this.ValidationOverrides) + { + if (element1 != null) + { + element1.Validate(); + } + } + } + if (this.MessageFilterList != null) + { + foreach (var element2 in this.MessageFilterList) + { + if (element2 != null) + { + element2.Validate(); + } + } + } + if (this.SchemaReferences != null) + { + foreach (var element3 in this.SchemaReferences) + { + if (element3 != null) + { + element3.Validate(); + } + } + } + if (this.X12DelimiterOverrides != null) + { + foreach (var element4 in this.X12DelimiterOverrides) + { + if (element4 != null) + { + element4.Validate(); + } + } + } + } } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12SchemaReference.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12SchemaReference.cs index d5e3938a046e..8d4182cf0330 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12SchemaReference.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12SchemaReference.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The X12 schema reference. + /// public partial class X12SchemaReference { /// @@ -26,7 +29,7 @@ public X12SchemaReference() { } /// /// Initializes a new instance of the X12SchemaReference class. /// - public X12SchemaReference(string messageId = default(string), string senderApplicationId = default(string), string schemaVersion = default(string), string schemaName = default(string)) + public X12SchemaReference(string messageId, string schemaVersion, string schemaName, string senderApplicationId = default(string)) { MessageId = messageId; SenderApplicationId = senderApplicationId; @@ -58,5 +61,26 @@ public X12SchemaReference() { } [JsonProperty(PropertyName = "schemaName")] public string SchemaName { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (MessageId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "MessageId"); + } + if (SchemaVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "SchemaVersion"); + } + if (SchemaName == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "SchemaName"); + } + } } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12SecuritySettings.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12SecuritySettings.cs index 0fd0933bf31e..4bae360b1ced 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12SecuritySettings.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12SecuritySettings.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The X12 agreement security settings. + /// public partial class X12SecuritySettings { /// @@ -26,7 +29,7 @@ public X12SecuritySettings() { } /// /// Initializes a new instance of the X12SecuritySettings class. /// - public X12SecuritySettings(string authorizationQualifier = default(string), string authorizationValue = default(string), string securityQualifier = default(string), string passwordValue = default(string)) + public X12SecuritySettings(string authorizationQualifier, string securityQualifier, string authorizationValue = default(string), string passwordValue = default(string)) { AuthorizationQualifier = authorizationQualifier; AuthorizationValue = authorizationValue; @@ -58,5 +61,22 @@ public X12SecuritySettings() { } [JsonProperty(PropertyName = "passwordValue")] public string PasswordValue { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (AuthorizationQualifier == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "AuthorizationQualifier"); + } + if (SecurityQualifier == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "SecurityQualifier"); + } + } } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12ValidationOverride.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12ValidationOverride.cs index 1af397feb6d6..c45de2cc0a50 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12ValidationOverride.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12ValidationOverride.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The X12 validation override settings. + /// public partial class X12ValidationOverride { /// @@ -26,7 +29,7 @@ public X12ValidationOverride() { } /// /// Initializes a new instance of the X12ValidationOverride class. /// - public X12ValidationOverride(string messageId = default(string), bool? validateEDITypes = default(bool?), bool? validateXSDTypes = default(bool?), bool? allowLeadingAndTrailingSpacesAndZeroes = default(bool?), bool? validateCharacterSet = default(bool?), bool? trimLeadingAndTrailingSpacesAndZeroes = default(bool?), TrailingSeparatorPolicy? trailingSeparatorPolicy = default(TrailingSeparatorPolicy?)) + public X12ValidationOverride(string messageId, bool validateEDITypes, bool validateXSDTypes, bool allowLeadingAndTrailingSpacesAndZeroes, bool validateCharacterSet, bool trimLeadingAndTrailingSpacesAndZeroes, TrailingSeparatorPolicy trailingSeparatorPolicy) { MessageId = messageId; ValidateEDITypes = validateEDITypes; @@ -48,41 +51,54 @@ public X12ValidationOverride() { } /// Gets or sets the value indicating whether to validate EDI types. /// [JsonProperty(PropertyName = "validateEDITypes")] - public bool? ValidateEDITypes { get; set; } + public bool ValidateEDITypes { get; set; } /// /// Gets or sets the value indicating whether to validate XSD types. /// [JsonProperty(PropertyName = "validateXSDTypes")] - public bool? ValidateXSDTypes { get; set; } + public bool ValidateXSDTypes { get; set; } /// /// Gets or sets the value indicating whether to allow leading and /// trailing spaces and zeroes. /// [JsonProperty(PropertyName = "allowLeadingAndTrailingSpacesAndZeroes")] - public bool? AllowLeadingAndTrailingSpacesAndZeroes { get; set; } + public bool AllowLeadingAndTrailingSpacesAndZeroes { get; set; } /// /// Gets or sets the value indicating whether to validate character /// Set. /// [JsonProperty(PropertyName = "validateCharacterSet")] - public bool? ValidateCharacterSet { get; set; } + public bool ValidateCharacterSet { get; set; } /// /// Gets or sets the value indicating whether to trim leading and /// trailing spaces and zeroes. /// [JsonProperty(PropertyName = "trimLeadingAndTrailingSpacesAndZeroes")] - public bool? TrimLeadingAndTrailingSpacesAndZeroes { get; set; } + public bool TrimLeadingAndTrailingSpacesAndZeroes { get; set; } /// /// Gets or sets the trailing separator policy. Possible values /// include: 'NotSpecified', 'NotAllowed', 'Optional', 'Mandatory' /// [JsonProperty(PropertyName = "trailingSeparatorPolicy")] - public TrailingSeparatorPolicy? TrailingSeparatorPolicy { get; set; } + public TrailingSeparatorPolicy TrailingSeparatorPolicy { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + if (MessageId == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "MessageId"); + } + } } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12ValidationSettings.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12ValidationSettings.cs index 0a79a9d8dd59..5f249ce8933a 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12ValidationSettings.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/Models/X12ValidationSettings.cs @@ -16,6 +16,9 @@ namespace Microsoft.Azure.Management.Logic.Models using Microsoft.Rest.Serialization; using Microsoft.Rest.Azure; + /// + /// The X12 agreement validation settings. + /// public partial class X12ValidationSettings { /// @@ -26,7 +29,7 @@ public X12ValidationSettings() { } /// /// Initializes a new instance of the X12ValidationSettings class. /// - public X12ValidationSettings(bool? validateCharacterSet = default(bool?), bool? checkDuplicateInterchangeControlNumber = default(bool?), int? interchangeControlNumberValidityDays = default(int?), bool? checkDuplicateGroupControlNumber = default(bool?), bool? checkDuplicateTransactionSetControlNumber = default(bool?), bool? validateEDITypes = default(bool?), bool? validateXSDTypes = default(bool?), bool? allowLeadingAndTrailingSpacesAndZeroes = default(bool?), bool? trimLeadingAndTrailingSpacesAndZeroes = default(bool?), TrailingSeparatorPolicy? trailingSeparatorPolicy = default(TrailingSeparatorPolicy?)) + public X12ValidationSettings(bool validateCharacterSet, bool checkDuplicateInterchangeControlNumber, int interchangeControlNumberValidityDays, bool checkDuplicateGroupControlNumber, bool checkDuplicateTransactionSetControlNumber, bool validateEDITypes, bool validateXSDTypes, bool allowLeadingAndTrailingSpacesAndZeroes, bool trimLeadingAndTrailingSpacesAndZeroes, TrailingSeparatorPolicy trailingSeparatorPolicy) { ValidateCharacterSet = validateCharacterSet; CheckDuplicateInterchangeControlNumber = checkDuplicateInterchangeControlNumber; @@ -45,69 +48,78 @@ public X12ValidationSettings() { } /// set in the message. /// [JsonProperty(PropertyName = "validateCharacterSet")] - public bool? ValidateCharacterSet { get; set; } + public bool ValidateCharacterSet { get; set; } /// /// Gets or sets the value indicating whether to check for duplicate /// interchange control number. /// [JsonProperty(PropertyName = "checkDuplicateInterchangeControlNumber")] - public bool? CheckDuplicateInterchangeControlNumber { get; set; } + public bool CheckDuplicateInterchangeControlNumber { get; set; } /// /// Gets or sets the validity period of interchange control number. /// [JsonProperty(PropertyName = "interchangeControlNumberValidityDays")] - public int? InterchangeControlNumberValidityDays { get; set; } + public int InterchangeControlNumberValidityDays { get; set; } /// /// Gets or sets the value indicating whether to check for duplicate /// group control number. /// [JsonProperty(PropertyName = "checkDuplicateGroupControlNumber")] - public bool? CheckDuplicateGroupControlNumber { get; set; } + public bool CheckDuplicateGroupControlNumber { get; set; } /// /// Gets or sets the value indicating whether to check for duplicate /// transaction set control number. /// [JsonProperty(PropertyName = "checkDuplicateTransactionSetControlNumber")] - public bool? CheckDuplicateTransactionSetControlNumber { get; set; } + public bool CheckDuplicateTransactionSetControlNumber { get; set; } /// /// Gets or sets the value indicating whether to Whether to validate /// EDI types. /// [JsonProperty(PropertyName = "validateEDITypes")] - public bool? ValidateEDITypes { get; set; } + public bool ValidateEDITypes { get; set; } /// /// Gets or sets the value indicating whether to Whether to validate /// XSD types. /// [JsonProperty(PropertyName = "validateXSDTypes")] - public bool? ValidateXSDTypes { get; set; } + public bool ValidateXSDTypes { get; set; } /// /// Gets or sets the value indicating whether to allow leading and /// trailing spaces and zeroes. /// [JsonProperty(PropertyName = "allowLeadingAndTrailingSpacesAndZeroes")] - public bool? AllowLeadingAndTrailingSpacesAndZeroes { get; set; } + public bool AllowLeadingAndTrailingSpacesAndZeroes { get; set; } /// /// Gets or sets the value indicating whether to trim leading and /// trailing spaces and zeroes. /// [JsonProperty(PropertyName = "trimLeadingAndTrailingSpacesAndZeroes")] - public bool? TrimLeadingAndTrailingSpacesAndZeroes { get; set; } + public bool TrimLeadingAndTrailingSpacesAndZeroes { get; set; } /// /// Gets or sets the trailing separator policy. Possible values /// include: 'NotSpecified', 'NotAllowed', 'Optional', 'Mandatory' /// [JsonProperty(PropertyName = "trailingSeparatorPolicy")] - public TrailingSeparatorPolicy? TrailingSeparatorPolicy { get; set; } + public TrailingSeparatorPolicy TrailingSeparatorPolicy { get; set; } + /// + /// Validate the object. + /// + /// + /// Thrown if validation fails + /// + public virtual void Validate() + { + } } } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IntegrationAccountPartnersOperations.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/PartnersOperations.cs similarity index 95% rename from src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IntegrationAccountPartnersOperations.cs rename to src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/PartnersOperations.cs index 09357a878900..85705d6bc3f1 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IntegrationAccountPartnersOperations.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/PartnersOperations.cs @@ -26,12 +26,12 @@ namespace Microsoft.Azure.Management.Logic using Models; /// - /// IntegrationAccountPartnersOperations operations. + /// PartnersOperations operations. /// - internal partial class IntegrationAccountPartnersOperations : IServiceOperations, IIntegrationAccountPartnersOperations + internal partial class PartnersOperations : IServiceOperations, IPartnersOperations { /// - /// Initializes a new instance of the IntegrationAccountPartnersOperations class. + /// Initializes a new instance of the PartnersOperations class. /// /// /// Reference to the service client. @@ -39,7 +39,7 @@ internal partial class IntegrationAccountPartnersOperations : IServiceOperations /// /// Thrown when a required parameter is null /// - internal IntegrationAccountPartnersOperations(LogicManagementClient client) + internal PartnersOperations(LogicManagementClient client) { if (client == null) { @@ -83,7 +83,7 @@ internal IntegrationAccountPartnersOperations(LogicManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByIntegrationAccountsWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (this.Client.SubscriptionId == null) { @@ -97,7 +97,10 @@ internal IntegrationAccountPartnersOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "integrationAccountName"); } - string apiVersion = "2015-08-01-preview"; + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -108,9 +111,8 @@ internal IntegrationAccountPartnersOperations(LogicManagementClient client) tracingParameters.Add("odataQuery", odataQuery); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("integrationAccountName", integrationAccountName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByIntegrationAccounts", tracingParameters); } // Construct URL var _baseUrl = this.Client.BaseUri.AbsoluteUri; @@ -127,9 +129,9 @@ internal IntegrationAccountPartnersOperations(LogicManagementClient client) _queryParameters.Add(_odataFilter); } } - if (apiVersion != null) + if (this.Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); } if (_queryParameters.Count > 0) { @@ -302,7 +304,10 @@ internal IntegrationAccountPartnersOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "partnerName"); } - string apiVersion = "2015-08-01-preview"; + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -313,7 +318,6 @@ internal IntegrationAccountPartnersOperations(LogicManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("integrationAccountName", integrationAccountName); tracingParameters.Add("partnerName", partnerName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } @@ -325,9 +329,9 @@ internal IntegrationAccountPartnersOperations(LogicManagementClient client) _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); _url = _url.Replace("{partnerName}", Uri.EscapeDataString(partnerName)); List _queryParameters = new List(); - if (apiVersion != null) + if (this.Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); } if (_queryParameters.Count > 0) { @@ -503,11 +507,18 @@ internal IntegrationAccountPartnersOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "partnerName"); } + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } if (partner == null) { throw new ValidationException(ValidationRules.CannotBeNull, "partner"); } - string apiVersion = "2015-08-01-preview"; + if (partner != null) + { + partner.Validate(); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -518,7 +529,6 @@ internal IntegrationAccountPartnersOperations(LogicManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("integrationAccountName", integrationAccountName); tracingParameters.Add("partnerName", partnerName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("partner", partner); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); @@ -531,9 +541,9 @@ internal IntegrationAccountPartnersOperations(LogicManagementClient client) _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); _url = _url.Replace("{partnerName}", Uri.EscapeDataString(partnerName)); List _queryParameters = new List(); - if (apiVersion != null) + if (this.Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); } if (_queryParameters.Count > 0) { @@ -727,7 +737,10 @@ internal IntegrationAccountPartnersOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "partnerName"); } - string apiVersion = "2015-08-01-preview"; + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -738,7 +751,6 @@ internal IntegrationAccountPartnersOperations(LogicManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("integrationAccountName", integrationAccountName); tracingParameters.Add("partnerName", partnerName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); } @@ -750,9 +762,9 @@ internal IntegrationAccountPartnersOperations(LogicManagementClient client) _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); _url = _url.Replace("{partnerName}", Uri.EscapeDataString(partnerName)); List _queryParameters = new List(); - if (apiVersion != null) + if (this.Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); } if (_queryParameters.Count > 0) { @@ -875,7 +887,7 @@ internal IntegrationAccountPartnersOperations(LogicManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByIntegrationAccountsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -890,7 +902,7 @@ internal IntegrationAccountPartnersOperations(LogicManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByIntegrationAccountsNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IntegrationAccountPartnersOperationsExtensions.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/PartnersOperationsExtensions.cs similarity index 70% rename from src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IntegrationAccountPartnersOperationsExtensions.cs rename to src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/PartnersOperationsExtensions.cs index 984a102cfcbc..64c2d5b96289 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IntegrationAccountPartnersOperationsExtensions.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/PartnersOperationsExtensions.cs @@ -19,9 +19,9 @@ namespace Microsoft.Azure.Management.Logic using Models; /// - /// Extension methods for IntegrationAccountPartnersOperations. + /// Extension methods for PartnersOperations. /// - public static partial class IntegrationAccountPartnersOperationsExtensions + public static partial class PartnersOperationsExtensions { /// /// Gets a list of integration account partners. @@ -38,9 +38,9 @@ public static partial class IntegrationAccountPartnersOperationsExtensions /// /// OData parameters to apply to the operation. /// - public static IPage List(this IIntegrationAccountPartnersOperations operations, string resourceGroupName, string integrationAccountName, ODataQuery odataQuery = default(ODataQuery)) + public static IPage ListByIntegrationAccounts(this IPartnersOperations operations, string resourceGroupName, string integrationAccountName, ODataQuery odataQuery = default(ODataQuery)) { - return Task.Factory.StartNew(s => ((IIntegrationAccountPartnersOperations)s).ListAsync(resourceGroupName, integrationAccountName, odataQuery), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((IPartnersOperations)s).ListByIntegrationAccountsAsync(resourceGroupName, integrationAccountName, odataQuery), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// @@ -61,9 +61,9 @@ public static partial class IntegrationAccountPartnersOperationsExtensions /// /// The cancellation token. /// - public static async Task> ListAsync(this IIntegrationAccountPartnersOperations operations, string resourceGroupName, string integrationAccountName, ODataQuery odataQuery = default(ODataQuery), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByIntegrationAccountsAsync(this IPartnersOperations operations, string resourceGroupName, string integrationAccountName, ODataQuery odataQuery = default(ODataQuery), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, integrationAccountName, odataQuery, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByIntegrationAccountsWithHttpMessagesAsync(resourceGroupName, integrationAccountName, odataQuery, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -84,9 +84,9 @@ public static partial class IntegrationAccountPartnersOperationsExtensions /// /// The integration account partner name. /// - public static IntegrationAccountPartner Get(this IIntegrationAccountPartnersOperations operations, string resourceGroupName, string integrationAccountName, string partnerName) + public static IntegrationAccountPartner Get(this IPartnersOperations operations, string resourceGroupName, string integrationAccountName, string partnerName) { - return Task.Factory.StartNew(s => ((IIntegrationAccountPartnersOperations)s).GetAsync(resourceGroupName, integrationAccountName, partnerName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((IPartnersOperations)s).GetAsync(resourceGroupName, integrationAccountName, partnerName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// @@ -107,7 +107,7 @@ public static IntegrationAccountPartner Get(this IIntegrationAccountPartnersOper /// /// The cancellation token. /// - public static async Task GetAsync(this IIntegrationAccountPartnersOperations operations, string resourceGroupName, string integrationAccountName, string partnerName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this IPartnersOperations operations, string resourceGroupName, string integrationAccountName, string partnerName, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, integrationAccountName, partnerName, null, cancellationToken).ConfigureAwait(false)) { @@ -133,9 +133,9 @@ public static IntegrationAccountPartner Get(this IIntegrationAccountPartnersOper /// /// The integration account partner. /// - public static IntegrationAccountPartner CreateOrUpdate(this IIntegrationAccountPartnersOperations operations, string resourceGroupName, string integrationAccountName, string partnerName, IntegrationAccountPartner partner) + public static IntegrationAccountPartner CreateOrUpdate(this IPartnersOperations operations, string resourceGroupName, string integrationAccountName, string partnerName, IntegrationAccountPartner partner) { - return Task.Factory.StartNew(s => ((IIntegrationAccountPartnersOperations)s).CreateOrUpdateAsync(resourceGroupName, integrationAccountName, partnerName, partner), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((IPartnersOperations)s).CreateOrUpdateAsync(resourceGroupName, integrationAccountName, partnerName, partner), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// @@ -159,7 +159,7 @@ public static IntegrationAccountPartner CreateOrUpdate(this IIntegrationAccountP /// /// The cancellation token. /// - public static async Task CreateOrUpdateAsync(this IIntegrationAccountPartnersOperations operations, string resourceGroupName, string integrationAccountName, string partnerName, IntegrationAccountPartner partner, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateOrUpdateAsync(this IPartnersOperations operations, string resourceGroupName, string integrationAccountName, string partnerName, IntegrationAccountPartner partner, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, integrationAccountName, partnerName, partner, null, cancellationToken).ConfigureAwait(false)) { @@ -182,9 +182,9 @@ public static IntegrationAccountPartner CreateOrUpdate(this IIntegrationAccountP /// /// The integration account partner name. /// - public static void Delete(this IIntegrationAccountPartnersOperations operations, string resourceGroupName, string integrationAccountName, string partnerName) + public static void Delete(this IPartnersOperations operations, string resourceGroupName, string integrationAccountName, string partnerName) { - Task.Factory.StartNew(s => ((IIntegrationAccountPartnersOperations)s).DeleteAsync(resourceGroupName, integrationAccountName, partnerName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + Task.Factory.StartNew(s => ((IPartnersOperations)s).DeleteAsync(resourceGroupName, integrationAccountName, partnerName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// @@ -205,7 +205,7 @@ public static void Delete(this IIntegrationAccountPartnersOperations operations, /// /// The cancellation token. /// - public static async Task DeleteAsync(this IIntegrationAccountPartnersOperations operations, string resourceGroupName, string integrationAccountName, string partnerName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteAsync(this IPartnersOperations operations, string resourceGroupName, string integrationAccountName, string partnerName, CancellationToken cancellationToken = default(CancellationToken)) { await operations.DeleteWithHttpMessagesAsync(resourceGroupName, integrationAccountName, partnerName, null, cancellationToken).ConfigureAwait(false); } @@ -219,9 +219,9 @@ public static void Delete(this IIntegrationAccountPartnersOperations operations, /// /// The NextLink from the previous successful call to List operation. /// - public static IPage ListNext(this IIntegrationAccountPartnersOperations operations, string nextPageLink) + public static IPage ListByIntegrationAccountsNext(this IPartnersOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((IIntegrationAccountPartnersOperations)s).ListNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((IPartnersOperations)s).ListByIntegrationAccountsNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// @@ -236,9 +236,9 @@ public static IPage ListNext(this IIntegrationAccount /// /// The cancellation token. /// - public static async Task> ListNextAsync(this IIntegrationAccountPartnersOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByIntegrationAccountsNextAsync(this IPartnersOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByIntegrationAccountsNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IntegrationAccountSchemasOperations.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/SchemasOperations.cs similarity index 95% rename from src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IntegrationAccountSchemasOperations.cs rename to src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/SchemasOperations.cs index e243b92af874..c631634ceaa8 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IntegrationAccountSchemasOperations.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/SchemasOperations.cs @@ -26,12 +26,12 @@ namespace Microsoft.Azure.Management.Logic using Models; /// - /// IntegrationAccountSchemasOperations operations. + /// SchemasOperations operations. /// - internal partial class IntegrationAccountSchemasOperations : IServiceOperations, IIntegrationAccountSchemasOperations + internal partial class SchemasOperations : IServiceOperations, ISchemasOperations { /// - /// Initializes a new instance of the IntegrationAccountSchemasOperations class. + /// Initializes a new instance of the SchemasOperations class. /// /// /// Reference to the service client. @@ -39,7 +39,7 @@ internal partial class IntegrationAccountSchemasOperations : IServiceOperations< /// /// Thrown when a required parameter is null /// - internal IntegrationAccountSchemasOperations(LogicManagementClient client) + internal SchemasOperations(LogicManagementClient client) { if (client == null) { @@ -83,7 +83,7 @@ internal IntegrationAccountSchemasOperations(LogicManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByIntegrationAccountsWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, ODataQuery odataQuery = default(ODataQuery), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (this.Client.SubscriptionId == null) { @@ -97,7 +97,10 @@ internal IntegrationAccountSchemasOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "integrationAccountName"); } - string apiVersion = "2015-08-01-preview"; + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -108,9 +111,8 @@ internal IntegrationAccountSchemasOperations(LogicManagementClient client) tracingParameters.Add("odataQuery", odataQuery); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("integrationAccountName", integrationAccountName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByIntegrationAccounts", tracingParameters); } // Construct URL var _baseUrl = this.Client.BaseUri.AbsoluteUri; @@ -127,9 +129,9 @@ internal IntegrationAccountSchemasOperations(LogicManagementClient client) _queryParameters.Add(_odataFilter); } } - if (apiVersion != null) + if (this.Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); } if (_queryParameters.Count > 0) { @@ -302,7 +304,10 @@ internal IntegrationAccountSchemasOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "schemaName"); } - string apiVersion = "2015-08-01-preview"; + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -313,7 +318,6 @@ internal IntegrationAccountSchemasOperations(LogicManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("integrationAccountName", integrationAccountName); tracingParameters.Add("schemaName", schemaName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } @@ -325,9 +329,9 @@ internal IntegrationAccountSchemasOperations(LogicManagementClient client) _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); _url = _url.Replace("{schemaName}", Uri.EscapeDataString(schemaName)); List _queryParameters = new List(); - if (apiVersion != null) + if (this.Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); } if (_queryParameters.Count > 0) { @@ -503,11 +507,18 @@ internal IntegrationAccountSchemasOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "schemaName"); } + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } if (schema == null) { throw new ValidationException(ValidationRules.CannotBeNull, "schema"); } - string apiVersion = "2015-08-01-preview"; + if (schema != null) + { + schema.Validate(); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -518,7 +529,6 @@ internal IntegrationAccountSchemasOperations(LogicManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("integrationAccountName", integrationAccountName); tracingParameters.Add("schemaName", schemaName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("schema", schema); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); @@ -531,9 +541,9 @@ internal IntegrationAccountSchemasOperations(LogicManagementClient client) _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); _url = _url.Replace("{schemaName}", Uri.EscapeDataString(schemaName)); List _queryParameters = new List(); - if (apiVersion != null) + if (this.Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); } if (_queryParameters.Count > 0) { @@ -727,7 +737,10 @@ internal IntegrationAccountSchemasOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "schemaName"); } - string apiVersion = "2015-08-01-preview"; + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -738,7 +751,6 @@ internal IntegrationAccountSchemasOperations(LogicManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("integrationAccountName", integrationAccountName); tracingParameters.Add("schemaName", schemaName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); } @@ -750,9 +762,9 @@ internal IntegrationAccountSchemasOperations(LogicManagementClient client) _url = _url.Replace("{integrationAccountName}", Uri.EscapeDataString(integrationAccountName)); _url = _url.Replace("{schemaName}", Uri.EscapeDataString(schemaName)); List _queryParameters = new List(); - if (apiVersion != null) + if (this.Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); } if (_queryParameters.Count > 0) { @@ -875,7 +887,7 @@ internal IntegrationAccountSchemasOperations(LogicManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task>> ListByIntegrationAccountsNextWithHttpMessagesAsync(string nextPageLink, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (nextPageLink == null) { @@ -890,7 +902,7 @@ internal IntegrationAccountSchemasOperations(LogicManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("nextPageLink", nextPageLink); tracingParameters.Add("cancellationToken", cancellationToken); - ServiceClientTracing.Enter(_invocationId, this, "ListNext", tracingParameters); + ServiceClientTracing.Enter(_invocationId, this, "ListByIntegrationAccountsNext", tracingParameters); } // Construct URL string _url = "{nextLink}"; diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IntegrationAccountSchemasOperationsExtensions.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/SchemasOperationsExtensions.cs similarity index 69% rename from src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IntegrationAccountSchemasOperationsExtensions.cs rename to src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/SchemasOperationsExtensions.cs index 71d216045805..94a46e1e2d3f 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/IntegrationAccountSchemasOperationsExtensions.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/SchemasOperationsExtensions.cs @@ -19,9 +19,9 @@ namespace Microsoft.Azure.Management.Logic using Models; /// - /// Extension methods for IntegrationAccountSchemasOperations. + /// Extension methods for SchemasOperations. /// - public static partial class IntegrationAccountSchemasOperationsExtensions + public static partial class SchemasOperationsExtensions { /// /// Gets a list of integration account schemas. @@ -38,9 +38,9 @@ public static partial class IntegrationAccountSchemasOperationsExtensions /// /// OData parameters to apply to the operation. /// - public static IPage List(this IIntegrationAccountSchemasOperations operations, string resourceGroupName, string integrationAccountName, ODataQuery odataQuery = default(ODataQuery)) + public static IPage ListByIntegrationAccounts(this ISchemasOperations operations, string resourceGroupName, string integrationAccountName, ODataQuery odataQuery = default(ODataQuery)) { - return Task.Factory.StartNew(s => ((IIntegrationAccountSchemasOperations)s).ListAsync(resourceGroupName, integrationAccountName, odataQuery), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((ISchemasOperations)s).ListByIntegrationAccountsAsync(resourceGroupName, integrationAccountName, odataQuery), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// @@ -61,9 +61,9 @@ public static partial class IntegrationAccountSchemasOperationsExtensions /// /// The cancellation token. /// - public static async Task> ListAsync(this IIntegrationAccountSchemasOperations operations, string resourceGroupName, string integrationAccountName, ODataQuery odataQuery = default(ODataQuery), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByIntegrationAccountsAsync(this ISchemasOperations operations, string resourceGroupName, string integrationAccountName, ODataQuery odataQuery = default(ODataQuery), CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListWithHttpMessagesAsync(resourceGroupName, integrationAccountName, odataQuery, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByIntegrationAccountsWithHttpMessagesAsync(resourceGroupName, integrationAccountName, odataQuery, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } @@ -84,9 +84,9 @@ public static partial class IntegrationAccountSchemasOperationsExtensions /// /// The integration account schema name. /// - public static IntegrationAccountSchema Get(this IIntegrationAccountSchemasOperations operations, string resourceGroupName, string integrationAccountName, string schemaName) + public static IntegrationAccountSchema Get(this ISchemasOperations operations, string resourceGroupName, string integrationAccountName, string schemaName) { - return Task.Factory.StartNew(s => ((IIntegrationAccountSchemasOperations)s).GetAsync(resourceGroupName, integrationAccountName, schemaName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((ISchemasOperations)s).GetAsync(resourceGroupName, integrationAccountName, schemaName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// @@ -107,7 +107,7 @@ public static IntegrationAccountSchema Get(this IIntegrationAccountSchemasOperat /// /// The cancellation token. /// - public static async Task GetAsync(this IIntegrationAccountSchemasOperations operations, string resourceGroupName, string integrationAccountName, string schemaName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GetAsync(this ISchemasOperations operations, string resourceGroupName, string integrationAccountName, string schemaName, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.GetWithHttpMessagesAsync(resourceGroupName, integrationAccountName, schemaName, null, cancellationToken).ConfigureAwait(false)) { @@ -133,9 +133,9 @@ public static IntegrationAccountSchema Get(this IIntegrationAccountSchemasOperat /// /// The integration account schema. /// - public static IntegrationAccountSchema CreateOrUpdate(this IIntegrationAccountSchemasOperations operations, string resourceGroupName, string integrationAccountName, string schemaName, IntegrationAccountSchema schema) + public static IntegrationAccountSchema CreateOrUpdate(this ISchemasOperations operations, string resourceGroupName, string integrationAccountName, string schemaName, IntegrationAccountSchema schema) { - return Task.Factory.StartNew(s => ((IIntegrationAccountSchemasOperations)s).CreateOrUpdateAsync(resourceGroupName, integrationAccountName, schemaName, schema), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((ISchemasOperations)s).CreateOrUpdateAsync(resourceGroupName, integrationAccountName, schemaName, schema), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// @@ -159,7 +159,7 @@ public static IntegrationAccountSchema CreateOrUpdate(this IIntegrationAccountSc /// /// The cancellation token. /// - public static async Task CreateOrUpdateAsync(this IIntegrationAccountSchemasOperations operations, string resourceGroupName, string integrationAccountName, string schemaName, IntegrationAccountSchema schema, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task CreateOrUpdateAsync(this ISchemasOperations operations, string resourceGroupName, string integrationAccountName, string schemaName, IntegrationAccountSchema schema, CancellationToken cancellationToken = default(CancellationToken)) { using (var _result = await operations.CreateOrUpdateWithHttpMessagesAsync(resourceGroupName, integrationAccountName, schemaName, schema, null, cancellationToken).ConfigureAwait(false)) { @@ -182,9 +182,9 @@ public static IntegrationAccountSchema CreateOrUpdate(this IIntegrationAccountSc /// /// The integration account schema name. /// - public static void Delete(this IIntegrationAccountSchemasOperations operations, string resourceGroupName, string integrationAccountName, string schemaName) + public static void Delete(this ISchemasOperations operations, string resourceGroupName, string integrationAccountName, string schemaName) { - Task.Factory.StartNew(s => ((IIntegrationAccountSchemasOperations)s).DeleteAsync(resourceGroupName, integrationAccountName, schemaName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + Task.Factory.StartNew(s => ((ISchemasOperations)s).DeleteAsync(resourceGroupName, integrationAccountName, schemaName), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// @@ -205,7 +205,7 @@ public static void Delete(this IIntegrationAccountSchemasOperations operations, /// /// The cancellation token. /// - public static async Task DeleteAsync(this IIntegrationAccountSchemasOperations operations, string resourceGroupName, string integrationAccountName, string schemaName, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task DeleteAsync(this ISchemasOperations operations, string resourceGroupName, string integrationAccountName, string schemaName, CancellationToken cancellationToken = default(CancellationToken)) { await operations.DeleteWithHttpMessagesAsync(resourceGroupName, integrationAccountName, schemaName, null, cancellationToken).ConfigureAwait(false); } @@ -219,9 +219,9 @@ public static void Delete(this IIntegrationAccountSchemasOperations operations, /// /// The NextLink from the previous successful call to List operation. /// - public static IPage ListNext(this IIntegrationAccountSchemasOperations operations, string nextPageLink) + public static IPage ListByIntegrationAccountsNext(this ISchemasOperations operations, string nextPageLink) { - return Task.Factory.StartNew(s => ((IIntegrationAccountSchemasOperations)s).ListNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((ISchemasOperations)s).ListByIntegrationAccountsNextAsync(nextPageLink), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// @@ -236,9 +236,9 @@ public static IPage ListNext(this IIntegrationAccountS /// /// The cancellation token. /// - public static async Task> ListNextAsync(this IIntegrationAccountSchemasOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) + public static async Task> ListByIntegrationAccountsNextAsync(this ISchemasOperations operations, string nextPageLink, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.ListNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.ListByIntegrationAccountsNextWithHttpMessagesAsync(nextPageLink, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowRunActionsOperations.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowRunActionsOperations.cs index ae04cdedefa6..a52b58a4a6ea 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowRunActionsOperations.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowRunActionsOperations.cs @@ -104,7 +104,10 @@ internal WorkflowRunActionsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "runName"); } - string apiVersion = "2016-06-01"; + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -116,7 +119,6 @@ internal WorkflowRunActionsOperations(LogicManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("workflowName", workflowName); tracingParameters.Add("runName", runName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); } @@ -136,9 +138,9 @@ internal WorkflowRunActionsOperations(LogicManagementClient client) _queryParameters.Add(_odataFilter); } } - if (apiVersion != null) + if (this.Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); } if (_queryParameters.Count > 0) { @@ -318,7 +320,10 @@ internal WorkflowRunActionsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "actionName"); } - string apiVersion = "2016-06-01"; + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -330,7 +335,6 @@ internal WorkflowRunActionsOperations(LogicManagementClient client) tracingParameters.Add("workflowName", workflowName); tracingParameters.Add("runName", runName); tracingParameters.Add("actionName", actionName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } @@ -343,9 +347,9 @@ internal WorkflowRunActionsOperations(LogicManagementClient client) _url = _url.Replace("{runName}", Uri.EscapeDataString(runName)); _url = _url.Replace("{actionName}", Uri.EscapeDataString(actionName)); List _queryParameters = new List(); - if (apiVersion != null) + if (this.Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); } if (_queryParameters.Count > 0) { diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowRunsOperations.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowRunsOperations.cs index 4590cfe07054..191839829e29 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowRunsOperations.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowRunsOperations.cs @@ -97,7 +97,10 @@ internal WorkflowRunsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "workflowName"); } - string apiVersion = "2016-06-01"; + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -108,7 +111,6 @@ internal WorkflowRunsOperations(LogicManagementClient client) tracingParameters.Add("odataQuery", odataQuery); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("workflowName", workflowName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); } @@ -127,9 +129,9 @@ internal WorkflowRunsOperations(LogicManagementClient client) _queryParameters.Add(_odataFilter); } } - if (apiVersion != null) + if (this.Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); } if (_queryParameters.Count > 0) { @@ -302,7 +304,10 @@ internal WorkflowRunsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "runName"); } - string apiVersion = "2016-06-01"; + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -313,7 +318,6 @@ internal WorkflowRunsOperations(LogicManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("workflowName", workflowName); tracingParameters.Add("runName", runName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } @@ -325,9 +329,9 @@ internal WorkflowRunsOperations(LogicManagementClient client) _url = _url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); _url = _url.Replace("{runName}", Uri.EscapeDataString(runName)); List _queryParameters = new List(); - if (apiVersion != null) + if (this.Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); } if (_queryParameters.Count > 0) { @@ -497,7 +501,10 @@ internal WorkflowRunsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "runName"); } - string apiVersion = "2016-06-01"; + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -508,7 +515,6 @@ internal WorkflowRunsOperations(LogicManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("workflowName", workflowName); tracingParameters.Add("runName", runName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Cancel", tracingParameters); } @@ -520,9 +526,9 @@ internal WorkflowRunsOperations(LogicManagementClient client) _url = _url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); _url = _url.Replace("{runName}", Uri.EscapeDataString(runName)); List _queryParameters = new List(); - if (apiVersion != null) + if (this.Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); } if (_queryParameters.Count > 0) { diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowTriggerHistoriesOperations.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowTriggerHistoriesOperations.cs index b4f1e2b88be3..8e7f5afccb27 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowTriggerHistoriesOperations.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowTriggerHistoriesOperations.cs @@ -104,7 +104,10 @@ internal WorkflowTriggerHistoriesOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "triggerName"); } - string apiVersion = "2016-06-01"; + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -116,7 +119,6 @@ internal WorkflowTriggerHistoriesOperations(LogicManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("workflowName", workflowName); tracingParameters.Add("triggerName", triggerName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); } @@ -136,9 +138,9 @@ internal WorkflowTriggerHistoriesOperations(LogicManagementClient client) _queryParameters.Add(_odataFilter); } } - if (apiVersion != null) + if (this.Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); } if (_queryParameters.Count > 0) { @@ -318,7 +320,10 @@ internal WorkflowTriggerHistoriesOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "historyName"); } - string apiVersion = "2016-06-01"; + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -330,7 +335,6 @@ internal WorkflowTriggerHistoriesOperations(LogicManagementClient client) tracingParameters.Add("workflowName", workflowName); tracingParameters.Add("triggerName", triggerName); tracingParameters.Add("historyName", historyName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } @@ -343,9 +347,9 @@ internal WorkflowTriggerHistoriesOperations(LogicManagementClient client) _url = _url.Replace("{triggerName}", Uri.EscapeDataString(triggerName)); _url = _url.Replace("{historyName}", Uri.EscapeDataString(historyName)); List _queryParameters = new List(); - if (apiVersion != null) + if (this.Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); } if (_queryParameters.Count > 0) { diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowTriggersOperations.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowTriggersOperations.cs index 3faa7e16a702..5160c0bc1ded 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowTriggersOperations.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowTriggersOperations.cs @@ -97,7 +97,10 @@ internal WorkflowTriggersOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "workflowName"); } - string apiVersion = "2016-06-01"; + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -108,7 +111,6 @@ internal WorkflowTriggersOperations(LogicManagementClient client) tracingParameters.Add("odataQuery", odataQuery); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("workflowName", workflowName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); } @@ -127,9 +129,9 @@ internal WorkflowTriggersOperations(LogicManagementClient client) _queryParameters.Add(_odataFilter); } } - if (apiVersion != null) + if (this.Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); } if (_queryParameters.Count > 0) { @@ -302,7 +304,10 @@ internal WorkflowTriggersOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "triggerName"); } - string apiVersion = "2016-06-01"; + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -313,7 +318,6 @@ internal WorkflowTriggersOperations(LogicManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("workflowName", workflowName); tracingParameters.Add("triggerName", triggerName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } @@ -325,9 +329,9 @@ internal WorkflowTriggersOperations(LogicManagementClient client) _url = _url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); _url = _url.Replace("{triggerName}", Uri.EscapeDataString(triggerName)); List _queryParameters = new List(); - if (apiVersion != null) + if (this.Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); } if (_queryParameters.Count > 0) { @@ -497,7 +501,10 @@ internal WorkflowTriggersOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "triggerName"); } - string apiVersion = "2016-06-01"; + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -508,7 +515,6 @@ internal WorkflowTriggersOperations(LogicManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("workflowName", workflowName); tracingParameters.Add("triggerName", triggerName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Run", tracingParameters); } @@ -520,9 +526,9 @@ internal WorkflowTriggersOperations(LogicManagementClient client) _url = _url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); _url = _url.Replace("{triggerName}", Uri.EscapeDataString(triggerName)); List _queryParameters = new List(); - if (apiVersion != null) + if (this.Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); } if (_queryParameters.Count > 0) { @@ -686,7 +692,10 @@ internal WorkflowTriggersOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "triggerName"); } - string apiVersion = "2016-06-01"; + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -697,7 +706,6 @@ internal WorkflowTriggersOperations(LogicManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("workflowName", workflowName); tracingParameters.Add("triggerName", triggerName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListCallbackUrl", tracingParameters); } @@ -709,9 +717,9 @@ internal WorkflowTriggersOperations(LogicManagementClient client) _url = _url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); _url = _url.Replace("{triggerName}", Uri.EscapeDataString(triggerName)); List _queryParameters = new List(); - if (apiVersion != null) + if (this.Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); } if (_queryParameters.Count > 0) { diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowVersionsOperations.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowVersionsOperations.cs index 06349fddec36..2f96ef5bb4f4 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowVersionsOperations.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowVersionsOperations.cs @@ -96,7 +96,10 @@ internal WorkflowVersionsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "workflowName"); } - string apiVersion = "2016-06-01"; + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -106,7 +109,6 @@ internal WorkflowVersionsOperations(LogicManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("workflowName", workflowName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("top", top); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "List", tracingParameters); @@ -118,9 +120,9 @@ internal WorkflowVersionsOperations(LogicManagementClient client) _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); List _queryParameters = new List(); - if (apiVersion != null) + if (this.Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); } if (top != null) { @@ -297,7 +299,10 @@ internal WorkflowVersionsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "versionId"); } - string apiVersion = "2016-06-01"; + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -308,7 +313,6 @@ internal WorkflowVersionsOperations(LogicManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("workflowName", workflowName); tracingParameters.Add("versionId", versionId); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } @@ -320,9 +324,9 @@ internal WorkflowVersionsOperations(LogicManagementClient client) _url = _url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); _url = _url.Replace("{versionId}", Uri.EscapeDataString(versionId)); List _queryParameters = new List(); - if (apiVersion != null) + if (this.Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); } if (_queryParameters.Count > 0) { diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowsOperations.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowsOperations.cs index 85a9ff43f584..02a39c91ab19 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowsOperations.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowsOperations.cs @@ -83,7 +83,10 @@ internal WorkflowsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.SubscriptionId"); } - string apiVersion = "2016-06-01"; + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -92,7 +95,6 @@ internal WorkflowsOperations(LogicManagementClient client) _invocationId = ServiceClientTracing.NextInvocationId.ToString(); Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("odataQuery", odataQuery); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListBySubscription", tracingParameters); } @@ -109,9 +111,9 @@ internal WorkflowsOperations(LogicManagementClient client) _queryParameters.Add(_odataFilter); } } - if (apiVersion != null) + if (this.Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); } if (_queryParameters.Count > 0) { @@ -273,7 +275,10 @@ internal WorkflowsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "resourceGroupName"); } - string apiVersion = "2016-06-01"; + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -283,7 +288,6 @@ internal WorkflowsOperations(LogicManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("odataQuery", odataQuery); tracingParameters.Add("resourceGroupName", resourceGroupName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "ListByResourceGroup", tracingParameters); } @@ -301,9 +305,9 @@ internal WorkflowsOperations(LogicManagementClient client) _queryParameters.Add(_odataFilter); } } - if (apiVersion != null) + if (this.Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); } if (_queryParameters.Count > 0) { @@ -469,7 +473,10 @@ internal WorkflowsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "workflowName"); } - string apiVersion = "2016-06-01"; + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -479,7 +486,6 @@ internal WorkflowsOperations(LogicManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("workflowName", workflowName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Get", tracingParameters); } @@ -490,9 +496,9 @@ internal WorkflowsOperations(LogicManagementClient client) _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); List _queryParameters = new List(); - if (apiVersion != null) + if (this.Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); } if (_queryParameters.Count > 0) { @@ -661,11 +667,18 @@ internal WorkflowsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "workflowName"); } + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } if (workflow == null) { throw new ValidationException(ValidationRules.CannotBeNull, "workflow"); } - string apiVersion = "2016-06-01"; + if (workflow != null) + { + workflow.Validate(); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -675,7 +688,6 @@ internal WorkflowsOperations(LogicManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("workflowName", workflowName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("workflow", workflow); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "CreateOrUpdate", tracingParameters); @@ -687,9 +699,9 @@ internal WorkflowsOperations(LogicManagementClient client) _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); List _queryParameters = new List(); - if (apiVersion != null) + if (this.Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); } if (_queryParameters.Count > 0) { @@ -882,11 +894,14 @@ internal WorkflowsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "workflowName"); } + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } if (workflow == null) { throw new ValidationException(ValidationRules.CannotBeNull, "workflow"); } - string apiVersion = "2016-06-01"; // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -896,7 +911,6 @@ internal WorkflowsOperations(LogicManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("workflowName", workflowName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("workflow", workflow); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Update", tracingParameters); @@ -908,9 +922,9 @@ internal WorkflowsOperations(LogicManagementClient client) _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); List _queryParameters = new List(); - if (apiVersion != null) + if (this.Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); } if (_queryParameters.Count > 0) { @@ -1079,7 +1093,10 @@ internal WorkflowsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "workflowName"); } - string apiVersion = "2016-06-01"; + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1089,7 +1106,6 @@ internal WorkflowsOperations(LogicManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("workflowName", workflowName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Delete", tracingParameters); } @@ -1100,9 +1116,9 @@ internal WorkflowsOperations(LogicManagementClient client) _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); List _queryParameters = new List(); - if (apiVersion != null) + if (this.Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); } if (_queryParameters.Count > 0) { @@ -1239,7 +1255,10 @@ internal WorkflowsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "workflowName"); } - string apiVersion = "2016-06-01"; + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1249,7 +1268,6 @@ internal WorkflowsOperations(LogicManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("workflowName", workflowName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Disable", tracingParameters); } @@ -1260,9 +1278,9 @@ internal WorkflowsOperations(LogicManagementClient client) _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); List _queryParameters = new List(); - if (apiVersion != null) + if (this.Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); } if (_queryParameters.Count > 0) { @@ -1399,7 +1417,10 @@ internal WorkflowsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "workflowName"); } - string apiVersion = "2016-06-01"; + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1409,7 +1430,6 @@ internal WorkflowsOperations(LogicManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("workflowName", workflowName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Enable", tracingParameters); } @@ -1420,9 +1440,9 @@ internal WorkflowsOperations(LogicManagementClient client) _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); List _queryParameters = new List(); - if (apiVersion != null) + if (this.Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); } if (_queryParameters.Count > 0) { @@ -1530,8 +1550,8 @@ internal WorkflowsOperations(LogicManagementClient client) /// /// The workflow name. /// - /// - /// The target schema version. + /// + /// Parameters for generating an upgraded definition. /// /// /// Headers that will be added to request. @@ -1551,7 +1571,7 @@ internal WorkflowsOperations(LogicManagementClient client) /// /// A response object containing the response body and response headers. /// - public async Task> GenerateUpgradedDefinitionWithHttpMessagesAsync(string resourceGroupName, string workflowName, string targetSchemaVersion = default(string), Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) + public async Task> GenerateUpgradedDefinitionWithHttpMessagesAsync(string resourceGroupName, string workflowName, GenerateUpgradedDefinitionParameters parameters, Dictionary> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)) { if (this.Client.SubscriptionId == null) { @@ -1565,11 +1585,13 @@ internal WorkflowsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "workflowName"); } - string apiVersion = "2016-06-01"; - GenerateUpgradedDefinitionParameters parameters = new GenerateUpgradedDefinitionParameters(); - if (targetSchemaVersion != null) + if (this.Client.ApiVersion == null) { - parameters.TargetSchemaVersion = targetSchemaVersion; + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } + if (parameters == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "parameters"); } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; @@ -1580,7 +1602,6 @@ internal WorkflowsOperations(LogicManagementClient client) Dictionary tracingParameters = new Dictionary(); tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("workflowName", workflowName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("parameters", parameters); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "GenerateUpgradedDefinition", tracingParameters); @@ -1592,9 +1613,9 @@ internal WorkflowsOperations(LogicManagementClient client) _url = _url.Replace("{resourceGroupName}", Uri.EscapeDataString(resourceGroupName)); _url = _url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); List _queryParameters = new List(); - if (apiVersion != null) + if (this.Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); } if (_queryParameters.Count > 0) { @@ -1773,11 +1794,18 @@ internal WorkflowsOperations(LogicManagementClient client) { throw new ValidationException(ValidationRules.CannotBeNull, "workflowName"); } + if (this.Client.ApiVersion == null) + { + throw new ValidationException(ValidationRules.CannotBeNull, "this.Client.ApiVersion"); + } if (workflow == null) { throw new ValidationException(ValidationRules.CannotBeNull, "workflow"); } - string apiVersion = "2016-06-01"; + if (workflow != null) + { + workflow.Validate(); + } // Tracing bool _shouldTrace = ServiceClientTracing.IsEnabled; string _invocationId = null; @@ -1788,7 +1816,6 @@ internal WorkflowsOperations(LogicManagementClient client) tracingParameters.Add("resourceGroupName", resourceGroupName); tracingParameters.Add("location", location); tracingParameters.Add("workflowName", workflowName); - tracingParameters.Add("apiVersion", apiVersion); tracingParameters.Add("workflow", workflow); tracingParameters.Add("cancellationToken", cancellationToken); ServiceClientTracing.Enter(_invocationId, this, "Validate", tracingParameters); @@ -1801,9 +1828,9 @@ internal WorkflowsOperations(LogicManagementClient client) _url = _url.Replace("{location}", Uri.EscapeDataString(location)); _url = _url.Replace("{workflowName}", Uri.EscapeDataString(workflowName)); List _queryParameters = new List(); - if (apiVersion != null) + if (this.Client.ApiVersion != null) { - _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(apiVersion))); + _queryParameters.Add(string.Format("api-version={0}", Uri.EscapeDataString(this.Client.ApiVersion))); } if (_queryParameters.Count > 0) { diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowsOperationsExtensions.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowsOperationsExtensions.cs index 7e33985e02a6..0ba7d35d8b4d 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowsOperationsExtensions.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Generated/WorkflowsOperationsExtensions.cs @@ -352,12 +352,12 @@ public static void Enable(this IWorkflowsOperations operations, string resourceG /// /// The workflow name. /// - /// - /// The target schema version. + /// + /// Parameters for generating an upgraded definition. /// - public static object GenerateUpgradedDefinition(this IWorkflowsOperations operations, string resourceGroupName, string workflowName, string targetSchemaVersion = default(string)) + public static object GenerateUpgradedDefinition(this IWorkflowsOperations operations, string resourceGroupName, string workflowName, GenerateUpgradedDefinitionParameters parameters) { - return Task.Factory.StartNew(s => ((IWorkflowsOperations)s).GenerateUpgradedDefinitionAsync(resourceGroupName, workflowName, targetSchemaVersion), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); + return Task.Factory.StartNew(s => ((IWorkflowsOperations)s).GenerateUpgradedDefinitionAsync(resourceGroupName, workflowName, parameters), operations, CancellationToken.None, TaskCreationOptions.None, TaskScheduler.Default).Unwrap().GetAwaiter().GetResult(); } /// @@ -372,15 +372,15 @@ public static void Enable(this IWorkflowsOperations operations, string resourceG /// /// The workflow name. /// - /// - /// The target schema version. + /// + /// Parameters for generating an upgraded definition. /// /// /// The cancellation token. /// - public static async Task GenerateUpgradedDefinitionAsync(this IWorkflowsOperations operations, string resourceGroupName, string workflowName, string targetSchemaVersion = default(string), CancellationToken cancellationToken = default(CancellationToken)) + public static async Task GenerateUpgradedDefinitionAsync(this IWorkflowsOperations operations, string resourceGroupName, string workflowName, GenerateUpgradedDefinitionParameters parameters, CancellationToken cancellationToken = default(CancellationToken)) { - using (var _result = await operations.GenerateUpgradedDefinitionWithHttpMessagesAsync(resourceGroupName, workflowName, targetSchemaVersion, null, cancellationToken).ConfigureAwait(false)) + using (var _result = await operations.GenerateUpgradedDefinitionWithHttpMessagesAsync(resourceGroupName, workflowName, parameters, null, cancellationToken).ConfigureAwait(false)) { return _result.Body; } diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Properties/AssemblyInfo.cs b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Properties/AssemblyInfo.cs index 3d4739525b6f..c9773a104525 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Properties/AssemblyInfo.cs +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/Properties/AssemblyInfo.cs @@ -11,7 +11,7 @@ [assembly: AssemblyConfiguration("")] [assembly: AssemblyCompany("Microsoft")] [assembly: AssemblyProduct("Azure .NET SDK")] -[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyVersion("2.0.0.0")] [assembly: AssemblyFileVersion("1.0.0.0")] [assembly: AssemblyCopyright("Copyright (c) Microsoft Corporation")] [assembly: AssemblyTrademark("")] diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/generate.cmd b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/generate.cmd index 70d01eb98295..5be909b45821 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/generate.cmd +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/generate.cmd @@ -6,7 +6,7 @@ @echo off set autoRestVersion=0.17.0-Nightly20160621 if "%1" == "" ( - set specFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/master/arm-logic/CompositeLogicClient.json" + set specFile="https://raw.githubusercontent.com/Azure/azure-rest-api-specs/ecc34b75fe5aecebd148b74392b67e85070e0fc5/arm-logic/2016-06-01/swagger/logic.json" ) else ( set specFile="%1" ) @@ -14,4 +14,4 @@ set repoRoot=%~dp0..\..\..\.. set generateFolder=%~dp0Generated if exist %generateFolder% rd /S /Q %generateFolder% -call "%repoRoot%\tools\autorest.composite.gen.cmd" %specFile% Microsoft.Azure.Management.Logic %autoRestVersion% %generateFolder% "-FT 1" +call "%repoRoot%\tools\autorest.gen.cmd" %specFile% Microsoft.Azure.Management.Logic %autoRestVersion% %generateFolder% diff --git a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/project.json b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/project.json index 6823fb11bf0b..addd2cd03cb1 100644 --- a/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/project.json +++ b/src/ResourceManagement/Logic/Microsoft.Azure.Management.Logic/project.json @@ -1,5 +1,5 @@ { - "version": "1.0.0", + "version": "2.0.0", "description": "Microsoft Azure LogicApps Management Library", "authors": [ "Microsoft" ],